sandbox

package
v0.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 20, 2022 License: MIT Imports: 22 Imported by: 0

README

Go API client for sandbox

SORACOM SANDBOX API v1

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 20160218
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sandbox "github.com/ks6088ts/soracom-sdk-go"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), sandbox.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), sandbox.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), sandbox.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sandbox.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api-sandbox.soracom.io/v1

Class Method HTTP request Description
CouponApi SandboxCreateCoupon Post /sandbox/coupons/create クーポンを作成する
OperatorApi SandboxDeleteOperator Delete /sandbox/operators/{operator_id} Operator を削除する
OperatorApi SandboxGetSignupToken Post /sandbox/operators/token/{email} サインアップトークンを取得する
OperatorApi SandboxInitializeOperator Post /sandbox/init Operator を初期化する
OrderApi SandboxShipOrder Post /sandbox/orders/ship Order を出荷済状態にする
StatsApi SandboxInsertAirStats Post /sandbox/stats/air/subscribers/{imsi} テスト用に Air の統計情報を登録する
StatsApi SandboxInsertBeamStats Post /sandbox/stats/beam/subscribers/{imsi} テスト用に Beam の統計情報を登録する
SubscriberApi SandboxCreateSubscriber Post /sandbox/subscribers/create Subscriber を作成する

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	CouponApi *CouponApiService

	OperatorApi *OperatorApiService

	OrderApi *OrderApiService

	StatsApi *StatsApiService

	SubscriberApi *SubscriberApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the SORACOM SANDBOX API API v20160218 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiSandboxCreateCouponRequest

type ApiSandboxCreateCouponRequest struct {
	ApiService *CouponApiService
	// contains filtered or unexported fields
}

func (ApiSandboxCreateCouponRequest) Execute

func (ApiSandboxCreateCouponRequest) SandboxCreateCouponRequest

func (r ApiSandboxCreateCouponRequest) SandboxCreateCouponRequest(sandboxCreateCouponRequest SandboxCreateCouponRequest) ApiSandboxCreateCouponRequest

request

type ApiSandboxCreateSubscriberRequest

type ApiSandboxCreateSubscriberRequest struct {
	ApiService *SubscriberApiService
	// contains filtered or unexported fields
}

func (ApiSandboxCreateSubscriberRequest) Execute

func (ApiSandboxCreateSubscriberRequest) SandboxCreateSubscriberRequest

func (r ApiSandboxCreateSubscriberRequest) SandboxCreateSubscriberRequest(sandboxCreateSubscriberRequest SandboxCreateSubscriberRequest) ApiSandboxCreateSubscriberRequest

Create request

type ApiSandboxDeleteOperatorRequest

type ApiSandboxDeleteOperatorRequest struct {
	ApiService *OperatorApiService
	// contains filtered or unexported fields
}

func (ApiSandboxDeleteOperatorRequest) Execute

type ApiSandboxGetSignupTokenRequest

type ApiSandboxGetSignupTokenRequest struct {
	ApiService *OperatorApiService
	// contains filtered or unexported fields
}

func (ApiSandboxGetSignupTokenRequest) Execute

func (ApiSandboxGetSignupTokenRequest) SandboxGetSignupTokenRequest

func (r ApiSandboxGetSignupTokenRequest) SandboxGetSignupTokenRequest(sandboxGetSignupTokenRequest SandboxGetSignupTokenRequest) ApiSandboxGetSignupTokenRequest

認証リクエスト

type ApiSandboxInitializeOperatorRequest

type ApiSandboxInitializeOperatorRequest struct {
	ApiService *OperatorApiService
	// contains filtered or unexported fields
}

func (ApiSandboxInitializeOperatorRequest) Execute

func (ApiSandboxInitializeOperatorRequest) SandboxInitRequest

request

type ApiSandboxInsertAirStatsRequest

type ApiSandboxInsertAirStatsRequest struct {
	ApiService *StatsApiService
	// contains filtered or unexported fields
}

func (ApiSandboxInsertAirStatsRequest) Execute

func (ApiSandboxInsertAirStatsRequest) SandboxInsertAirStatsRequest

func (r ApiSandboxInsertAirStatsRequest) SandboxInsertAirStatsRequest(sandboxInsertAirStatsRequest SandboxInsertAirStatsRequest) ApiSandboxInsertAirStatsRequest

ある時点のデータ通信量の統計情報

type ApiSandboxInsertBeamStatsRequest

type ApiSandboxInsertBeamStatsRequest struct {
	ApiService *StatsApiService
	// contains filtered or unexported fields
}

func (ApiSandboxInsertBeamStatsRequest) Execute

func (ApiSandboxInsertBeamStatsRequest) SandboxInsertBeamStatsRequest

func (r ApiSandboxInsertBeamStatsRequest) SandboxInsertBeamStatsRequest(sandboxInsertBeamStatsRequest SandboxInsertBeamStatsRequest) ApiSandboxInsertBeamStatsRequest

ある時点のリクエスト数の統計情報

type ApiSandboxShipOrderRequest

type ApiSandboxShipOrderRequest struct {
	ApiService *OrderApiService
	// contains filtered or unexported fields
}

func (ApiSandboxShipOrderRequest) Execute

func (ApiSandboxShipOrderRequest) SandboxShipOrderRequest

func (r ApiSandboxShipOrderRequest) SandboxShipOrderRequest(sandboxShipOrderRequest SandboxShipOrderRequest) ApiSandboxShipOrderRequest

Shipping request

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CouponApiService

type CouponApiService service

CouponApiService CouponApi service

func (*CouponApiService) SandboxCreateCoupon

func (a *CouponApiService) SandboxCreateCoupon(ctx context.Context) ApiSandboxCreateCouponRequest

SandboxCreateCoupon クーポンを作成する

クーポンをを新規作成します。

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSandboxCreateCouponRequest

func (*CouponApiService) SandboxCreateCouponExecute

Execute executes the request

@return SandboxCreateCouponResponse

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableSandboxAuthResponse

type NullableSandboxAuthResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSandboxAuthResponse

func NewNullableSandboxAuthResponse(val *SandboxAuthResponse) *NullableSandboxAuthResponse

func (NullableSandboxAuthResponse) Get

func (NullableSandboxAuthResponse) IsSet

func (NullableSandboxAuthResponse) MarshalJSON

func (v NullableSandboxAuthResponse) MarshalJSON() ([]byte, error)

func (*NullableSandboxAuthResponse) Set

func (*NullableSandboxAuthResponse) UnmarshalJSON

func (v *NullableSandboxAuthResponse) UnmarshalJSON(src []byte) error

func (*NullableSandboxAuthResponse) Unset

func (v *NullableSandboxAuthResponse) Unset()

type NullableSandboxBeamCounts

type NullableSandboxBeamCounts struct {
	// contains filtered or unexported fields
}

func NewNullableSandboxBeamCounts

func NewNullableSandboxBeamCounts(val *SandboxBeamCounts) *NullableSandboxBeamCounts

func (NullableSandboxBeamCounts) Get

func (NullableSandboxBeamCounts) IsSet

func (v NullableSandboxBeamCounts) IsSet() bool

func (NullableSandboxBeamCounts) MarshalJSON

func (v NullableSandboxBeamCounts) MarshalJSON() ([]byte, error)

func (*NullableSandboxBeamCounts) Set

func (*NullableSandboxBeamCounts) UnmarshalJSON

func (v *NullableSandboxBeamCounts) UnmarshalJSON(src []byte) error

func (*NullableSandboxBeamCounts) Unset

func (v *NullableSandboxBeamCounts) Unset()

type NullableSandboxCreateCouponRequest

type NullableSandboxCreateCouponRequest struct {
	// contains filtered or unexported fields
}

func (NullableSandboxCreateCouponRequest) Get

func (NullableSandboxCreateCouponRequest) IsSet

func (NullableSandboxCreateCouponRequest) MarshalJSON

func (v NullableSandboxCreateCouponRequest) MarshalJSON() ([]byte, error)

func (*NullableSandboxCreateCouponRequest) Set

func (*NullableSandboxCreateCouponRequest) UnmarshalJSON

func (v *NullableSandboxCreateCouponRequest) UnmarshalJSON(src []byte) error

func (*NullableSandboxCreateCouponRequest) Unset

type NullableSandboxCreateCouponResponse

type NullableSandboxCreateCouponResponse struct {
	// contains filtered or unexported fields
}

func (NullableSandboxCreateCouponResponse) Get

func (NullableSandboxCreateCouponResponse) IsSet

func (NullableSandboxCreateCouponResponse) MarshalJSON

func (v NullableSandboxCreateCouponResponse) MarshalJSON() ([]byte, error)

func (*NullableSandboxCreateCouponResponse) Set

func (*NullableSandboxCreateCouponResponse) UnmarshalJSON

func (v *NullableSandboxCreateCouponResponse) UnmarshalJSON(src []byte) error

func (*NullableSandboxCreateCouponResponse) Unset

type NullableSandboxCreateSubscriberRequest

type NullableSandboxCreateSubscriberRequest struct {
	// contains filtered or unexported fields
}

func (NullableSandboxCreateSubscriberRequest) Get

func (NullableSandboxCreateSubscriberRequest) IsSet

func (NullableSandboxCreateSubscriberRequest) MarshalJSON

func (v NullableSandboxCreateSubscriberRequest) MarshalJSON() ([]byte, error)

func (*NullableSandboxCreateSubscriberRequest) Set

func (*NullableSandboxCreateSubscriberRequest) UnmarshalJSON

