# README

Go API client for cios

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

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: 1.0.1
  • 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 sw "./cios"

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(), sw.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(), sw.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 identifield 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(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost

ClassMethodHTTP requestDescription
AccountApiGetMeGet /v2/meログイン中のユーザープロフィールおよび所属する企業、参加するグループの一覧を取得する
AuthApiRefreshTokenPost /connect/token
CollectionApiCreateSeriesDataBulkPut /v2/collections/{collection_id}/series/{series_id}/data-bulk
CollectionApiCreateSeriesImagePut /v2/collections/{collection_id}/series/{series_id}/timestamp/{timestamp}/image
CollectionApiDeleteSeriesLatestDelete /v2/collections/{collection_id}/series/{series_id}/latest
CollectionApiGetCollectionStatusGet /v2/collections/{collection_id}/status
CollectionApiGetRecordedDatesGet /v2/collections/{collection_id}/recorded-dates
CollectionApiGetSeriesGet /v2/collections/{collection_id}/series/{series_id}
CollectionApiGetSeriesAggregationPost /v2/collections/{collection_id}/series/{series_id}/aggregation
CollectionApiGetSeriesImageGet /v2/collections/{collection_id}/series/{series_id}/timestamp/{timestamp}/image
CollectionApiGetSeriesImagesGet /v2/collections/{collection_id}/series/{series_id}/images
CollectionApiGetSeriesThumbnailsGet /v2/collections/{collection_id}/series/{series_id}/thumbnails
CollectionApiGetSeriesThumnbnailGet /v2/collections/{collection_id}/series/{series_id}/timestamp/{timestamp}/thumbnail
CollectionApiGetTimeSeriesDataGet /v2/collections/{collection_id}/series/{series_id}/data
CollectionApiPostCollectionArchivePost /v2/collections/{collection_id}/archive
CollectionApiPostCollectionRestorePost /v2/collections/{collection_id}/restore
CollectionApiPostSearchLatestPost /v2/collections/{collection_id}/search-latest
CollectionApiPostSeriesPost /v2/collections/{collection_id}/series時系列データ保存
CollectionApiPostSeriesBulkPost /v2/collections/{collection_id}/series-bulk
CollectionApiPutSeriesPut /v2/collections/{collection_id}/series/{series_id}/timestamp/{timestamp}/data
ContractApiGetContractGet /v2/contracts/{contract_id}契約IDの契約情報を取得する
ContractApiGetContractUserGet /v2/contracts/{contract_id}/users/{user_id}契約IDの契約情報を取得する
ContractApiGetContractUsersGet /v2/contracts/{contract_id}/users契約IDの契約情報を取得する
ContractApiGetContractsGet /v2/contracts契約一覧情報を取得する
DeviceApiCreateDevicePost /v2/devicesデバイスの登録
DeviceApiCreateDeviceClientPost /v2/devices/{device_id}/device_clients
DeviceApiCreateDevicePolicyPost /v2/devices/group_policies
DeviceApiDeleteDeviceDelete /v2/devices/{device_id}
DeviceApiDeleteDeviceClientDelete /v2/devices/{device_id}/device_clients/{client_id}device.write
DeviceApiDeletePolicyDelete /v2/devices/group_policies/{policy_id}
DeviceApiGetDeviceGet /v2/devices/{device_id}指定したidのデバイスの情報を取得する
DeviceApiGetDeviceInventoryLatestGet /v2/devices/{device_id}/inventory/latest
DeviceApiGetDeviceMonitoringLatestGet /v2/devices/{device_id}/monitoring/latest
DeviceApiGetDeviceMonitoringsLatestPost /v2/devices/monitoring/latest
DeviceApiGetDevicePoliciesGet /v2/devices/group_policies
DeviceApiGetDeviceProfileGet /v2/devices/profiledevice.profile
DeviceApiGetDevicesGet /v2/devicesデバイスの一覧を取得する
DeviceApiUpdateDevicePatch /v2/devices/{device_id}指定したidのデバイス情報を更新する
DeviceApiUpdateDeviceClientPatch /v2/devices/{device_id}/device_clients/{client_id}device.write
DeviceAssetApiCreateDeviceEntitiesComponentPost /v2/device_entities/{key}/components
DeviceAssetApiCreateDeviceEntitiesLifecyclePost /v2/device_entities/{key}/lifecycles
DeviceAssetApiCreateDeviceModelPost /v2/device_models
DeviceAssetApiCreateInventoryPost /v2/device_models/{name}/entities
DeviceAssetApiDeleteDeviceEntitiesComponentDelete /v2/device_entities/{key}/components/{component_id}
DeviceAssetApiDeleteDeviceEntitiesLifecycleDelete /v2/device_entities/{key}/lifecycles/{lifecycle_id}
DeviceAssetApiDeleteDeviceEntityDelete /v2/device_entities/{key}
DeviceAssetApiDeleteDeviceModelDelete /v2/device_models/{name}
DeviceAssetApiGetDeviceEntitiesGet /v2/device_entities
DeviceAssetApiGetDeviceEntitiesComponentGet /v2/device_entities/{key}/components/{component_id}
DeviceAssetApiGetDeviceEntitiesComponentsGet /v2/device_entities/{key}/components
DeviceAssetApiGetDeviceEntitiesLifecycleGet /v2/device_entities/{key}/lifecycles/{lifecycle_id}
DeviceAssetApiGetDeviceEntitiesLifecyclesGet /v2/device_entities/{key}/lifecycles
DeviceAssetApiGetDeviceEntityGet /v2/device_entities/{key}
DeviceAssetApiGetDeviceModelGet /v2/device_models/{name}
DeviceAssetApiGetDeviceModelsGet /v2/device_models
DeviceAssetApiGetDeviceModelsComponentsGet /v2/device_models/{name}/components
DeviceAssetApiUpdateDeviceEntitiesComponentPatch /v2/device_entities/{key}/components/{component_id}
DeviceAssetApiUpdateDeviceEntitiesComponentsPatch /v2/device_entities/{key}/components
DeviceAssetApiUpdateDeviceEntityPatch /v2/device_entities/{key}
DeviceAssetApiUpdateDeviceModelPatch /v2/device_models/{name}
FileStorageApiCopyNodePost /v2/file_storage/buckets/{bucket_id}/nodes/{node_id}/copy
FileStorageApiCreateBucketPost /v2/file_storage/buckets
FileStorageApiCreateDirectoryPost /v2/file_storage/buckets/{bucket_id}/create_directory
FileStorageApiDeleteBucketDelete /v2/file_storage/buckets/{bucket_id}
FileStorageApiDeleteNodeDelete /v2/file_storage/buckets/{bucket_id}/nodes/{node_id}
FileStorageApiDownloadFileGet /v2/file_storage/buckets/{bucket_id}/download
FileStorageApiGetBucketGet /v2/file_storage/buckets/{bucket_id}
FileStorageApiGetBucketsGet /v2/file_storage/buckets
FileStorageApiGetNodeGet /v2/file_storage/buckets/{bucket_id}/nodes/{node_id}
FileStorageApiGetNodesGet /v2/file_storage/buckets/{bucket_id}/nodes
FileStorageApiMoveNodePost /v2/file_storage/buckets/{bucket_id}/nodes/{node_id}/move
FileStorageApiRenameNodePost /v2/file_storage/buckets/{bucket_id}/nodes/{node_id}/rename
FileStorageApiUpdateBucketPatch /v2/file_storage/buckets/{bucket_id}
FileStorageApiUploadFilePut /v2/file_storage/buckets/{bucket_id}/upload
GeographyApiCreateCirclePost /v2/geo/circles
GeographyApiCreatePointPost /v2/geo/points
GeographyApiCreateRoutePost /v2/geo/routes
GeographyApiDeleteCircleDelete /v2/geo/circles/{circles_id}
GeographyApiDeletePointDelete /v2/geo/points/{point_id}
GeographyApiDeleteRouteDelete /v2/geo/routes/{routes_id}
GeographyApiGetCircleGet /v2/geo/circles/{circles_id}
GeographyApiGetCirclesGet /v2/geo/circles
GeographyApiGetPointGet /v2/geo/points/{point_id}
GeographyApiGetPointsGet /v2/geo/points
GeographyApiGetRouteGet /v2/geo/routes/{routes_id}
GeographyApiGetRoutesGet /v2/geo/routes
GeographyApiUpdateCirclePatch /v2/geo/circles/{circles_id}
GeographyApiUpdatePointPatch /v2/geo/points/{point_id}
GeographyApiUpdateRoutePatch /v2/geo/routes/{routes_id}
GroupApiCreateGroupPost /v2/groups
GroupApiDeleteGroupDelete /v2/groups/{group_id}
GroupApiDeleteMemberDelete /v2/groups/{group_id}/members
GroupApiGetGroupGet /v2/groups/{group_id}
GroupApiGetGroupsGet /v2/groups
GroupApiGetMembersGet /v2/groups/{group_id}/members
GroupApiInviteGroupPost /v2/groups/{group_id}/invites
GroupApiReplaceGroupPut /v2/groups/{group_id}
GroupApiSetMemberPatch /v2/groups/{group_id}/members
GroupApiUpdateGroupPatch /v2/groups/{group_id}
GroupApiUpdateMemberPut /v2/groups/{group_id}/members
LicenseApiGetMyLicensesGet /v2/licenses/me
PublishSubscribeApiCreateChannelPost /v2/channels
PublishSubscribeApiCreateDataStoreObjectPost /v2/datastore/channels/{channel_id}/objects
PublishSubscribeApiDeleteChannelDelete /v2/channels/{channel_id}
PublishSubscribeApiDeleteDataStoreChannelDelete /v2/datastore/channels/{channel_id}
PublishSubscribeApiDeleteDataStoreObjectDataDelete /v2/datastore/channels/{channel_id}/objects/{object_id}
PublishSubscribeApiDeleteDataStoreSessionDelete /v2/datastore/channels/{channel_id}/sessions/{session_id}
PublishSubscribeApiGetChannelGet /v2/channels/{channel_id}
PublishSubscribeApiGetChannelsGet /v2/channels
PublishSubscribeApiGetDataStoreChannelGet /v2/datastore/channels/{channel_id}
PublishSubscribeApiGetDataStoreChannelsGet /v2/datastore/channels
PublishSubscribeApiGetDataStoreMultiObjectDataLatestPost /v2/datastore/objects_latest
PublishSubscribeApiGetDataStoreObjectDataGet /v2/datastore/channels/{channel_id}/objects/{object_id}
PublishSubscribeApiGetDataStoreObjectDataLatestGet /v2/datastore/channels/{channel_id}/object_latest
PublishSubscribeApiGetDataStoreObjectsGet /v2/datastore/channels/{channel_id}/objects
PublishSubscribeApiGetDataStoreSessionGet /v2/datastore/channels/{channel_id}/sessions/{session_id}
PublishSubscribeApiGetDataStoreSessionsGet /v2/datastore/channels/{channel_id}/sessions
PublishSubscribeApiPublishMessagePost /v2/messaging
PublishSubscribeApiSubscribeMessageGet /v2/messaging
PublishSubscribeApiUpdateChannelPatch /v2/channels/{channel_id}
ResourceOwnerApiGetResourceOwnerGet /v2/resource_owners/{resource_owner_id}
ResourceOwnerApiGetResourceOwnersGet /v2/resource_owners
VideostreamingOperationsApiCreateVideoStreamsPlayPost /v2/video_streams/{video_id}/play
VideostreamingOperationsApiCreateVideoStreamsStopPost /v2/video_streams/{video_id}/stop
VideostreamingOperationsApiGetVideoStreamsGet /v2/video_streams/{video_id}
VideostreamingOperationsApiGetVideoStreamsListGet /v2/video_streams
VideostreamingOperationsApiGetVideoStreamsThumbnailGet /v2/video_streams/{video_id}/thumbnail
VideostreamingOperationsApiUpdateStreamsPatch /v2/video_streams/{video_id}

Documentation For Models

Documentation For Authorization

bearerAuth

  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARERTOKENSTRING")
r, err := client.Service.Operation(auth, args)

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

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CacheExpires helper function to determine remaining time before repeating a request.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResonse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewApplicationClient instantiates a new ApplicationClient 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.
NewApplicationClientWithDefaults instantiates a new ApplicationClient 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.
NewBucket instantiates a new Bucket 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.
NewBucketEditBody instantiates a new BucketEditBody 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.
NewBucketEditBodyWithDefaults instantiates a new BucketEditBody 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.
NewBucketFiles instantiates a new BucketFiles 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.
NewBucketFilesWithDefaults instantiates a new BucketFiles 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.
NewBucketName instantiates a new BucketName 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.
NewBucketNameWithDefaults instantiates a new BucketName 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.
NewBucketRequest instantiates a new BucketRequest 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.
NewBucketRequestWithDefaults instantiates a new BucketRequest 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.
NewBucketWithDefaults instantiates a new Bucket 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.
NewChannel instantiates a new Channel 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.
NewChannelProposal instantiates a new ChannelProposal 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.
NewChannelProposalWithDefaults instantiates a new ChannelProposal 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.
NewChannelProtocol instantiates a new ChannelProtocol 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.
NewChannelProtocolWithDefaults instantiates a new ChannelProtocol 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.
NewChannelUpdateProposal instantiates a new ChannelUpdateProposal 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.
NewChannelUpdateProposalWithDefaults instantiates a new ChannelUpdateProposal 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.
NewChannelWithDefaults instantiates a new Channel 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.
NewCircle instantiates a new Circle 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.
NewCircleWithDefaults instantiates a new Circle 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.
NewClient instantiates a new Client 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.
NewClientWithDefaults instantiates a new Client 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.
NewCollectionLatest instantiates a new CollectionLatest 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.
NewCollectionLatestRequest instantiates a new CollectionLatestRequest 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.
NewCollectionLatestRequestWithDefaults instantiates a new CollectionLatestRequest 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.
NewCollectionLatestWithDefaults instantiates a new CollectionLatest 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.
NewCollectionLocation instantiates a new CollectionLocation 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.
NewCollectionLocationWithDefaults instantiates a new CollectionLocation 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.
NewConfiguration returns a new Configuration object.
NewConnectedDeviceResult instantiates a new ConnectedDeviceResult 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.
NewConnectedDeviceResultWithDefaults instantiates a new ConnectedDeviceResult 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.
NewConnectTokenResponse instantiates a new ConnectTokenResponse 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.
NewConnectTokenResponseWithDefaults instantiates a new ConnectTokenResponse 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.
NewConstitutionComponent instantiates a new ConstitutionComponent 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.
NewConstitutionComponentWithDefaults instantiates a new ConstitutionComponent 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.
NewContract instantiates a new Contract 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.
NewContractItem instantiates a new ContractItem 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.
NewContractItemWithDefaults instantiates a new ContractItem 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.
NewContractOwner instantiates a new ContractOwner 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.
NewContractOwnerAddress instantiates a new ContractOwnerAddress 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.
NewContractOwnerAddressWithDefaults instantiates a new ContractOwnerAddress 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.
NewContractOwnerWithDefaults instantiates a new ContractOwner 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.
NewContractUser instantiates a new ContractUser 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.
NewContractUserLicense instantiates a new ContractUserLicense 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.
NewContractUserLicenseWithDefaults instantiates a new ContractUserLicense 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.
NewContractUserWithDefaults instantiates a new ContractUser 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.
NewContractWithDefaults instantiates a new Contract 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.
NewCreatedBy instantiates a new CreatedBy 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.
NewCreatedByClient instantiates a new CreatedByClient 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.
NewCreatedByClientWithDefaults instantiates a new CreatedByClient 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.
NewCreatedByUser instantiates a new CreatedByUser 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.
NewCreatedByUserWithDefaults instantiates a new CreatedByUser 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.
NewCreatedByWithDefaults instantiates a new CreatedBy 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.
NewDataError instantiates a new DataError 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.
NewDataErrorWithDefaults instantiates a new DataError 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.
NewDataStoreChannel instantiates a new DataStoreChannel 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.
NewDataStoreChannelStats instantiates a new DataStoreChannelStats 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.
NewDataStoreChannelStatsWithDefaults instantiates a new DataStoreChannelStats 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.
NewDataStoreChannelWithDefaults instantiates a new DataStoreChannel 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.
NewDataStoreConfig instantiates a new DataStoreConfig 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.
NewDataStoreConfigWithDefaults instantiates a new DataStoreConfig 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.
NewDataStoreObject instantiates a new DataStoreObject 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.
NewDataStoreObjectLocation instantiates a new DataStoreObjectLocation 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.
NewDataStoreObjectLocationWithDefaults instantiates a new DataStoreObjectLocation 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.
NewDataStoreObjectWithDefaults instantiates a new DataStoreObject 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.
NewDevice instantiates a new Device 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.
NewDeviceClient instantiates a new DeviceClient 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.
NewDeviceClientList instantiates a new DeviceClientList 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.
NewDeviceClientListWithDefaults instantiates a new DeviceClientList 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.
NewDeviceClientRequest instantiates a new DeviceClientRequest 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.
NewDeviceClientRequestWithDefaults instantiates a new DeviceClientRequest 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.
NewDeviceClientRsaKey instantiates a new DeviceClientRsaKey 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.
NewDeviceClientRsaKeyWithDefaults instantiates a new DeviceClientRsaKey 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.
NewDeviceClientWithDefaults instantiates a new DeviceClient 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.
NewDeviceEntitiesComponent instantiates a new DeviceEntitiesComponent 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.
NewDeviceEntitiesComponentUpdateRequest instantiates a new DeviceEntitiesComponentUpdateRequest 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.
NewDeviceEntitiesComponentUpdateRequestWithDefaults instantiates a new DeviceEntitiesComponentUpdateRequest 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.
NewDeviceEntitiesComponentWithDefaults instantiates a new DeviceEntitiesComponent 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.
NewDeviceInfo instantiates a new DeviceInfo 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.
NewDeviceInfoWithDefaults instantiates a new DeviceInfo 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.
NewDeviceModel instantiates a new DeviceModel 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.
NewDeviceModelRequest instantiates a new DeviceModelRequest 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.
NewDeviceModelRequestWithDefaults instantiates a new DeviceModelRequest 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.
NewDeviceModelsEntity instantiates a new DeviceModelsEntity 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.
NewDeviceModelsEntityModel instantiates a new DeviceModelsEntityModel 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.
NewDeviceModelsEntityModelWithDefaults instantiates a new DeviceModelsEntityModel 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.
NewDeviceModelsEntityWithDefaults instantiates a new DeviceModelsEntity 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.
NewDeviceModelUpdateRequest instantiates a new DeviceModelUpdateRequest 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.
NewDeviceModelUpdateRequestWatch instantiates a new DeviceModelUpdateRequestWatch 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.
NewDeviceModelUpdateRequestWatchTypes instantiates a new DeviceModelUpdateRequestWatchTypes 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.
NewDeviceModelUpdateRequestWatchTypesWithDefaults instantiates a new DeviceModelUpdateRequestWatchTypes 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.
NewDeviceModelUpdateRequestWatchWithDefaults instantiates a new DeviceModelUpdateRequestWatch 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.
NewDeviceModelUpdateRequestWithDefaults instantiates a new DeviceModelUpdateRequest 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.
NewDeviceModelWithDefaults instantiates a new DeviceModel 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.
NewDeviceMonitoring instantiates a new DeviceMonitoring 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.
NewDeviceMonitoringIDsRequest instantiates a new DeviceMonitoringIDsRequest 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.
NewDeviceMonitoringIDsRequestWithDefaults instantiates a new DeviceMonitoringIDsRequest 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.
NewDeviceMonitoringWithDefaults instantiates a new DeviceMonitoring 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.
NewDevicePerformance instantiates a new DevicePerformance 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.
NewDevicePerformanceWithDefaults instantiates a new DevicePerformance 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.
NewDevicePolicy instantiates a new DevicePolicy 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.
NewDevicePolicyRequest instantiates a new DevicePolicyRequest 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.
NewDevicePolicyRequestWithDefaults instantiates a new DevicePolicyRequest 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.
NewDevicePolicyWithDefaults instantiates a new DevicePolicy 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.
NewDeviceUpdateRequest instantiates a new DeviceUpdateRequest 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.
NewDeviceUpdateRequestWithDefaults instantiates a new DeviceUpdateRequest 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.
NewDeviceWithDefaults instantiates a new Device 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.
NewDisplayInfo instantiates a new DisplayInfo 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.
NewDisplayInfoWithDefaults instantiates a new DisplayInfo 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.
NewGroup instantiates a new Group 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.
NewGroupAddress instantiates a new GroupAddress 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.
NewGroupAddressWithDefaults instantiates a new GroupAddress 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.
NewGroupChildren instantiates a new GroupChildren 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.
NewGroupChildrenWithDefaults instantiates a new GroupChildren 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.
NewGroupCreateRequest instantiates a new GroupCreateRequest 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.
NewGroupCreateRequestWithDefaults instantiates a new GroupCreateRequest 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.
NewGroupInviteRequest instantiates a new GroupInviteRequest 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.
NewGroupInviteRequestWithDefaults instantiates a new GroupInviteRequest 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.
NewGroupReplaceRequest instantiates a new GroupReplaceRequest 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.
NewGroupReplaceRequestWithDefaults instantiates a new GroupReplaceRequest 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.
NewGroupUpdateRequest instantiates a new GroupUpdateRequest 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.
NewGroupUpdateRequestWithDefaults instantiates a new GroupUpdateRequest 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.
NewGroupWithDefaults instantiates a new Group 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.
NewIds instantiates a new Ids 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.
NewIdsWithDefaults instantiates a new Ids 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.
NewInventory instantiates a new Inventory 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.
NewInventoryWithDefaults instantiates a new Inventory 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.
NewLabel instantiates a new Label 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.
NewLabelWithDefaults instantiates a new Label 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.
NewLicense instantiates a new License 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.
NewLicenseWithDefaults instantiates a new License 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.
NewLifeCycle instantiates a new LifeCycle 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.
NewLifeCycleRequest instantiates a new LifeCycleRequest 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.
NewLifeCycleRequestWithDefaults instantiates a new LifeCycleRequest 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.
NewLifeCycleWithDefaults instantiates a new LifeCycle 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.
NewLocation instantiates a new Location 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.
NewLocationWithDefaults instantiates a new Location 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.
NewMe instantiates a new Me 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.
NewMeGroups instantiates a new MeGroups 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.
NewMeGroupsWithDefaults instantiates a new MeGroups 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.
NewMember instantiates a new Member 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.
NewMemberInfo instantiates a new MemberInfo 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.
NewMemberInfoProfile instantiates a new MemberInfoProfile 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.
NewMemberInfoProfileWithDefaults instantiates a new MemberInfoProfile 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.
NewMemberInfoWithDefaults instantiates a new MemberInfo 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.
NewMemberWithDefaults instantiates a new Member 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.
NewMessagingConfig instantiates a new MessagingConfig 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.
NewMessagingConfigWithDefaults instantiates a new MessagingConfig 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.
NewMeWithDefaults instantiates a new Me 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.
NewMultipleBucket instantiates a new MultipleBucket 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.
NewMultipleBucketWithDefaults instantiates a new MultipleBucket 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.
NewMultipleChannel instantiates a new MultipleChannel 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.
NewMultipleChannelWithDefaults instantiates a new MultipleChannel 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.
NewMultipleCircle instantiates a new MultipleCircle 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.
NewMultipleCircleWithDefaults instantiates a new MultipleCircle 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.
NewMultipleCollectionLatest instantiates a new MultipleCollectionLatest 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.
NewMultipleCollectionLatestWithDefaults instantiates a new MultipleCollectionLatest 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.
NewMultipleConstitutionComponent instantiates a new MultipleConstitutionComponent 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.
NewMultipleConstitutionComponentWithDefaults instantiates a new MultipleConstitutionComponent 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.
NewMultipleContract instantiates a new MultipleContract 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.
NewMultipleContractUser instantiates a new MultipleContractUser 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.
NewMultipleContractUserWithDefaults instantiates a new MultipleContractUser 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.
NewMultipleContractWithDefaults instantiates a new MultipleContract 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.
NewMultipleDataStoreChannel instantiates a new MultipleDataStoreChannel 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.
NewMultipleDataStoreChannelWithDefaults instantiates a new MultipleDataStoreChannel 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.
NewMultipleDataStoreDataLatest instantiates a new MultipleDataStoreDataLatest 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.
NewMultipleDataStoreDataLatestWithDefaults instantiates a new MultipleDataStoreDataLatest 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.
NewMultipleDataStoreObject instantiates a new MultipleDataStoreObject 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.
NewMultipleDataStoreObjectWithDefaults instantiates a new MultipleDataStoreObject 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.
NewMultipleDevice instantiates a new MultipleDevice 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.
NewMultipleDeviceEntitiesComponent instantiates a new MultipleDeviceEntitiesComponent 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.
NewMultipleDeviceEntitiesComponentWithDefaults instantiates a new MultipleDeviceEntitiesComponent 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.
NewMultipleDeviceModel instantiates a new MultipleDeviceModel 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.
NewMultipleDeviceModelEntity instantiates a new MultipleDeviceModelEntity 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.
NewMultipleDeviceModelEntityWithDefaults instantiates a new MultipleDeviceModelEntity 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.
NewMultipleDeviceModelWithDefaults instantiates a new MultipleDeviceModel 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.
NewMultipleDeviceMonitoring instantiates a new MultipleDeviceMonitoring 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.
NewMultipleDeviceMonitoringWithDefaults instantiates a new MultipleDeviceMonitoring 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.
NewMultipleDevicePolicy instantiates a new MultipleDevicePolicy 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.
NewMultipleDevicePolicyWithDefaults instantiates a new MultipleDevicePolicy 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.
NewMultipleDeviceWithDefaults instantiates a new MultipleDevice 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.
NewMultipleGroup instantiates a new MultipleGroup 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.
NewMultipleGroupWithDefaults instantiates a new MultipleGroup 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.
NewMultipleLicense instantiates a new MultipleLicense 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.
NewMultipleLicenseWithDefaults instantiates a new MultipleLicense 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.
NewMultipleLifeCycle instantiates a new MultipleLifeCycle 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.
NewMultipleLifeCycleWithDefaults instantiates a new MultipleLifeCycle 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.
NewMultipleMember instantiates a new MultipleMember 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.
NewMultipleMemberInfo instantiates a new MultipleMemberInfo 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.
NewMultipleMemberInfoWithDefaults instantiates a new MultipleMemberInfo 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.
NewMultipleMemberWithDefaults instantiates a new MultipleMember 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.
NewMultipleNode instantiates a new MultipleNode 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.
NewMultipleNodeWithDefaults instantiates a new MultipleNode 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.
NewMultiplePoint instantiates a new MultiplePoint 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.
NewMultiplePointWithDefaults instantiates a new MultiplePoint 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.
NewMultipleResourceOwner instantiates a new MultipleResourceOwner 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.
NewMultipleResourceOwnerWithDefaults instantiates a new MultipleResourceOwner 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.
NewMultipleRoute instantiates a new MultipleRoute 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.
NewMultipleRouteWithDefaults instantiates a new MultipleRoute 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.
NewMultipleSeriesDataLocationUnix instantiates a new MultipleSeriesDataLocationUnix 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.
NewMultipleSeriesDataLocationUnixWithDefaults instantiates a new MultipleSeriesDataLocationUnix 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.
NewMultipleSeriesImage instantiates a new MultipleSeriesImage 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.
NewMultipleSeriesImageWithDefaults instantiates a new MultipleSeriesImage 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.
NewMultipleSession instantiates a new MultipleSession 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.
NewMultipleSessionWithDefaults instantiates a new MultipleSession 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.
NewMultipleVideo instantiates a new MultipleVideo 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.
NewMultipleVideoWithDefaults instantiates a new MultipleVideo 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.
NewNode instantiates a new Node 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.
NewNodeFile instantiates a new NodeFile 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.
NewNodeFileWithDefaults instantiates a new NodeFile 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.
NewNodeName instantiates a new NodeName 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.
NewNodeNameWithDefaults instantiates a new NodeName 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.
NewNodeRequest instantiates a new NodeRequest 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.
NewNodeRequestWithDefaults instantiates a new NodeRequest 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.
NewNodeWithDefaults instantiates a new Node 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.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewPackerFormatJson instantiates a new PackerFormatJson 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.
NewPackerFormatJsonHeader instantiates a new PackerFormatJsonHeader 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.
NewPackerFormatJsonHeaderWithDefaults instantiates a new PackerFormatJsonHeader 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.
NewPackerFormatJsonWithDefaults instantiates a new PackerFormatJson 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.
NewParticipant instantiates a new Participant 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.
NewParticipantWithDefaults instantiates a new Participant 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.
NewPoint instantiates a new Point 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.
NewPointRequest instantiates a new PointRequest 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.
NewPointRequestWithDefaults instantiates a new PointRequest 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.
NewPointWithDefaults instantiates a new Point 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.
NewRecordedDates instantiates a new RecordedDates 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.
NewRecordedDatesWithDefaults instantiates a new RecordedDates 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.
NewResourceOwner instantiates a new ResourceOwner 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.
NewResourceOwnerProfile instantiates a new ResourceOwnerProfile 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.
NewResourceOwnerProfileWithDefaults instantiates a new ResourceOwnerProfile 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.
NewResourceOwnerWithDefaults instantiates a new ResourceOwner 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.
NewRoom instantiates a new Room 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.
NewRoomWithDefaults instantiates a new Room 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.
NewRoute instantiates a new Route 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.
NewRouteContents instantiates a new RouteContents 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.
NewRouteContentsWithDefaults instantiates a new RouteContents 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.
NewRouteWithDefaults instantiates a new Route 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.
NewRsaPublicKey instantiates a new RsaPublicKey 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.
NewRsaPublicKeyWithDefaults instantiates a new RsaPublicKey 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.
NewSeriesAggregations instantiates a new SeriesAggregations 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.
NewSeriesAggregationsWithDefaults instantiates a new SeriesAggregations 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.
NewSeriesBulkRequest instantiates a new SeriesBulkRequest 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.
NewSeriesBulkRequestWithDefaults instantiates a new SeriesBulkRequest 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.
NewSeriesDataBulkRequest instantiates a new SeriesDataBulkRequest 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.
NewSeriesDataBulkRequestWithDefaults instantiates a new SeriesDataBulkRequest 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.
NewSeriesDataLocation instantiates a new SeriesDataLocation 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.
NewSeriesDataLocationUnix instantiates a new SeriesDataLocationUnix 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.
NewSeriesDataLocationUnixWithDefaults instantiates a new SeriesDataLocationUnix 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.
NewSeriesDataLocationWithDefaults instantiates a new SeriesDataLocation 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.
NewSeriesDataRequest instantiates a new SeriesDataRequest 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.
NewSeriesDataRequestWithDefaults instantiates a new SeriesDataRequest 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.
NewSeriesImage instantiates a new SeriesImage 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.
NewSeriesImageWithDefaults instantiates a new SeriesImage 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.
NewSeriesRequest instantiates a new SeriesRequest 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.
NewSeriesRequestWithDefaults instantiates a new SeriesRequest 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.
NewSession instantiates a new Session 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.
NewSessionWithDefaults instantiates a new Session 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.
NewSingleBucket instantiates a new SingleBucket 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.
NewSingleBucketWithDefaults instantiates a new SingleBucket 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.
NewSingleChannel instantiates a new SingleChannel 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.
NewSingleChannelWithDefaults instantiates a new SingleChannel 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.
NewSingleCircle instantiates a new SingleCircle 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.
NewSingleCircleWithDefaults instantiates a new SingleCircle 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.
NewSingleDataStoreChannel instantiates a new SingleDataStoreChannel 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.
NewSingleDataStoreChannelWithDefaults instantiates a new SingleDataStoreChannel 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.
NewSingleDataStoreObject instantiates a new SingleDataStoreObject 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.
NewSingleDataStoreObjectWithDefaults instantiates a new SingleDataStoreObject 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.
NewSingleDevice instantiates a new SingleDevice 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.
NewSingleDeviceClientList instantiates a new SingleDeviceClientList 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.
NewSingleDeviceClientListWithDefaults instantiates a new SingleDeviceClientList 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.
NewSingleDeviceEntitiesComponent instantiates a new SingleDeviceEntitiesComponent 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.
NewSingleDeviceEntitiesComponentWithDefaults instantiates a new SingleDeviceEntitiesComponent 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.
NewSingleDeviceModel instantiates a new SingleDeviceModel 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.
NewSingleDeviceModelsEntity instantiates a new SingleDeviceModelsEntity 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.
NewSingleDeviceModelsEntityWithDefaults instantiates a new SingleDeviceModelsEntity 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.
NewSingleDeviceModelWithDefaults instantiates a new SingleDeviceModel 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.
NewSingleDeviceMonitoring instantiates a new SingleDeviceMonitoring 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.
NewSingleDeviceMonitoringWithDefaults instantiates a new SingleDeviceMonitoring 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.
NewSingleDeviceWithDefaults instantiates a new SingleDevice 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.
NewSingleLifeCycle instantiates a new SingleLifeCycle 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.
NewSingleLifeCycleWithDefaults instantiates a new SingleLifeCycle 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.
NewSingleNode instantiates a new SingleNode 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.
NewSingleNodeWithDefaults instantiates a new SingleNode 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.
NewSinglePoint instantiates a new SinglePoint 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.
NewSinglePointWithDefaults instantiates a new SinglePoint 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.
NewSingleRoom instantiates a new SingleRoom 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.
NewSingleRoomWithDefaults instantiates a new SingleRoom 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.
NewSingleRoute instantiates a new SingleRoute 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.
NewSingleRouteWithDefaults instantiates a new SingleRoute 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.
NewSingleSession instantiates a new SingleSession 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.
NewSingleSessionWithDefaults instantiates a new SingleSession 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.
NewSingleVideo instantiates a new SingleVideo 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.
NewSingleVideoWithDefaults instantiates a new SingleVideo 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.
NewSubscription instantiates a new Subscription 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.
NewSubscriptionItem instantiates a new SubscriptionItem 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.
NewSubscriptionItemWithDefaults instantiates a new SubscriptionItem 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.
NewSubscriptionOwner instantiates a new SubscriptionOwner 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.
NewSubscriptionOwnerWithDefaults instantiates a new SubscriptionOwner 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.
NewSubscriptionWithDefaults instantiates a new Subscription 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.
NewUpdatedBy instantiates a new UpdatedBy 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.
NewUpdatedByWithDefaults instantiates a new UpdatedBy 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.
NewVideo instantiates a new Video 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.
NewVideoUpdateRequest instantiates a new VideoUpdateRequest 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.
NewVideoUpdateRequestWithDefaults instantiates a new VideoUpdateRequest 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.
NewVideoWithDefaults instantiates a new Video 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.
NewWatch instantiates a new Watch 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.
NewWatchWithDefaults instantiates a new Watch 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.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Constants

List of ComponentTypeEnum.
List of ComponentTypeEnum.
List of ComponentTypeEnum.
List of ComponentTypeEnum.
List of ComponentTypeEnum.
List of ComponentTypeEnum.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

APIClient manages communication with the Cios Openapi API v1.0.1 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ApplicationClient struct for ApplicationClient.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Bucket struct for Bucket.
BucketEditBody struct for BucketEditBody.
BucketFiles struct for BucketFiles.
BucketName struct for BucketName.
BucketRequest struct for BucketRequest.
Channel struct for Channel.
ChannelProposal struct for ChannelProposal.
ChannelProtocol struct for ChannelProtocol.
ChannelUpdateProposal struct for ChannelUpdateProposal.
Circle struct for Circle.
Client struct for Client.
CollectionLatest struct for CollectionLatest.
CollectionLatestRequest struct for CollectionLatestRequest.
CollectionLocation struct for CollectionLocation.
Configuration stores the configuration of the API client.
ConnectedDeviceResult struct for ConnectedDeviceResult.
ConnectTokenResponse struct for ConnectTokenResponse.
ConstitutionComponent struct for ConstitutionComponent.
Contract struct for Contract.
ContractItem struct for ContractItem.
ContractOwner struct for ContractOwner.
ContractOwnerAddress struct for ContractOwnerAddress.
ContractUser struct for ContractUser.
ContractUserLicense struct for ContractUserLicense.
CreatedBy struct for CreatedBy.
CreatedByClient struct for CreatedByClient.
CreatedByUser struct for CreatedByUser.
DataError struct for DataError.
DataStoreChannel struct for DataStoreChannel.
DataStoreChannelStats struct for DataStoreChannelStats.
DataStoreConfig struct for DataStoreConfig.
DataStoreObject struct for DataStoreObject.
DataStoreObjectLocation struct for DataStoreObjectLocation.
Device struct for Device.
DeviceClient struct for DeviceClient.
DeviceClientList struct for DeviceClientList.
DeviceClientRequest struct for DeviceClientRequest.
DeviceClientRsaKey struct for DeviceClientRsaKey.
DeviceEntitiesComponent struct for DeviceEntitiesComponent.
DeviceEntitiesComponentUpdateRequest struct for DeviceEntitiesComponentUpdateRequest.
DeviceInfo struct for DeviceInfo.
DeviceModel struct for DeviceModel.
DeviceModelRequest struct for DeviceModelRequest.
DeviceModelsEntity struct for DeviceModelsEntity.
DeviceModelsEntityModel struct for DeviceModelsEntityModel.
DeviceModelUpdateRequest struct for DeviceModelUpdateRequest.
DeviceModelUpdateRequestWatch struct for DeviceModelUpdateRequestWatch.
DeviceModelUpdateRequestWatchTypes struct for DeviceModelUpdateRequestWatchTypes.
DeviceMonitoring struct for DeviceMonitoring.
DeviceMonitoringIDsRequest struct for DeviceMonitoringIDsRequest.
DevicePerformance struct for DevicePerformance.
DevicePolicy struct for DevicePolicy.
DevicePolicyRequest struct for DevicePolicyRequest.
DeviceUpdateRequest struct for DeviceUpdateRequest.
DisplayInfo struct for DisplayInfo.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
Group struct for Group.
GroupAddress struct for GroupAddress.
GroupChildren struct for GroupChildren.
GroupCreateRequest struct for GroupCreateRequest.
GroupInviteRequest struct for GroupInviteRequest.
GroupReplaceRequest struct for GroupReplaceRequest.
GroupUpdateRequest struct for GroupUpdateRequest.
Ids struct for Ids.
Inventory struct for Inventory.
Label struct for Label.
License struct for License.
LifeCycle struct for LifeCycle.
LifeCycleRequest struct for LifeCycleRequest.
Location struct for Location.
Me struct for Me.
MeGroups struct for MeGroups.
Member struct for Member.
MemberInfo struct for MemberInfo.
MemberInfoProfile struct for MemberInfoProfile.
MessagingConfig struct for MessagingConfig.
MultipleBucket struct for MultipleBucket.
MultipleChannel struct for MultipleChannel.
MultipleCircle struct for MultipleCircle.
MultipleCollectionLatest struct for MultipleCollectionLatest.
MultipleConstitutionComponent struct for MultipleConstitutionComponent.
MultipleContract struct for MultipleContract.
MultipleContractUser struct for MultipleContractUser.
MultipleDataStoreChannel struct for MultipleDataStoreChannel.
MultipleDataStoreDataLatest struct for MultipleDataStoreDataLatest.
MultipleDataStoreObject struct for MultipleDataStoreObject.
MultipleDevice struct for MultipleDevice.
MultipleDeviceEntitiesComponent struct for MultipleDeviceEntitiesComponent.
MultipleDeviceModel struct for MultipleDeviceModel.
MultipleDeviceModelEntity struct for MultipleDeviceModelEntity.
MultipleDeviceMonitoring struct for MultipleDeviceMonitoring.
MultipleDevicePolicy struct for MultipleDevicePolicy.
MultipleGroup struct for MultipleGroup.
MultipleLicense struct for MultipleLicense.
MultipleLifeCycle struct for MultipleLifeCycle.
MultipleMember struct for MultipleMember.
MultipleMemberInfo struct for MultipleMemberInfo.
MultipleNode struct for MultipleNode.
MultiplePoint struct for MultiplePoint.
MultipleResourceOwner struct for MultipleResourceOwner.
MultipleRoute struct for MultipleRoute.
MultipleSeriesDataLocationUnix struct for MultipleSeriesDataLocationUnix.
MultipleSeriesImage struct for MultipleSeriesImage.
MultipleSession struct for MultipleSession.
MultipleVideo struct for MultipleVideo.
Node struct for Node.
NodeFile struct for NodeFile.
NodeName struct for NodeName.
NodeRequest struct for NodeRequest.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PackerFormatJson struct for PackerFormatJson.
PackerFormatJsonHeader struct for PackerFormatJsonHeader.
Participant struct for Participant.
Point struct for Point.
PointRequest struct for PointRequest.
RecordedDates struct for RecordedDates.
ResourceOwner struct for ResourceOwner.
ResourceOwnerProfile struct for ResourceOwnerProfile.
Room struct for Room.
Route struct for Route.
RouteContents struct for RouteContents.
RsaPublicKey struct for RsaPublicKey.
SeriesAggregations struct for SeriesAggregations.
SeriesBulkRequest struct for SeriesBulkRequest.
SeriesDataBulkRequest struct for SeriesDataBulkRequest.
SeriesDataLocation デバイス位置情報。コレクションの定義に依存。schema.location_typeが”POINT“の場合必須、”NONE”の場合はlocationをリクエストに含めることはできない.
SeriesDataLocationUnix struct for SeriesDataLocationUnix.
SeriesDataRequest struct for SeriesDataRequest.
SeriesImage struct for SeriesImage.
SeriesRequest struct for SeriesRequest.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
Session struct for Session.
SingleBucket struct for SingleBucket.
SingleChannel struct for SingleChannel.
SingleCircle struct for SingleCircle.
SingleDataStoreChannel struct for SingleDataStoreChannel.
SingleDataStoreObject struct for SingleDataStoreObject.
SingleDevice struct for SingleDevice.
SingleDeviceClientList struct for SingleDeviceClientList.
SingleDeviceEntitiesComponent struct for SingleDeviceEntitiesComponent.
SingleDeviceModel struct for SingleDeviceModel.
SingleDeviceModelsEntity struct for SingleDeviceModelsEntity.
SingleDeviceMonitoring struct for SingleDeviceMonitoring.
SingleLifeCycle struct for SingleLifeCycle.
SingleNode struct for SingleNode.
SinglePoint struct for SinglePoint.
SingleRoom struct for SingleRoom.
SingleRoute struct for SingleRoute.
SingleSession struct for SingleSession.
SingleVideo struct for SingleVideo.
Subscription struct for Subscription.
SubscriptionItem struct for SubscriptionItem.
SubscriptionOwner struct for SubscriptionOwner.
UpdatedBy struct for UpdatedBy.
Video struct for Video.
VideoUpdateRequest struct for VideoUpdateRequest.
Watch struct for Watch.

# Type aliases

AccountApiService AccountApi service.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AuthApiService AuthApi service.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CollectionApiService CollectionApi service.
No description provided by the author
No description provided by the author
No description provided by the author
ComponentTypeEnum the model 'ComponentTypeEnum'.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ContractApiService ContractApi service.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
DeviceApiService DeviceApi service.
DeviceAssetApiService DeviceAssetApi service.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
FileStorageApiService FileStorageApi service.
No description provided by the author
GeographyApiService GeographyApi service.
No description provided by the author
GroupApiService GroupApi service.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
LicenseApiService LicenseApi service.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PublishSubscribeApiService PublishSubscribeApi service.
No description provided by the author
ResourceOwnerApiService ResourceOwnerApi service.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ServerConfigurations stores multiple ServerConfiguration items.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
VideostreamingOperationsApiService VideostreamingOperationsApi service.
No description provided by the author
No description provided by the author