func (v *NullableSandboxCreateSubscriberRequest) UnmarshalJSON(src []byte) error

func (*NullableSandboxCreateSubscriberRequest) Unset

type NullableSandboxCreateSubscriberResponse

type NullableSandboxCreateSubscriberResponse struct {
	// contains filtered or unexported fields
}

func (NullableSandboxCreateSubscriberResponse) Get

func (NullableSandboxCreateSubscriberResponse) IsSet

func (NullableSandboxCreateSubscriberResponse) MarshalJSON

func (v NullableSandboxCreateSubscriberResponse) MarshalJSON() ([]byte, error)

func (*NullableSandboxCreateSubscriberResponse) Set

func (*NullableSandboxCreateSubscriberResponse) UnmarshalJSON

func (v *NullableSandboxCreateSubscriberResponse) UnmarshalJSON(src []byte) error

func (*NullableSandboxCreateSubscriberResponse) Unset

type NullableSandboxDataTrafficStats

type NullableSandboxDataTrafficStats struct {
	// contains filtered or unexported fields
}

func (NullableSandboxDataTrafficStats) Get

func (NullableSandboxDataTrafficStats) IsSet

func (NullableSandboxDataTrafficStats) MarshalJSON

func (v NullableSandboxDataTrafficStats) MarshalJSON() ([]byte, error)

func (*NullableSandboxDataTrafficStats) Set

func (*NullableSandboxDataTrafficStats) UnmarshalJSON

func (v *NullableSandboxDataTrafficStats) UnmarshalJSON(src []byte) error

func (*NullableSandboxDataTrafficStats) Unset

type NullableSandboxGetSignupTokenRequest

type NullableSandboxGetSignupTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableSandboxGetSignupTokenRequest) Get

func (NullableSandboxGetSignupTokenRequest) IsSet

func (NullableSandboxGetSignupTokenRequest) MarshalJSON

func (v NullableSandboxGetSignupTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableSandboxGetSignupTokenRequest) Set

func (*NullableSandboxGetSignupTokenRequest) UnmarshalJSON

func (v *NullableSandboxGetSignupTokenRequest) UnmarshalJSON(src []byte) error

func (*NullableSandboxGetSignupTokenRequest) Unset

type NullableSandboxGetSignupTokenResponse

type NullableSandboxGetSignupTokenResponse struct {
	// contains filtered or unexported fields
}

func (NullableSandboxGetSignupTokenResponse) Get

func (NullableSandboxGetSignupTokenResponse) IsSet

func (NullableSandboxGetSignupTokenResponse) MarshalJSON

func (v NullableSandboxGetSignupTokenResponse) MarshalJSON() ([]byte, error)

func (*NullableSandboxGetSignupTokenResponse) Set

func (*NullableSandboxGetSignupTokenResponse) UnmarshalJSON

func (v *NullableSandboxGetSignupTokenResponse) UnmarshalJSON(src []byte) error

func (*NullableSandboxGetSignupTokenResponse) Unset

type NullableSandboxInitRequest

type NullableSandboxInitRequest struct {
	// contains filtered or unexported fields
}

func NewNullableSandboxInitRequest

func NewNullableSandboxInitRequest(val *SandboxInitRequest) *NullableSandboxInitRequest

func (NullableSandboxInitRequest) Get

func (NullableSandboxInitRequest) IsSet

func (v NullableSandboxInitRequest) IsSet() bool

func (NullableSandboxInitRequest) MarshalJSON

func (v NullableSandboxInitRequest) MarshalJSON() ([]byte, error)

func (*NullableSandboxInitRequest) Set

func (*NullableSandboxInitRequest) UnmarshalJSON

func (v *NullableSandboxInitRequest) UnmarshalJSON(src []byte) error

func (*NullableSandboxInitRequest) Unset

func (v *NullableSandboxInitRequest) Unset()

type NullableSandboxInsertAirStatsRequest

type NullableSandboxInsertAirStatsRequest struct {
	// contains filtered or unexported fields
}

func (NullableSandboxInsertAirStatsRequest) Get

func (NullableSandboxInsertAirStatsRequest) IsSet

func (NullableSandboxInsertAirStatsRequest) MarshalJSON

func (v NullableSandboxInsertAirStatsRequest) MarshalJSON() ([]byte, error)

func (*NullableSandboxInsertAirStatsRequest) Set

func (*NullableSandboxInsertAirStatsRequest) UnmarshalJSON

func (v *NullableSandboxInsertAirStatsRequest) UnmarshalJSON(src []byte) error

func (*NullableSandboxInsertAirStatsRequest) Unset

type NullableSandboxInsertAirStatsRequestDataTrafficStatsMap

type NullableSandboxInsertAirStatsRequestDataTrafficStatsMap struct {
	// contains filtered or unexported fields
}

func (NullableSandboxInsertAirStatsRequestDataTrafficStatsMap) Get

func (NullableSandboxInsertAirStatsRequestDataTrafficStatsMap) IsSet

func (NullableSandboxInsertAirStatsRequestDataTrafficStatsMap) MarshalJSON

func (*NullableSandboxInsertAirStatsRequestDataTrafficStatsMap) Set

func (*NullableSandboxInsertAirStatsRequestDataTrafficStatsMap) UnmarshalJSON

func (*NullableSandboxInsertAirStatsRequestDataTrafficStatsMap) Unset

type NullableSandboxInsertBeamStatsRequest

type NullableSandboxInsertBeamStatsRequest struct {
	// contains filtered or unexported fields
}

func (NullableSandboxInsertBeamStatsRequest) Get

func (NullableSandboxInsertBeamStatsRequest) IsSet

func (NullableSandboxInsertBeamStatsRequest) MarshalJSON

func (v NullableSandboxInsertBeamStatsRequest) MarshalJSON() ([]byte, error)

func (*NullableSandboxInsertBeamStatsRequest) Set

func (*NullableSandboxInsertBeamStatsRequest) UnmarshalJSON

func (v *NullableSandboxInsertBeamStatsRequest) UnmarshalJSON(src []byte) error

func (*NullableSandboxInsertBeamStatsRequest) Unset

type NullableSandboxInsertBeamStatsRequestBeamStatsMap

type NullableSandboxInsertBeamStatsRequestBeamStatsMap struct {
	// contains filtered or unexported fields
}

func (NullableSandboxInsertBeamStatsRequestBeamStatsMap) Get

func (NullableSandboxInsertBeamStatsRequestBeamStatsMap) IsSet

func (NullableSandboxInsertBeamStatsRequestBeamStatsMap) MarshalJSON

func (*NullableSandboxInsertBeamStatsRequestBeamStatsMap) Set

func (*NullableSandboxInsertBeamStatsRequestBeamStatsMap) UnmarshalJSON

func (*NullableSandboxInsertBeamStatsRequestBeamStatsMap) Unset

type NullableSandboxShipOrderRequest

type NullableSandboxShipOrderRequest struct {
	// contains filtered or unexported fields
}

func (NullableSandboxShipOrderRequest) Get

func (NullableSandboxShipOrderRequest) IsSet

func (NullableSandboxShipOrderRequest) MarshalJSON

func (v NullableSandboxShipOrderRequest) MarshalJSON() ([]byte, error)

func (*NullableSandboxShipOrderRequest) Set

func (*NullableSandboxShipOrderRequest) UnmarshalJSON

func (v *NullableSandboxShipOrderRequest) UnmarshalJSON(src []byte) error

func (*NullableSandboxShipOrderRequest) Unset

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type OperatorApiService

type OperatorApiService service

OperatorApiService OperatorApi service

func (*OperatorApiService) SandboxDeleteOperator

func (a *OperatorApiService) SandboxDeleteOperator(ctx context.Context, operatorId string) ApiSandboxDeleteOperatorRequest

SandboxDeleteOperator Operator を削除する

Operator を削除します。

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param operatorId operator_id
@return ApiSandboxDeleteOperatorRequest

func (*OperatorApiService) SandboxDeleteOperatorExecute

func (a *OperatorApiService) SandboxDeleteOperatorExecute(r ApiSandboxDeleteOperatorRequest) (*http.Response, error)

Execute executes the request

func (*OperatorApiService) SandboxGetSignupToken

func (a *OperatorApiService) SandboxGetSignupToken(ctx context.Context, email string) ApiSandboxGetSignupTokenRequest

SandboxGetSignupToken サインアップトークンを取得する

登録確認用のサインアップトークンを取得します。API の引数に本番環境の SAM ユーザーの AuthKeyId と AuthKey を指定してください。

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param email email
@return ApiSandboxGetSignupTokenRequest

func (*OperatorApiService) SandboxGetSignupTokenExecute

Execute executes the request

@return SandboxGetSignupTokenResponse

func (*OperatorApiService) SandboxInitializeOperator

func (a *OperatorApiService) SandboxInitializeOperator(ctx context.Context) ApiSandboxInitializeOperatorRequest

SandboxInitializeOperator Operator を初期化する

Operator のサインアップ、認証および課金情報の登録を行います。サンドボックス環境に新しく作成するオペレーターの email と password、本番環境の SAM ユーザーの authKeyId と authKey をリクエストに含めてください。オペレーターの作成に成功した場合、API キーと API トークンが返されるので、以降の認証が必要なリクエスト時にはこの API キーと API トークンをヘッダーに付与してリクエストを行ってください。

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSandboxInitializeOperatorRequest

func (*OperatorApiService) SandboxInitializeOperatorExecute

Execute executes the request

@return SandboxAuthResponse

type OrderApiService

type OrderApiService service

OrderApiService OrderApi service

func (*OrderApiService) SandboxShipOrder

func (a *OrderApiService) SandboxShipOrder(ctx context.Context) ApiSandboxShipOrderRequest

SandboxShipOrder Order を出荷済状態にする

指定された Order を出荷済み状態に変更し、Order に含まれる Subscriber を準備完了状態にします。

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSandboxShipOrderRequest

func (*OrderApiService) SandboxShipOrderExecute

func (a *OrderApiService) SandboxShipOrderExecute(r ApiSandboxShipOrderRequest) (*http.Response, error)

Execute executes the request

type SandboxAuthResponse

type SandboxAuthResponse struct {
	ApiKey     *string `json:"apiKey,omitempty"`
	OperatorId *string `json:"operatorId,omitempty"`
	Token      *string `json:"token,omitempty"`
	UserName   *string `json:"userName,omitempty"`
}

SandboxAuthResponse struct for SandboxAuthResponse

func NewSandboxAuthResponse

func NewSandboxAuthResponse() *SandboxAuthResponse

NewSandboxAuthResponse instantiates a new SandboxAuthResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxAuthResponseWithDefaults

func NewSandboxAuthResponseWithDefaults() *SandboxAuthResponse

NewSandboxAuthResponseWithDefaults instantiates a new SandboxAuthResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxAuthResponse) GetApiKey

func (o *SandboxAuthResponse) GetApiKey() string

GetApiKey returns the ApiKey field value if set, zero value otherwise.

func (*SandboxAuthResponse) GetApiKeyOk

func (o *SandboxAuthResponse) GetApiKeyOk() (*string, bool)

GetApiKeyOk returns a tuple with the ApiKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxAuthResponse) GetOperatorId

func (o *SandboxAuthResponse) GetOperatorId() string

GetOperatorId returns the OperatorId field value if set, zero value otherwise.

func (*SandboxAuthResponse) GetOperatorIdOk

func (o *SandboxAuthResponse) GetOperatorIdOk() (*string, bool)

GetOperatorIdOk returns a tuple with the OperatorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxAuthResponse) GetToken

func (o *SandboxAuthResponse) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*SandboxAuthResponse) GetTokenOk

func (o *SandboxAuthResponse) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxAuthResponse) GetUserName

func (o *SandboxAuthResponse) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*SandboxAuthResponse) GetUserNameOk

func (o *SandboxAuthResponse) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxAuthResponse) HasApiKey

func (o *SandboxAuthResponse) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*SandboxAuthResponse) HasOperatorId

func (o *SandboxAuthResponse) HasOperatorId() bool

HasOperatorId returns a boolean if a field has been set.

func (*SandboxAuthResponse) HasToken

func (o *SandboxAuthResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*SandboxAuthResponse) HasUserName

func (o *SandboxAuthResponse) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (SandboxAuthResponse) MarshalJSON

func (o SandboxAuthResponse) MarshalJSON() ([]byte, error)

func (*SandboxAuthResponse) SetApiKey

func (o *SandboxAuthResponse) SetApiKey(v string)

SetApiKey gets a reference to the given string and assigns it to the ApiKey field.

func (*SandboxAuthResponse) SetOperatorId

func (o *SandboxAuthResponse) SetOperatorId(v string)

SetOperatorId gets a reference to the given string and assigns it to the OperatorId field.

func (*SandboxAuthResponse) SetToken

func (o *SandboxAuthResponse) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*SandboxAuthResponse) SetUserName

func (o *SandboxAuthResponse) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

type SandboxBeamCounts

type SandboxBeamCounts struct {
	Count *int64 `json:"count,omitempty"`
}

SandboxBeamCounts struct for SandboxBeamCounts

func NewSandboxBeamCounts

func NewSandboxBeamCounts() *SandboxBeamCounts

NewSandboxBeamCounts instantiates a new SandboxBeamCounts object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxBeamCountsWithDefaults

func NewSandboxBeamCountsWithDefaults() *SandboxBeamCounts

NewSandboxBeamCountsWithDefaults instantiates a new SandboxBeamCounts object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxBeamCounts) GetCount

func (o *SandboxBeamCounts) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*SandboxBeamCounts) GetCountOk

func (o *SandboxBeamCounts) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxBeamCounts) HasCount

func (o *SandboxBeamCounts) HasCount() bool

HasCount returns a boolean if a field has been set.

func (SandboxBeamCounts) MarshalJSON

func (o SandboxBeamCounts) MarshalJSON() ([]byte, error)

func (*SandboxBeamCounts) SetCount

func (o *SandboxBeamCounts) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

type SandboxCreateCouponRequest

type SandboxCreateCouponRequest struct {
	Amount                 *int32  `json:"amount,omitempty"`
	ApplicableBillItemName *string `json:"applicableBillItemName,omitempty"`
	ExpiryYearMonth        *string `json:"expiryYearMonth,omitempty"`
}

SandboxCreateCouponRequest struct for SandboxCreateCouponRequest

func NewSandboxCreateCouponRequest

func NewSandboxCreateCouponRequest() *SandboxCreateCouponRequest

NewSandboxCreateCouponRequest instantiates a new SandboxCreateCouponRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxCreateCouponRequestWithDefaults

func NewSandboxCreateCouponRequestWithDefaults() *SandboxCreateCouponRequest

NewSandboxCreateCouponRequestWithDefaults instantiates a new SandboxCreateCouponRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxCreateCouponRequest) GetAmount

func (o *SandboxCreateCouponRequest) GetAmount() int32

GetAmount returns the Amount field value if set, zero value otherwise.

func (*SandboxCreateCouponRequest) GetAmountOk

func (o *SandboxCreateCouponRequest) GetAmountOk() (*int32, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateCouponRequest) GetApplicableBillItemName

func (o *SandboxCreateCouponRequest) GetApplicableBillItemName() string

GetApplicableBillItemName returns the ApplicableBillItemName field value if set, zero value otherwise.

func (*SandboxCreateCouponRequest) GetApplicableBillItemNameOk

func (o *SandboxCreateCouponRequest) GetApplicableBillItemNameOk() (*string, bool)

GetApplicableBillItemNameOk returns a tuple with the ApplicableBillItemName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateCouponRequest) GetExpiryYearMonth

func (o *SandboxCreateCouponRequest) GetExpiryYearMonth() string

GetExpiryYearMonth returns the ExpiryYearMonth field value if set, zero value otherwise.

func (*SandboxCreateCouponRequest) GetExpiryYearMonthOk

func (o *SandboxCreateCouponRequest) GetExpiryYearMonthOk() (*string, bool)

GetExpiryYearMonthOk returns a tuple with the ExpiryYearMonth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateCouponRequest) HasAmount

func (o *SandboxCreateCouponRequest) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*SandboxCreateCouponRequest) HasApplicableBillItemName

func (o *SandboxCreateCouponRequest) HasApplicableBillItemName() bool

HasApplicableBillItemName returns a boolean if a field has been set.

func (*SandboxCreateCouponRequest) HasExpiryYearMonth

func (o *SandboxCreateCouponRequest) HasExpiryYearMonth() bool

HasExpiryYearMonth returns a boolean if a field has been set.

func (SandboxCreateCouponRequest) MarshalJSON

func (o SandboxCreateCouponRequest) MarshalJSON() ([]byte, error)

func (*SandboxCreateCouponRequest) SetAmount

func (o *SandboxCreateCouponRequest) SetAmount(v int32)

SetAmount gets a reference to the given int32 and assigns it to the Amount field.

func (*SandboxCreateCouponRequest) SetApplicableBillItemName

func (o *SandboxCreateCouponRequest) SetApplicableBillItemName(v string)

SetApplicableBillItemName gets a reference to the given string and assigns it to the ApplicableBillItemName field.

func (*SandboxCreateCouponRequest) SetExpiryYearMonth

func (o *SandboxCreateCouponRequest) SetExpiryYearMonth(v string)

SetExpiryYearMonth gets a reference to the given string and assigns it to the ExpiryYearMonth field.

type SandboxCreateCouponResponse

type SandboxCreateCouponResponse struct {
	// クーポン額
	Amount *float64 `json:"amount,omitempty"`
	// 残高
	Balance *float64 `json:"balance,omitempty"`
	// 対象課金アイテム
	BillItemName *string `json:"billItemName,omitempty"`
	// クーポンコード
	CouponCode *string `json:"couponCode,omitempty"`
	// 有効期限
	ExpiryYearMonth *string `json:"expiryYearMonth,omitempty"`
}

SandboxCreateCouponResponse struct for SandboxCreateCouponResponse

func NewSandboxCreateCouponResponse

func NewSandboxCreateCouponResponse() *SandboxCreateCouponResponse

NewSandboxCreateCouponResponse instantiates a new SandboxCreateCouponResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxCreateCouponResponseWithDefaults

func NewSandboxCreateCouponResponseWithDefaults() *SandboxCreateCouponResponse

NewSandboxCreateCouponResponseWithDefaults instantiates a new SandboxCreateCouponResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxCreateCouponResponse) GetAmount

func (o *SandboxCreateCouponResponse) GetAmount() float64

GetAmount returns the Amount field value if set, zero value otherwise.

func (*SandboxCreateCouponResponse) GetAmountOk

func (o *SandboxCreateCouponResponse) GetAmountOk() (*float64, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateCouponResponse) GetBalance

func (o *SandboxCreateCouponResponse) GetBalance() float64

GetBalance returns the Balance field value if set, zero value otherwise.

func (*SandboxCreateCouponResponse) GetBalanceOk

func (o *SandboxCreateCouponResponse) GetBalanceOk() (*float64, bool)

GetBalanceOk returns a tuple with the Balance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateCouponResponse) GetBillItemName

func (o *SandboxCreateCouponResponse) GetBillItemName() string

GetBillItemName returns the BillItemName field value if set, zero value otherwise.

func (*SandboxCreateCouponResponse) GetBillItemNameOk

func (o *SandboxCreateCouponResponse) GetBillItemNameOk() (*string, bool)

GetBillItemNameOk returns a tuple with the BillItemName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateCouponResponse) GetCouponCode

func (o *SandboxCreateCouponResponse) GetCouponCode() string

GetCouponCode returns the CouponCode field value if set, zero value otherwise.

func (*SandboxCreateCouponResponse) GetCouponCodeOk

func (o *SandboxCreateCouponResponse) GetCouponCodeOk() (*string, bool)

GetCouponCodeOk returns a tuple with the CouponCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateCouponResponse) GetExpiryYearMonth

func (o *SandboxCreateCouponResponse) GetExpiryYearMonth() string

GetExpiryYearMonth returns the ExpiryYearMonth field value if set, zero value otherwise.

func (*SandboxCreateCouponResponse) GetExpiryYearMonthOk

func (o *SandboxCreateCouponResponse) GetExpiryYearMonthOk() (*string, bool)

GetExpiryYearMonthOk returns a tuple with the ExpiryYearMonth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateCouponResponse) HasAmount

func (o *SandboxCreateCouponResponse) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*SandboxCreateCouponResponse) HasBalance

func (o *SandboxCreateCouponResponse) HasBalance() bool

HasBalance returns a boolean if a field has been set.

func (*SandboxCreateCouponResponse) HasBillItemName

func (o *SandboxCreateCouponResponse) HasBillItemName() bool

HasBillItemName returns a boolean if a field has been set.

func (*SandboxCreateCouponResponse) HasCouponCode

func (o *SandboxCreateCouponResponse) HasCouponCode() bool

HasCouponCode returns a boolean if a field has been set.

func (*SandboxCreateCouponResponse) HasExpiryYearMonth

func (o *SandboxCreateCouponResponse) HasExpiryYearMonth() bool

HasExpiryYearMonth returns a boolean if a field has been set.

func (SandboxCreateCouponResponse) MarshalJSON

func (o SandboxCreateCouponResponse) MarshalJSON() ([]byte, error)

func (*SandboxCreateCouponResponse) SetAmount

func (o *SandboxCreateCouponResponse) SetAmount(v float64)

SetAmount gets a reference to the given float64 and assigns it to the Amount field.

func (*SandboxCreateCouponResponse) SetBalance

func (o *SandboxCreateCouponResponse) SetBalance(v float64)

SetBalance gets a reference to the given float64 and assigns it to the Balance field.

func (*SandboxCreateCouponResponse) SetBillItemName

func (o *SandboxCreateCouponResponse) SetBillItemName(v string)

SetBillItemName gets a reference to the given string and assigns it to the BillItemName field.

func (*SandboxCreateCouponResponse) SetCouponCode

func (o *SandboxCreateCouponResponse) SetCouponCode(v string)

SetCouponCode gets a reference to the given string and assigns it to the CouponCode field.

func (*SandboxCreateCouponResponse) SetExpiryYearMonth

func (o *SandboxCreateCouponResponse) SetExpiryYearMonth(v string)

SetExpiryYearMonth gets a reference to the given string and assigns it to the ExpiryYearMonth field.

type SandboxCreateSubscriberRequest

type SandboxCreateSubscriberRequest struct {
	// バンドル。必要に応じて、以下のいずれかを指定します。
	Bundles []string `json:"bundles,omitempty"`
	// サブスクリプション。以下のいずれかを指定します。
	Subscription *string `json:"subscription,omitempty"`
}

SandboxCreateSubscriberRequest struct for SandboxCreateSubscriberRequest

func NewSandboxCreateSubscriberRequest

func NewSandboxCreateSubscriberRequest() *SandboxCreateSubscriberRequest

NewSandboxCreateSubscriberRequest instantiates a new SandboxCreateSubscriberRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxCreateSubscriberRequestWithDefaults

func NewSandboxCreateSubscriberRequestWithDefaults() *SandboxCreateSubscriberRequest

NewSandboxCreateSubscriberRequestWithDefaults instantiates a new SandboxCreateSubscriberRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxCreateSubscriberRequest) GetBundles

func (o *SandboxCreateSubscriberRequest) GetBundles() []string

GetBundles returns the Bundles field value if set, zero value otherwise.

func (*SandboxCreateSubscriberRequest) GetBundlesOk

func (o *SandboxCreateSubscriberRequest) GetBundlesOk() ([]string, bool)

GetBundlesOk returns a tuple with the Bundles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberRequest) GetSubscription

func (o *SandboxCreateSubscriberRequest) GetSubscription() string

GetSubscription returns the Subscription field value if set, zero value otherwise.

func (*SandboxCreateSubscriberRequest) GetSubscriptionOk

func (o *SandboxCreateSubscriberRequest) GetSubscriptionOk() (*string, bool)

GetSubscriptionOk returns a tuple with the Subscription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberRequest) HasBundles

func (o *SandboxCreateSubscriberRequest) HasBundles() bool

HasBundles returns a boolean if a field has been set.

func (*SandboxCreateSubscriberRequest) HasSubscription

func (o *SandboxCreateSubscriberRequest) HasSubscription() bool

HasSubscription returns a boolean if a field has been set.

func (SandboxCreateSubscriberRequest) MarshalJSON

func (o SandboxCreateSubscriberRequest) MarshalJSON() ([]byte, error)

func (*SandboxCreateSubscriberRequest) SetBundles

func (o *SandboxCreateSubscriberRequest) SetBundles(v []string)

SetBundles gets a reference to the given []string and assigns it to the Bundles field.

func (*SandboxCreateSubscriberRequest) SetSubscription

func (o *SandboxCreateSubscriberRequest) SetSubscription(v string)

SetSubscription gets a reference to the given string and assigns it to the Subscription field.

type SandboxCreateSubscriberResponse

type SandboxCreateSubscriberResponse struct {
	Apn                *string            `json:"apn,omitempty"`
	CreatedAt          *int64             `json:"createdAt,omitempty"`
	ExpiryTime         *int64             `json:"expiryTime,omitempty"`
	Imsi               *string            `json:"imsi,omitempty"`
	IpAddress          *string            `json:"ipAddress,omitempty"`
	LastModifiedAt     *int64             `json:"lastModifiedAt,omitempty"`
	Msisdn             *string            `json:"msisdn,omitempty"`
	OperatorId         *string            `json:"operatorId,omitempty"`
	RegistrationSecret *string            `json:"registrationSecret,omitempty"`
	SerialNumber       *string            `json:"serialNumber,omitempty"`
	SpeedClass         *string            `json:"speedClass,omitempty"`
	Status             *string            `json:"status,omitempty"`
	Subscription       *string            `json:"subscription,omitempty"`
	Tags               *map[string]string `json:"tags,omitempty"`
}

SandboxCreateSubscriberResponse struct for SandboxCreateSubscriberResponse

func NewSandboxCreateSubscriberResponse

func NewSandboxCreateSubscriberResponse() *SandboxCreateSubscriberResponse

NewSandboxCreateSubscriberResponse instantiates a new SandboxCreateSubscriberResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxCreateSubscriberResponseWithDefaults

func NewSandboxCreateSubscriberResponseWithDefaults() *SandboxCreateSubscriberResponse

NewSandboxCreateSubscriberResponseWithDefaults instantiates a new SandboxCreateSubscriberResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxCreateSubscriberResponse) GetApn

GetApn returns the Apn field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetApnOk

func (o *SandboxCreateSubscriberResponse) GetApnOk() (*string, bool)

GetApnOk returns a tuple with the Apn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetCreatedAt

func (o *SandboxCreateSubscriberResponse) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetCreatedAtOk

func (o *SandboxCreateSubscriberResponse) GetCreatedAtOk() (*int64, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetExpiryTime

func (o *SandboxCreateSubscriberResponse) GetExpiryTime() int64

GetExpiryTime returns the ExpiryTime field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetExpiryTimeOk

func (o *SandboxCreateSubscriberResponse) GetExpiryTimeOk() (*int64, bool)

GetExpiryTimeOk returns a tuple with the ExpiryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetImsi

GetImsi returns the Imsi field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetImsiOk

func (o *SandboxCreateSubscriberResponse) GetImsiOk() (*string, bool)

GetImsiOk returns a tuple with the Imsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetIpAddress

func (o *SandboxCreateSubscriberResponse) GetIpAddress() string

GetIpAddress returns the IpAddress field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetIpAddressOk

func (o *SandboxCreateSubscriberResponse) GetIpAddressOk() (*string, bool)

GetIpAddressOk returns a tuple with the IpAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetLastModifiedAt

func (o *SandboxCreateSubscriberResponse) GetLastModifiedAt() int64

GetLastModifiedAt returns the LastModifiedAt field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetLastModifiedAtOk

func (o *SandboxCreateSubscriberResponse) GetLastModifiedAtOk() (*int64, bool)

GetLastModifiedAtOk returns a tuple with the LastModifiedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetMsisdn

func (o *SandboxCreateSubscriberResponse) GetMsisdn() string

GetMsisdn returns the Msisdn field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetMsisdnOk

func (o *SandboxCreateSubscriberResponse) GetMsisdnOk() (*string, bool)

GetMsisdnOk returns a tuple with the Msisdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetOperatorId

func (o *SandboxCreateSubscriberResponse) GetOperatorId() string

GetOperatorId returns the OperatorId field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetOperatorIdOk

func (o *SandboxCreateSubscriberResponse) GetOperatorIdOk() (*string, bool)

GetOperatorIdOk returns a tuple with the OperatorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetRegistrationSecret

func (o *SandboxCreateSubscriberResponse) GetRegistrationSecret() string

GetRegistrationSecret returns the RegistrationSecret field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetRegistrationSecretOk

func (o *SandboxCreateSubscriberResponse) GetRegistrationSecretOk() (*string, bool)

GetRegistrationSecretOk returns a tuple with the RegistrationSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetSerialNumber

func (o *SandboxCreateSubscriberResponse) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetSerialNumberOk

func (o *SandboxCreateSubscriberResponse) GetSerialNumberOk() (*string, bool)

GetSerialNumberOk returns a tuple with the SerialNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetSpeedClass

func (o *SandboxCreateSubscriberResponse) GetSpeedClass() string

GetSpeedClass returns the SpeedClass field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetSpeedClassOk

func (o *SandboxCreateSubscriberResponse) GetSpeedClassOk() (*string, bool)

GetSpeedClassOk returns a tuple with the SpeedClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetStatus

func (o *SandboxCreateSubscriberResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetStatusOk

func (o *SandboxCreateSubscriberResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetSubscription

func (o *SandboxCreateSubscriberResponse) GetSubscription() string

GetSubscription returns the Subscription field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetSubscriptionOk

func (o *SandboxCreateSubscriberResponse) GetSubscriptionOk() (*string, bool)

GetSubscriptionOk returns a tuple with the Subscription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*SandboxCreateSubscriberResponse) GetTagsOk

func (o *SandboxCreateSubscriberResponse) GetTagsOk() (*map[string]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxCreateSubscriberResponse) HasApn

HasApn returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasCreatedAt

func (o *SandboxCreateSubscriberResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasExpiryTime

func (o *SandboxCreateSubscriberResponse) HasExpiryTime() bool

HasExpiryTime returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasImsi

HasImsi returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasIpAddress

func (o *SandboxCreateSubscriberResponse) HasIpAddress() bool

HasIpAddress returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasLastModifiedAt

func (o *SandboxCreateSubscriberResponse) HasLastModifiedAt() bool

HasLastModifiedAt returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasMsisdn

func (o *SandboxCreateSubscriberResponse) HasMsisdn() bool

HasMsisdn returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasOperatorId

func (o *SandboxCreateSubscriberResponse) HasOperatorId() bool

HasOperatorId returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasRegistrationSecret

func (o *SandboxCreateSubscriberResponse) HasRegistrationSecret() bool

HasRegistrationSecret returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasSerialNumber

func (o *SandboxCreateSubscriberResponse) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasSpeedClass

func (o *SandboxCreateSubscriberResponse) HasSpeedClass() bool

HasSpeedClass returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasStatus

func (o *SandboxCreateSubscriberResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasSubscription

func (o *SandboxCreateSubscriberResponse) HasSubscription() bool

HasSubscription returns a boolean if a field has been set.

func (*SandboxCreateSubscriberResponse) HasTags

HasTags returns a boolean if a field has been set.

func (SandboxCreateSubscriberResponse) MarshalJSON

func (o SandboxCreateSubscriberResponse) MarshalJSON() ([]byte, error)

func (*SandboxCreateSubscriberResponse) SetApn

SetApn gets a reference to the given string and assigns it to the Apn field.

func (*SandboxCreateSubscriberResponse) SetCreatedAt

func (o *SandboxCreateSubscriberResponse) SetCreatedAt(v int64)

SetCreatedAt gets a reference to the given int64 and assigns it to the CreatedAt field.

func (*SandboxCreateSubscriberResponse) SetExpiryTime

func (o *SandboxCreateSubscriberResponse) SetExpiryTime(v int64)

SetExpiryTime gets a reference to the given int64 and assigns it to the ExpiryTime field.

func (*SandboxCreateSubscriberResponse) SetImsi

SetImsi gets a reference to the given string and assigns it to the Imsi field.

func (*SandboxCreateSubscriberResponse) SetIpAddress

func (o *SandboxCreateSubscriberResponse) SetIpAddress(v string)

SetIpAddress gets a reference to the given string and assigns it to the IpAddress field.

func (*SandboxCreateSubscriberResponse) SetLastModifiedAt

func (o *SandboxCreateSubscriberResponse) SetLastModifiedAt(v int64)

SetLastModifiedAt gets a reference to the given int64 and assigns it to the LastModifiedAt field.

func (*SandboxCreateSubscriberResponse) SetMsisdn

func (o *SandboxCreateSubscriberResponse) SetMsisdn(v string)

SetMsisdn gets a reference to the given string and assigns it to the Msisdn field.

func (*SandboxCreateSubscriberResponse) SetOperatorId

func (o *SandboxCreateSubscriberResponse) SetOperatorId(v string)

SetOperatorId gets a reference to the given string and assigns it to the OperatorId field.

func (*SandboxCreateSubscriberResponse) SetRegistrationSecret

func (o *SandboxCreateSubscriberResponse) SetRegistrationSecret(v string)

SetRegistrationSecret gets a reference to the given string and assigns it to the RegistrationSecret field.

func (*SandboxCreateSubscriberResponse) SetSerialNumber

func (o *SandboxCreateSubscriberResponse) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*SandboxCreateSubscriberResponse) SetSpeedClass

func (o *SandboxCreateSubscriberResponse) SetSpeedClass(v string)

SetSpeedClass gets a reference to the given string and assigns it to the SpeedClass field.

func (*SandboxCreateSubscriberResponse) SetStatus

func (o *SandboxCreateSubscriberResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*SandboxCreateSubscriberResponse) SetSubscription

func (o *SandboxCreateSubscriberResponse) SetSubscription(v string)

SetSubscription gets a reference to the given string and assigns it to the Subscription field.

func (*SandboxCreateSubscriberResponse) SetTags

func (o *SandboxCreateSubscriberResponse) SetTags(v map[string]string)

SetTags gets a reference to the given map[string]string and assigns it to the Tags field.

type SandboxDataTrafficStats

type SandboxDataTrafficStats struct {
	DownloadByteSizeTotal   *int64 `json:"downloadByteSizeTotal,omitempty"`
	DownloadPacketSizeTotal *int64 `json:"downloadPacketSizeTotal,omitempty"`
	UploadByteSizeTotal     *int64 `json:"uploadByteSizeTotal,omitempty"`
	UploadPacketSizeTotal   *int64 `json:"uploadPacketSizeTotal,omitempty"`
}

SandboxDataTrafficStats struct for SandboxDataTrafficStats

func NewSandboxDataTrafficStats

func NewSandboxDataTrafficStats() *SandboxDataTrafficStats

NewSandboxDataTrafficStats instantiates a new SandboxDataTrafficStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxDataTrafficStatsWithDefaults

func NewSandboxDataTrafficStatsWithDefaults() *SandboxDataTrafficStats

NewSandboxDataTrafficStatsWithDefaults instantiates a new SandboxDataTrafficStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxDataTrafficStats) GetDownloadByteSizeTotal

func (o *SandboxDataTrafficStats) GetDownloadByteSizeTotal() int64

GetDownloadByteSizeTotal returns the DownloadByteSizeTotal field value if set, zero value otherwise.

func (*SandboxDataTrafficStats) GetDownloadByteSizeTotalOk

func (o *SandboxDataTrafficStats) GetDownloadByteSizeTotalOk() (*int64, bool)

GetDownloadByteSizeTotalOk returns a tuple with the DownloadByteSizeTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxDataTrafficStats) GetDownloadPacketSizeTotal

func (o *SandboxDataTrafficStats) GetDownloadPacketSizeTotal() int64

GetDownloadPacketSizeTotal returns the DownloadPacketSizeTotal field value if set, zero value otherwise.

func (*SandboxDataTrafficStats) GetDownloadPacketSizeTotalOk

func (o *SandboxDataTrafficStats) GetDownloadPacketSizeTotalOk() (*int64, bool)

GetDownloadPacketSizeTotalOk returns a tuple with the DownloadPacketSizeTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxDataTrafficStats) GetUploadByteSizeTotal

func (o *SandboxDataTrafficStats) GetUploadByteSizeTotal() int64

GetUploadByteSizeTotal returns the UploadByteSizeTotal field value if set, zero value otherwise.

func (*SandboxDataTrafficStats) GetUploadByteSizeTotalOk

func (o *SandboxDataTrafficStats) GetUploadByteSizeTotalOk() (*int64, bool)

GetUploadByteSizeTotalOk returns a tuple with the UploadByteSizeTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxDataTrafficStats) GetUploadPacketSizeTotal

func (o *SandboxDataTrafficStats) GetUploadPacketSizeTotal() int64

GetUploadPacketSizeTotal returns the UploadPacketSizeTotal field value if set, zero value otherwise.

func (*SandboxDataTrafficStats) GetUploadPacketSizeTotalOk

func (o *SandboxDataTrafficStats) GetUploadPacketSizeTotalOk() (*int64, bool)

GetUploadPacketSizeTotalOk returns a tuple with the UploadPacketSizeTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxDataTrafficStats) HasDownloadByteSizeTotal

func (o *SandboxDataTrafficStats) HasDownloadByteSizeTotal() bool

HasDownloadByteSizeTotal returns a boolean if a field has been set.

func (*SandboxDataTrafficStats) HasDownloadPacketSizeTotal

func (o *SandboxDataTrafficStats) HasDownloadPacketSizeTotal() bool

HasDownloadPacketSizeTotal returns a boolean if a field has been set.

func (*SandboxDataTrafficStats) HasUploadByteSizeTotal

func (o *SandboxDataTrafficStats) HasUploadByteSizeTotal() bool

HasUploadByteSizeTotal returns a boolean if a field has been set.

func (*SandboxDataTrafficStats) HasUploadPacketSizeTotal

func (o *SandboxDataTrafficStats) HasUploadPacketSizeTotal() bool

HasUploadPacketSizeTotal returns a boolean if a field has been set.

func (SandboxDataTrafficStats) MarshalJSON

func (o SandboxDataTrafficStats) MarshalJSON() ([]byte, error)

func (*SandboxDataTrafficStats) SetDownloadByteSizeTotal

func (o *SandboxDataTrafficStats) SetDownloadByteSizeTotal(v int64)

SetDownloadByteSizeTotal gets a reference to the given int64 and assigns it to the DownloadByteSizeTotal field.

func (*SandboxDataTrafficStats) SetDownloadPacketSizeTotal

func (o *SandboxDataTrafficStats) SetDownloadPacketSizeTotal(v int64)

SetDownloadPacketSizeTotal gets a reference to the given int64 and assigns it to the DownloadPacketSizeTotal field.

func (*SandboxDataTrafficStats) SetUploadByteSizeTotal

func (o *SandboxDataTrafficStats) SetUploadByteSizeTotal(v int64)

SetUploadByteSizeTotal gets a reference to the given int64 and assigns it to the UploadByteSizeTotal field.

func (*SandboxDataTrafficStats) SetUploadPacketSizeTotal

func (o *SandboxDataTrafficStats) SetUploadPacketSizeTotal(v int64)

SetUploadPacketSizeTotal gets a reference to the given int64 and assigns it to the UploadPacketSizeTotal field.

type SandboxGetSignupTokenRequest

type SandboxGetSignupTokenRequest struct {
	AuthKey   *string `json:"authKey,omitempty"`
	AuthKeyId *string `json:"authKeyId,omitempty"`
}

SandboxGetSignupTokenRequest struct for SandboxGetSignupTokenRequest

func NewSandboxGetSignupTokenRequest

func NewSandboxGetSignupTokenRequest() *SandboxGetSignupTokenRequest

NewSandboxGetSignupTokenRequest instantiates a new SandboxGetSignupTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxGetSignupTokenRequestWithDefaults

func NewSandboxGetSignupTokenRequestWithDefaults() *SandboxGetSignupTokenRequest

NewSandboxGetSignupTokenRequestWithDefaults instantiates a new SandboxGetSignupTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxGetSignupTokenRequest) GetAuthKey

func (o *SandboxGetSignupTokenRequest) GetAuthKey() string

GetAuthKey returns the AuthKey field value if set, zero value otherwise.

func (*SandboxGetSignupTokenRequest) GetAuthKeyId

func (o *SandboxGetSignupTokenRequest) GetAuthKeyId() string

GetAuthKeyId returns the AuthKeyId field value if set, zero value otherwise.

func (*SandboxGetSignupTokenRequest) GetAuthKeyIdOk

func (o *SandboxGetSignupTokenRequest) GetAuthKeyIdOk() (*string, bool)

GetAuthKeyIdOk returns a tuple with the AuthKeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxGetSignupTokenRequest) GetAuthKeyOk

func (o *SandboxGetSignupTokenRequest) GetAuthKeyOk() (*string, bool)

GetAuthKeyOk returns a tuple with the AuthKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxGetSignupTokenRequest) HasAuthKey

func (o *SandboxGetSignupTokenRequest) HasAuthKey() bool

HasAuthKey returns a boolean if a field has been set.

func (*SandboxGetSignupTokenRequest) HasAuthKeyId

func (o *SandboxGetSignupTokenRequest) HasAuthKeyId() bool

HasAuthKeyId returns a boolean if a field has been set.

func (SandboxGetSignupTokenRequest) MarshalJSON

func (o SandboxGetSignupTokenRequest) MarshalJSON() ([]byte, error)

func (*SandboxGetSignupTokenRequest) SetAuthKey

func (o *SandboxGetSignupTokenRequest) SetAuthKey(v string)

SetAuthKey gets a reference to the given string and assigns it to the AuthKey field.

func (*SandboxGetSignupTokenRequest) SetAuthKeyId

func (o *SandboxGetSignupTokenRequest) SetAuthKeyId(v string)

SetAuthKeyId gets a reference to the given string and assigns it to the AuthKeyId field.

type SandboxGetSignupTokenResponse

type SandboxGetSignupTokenResponse struct {
	Token string `json:"token"`
}

SandboxGetSignupTokenResponse struct for SandboxGetSignupTokenResponse

func NewSandboxGetSignupTokenResponse

func NewSandboxGetSignupTokenResponse(token string) *SandboxGetSignupTokenResponse

NewSandboxGetSignupTokenResponse instantiates a new SandboxGetSignupTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxGetSignupTokenResponseWithDefaults

func NewSandboxGetSignupTokenResponseWithDefaults() *SandboxGetSignupTokenResponse

NewSandboxGetSignupTokenResponseWithDefaults instantiates a new SandboxGetSignupTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxGetSignupTokenResponse) GetToken

func (o *SandboxGetSignupTokenResponse) GetToken() string

GetToken returns the Token field value

func (*SandboxGetSignupTokenResponse) GetTokenOk

func (o *SandboxGetSignupTokenResponse) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (SandboxGetSignupTokenResponse) MarshalJSON

func (o SandboxGetSignupTokenResponse) MarshalJSON() ([]byte, error)

func (*SandboxGetSignupTokenResponse) SetToken

func (o *SandboxGetSignupTokenResponse) SetToken(v string)

SetToken sets field value

type SandboxInitRequest

type SandboxInitRequest struct {
	AuthKey   string `json:"authKey"`
	AuthKeyId string `json:"authKeyId"`
	// カバレッジタイプ - `g`: グローバルカバレッジ - `jp`: 日本カバレッジ
	CoverageTypes         []string `json:"coverageTypes,omitempty"`
	Email                 string   `json:"email"`
	Password              string   `json:"password"`
	RegisterPaymentMethod *bool    `json:"registerPaymentMethod,omitempty"`
}

SandboxInitRequest struct for SandboxInitRequest

func NewSandboxInitRequest

func NewSandboxInitRequest(authKey string, authKeyId string, email string, password string) *SandboxInitRequest

NewSandboxInitRequest instantiates a new SandboxInitRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxInitRequestWithDefaults

func NewSandboxInitRequestWithDefaults() *SandboxInitRequest

NewSandboxInitRequestWithDefaults instantiates a new SandboxInitRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxInitRequest) GetAuthKey

func (o *SandboxInitRequest) GetAuthKey() string

GetAuthKey returns the AuthKey field value

func (*SandboxInitRequest) GetAuthKeyId

func (o *SandboxInitRequest) GetAuthKeyId() string

GetAuthKeyId returns the AuthKeyId field value

func (*SandboxInitRequest) GetAuthKeyIdOk

func (o *SandboxInitRequest) GetAuthKeyIdOk() (*string, bool)

GetAuthKeyIdOk returns a tuple with the AuthKeyId field value and a boolean to check if the value has been set.

func (*SandboxInitRequest) GetAuthKeyOk

func (o *SandboxInitRequest) GetAuthKeyOk() (*string, bool)

GetAuthKeyOk returns a tuple with the AuthKey field value and a boolean to check if the value has been set.

func (*SandboxInitRequest) GetCoverageTypes

func (o *SandboxInitRequest) GetCoverageTypes() []string

GetCoverageTypes returns the CoverageTypes field value if set, zero value otherwise.

func (*SandboxInitRequest) GetCoverageTypesOk

func (o *SandboxInitRequest) GetCoverageTypesOk() ([]string, bool)

GetCoverageTypesOk returns a tuple with the CoverageTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInitRequest) GetEmail

func (o *SandboxInitRequest) GetEmail() string

GetEmail returns the Email field value

func (*SandboxInitRequest) GetEmailOk

func (o *SandboxInitRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*SandboxInitRequest) GetPassword

func (o *SandboxInitRequest) GetPassword() string

GetPassword returns the Password field value

func (*SandboxInitRequest) GetPasswordOk

func (o *SandboxInitRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*SandboxInitRequest) GetRegisterPaymentMethod

func (o *SandboxInitRequest) GetRegisterPaymentMethod() bool

GetRegisterPaymentMethod returns the RegisterPaymentMethod field value if set, zero value otherwise.

func (*SandboxInitRequest) GetRegisterPaymentMethodOk

func (o *SandboxInitRequest) GetRegisterPaymentMethodOk() (*bool, bool)

GetRegisterPaymentMethodOk returns a tuple with the RegisterPaymentMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInitRequest) HasCoverageTypes

func (o *SandboxInitRequest) HasCoverageTypes() bool

HasCoverageTypes returns a boolean if a field has been set.

func (*SandboxInitRequest) HasRegisterPaymentMethod

func (o *SandboxInitRequest) HasRegisterPaymentMethod() bool

HasRegisterPaymentMethod returns a boolean if a field has been set.

func (SandboxInitRequest) MarshalJSON

func (o SandboxInitRequest) MarshalJSON() ([]byte, error)

func (*SandboxInitRequest) SetAuthKey

func (o *SandboxInitRequest) SetAuthKey(v string)

SetAuthKey sets field value

func (*SandboxInitRequest) SetAuthKeyId

func (o *SandboxInitRequest) SetAuthKeyId(v string)

SetAuthKeyId sets field value

func (*SandboxInitRequest) SetCoverageTypes

func (o *SandboxInitRequest) SetCoverageTypes(v []string)

SetCoverageTypes gets a reference to the given []string and assigns it to the CoverageTypes field.

func (*SandboxInitRequest) SetEmail

func (o *SandboxInitRequest) SetEmail(v string)

SetEmail sets field value

func (*SandboxInitRequest) SetPassword

func (o *SandboxInitRequest) SetPassword(v string)

SetPassword sets field value

func (*SandboxInitRequest) SetRegisterPaymentMethod

func (o *SandboxInitRequest) SetRegisterPaymentMethod(v bool)

SetRegisterPaymentMethod gets a reference to the given bool and assigns it to the RegisterPaymentMethod field.

type SandboxInsertAirStatsRequest

type SandboxInsertAirStatsRequest struct {
	DataTrafficStatsMap *SandboxInsertAirStatsRequestDataTrafficStatsMap `json:"dataTrafficStatsMap,omitempty"`
	// UNIX 時刻(ミリ秒単位)
	Unixtime *int64 `json:"unixtime,omitempty"`
}

SandboxInsertAirStatsRequest struct for SandboxInsertAirStatsRequest

func NewSandboxInsertAirStatsRequest

func NewSandboxInsertAirStatsRequest() *SandboxInsertAirStatsRequest

NewSandboxInsertAirStatsRequest instantiates a new SandboxInsertAirStatsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxInsertAirStatsRequestWithDefaults

func NewSandboxInsertAirStatsRequestWithDefaults() *SandboxInsertAirStatsRequest

NewSandboxInsertAirStatsRequestWithDefaults instantiates a new SandboxInsertAirStatsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxInsertAirStatsRequest) GetDataTrafficStatsMap

GetDataTrafficStatsMap returns the DataTrafficStatsMap field value if set, zero value otherwise.

func (*SandboxInsertAirStatsRequest) GetDataTrafficStatsMapOk

GetDataTrafficStatsMapOk returns a tuple with the DataTrafficStatsMap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertAirStatsRequest) GetUnixtime

func (o *SandboxInsertAirStatsRequest) GetUnixtime() int64

GetUnixtime returns the Unixtime field value if set, zero value otherwise.

func (*SandboxInsertAirStatsRequest) GetUnixtimeOk

func (o *SandboxInsertAirStatsRequest) GetUnixtimeOk() (*int64, bool)

GetUnixtimeOk returns a tuple with the Unixtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertAirStatsRequest) HasDataTrafficStatsMap

func (o *SandboxInsertAirStatsRequest) HasDataTrafficStatsMap() bool

HasDataTrafficStatsMap returns a boolean if a field has been set.

func (*SandboxInsertAirStatsRequest) HasUnixtime

func (o *SandboxInsertAirStatsRequest) HasUnixtime() bool

HasUnixtime returns a boolean if a field has been set.

func (SandboxInsertAirStatsRequest) MarshalJSON

func (o SandboxInsertAirStatsRequest) MarshalJSON() ([]byte, error)

func (*SandboxInsertAirStatsRequest) SetDataTrafficStatsMap

SetDataTrafficStatsMap gets a reference to the given SandboxInsertAirStatsRequestDataTrafficStatsMap and assigns it to the DataTrafficStatsMap field.

func (*SandboxInsertAirStatsRequest) SetUnixtime

func (o *SandboxInsertAirStatsRequest) SetUnixtime(v int64)

SetUnixtime gets a reference to the given int64 and assigns it to the Unixtime field.

type SandboxInsertAirStatsRequestDataTrafficStatsMap

type SandboxInsertAirStatsRequestDataTrafficStatsMap struct {
	S1Fast     *SandboxDataTrafficStats `json:"s1.fast,omitempty"`
	S1Minimum  *SandboxDataTrafficStats `json:"s1.minimum,omitempty"`
	S1Slow     *SandboxDataTrafficStats `json:"s1.slow,omitempty"`
	S1Standard *SandboxDataTrafficStats `json:"s1.standard,omitempty"`
}

SandboxInsertAirStatsRequestDataTrafficStatsMap struct for SandboxInsertAirStatsRequestDataTrafficStatsMap

func NewSandboxInsertAirStatsRequestDataTrafficStatsMap

func NewSandboxInsertAirStatsRequestDataTrafficStatsMap() *SandboxInsertAirStatsRequestDataTrafficStatsMap

NewSandboxInsertAirStatsRequestDataTrafficStatsMap instantiates a new SandboxInsertAirStatsRequestDataTrafficStatsMap object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxInsertAirStatsRequestDataTrafficStatsMapWithDefaults

func NewSandboxInsertAirStatsRequestDataTrafficStatsMapWithDefaults() *SandboxInsertAirStatsRequestDataTrafficStatsMap

NewSandboxInsertAirStatsRequestDataTrafficStatsMapWithDefaults instantiates a new SandboxInsertAirStatsRequestDataTrafficStatsMap object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) GetS1Fast

GetS1Fast returns the S1Fast field value if set, zero value otherwise.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) GetS1FastOk

GetS1FastOk returns a tuple with the S1Fast field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) GetS1Minimum

GetS1Minimum returns the S1Minimum field value if set, zero value otherwise.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) GetS1MinimumOk

GetS1MinimumOk returns a tuple with the S1Minimum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) GetS1Slow

GetS1Slow returns the S1Slow field value if set, zero value otherwise.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) GetS1SlowOk

GetS1SlowOk returns a tuple with the S1Slow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) GetS1Standard

GetS1Standard returns the S1Standard field value if set, zero value otherwise.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) GetS1StandardOk

GetS1StandardOk returns a tuple with the S1Standard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) HasS1Fast

HasS1Fast returns a boolean if a field has been set.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) HasS1Minimum

HasS1Minimum returns a boolean if a field has been set.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) HasS1Slow

HasS1Slow returns a boolean if a field has been set.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) HasS1Standard

HasS1Standard returns a boolean if a field has been set.

func (SandboxInsertAirStatsRequestDataTrafficStatsMap) MarshalJSON

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) SetS1Fast

SetS1Fast gets a reference to the given SandboxDataTrafficStats and assigns it to the S1Fast field.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) SetS1Minimum

SetS1Minimum gets a reference to the given SandboxDataTrafficStats and assigns it to the S1Minimum field.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) SetS1Slow

SetS1Slow gets a reference to the given SandboxDataTrafficStats and assigns it to the S1Slow field.

func (*SandboxInsertAirStatsRequestDataTrafficStatsMap) SetS1Standard

SetS1Standard gets a reference to the given SandboxDataTrafficStats and assigns it to the S1Standard field.

type SandboxInsertBeamStatsRequest

type SandboxInsertBeamStatsRequest struct {
	BeamStatsMap *SandboxInsertBeamStatsRequestBeamStatsMap `json:"beamStatsMap,omitempty"`
	// UNIX 時刻(ミリ秒単位)
	Unixtime *int64 `json:"unixtime,omitempty"`
}

SandboxInsertBeamStatsRequest struct for SandboxInsertBeamStatsRequest

func NewSandboxInsertBeamStatsRequest

func NewSandboxInsertBeamStatsRequest() *SandboxInsertBeamStatsRequest

NewSandboxInsertBeamStatsRequest instantiates a new SandboxInsertBeamStatsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxInsertBeamStatsRequestWithDefaults

func NewSandboxInsertBeamStatsRequestWithDefaults() *SandboxInsertBeamStatsRequest

NewSandboxInsertBeamStatsRequestWithDefaults instantiates a new SandboxInsertBeamStatsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxInsertBeamStatsRequest) GetBeamStatsMap

GetBeamStatsMap returns the BeamStatsMap field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequest) GetBeamStatsMapOk

GetBeamStatsMapOk returns a tuple with the BeamStatsMap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequest) GetUnixtime

func (o *SandboxInsertBeamStatsRequest) GetUnixtime() int64

GetUnixtime returns the Unixtime field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequest) GetUnixtimeOk

func (o *SandboxInsertBeamStatsRequest) GetUnixtimeOk() (*int64, bool)

GetUnixtimeOk returns a tuple with the Unixtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequest) HasBeamStatsMap

func (o *SandboxInsertBeamStatsRequest) HasBeamStatsMap() bool

HasBeamStatsMap returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequest) HasUnixtime

func (o *SandboxInsertBeamStatsRequest) HasUnixtime() bool

HasUnixtime returns a boolean if a field has been set.

func (SandboxInsertBeamStatsRequest) MarshalJSON

func (o SandboxInsertBeamStatsRequest) MarshalJSON() ([]byte, error)

func (*SandboxInsertBeamStatsRequest) SetBeamStatsMap

SetBeamStatsMap gets a reference to the given SandboxInsertBeamStatsRequestBeamStatsMap and assigns it to the BeamStatsMap field.

func (*SandboxInsertBeamStatsRequest) SetUnixtime

func (o *SandboxInsertBeamStatsRequest) SetUnixtime(v int64)

SetUnixtime gets a reference to the given int64 and assigns it to the Unixtime field.

type SandboxInsertBeamStatsRequestBeamStatsMap

type SandboxInsertBeamStatsRequestBeamStatsMap struct {
	InHttp   *SandboxBeamCounts `json:"inHttp,omitempty"`
	InMqtt   *SandboxBeamCounts `json:"inMqtt,omitempty"`
	InTcp    *SandboxBeamCounts `json:"inTcp,omitempty"`
	InUdp    *SandboxBeamCounts `json:"inUdp,omitempty"`
	OutHttp  *SandboxBeamCounts `json:"outHttp,omitempty"`
	OutHttps *SandboxBeamCounts `json:"outHttps,omitempty"`
	OutMqtt  *SandboxBeamCounts `json:"outMqtt,omitempty"`
	OutMqtts *SandboxBeamCounts `json:"outMqtts,omitempty"`
	OutTcp   *SandboxBeamCounts `json:"outTcp,omitempty"`
	OutTcps  *SandboxBeamCounts `json:"outTcps,omitempty"`
	OutUdp   *SandboxBeamCounts `json:"outUdp,omitempty"`
}

SandboxInsertBeamStatsRequestBeamStatsMap struct for SandboxInsertBeamStatsRequestBeamStatsMap

func NewSandboxInsertBeamStatsRequestBeamStatsMap

func NewSandboxInsertBeamStatsRequestBeamStatsMap() *SandboxInsertBeamStatsRequestBeamStatsMap

NewSandboxInsertBeamStatsRequestBeamStatsMap instantiates a new SandboxInsertBeamStatsRequestBeamStatsMap object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxInsertBeamStatsRequestBeamStatsMapWithDefaults

func NewSandboxInsertBeamStatsRequestBeamStatsMapWithDefaults() *SandboxInsertBeamStatsRequestBeamStatsMap

NewSandboxInsertBeamStatsRequestBeamStatsMapWithDefaults instantiates a new SandboxInsertBeamStatsRequestBeamStatsMap object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetInHttp

GetInHttp returns the InHttp field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetInHttpOk

GetInHttpOk returns a tuple with the InHttp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetInMqtt

GetInMqtt returns the InMqtt field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetInMqttOk

GetInMqttOk returns a tuple with the InMqtt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetInTcp

GetInTcp returns the InTcp field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetInTcpOk

GetInTcpOk returns a tuple with the InTcp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetInUdp

GetInUdp returns the InUdp field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetInUdpOk

GetInUdpOk returns a tuple with the InUdp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutHttp

GetOutHttp returns the OutHttp field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutHttpOk

GetOutHttpOk returns a tuple with the OutHttp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutHttps

GetOutHttps returns the OutHttps field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutHttpsOk

GetOutHttpsOk returns a tuple with the OutHttps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutMqtt

GetOutMqtt returns the OutMqtt field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutMqttOk

GetOutMqttOk returns a tuple with the OutMqtt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutMqtts

GetOutMqtts returns the OutMqtts field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutMqttsOk

GetOutMqttsOk returns a tuple with the OutMqtts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutTcp

GetOutTcp returns the OutTcp field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutTcpOk

GetOutTcpOk returns a tuple with the OutTcp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutTcps

GetOutTcps returns the OutTcps field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutTcpsOk

GetOutTcpsOk returns a tuple with the OutTcps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutUdp

GetOutUdp returns the OutUdp field value if set, zero value otherwise.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) GetOutUdpOk

GetOutUdpOk returns a tuple with the OutUdp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasInHttp

HasInHttp returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasInMqtt

HasInMqtt returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasInTcp

HasInTcp returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasInUdp

HasInUdp returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasOutHttp

HasOutHttp returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasOutHttps

HasOutHttps returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasOutMqtt

HasOutMqtt returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasOutMqtts

HasOutMqtts returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasOutTcp

HasOutTcp returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasOutTcps

HasOutTcps returns a boolean if a field has been set.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) HasOutUdp

HasOutUdp returns a boolean if a field has been set.

func (SandboxInsertBeamStatsRequestBeamStatsMap) MarshalJSON

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetInHttp

SetInHttp gets a reference to the given SandboxBeamCounts and assigns it to the InHttp field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetInMqtt

SetInMqtt gets a reference to the given SandboxBeamCounts and assigns it to the InMqtt field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetInTcp

SetInTcp gets a reference to the given SandboxBeamCounts and assigns it to the InTcp field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetInUdp

SetInUdp gets a reference to the given SandboxBeamCounts and assigns it to the InUdp field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetOutHttp

SetOutHttp gets a reference to the given SandboxBeamCounts and assigns it to the OutHttp field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetOutHttps

SetOutHttps gets a reference to the given SandboxBeamCounts and assigns it to the OutHttps field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetOutMqtt

SetOutMqtt gets a reference to the given SandboxBeamCounts and assigns it to the OutMqtt field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetOutMqtts

SetOutMqtts gets a reference to the given SandboxBeamCounts and assigns it to the OutMqtts field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetOutTcp

SetOutTcp gets a reference to the given SandboxBeamCounts and assigns it to the OutTcp field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetOutTcps

SetOutTcps gets a reference to the given SandboxBeamCounts and assigns it to the OutTcps field.

func (*SandboxInsertBeamStatsRequestBeamStatsMap) SetOutUdp

SetOutUdp gets a reference to the given SandboxBeamCounts and assigns it to the OutUdp field.

type SandboxShipOrderRequest

type SandboxShipOrderRequest struct {
	OperatorId string `json:"operatorId"`
	OrderId    string `json:"orderId"`
}

SandboxShipOrderRequest struct for SandboxShipOrderRequest

func NewSandboxShipOrderRequest

func NewSandboxShipOrderRequest(operatorId string, orderId string) *SandboxShipOrderRequest

NewSandboxShipOrderRequest instantiates a new SandboxShipOrderRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSandboxShipOrderRequestWithDefaults

func NewSandboxShipOrderRequestWithDefaults() *SandboxShipOrderRequest

NewSandboxShipOrderRequestWithDefaults instantiates a new SandboxShipOrderRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SandboxShipOrderRequest) GetOperatorId

func (o *SandboxShipOrderRequest) GetOperatorId() string

GetOperatorId returns the OperatorId field value

func (*SandboxShipOrderRequest) GetOperatorIdOk

func (o *SandboxShipOrderRequest) GetOperatorIdOk() (*string, bool)

GetOperatorIdOk returns a tuple with the OperatorId field value and a boolean to check if the value has been set.

func (*SandboxShipOrderRequest) GetOrderId

func (o *SandboxShipOrderRequest) GetOrderId() string

GetOrderId returns the OrderId field value

func (*SandboxShipOrderRequest) GetOrderIdOk

func (o *SandboxShipOrderRequest) GetOrderIdOk() (*string, bool)

GetOrderIdOk returns a tuple with the OrderId field value and a boolean to check if the value has been set.

func (SandboxShipOrderRequest) MarshalJSON

func (o SandboxShipOrderRequest) MarshalJSON() ([]byte, error)

func (*SandboxShipOrderRequest) SetOperatorId

func (o *SandboxShipOrderRequest) SetOperatorId(v string)

SetOperatorId sets field value

func (*SandboxShipOrderRequest) SetOrderId

func (o *SandboxShipOrderRequest) SetOrderId(v string)

SetOrderId sets field value

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type StatsApiService

type StatsApiService service

StatsApiService StatsApi service

func (*StatsApiService) SandboxInsertAirStats

func (a *StatsApiService) SandboxInsertAirStats(ctx context.Context, imsi string) ApiSandboxInsertAirStatsRequest

SandboxInsertAirStats テスト用に Air の統計情報を登録する

Air の統計情報としてテスト用データ(上り下りのデータ通信量、タイムスタンプ付き)を投入します。Sandbox 内部で日ごと・月ごとの統計情報も自動的に累計されて取得できるようになります。同じタイムスタンプで複数回データを投入することはできません。

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param imsi IMSI
@return ApiSandboxInsertAirStatsRequest

func (*StatsApiService) SandboxInsertAirStatsExecute

func (a *StatsApiService) SandboxInsertAirStatsExecute(r ApiSandboxInsertAirStatsRequest) (*http.Response, error)

Execute executes the request

func (*StatsApiService) SandboxInsertBeamStats

func (a *StatsApiService) SandboxInsertBeamStats(ctx context.Context, imsi string) ApiSandboxInsertBeamStatsRequest

SandboxInsertBeamStats テスト用に Beam の統計情報を登録する

Beam の統計情報としてテスト用データ(リクエスト数、タイムスタンプ付き)を投入します。Sandbox 内部で日ごと・月ごとの統計情報も自動的に累計されて取得できるようになります。同じタイムスタンプで複数回データを投入することはできません。

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param imsi IMSI
@return ApiSandboxInsertBeamStatsRequest

func (*StatsApiService) SandboxInsertBeamStatsExecute

func (a *StatsApiService) SandboxInsertBeamStatsExecute(r ApiSandboxInsertBeamStatsRequest) (*http.Response, error)

Execute executes the request

type SubscriberApiService

type SubscriberApiService service

SubscriberApiService SubscriberApi service

func (*SubscriberApiService) SandboxCreateSubscriber

SandboxCreateSubscriber Subscriber を作成する

Subscriber を新規作成します

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSandboxCreateSubscriberRequest

func (*SubscriberApiService) SandboxCreateSubscriberExecute

Execute executes the request

@return SandboxCreateSubscriberResponse

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL