notehub

package module
v0.0.0-...-1e40c1e Latest Latest
Warning

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

Go to latest
Published: Jan 5, 2026 License: MIT Imports: 21 Imported by: 0

README

Go API client for notehub

The OpenAPI definition for the Notehub.io API.

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.2.0
  • Package version: 1.0.0
  • Generator version: 7.17.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://dev.blues.io/support/

Installation

Install the following dependencies:

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

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

import notehub "github.com/blues/notehub-go"

To use a proxy, set the environment variable HTTP_PROXY:

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

Updating the Auto-Generated notehub-go Package

When the openapi.yaml file is updated in the original Notehub repo which this library supports, the updated file is copied over into a new feature branch in this repo through the magic of GitHub Actions.

When this occurs, it's time to regenerate the notehub-go Go package based on the newly updated openapi.yaml.

To regenerate the notehub-go package:

  1. Git clone the repo from GitHub.

    git clone git@github.com:blues/notehub-go.git
    
  2. Check out the newly created remote branch from GitHub locally. (It will be named something like feat-XYZ.)

  3. At the root of the project, run the following script command from your terminal:

    ./scripts.sh generate_and_format
    

This command will run the following subcommands:

  • remove_deprecated_parameters - This makes a copy of the openapi.yaml file named openapi_filtered.yaml which has removed any query parameters marked as deprecated from the openapi.yaml file. Removing these now deprecated params ensures the generated SDK docs and sample code is clear and up to date, and no longer has potentially confusing artifacts to trip up users.
  • generate_package - This kicks off the OpenAPI Generator tool to generate a new copy of the library (using the newly updated openapi_filtered.yaml file).
  • format_code - This runs gofmt and goimports on the Go files, and Prettier on the markdown docs within the docs/ directory to make them look nice.
  • init_go_module - This initializes the Go module if it doesn't exist.
  • tidy_go_dependencies - This tidies up the Go module dependencies.

Once all of these steps have successfully run, you'll be ready to merge the change to main and publish a new release.

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 notehub.ContextServerIndex of type int.

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://api.notefile.net

Class Method HTTP request Description
AlertAPI GetAlerts Get /v1/projects/{projectOrProductUID}/alerts
AuthorizationAPI Login Post /auth/login
AuthorizationAPI OAuth2ClientCredentials Post /oauth2/token Issue an OAuth 2.0 access token (Client Credentials)
BillingAccountAPI GetBillingAccounts Get /v1/billing-accounts
DeviceAPI AddDbNote Post /v1/projects/{projectOrProductUID}/devices/{deviceUID}/notes/{notefileID}/{noteID}
DeviceAPI AddQiNote Post /v1/projects/{projectOrProductUID}/devices/{deviceUID}/notes/{notefileID}
DeviceAPI DeleteDbNote Delete /v1/projects/{projectOrProductUID}/devices/{deviceUID}/notes/{notefileID}/{noteID}
DeviceAPI DeleteDevice Delete /v1/projects/{projectOrProductUID}/devices/{deviceUID}
DeviceAPI DeleteDeviceEnvironmentVariable Delete /v1/projects/{projectOrProductUID}/devices/{deviceUID}/environment_variables/{key}
DeviceAPI DeleteNotefiles Delete /v1/projects/{projectOrProductUID}/devices/{deviceUID}/files
DeviceAPI DisableDevice Post /v1/projects/{projectOrProductUID}/devices/{deviceUID}/disable
DeviceAPI DisableDeviceConnectivityAssurance Post /v1/projects/{projectOrProductUID}/devices/{deviceUID}/disable-connectivity-assurance
DeviceAPI EnableDevice Post /v1/projects/{projectOrProductUID}/devices/{deviceUID}/enable
DeviceAPI EnableDeviceConnectivityAssurance Post /v1/projects/{projectOrProductUID}/devices/{deviceUID}/enable-connectivity-assurance
DeviceAPI GetDbNote Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/notes/{notefileID}/{noteID}
DeviceAPI GetDevice Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}
DeviceAPI GetDeviceEnvironmentHierarchy Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/environment_hierarchy Get environment variable hierarchy for a device
DeviceAPI GetDeviceEnvironmentVariables Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/environment_variables
DeviceAPI GetDeviceEnvironmentVariablesByPin Get /v1/products/{productUID}/devices/{deviceUID}/environment_variables_with_pin
DeviceAPI GetDeviceHealthLog Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/health-log
DeviceAPI GetDeviceLatestEvents Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/latest
DeviceAPI GetDevicePlans Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/plans
DeviceAPI GetDevicePublicKey Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/public-key
DeviceAPI GetDevicePublicKeys Get /v1/projects/{projectOrProductUID}/devices/public-keys
DeviceAPI GetDeviceSessions Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/sessions
DeviceAPI GetDevices Get /v1/projects/{projectOrProductUID}/devices
DeviceAPI GetFleetDevices Get /v1/projects/{projectOrProductUID}/fleets/{fleetUID}/devices
DeviceAPI GetNotefile Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/notes/{notefileID}/changes
DeviceAPI ListNotefiles Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/files/changes
DeviceAPI ListPendingNotefiles Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/files/changes/pending
DeviceAPI ProvisionDevice Post /v1/projects/{projectOrProductUID}/devices/{deviceUID}/provision
DeviceAPI SetDeviceEnvironmentVariables Put /v1/projects/{projectOrProductUID}/devices/{deviceUID}/environment_variables
DeviceAPI SetDeviceEnvironmentVariablesByPin Put /v1/products/{productUID}/devices/{deviceUID}/environment_variables_with_pin
DeviceAPI SignalDevice Post /v1/projects/{projectOrProductUID}/devices/{deviceUID}/signal
DeviceAPI UpdateDbNote Put /v1/projects/{projectOrProductUID}/devices/{deviceUID}/notes/{notefileID}/{noteID}
EventAPI GetEvents Get /v1/projects/{projectOrProductUID}/events
EventAPI GetEventsByCursor Get /v1/projects/{projectOrProductUID}/events-cursor
EventAPI GetFleetEvents Get /v1/projects/{projectOrProductUID}/fleets/{fleetUID}/events
EventAPI GetFleetEventsByCursor Get /v1/projects/{projectOrProductUID}/fleets/{fleetUID}/events-cursor
EventAPI GetRouteLogsByEvent Get /v1/projects/{projectOrProductUID}/events/{eventUID}/route-logs
ExternalDevicesAPI CreateEventExtDevice Post /v1/products/{productUID}/ext-devices/{deviceUID}/event
ExternalDevicesAPI ExtDeviceSessionClose Post /v1/products/{productUID}/ext-devices/{deviceUID}/session/close
ExternalDevicesAPI ExtDeviceSessionOpen Post /v1/products/{productUID}/ext-devices/{deviceUID}/session/open
MonitorAPI CreateMonitor Post /v1/projects/{projectOrProductUID}/monitors
MonitorAPI DeleteMonitor Delete /v1/projects/{projectOrProductUID}/monitors/{monitorUID}
MonitorAPI GetMonitor Get /v1/projects/{projectOrProductUID}/monitors/{monitorUID}
MonitorAPI GetMonitors Get /v1/projects/{projectOrProductUID}/monitors
MonitorAPI UpdateMonitor Put /v1/projects/{projectOrProductUID}/monitors/{monitorUID}
ProjectAPI AddDeviceToFleets Put /v1/projects/{projectOrProductUID}/devices/{deviceUID}/fleets
ProjectAPI CloneProject Post /v1/projects/{projectOrProductUID}/clone
ProjectAPI CreateFleet Post /v1/projects/{projectOrProductUID}/fleets
ProjectAPI CreateProduct Post /v1/projects/{projectOrProductUID}/products
ProjectAPI CreateProject Post /v1/projects
ProjectAPI DeleteDeviceFromFleets Delete /v1/projects/{projectOrProductUID}/devices/{deviceUID}/fleets
ProjectAPI DeleteFleet Delete /v1/projects/{projectOrProductUID}/fleets/{fleetUID}
ProjectAPI DeleteFleetEnvironmentVariable Delete /v1/projects/{projectOrProductUID}/fleets/{fleetUID}/environment_variables/{key}
ProjectAPI DeleteProduct Delete /v1/projects/{projectOrProductUID}/products/{productUID}
ProjectAPI DeleteProject Delete /v1/projects/{projectOrProductUID}
ProjectAPI DeleteProjectEnvironmentVariable Delete /v1/projects/{projectOrProductUID}/environment_variables/{key}
ProjectAPI DisableGlobalEventTransformation Post /v1/projects/{projectOrProductUID}/global-transformation/disable
ProjectAPI EnableGlobalEventTransformation Post /v1/projects/{projectOrProductUID}/global-transformation/enable
ProjectAPI GetDeviceDfuHistory Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/dfu/{firmwareType}/history
ProjectAPI GetDeviceDfuStatus Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/dfu/{firmwareType}/status
ProjectAPI GetDeviceFleets Get /v1/projects/{projectOrProductUID}/devices/{deviceUID}/fleets
ProjectAPI GetDevicesDfuHistory Get /v1/projects/{projectOrProductUID}/dfu/{firmwareType}/history
ProjectAPI GetDevicesDfuStatus Get /v1/projects/{projectOrProductUID}/dfu/{firmwareType}/status
ProjectAPI GetFirmwareInfo Get /v1/projects/{projectOrProductUID}/firmware
ProjectAPI GetFleet Get /v1/projects/{projectOrProductUID}/fleets/{fleetUID}
ProjectAPI GetFleetEnvironmentHierarchy Get /v1/projects/{projectOrProductUID}/fleets/{fleetUID}/environment_hierarchy Get environment variable hierarchy for a device
ProjectAPI GetFleetEnvironmentVariables Get /v1/projects/{projectOrProductUID}/fleets/{fleetUID}/environment_variables
ProjectAPI GetFleets Get /v1/projects/{projectOrProductUID}/fleets
ProjectAPI GetNotefileSchemas Get /v1/projects/{projectOrProductUID}/schemas Get variable format for a notefile
ProjectAPI GetProducts Get /v1/projects/{projectOrProductUID}/products
ProjectAPI GetProject Get /v1/projects/{projectOrProductUID}
ProjectAPI GetProjectByProduct Get /v1/products/{productUID}/project
ProjectAPI GetProjectEnvironmentHierarchy Get /v1/projects/{projectOrProductUID}/environment_hierarchy Get environment variable hierarchy for a device
ProjectAPI GetProjectEnvironmentVariables Get /v1/projects/{projectOrProductUID}/environment_variables
ProjectAPI GetProjectMembers Get /v1/projects/{projectOrProductUID}/members
ProjectAPI GetProjects Get /v1/projects
ProjectAPI PerformDfuAction Post /v1/projects/{projectOrProductUID}/dfu/{firmwareType}/{action}
ProjectAPI SetFleetEnvironmentVariables Put /v1/projects/{projectOrProductUID}/fleets/{fleetUID}/environment_variables
ProjectAPI SetGlobalEventTransformation Post /v1/projects/{projectOrProductUID}/global-transformation
ProjectAPI SetProjectEnvironmentVariables Put /v1/projects/{projectOrProductUID}/environment_variables
ProjectAPI UpdateFleet Put /v1/projects/{projectOrProductUID}/fleets/{fleetUID}
ProjectAPI UploadFirmware Put /v1/projects/{projectOrProductUID}/firmware/{firmwareType}/{filename}
RouteAPI CreateRoute Post /v1/projects/{projectOrProductUID}/routes
RouteAPI DeleteRoute Delete /v1/projects/{projectOrProductUID}/routes/{routeUID}
RouteAPI GetRoute Get /v1/projects/{projectOrProductUID}/routes/{routeUID}
RouteAPI GetRouteLogsByRoute Get /v1/projects/{projectOrProductUID}/routes/{routeUID}/route-logs
RouteAPI GetRoutes Get /v1/projects/{projectOrProductUID}/routes
RouteAPI UpdateRoute Put /v1/projects/{projectOrProductUID}/routes/{routeUID}
UsageAPI GetDataUsage Get /v1/projects/{projectOrProductUID}/usage/data
UsageAPI GetEventsUsage Get /v1/projects/{projectOrProductUID}/usage/events
UsageAPI GetSessionsUsage Get /v1/projects/{projectOrProductUID}/usage/sessions
WebhookAPI CreateWebhook Post /v1/projects/{projectOrProductUID}/webhooks/{webhookUID}
WebhookAPI DeleteWebhook Delete /v1/projects/{projectOrProductUID}/webhooks/{webhookUID}
WebhookAPI GetWebhook Get /v1/projects/{projectOrProductUID}/webhooks/{webhookUID}
WebhookAPI GetWebhooks Get /v1/projects/{projectOrProductUID}/webhooks
WebhookAPI UpdateWebhook Put /v1/projects/{projectOrProductUID}/webhooks/{webhookUID}

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

personalAccessToken
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), notehub.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)
pin
  • Type: API key
  • API key parameter name: X-Auth-Token
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: pin and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		notehub.ContextAPIKeys,
		map[string]notehub.APIKey{
			"pin": {Key: "API_KEY_STRING"},
		},
	)
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

engineering@blues.io

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

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

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedBillingAccountRoleEnumValues = []BillingAccountRole{
	"billing_admin",
	"billing_manager",
	"project_creator",
}

All allowed values of BillingAccountRole enum

View Source
var AllowedRoleEnumValues = []Role{
	"owner",
	"developer",
	"viewer",
	"support",
}

All allowed values of Role enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	AlertAPI *AlertAPIService

	AuthorizationAPI *AuthorizationAPIService

	BillingAccountAPI *BillingAccountAPIService

	DeviceAPI *DeviceAPIService

	EventAPI *EventAPIService

	ExternalDevicesAPI *ExternalDevicesAPIService

	MonitorAPI *MonitorAPIService

	ProjectAPI *ProjectAPIService

	RouteAPI *RouteAPIService

	UsageAPI *UsageAPIService

	WebhookAPI *WebhookAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Notehub API API v1.2.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AddDeviceToFleetsRequest

type AddDeviceToFleetsRequest struct {
	// The fleetUIDs to add to the device.
	FleetUids []string `json:"fleet_uids"`
}

AddDeviceToFleetsRequest struct for AddDeviceToFleetsRequest

func NewAddDeviceToFleetsRequest

func NewAddDeviceToFleetsRequest(fleetUids []string) *AddDeviceToFleetsRequest

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

func NewAddDeviceToFleetsRequestWithDefaults

func NewAddDeviceToFleetsRequestWithDefaults() *AddDeviceToFleetsRequest

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

func (*AddDeviceToFleetsRequest) GetFleetUids

func (o *AddDeviceToFleetsRequest) GetFleetUids() []string

GetFleetUids returns the FleetUids field value

func (*AddDeviceToFleetsRequest) GetFleetUidsOk

func (o *AddDeviceToFleetsRequest) GetFleetUidsOk() ([]string, bool)

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

func (AddDeviceToFleetsRequest) MarshalJSON

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

func (*AddDeviceToFleetsRequest) SetFleetUids

func (o *AddDeviceToFleetsRequest) SetFleetUids(v []string)

SetFleetUids sets field value

func (AddDeviceToFleetsRequest) ToMap

func (o AddDeviceToFleetsRequest) ToMap() (map[string]interface{}, error)

func (*AddDeviceToFleetsRequest) UnmarshalJSON

func (o *AddDeviceToFleetsRequest) UnmarshalJSON(data []byte) (err error)

type Alert

type Alert struct {
	// The source of the alert
	AlertSource *string `json:"alert_source,omitempty"`
	// The time the alert was created
	CreatedAt *int32           `json:"created_at,omitempty"`
	Data      []AlertDataInner `json:"data,omitempty"`
	// Device UID
	DeviceUid *string `json:"device_uid,omitempty"`
	// The field name that triggered the alert
	FieldName *string `json:"field_name,omitempty"`
	// Monitor Name
	MonitorName *string `json:"monitor_name,omitempty"`
	// The type of monitor that triggered the alert
	MonitorType *string `json:"monitor_type,omitempty"`
	// Monitor UID
	MonitorUid    *string                   `json:"monitor_uid,omitempty"`
	Notifications []AlertNotificationsInner `json:"notifications,omitempty"`
	// If true, the alert has been resolved
	Resolved *bool `json:"resolved,omitempty"`
	// The UID of the source of the alert
	Source *string `json:"source,omitempty"`
	// Alert UID
	Uid *string `json:"uid,omitempty"`
	// The value that triggered the alert
	Value *float32 `json:"value,omitempty"`
	// The version of the alert
	Version *int32 `json:"version,omitempty"`
}

Alert struct for Alert

func NewAlert

func NewAlert() *Alert

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

func NewAlertWithDefaults

func NewAlertWithDefaults() *Alert

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

func (*Alert) GetAlertSource

func (o *Alert) GetAlertSource() string

GetAlertSource returns the AlertSource field value if set, zero value otherwise.

func (*Alert) GetAlertSourceOk

func (o *Alert) GetAlertSourceOk() (*string, bool)

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

func (*Alert) GetCreatedAt

func (o *Alert) GetCreatedAt() int32

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

func (*Alert) GetCreatedAtOk

func (o *Alert) GetCreatedAtOk() (*int32, bool)

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

func (*Alert) GetData

func (o *Alert) GetData() []AlertDataInner

GetData returns the Data field value if set, zero value otherwise.

func (*Alert) GetDataOk

func (o *Alert) GetDataOk() ([]AlertDataInner, bool)

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

func (*Alert) GetDeviceUid

func (o *Alert) GetDeviceUid() string

GetDeviceUid returns the DeviceUid field value if set, zero value otherwise.

func (*Alert) GetDeviceUidOk

func (o *Alert) GetDeviceUidOk() (*string, bool)

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

func (*Alert) GetFieldName

func (o *Alert) GetFieldName() string

GetFieldName returns the FieldName field value if set, zero value otherwise.

func (*Alert) GetFieldNameOk

func (o *Alert) GetFieldNameOk() (*string, bool)

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

func (*Alert) GetMonitorName

func (o *Alert) GetMonitorName() string

GetMonitorName returns the MonitorName field value if set, zero value otherwise.

func (*Alert) GetMonitorNameOk

func (o *Alert) GetMonitorNameOk() (*string, bool)

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

func (*Alert) GetMonitorType

func (o *Alert) GetMonitorType() string

GetMonitorType returns the MonitorType field value if set, zero value otherwise.

func (*Alert) GetMonitorTypeOk

func (o *Alert) GetMonitorTypeOk() (*string, bool)

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

func (*Alert) GetMonitorUid

func (o *Alert) GetMonitorUid() string

GetMonitorUid returns the MonitorUid field value if set, zero value otherwise.

func (*Alert) GetMonitorUidOk

func (o *Alert) GetMonitorUidOk() (*string, bool)

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

func (*Alert) GetNotifications

func (o *Alert) GetNotifications() []AlertNotificationsInner

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*Alert) GetNotificationsOk

func (o *Alert) GetNotificationsOk() ([]AlertNotificationsInner, bool)

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

func (*Alert) GetResolved

func (o *Alert) GetResolved() bool

GetResolved returns the Resolved field value if set, zero value otherwise.

func (*Alert) GetResolvedOk

func (o *Alert) GetResolvedOk() (*bool, bool)

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

func (*Alert) GetSource

func (o *Alert) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*Alert) GetSourceOk

func (o *Alert) GetSourceOk() (*string, bool)

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

func (*Alert) GetUid

func (o *Alert) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*Alert) GetUidOk

func (o *Alert) GetUidOk() (*string, bool)

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

func (*Alert) GetValue

func (o *Alert) GetValue() float32

GetValue returns the Value field value if set, zero value otherwise.

func (*Alert) GetValueOk

func (o *Alert) GetValueOk() (*float32, bool)

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

func (*Alert) GetVersion

func (o *Alert) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*Alert) GetVersionOk

func (o *Alert) GetVersionOk() (*int32, bool)

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

func (*Alert) HasAlertSource

func (o *Alert) HasAlertSource() bool

HasAlertSource returns a boolean if a field has been set.

func (*Alert) HasCreatedAt

func (o *Alert) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Alert) HasData

func (o *Alert) HasData() bool

HasData returns a boolean if a field has been set.

func (*Alert) HasDeviceUid

func (o *Alert) HasDeviceUid() bool

HasDeviceUid returns a boolean if a field has been set.

func (*Alert) HasFieldName

func (o *Alert) HasFieldName() bool

HasFieldName returns a boolean if a field has been set.

func (*Alert) HasMonitorName

func (o *Alert) HasMonitorName() bool

HasMonitorName returns a boolean if a field has been set.

func (*Alert) HasMonitorType

func (o *Alert) HasMonitorType() bool

HasMonitorType returns a boolean if a field has been set.

func (*Alert) HasMonitorUid

func (o *Alert) HasMonitorUid() bool

HasMonitorUid returns a boolean if a field has been set.

func (*Alert) HasNotifications

func (o *Alert) HasNotifications() bool

HasNotifications returns a boolean if a field has been set.

func (*Alert) HasResolved

func (o *Alert) HasResolved() bool

HasResolved returns a boolean if a field has been set.

func (*Alert) HasSource

func (o *Alert) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*Alert) HasUid

func (o *Alert) HasUid() bool

HasUid returns a boolean if a field has been set.

func (*Alert) HasValue

func (o *Alert) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*Alert) HasVersion

func (o *Alert) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Alert) MarshalJSON

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

func (*Alert) SetAlertSource

func (o *Alert) SetAlertSource(v string)

SetAlertSource gets a reference to the given string and assigns it to the AlertSource field.

func (*Alert) SetCreatedAt

func (o *Alert) SetCreatedAt(v int32)

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

func (*Alert) SetData

func (o *Alert) SetData(v []AlertDataInner)

SetData gets a reference to the given []AlertDataInner and assigns it to the Data field.

func (*Alert) SetDeviceUid

func (o *Alert) SetDeviceUid(v string)

SetDeviceUid gets a reference to the given string and assigns it to the DeviceUid field.

func (*Alert) SetFieldName

func (o *Alert) SetFieldName(v string)

SetFieldName gets a reference to the given string and assigns it to the FieldName field.

func (*Alert) SetMonitorName

func (o *Alert) SetMonitorName(v string)

SetMonitorName gets a reference to the given string and assigns it to the MonitorName field.

func (*Alert) SetMonitorType

func (o *Alert) SetMonitorType(v string)

SetMonitorType gets a reference to the given string and assigns it to the MonitorType field.

func (*Alert) SetMonitorUid

func (o *Alert) SetMonitorUid(v string)

SetMonitorUid gets a reference to the given string and assigns it to the MonitorUid field.

func (*Alert) SetNotifications

func (o *Alert) SetNotifications(v []AlertNotificationsInner)

SetNotifications gets a reference to the given []AlertNotificationsInner and assigns it to the Notifications field.

func (*Alert) SetResolved

func (o *Alert) SetResolved(v bool)

SetResolved gets a reference to the given bool and assigns it to the Resolved field.

func (*Alert) SetSource

func (o *Alert) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*Alert) SetUid

func (o *Alert) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (*Alert) SetValue

func (o *Alert) SetValue(v float32)

SetValue gets a reference to the given float32 and assigns it to the Value field.

func (*Alert) SetVersion

func (o *Alert) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (Alert) ToMap

func (o Alert) ToMap() (map[string]interface{}, error)

type AlertAPIService

type AlertAPIService service

AlertAPIService AlertAPI service

func (*AlertAPIService) GetAlerts

func (a *AlertAPIService) GetAlerts(ctx context.Context, projectOrProductUID string) ApiGetAlertsRequest

GetAlerts Method for GetAlerts

Get list of defined Alerts

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

func (*AlertAPIService) GetAlertsExecute

Execute executes the request

@return GetAlerts200Response

type AlertDataInner

type AlertDataInner struct {
	// The source of the alert
	AlertSource *string `json:"alert_source,omitempty"`
	// The UID of the source of the alert
	Source *string `json:"source,omitempty"`
	// The type of source.
	SourceType *string `json:"source_type,omitempty"`
	// The UID of the source of the alert
	SourceUid *string `json:"source_uid,omitempty"`
	// The value that triggered the alert
	Value *float32 `json:"value,omitempty"`
	// The time the alert was created
	When *string `json:"when,omitempty"`
}

AlertDataInner struct for AlertDataInner

func NewAlertDataInner

func NewAlertDataInner() *AlertDataInner

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

func NewAlertDataInnerWithDefaults

func NewAlertDataInnerWithDefaults() *AlertDataInner

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

func (*AlertDataInner) GetAlertSource

func (o *AlertDataInner) GetAlertSource() string

GetAlertSource returns the AlertSource field value if set, zero value otherwise.

func (*AlertDataInner) GetAlertSourceOk

func (o *AlertDataInner) GetAlertSourceOk() (*string, bool)

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

func (*AlertDataInner) GetSource

func (o *AlertDataInner) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*AlertDataInner) GetSourceOk

func (o *AlertDataInner) GetSourceOk() (*string, bool)

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

func (*AlertDataInner) GetSourceType

func (o *AlertDataInner) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*AlertDataInner) GetSourceTypeOk

func (o *AlertDataInner) GetSourceTypeOk() (*string, bool)

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

func (*AlertDataInner) GetSourceUid

func (o *AlertDataInner) GetSourceUid() string

GetSourceUid returns the SourceUid field value if set, zero value otherwise.

func (*AlertDataInner) GetSourceUidOk

func (o *AlertDataInner) GetSourceUidOk() (*string, bool)

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

func (*AlertDataInner) GetValue

func (o *AlertDataInner) GetValue() float32

GetValue returns the Value field value if set, zero value otherwise.

func (*AlertDataInner) GetValueOk

func (o *AlertDataInner) GetValueOk() (*float32, bool)

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

func (*AlertDataInner) GetWhen

func (o *AlertDataInner) GetWhen() string

GetWhen returns the When field value if set, zero value otherwise.

func (*AlertDataInner) GetWhenOk

func (o *AlertDataInner) GetWhenOk() (*string, bool)

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

func (*AlertDataInner) HasAlertSource

func (o *AlertDataInner) HasAlertSource() bool

HasAlertSource returns a boolean if a field has been set.

func (*AlertDataInner) HasSource

func (o *AlertDataInner) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*AlertDataInner) HasSourceType

func (o *AlertDataInner) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (*AlertDataInner) HasSourceUid

func (o *AlertDataInner) HasSourceUid() bool

HasSourceUid returns a boolean if a field has been set.

func (*AlertDataInner) HasValue

func (o *AlertDataInner) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*AlertDataInner) HasWhen

func (o *AlertDataInner) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (AlertDataInner) MarshalJSON

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

func (*AlertDataInner) SetAlertSource

func (o *AlertDataInner) SetAlertSource(v string)

SetAlertSource gets a reference to the given string and assigns it to the AlertSource field.

func (*AlertDataInner) SetSource

func (o *AlertDataInner) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*AlertDataInner) SetSourceType

func (o *AlertDataInner) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (*AlertDataInner) SetSourceUid

func (o *AlertDataInner) SetSourceUid(v string)

SetSourceUid gets a reference to the given string and assigns it to the SourceUid field.

func (*AlertDataInner) SetValue

func (o *AlertDataInner) SetValue(v float32)

SetValue gets a reference to the given float32 and assigns it to the Value field.

func (*AlertDataInner) SetWhen

func (o *AlertDataInner) SetWhen(v string)

SetWhen gets a reference to the given string and assigns it to the When field.

func (AlertDataInner) ToMap

func (o AlertDataInner) ToMap() (map[string]interface{}, error)

type AlertNotificationsInner

type AlertNotificationsInner struct {
	// The type of notification
	NotificationType *string `json:"notification_type,omitempty"`
	// The recipients of the notification
	Recipients *string `json:"recipients,omitempty"`
	// The status of the notification
	Status *float32 `json:"status,omitempty"`
}

AlertNotificationsInner struct for AlertNotificationsInner

func NewAlertNotificationsInner

func NewAlertNotificationsInner() *AlertNotificationsInner

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

func NewAlertNotificationsInnerWithDefaults

func NewAlertNotificationsInnerWithDefaults() *AlertNotificationsInner

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

func (*AlertNotificationsInner) GetNotificationType

func (o *AlertNotificationsInner) GetNotificationType() string

GetNotificationType returns the NotificationType field value if set, zero value otherwise.

func (*AlertNotificationsInner) GetNotificationTypeOk

func (o *AlertNotificationsInner) GetNotificationTypeOk() (*string, bool)

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

func (*AlertNotificationsInner) GetRecipients

func (o *AlertNotificationsInner) GetRecipients() string

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*AlertNotificationsInner) GetRecipientsOk

func (o *AlertNotificationsInner) GetRecipientsOk() (*string, bool)

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

func (*AlertNotificationsInner) GetStatus

func (o *AlertNotificationsInner) GetStatus() float32

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

func (*AlertNotificationsInner) GetStatusOk

func (o *AlertNotificationsInner) GetStatusOk() (*float32, bool)

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

func (*AlertNotificationsInner) HasNotificationType

func (o *AlertNotificationsInner) HasNotificationType() bool

HasNotificationType returns a boolean if a field has been set.

func (*AlertNotificationsInner) HasRecipients

func (o *AlertNotificationsInner) HasRecipients() bool

HasRecipients returns a boolean if a field has been set.

func (*AlertNotificationsInner) HasStatus

func (o *AlertNotificationsInner) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AlertNotificationsInner) MarshalJSON

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

func (*AlertNotificationsInner) SetNotificationType

func (o *AlertNotificationsInner) SetNotificationType(v string)

SetNotificationType gets a reference to the given string and assigns it to the NotificationType field.

func (*AlertNotificationsInner) SetRecipients

func (o *AlertNotificationsInner) SetRecipients(v string)

SetRecipients gets a reference to the given string and assigns it to the Recipients field.

func (*AlertNotificationsInner) SetStatus

func (o *AlertNotificationsInner) SetStatus(v float32)

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

func (AlertNotificationsInner) ToMap

func (o AlertNotificationsInner) ToMap() (map[string]interface{}, error)

type ApiAddDbNoteRequest

type ApiAddDbNoteRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiAddDbNoteRequest) Execute

func (r ApiAddDbNoteRequest) Execute() (*http.Response, error)

func (ApiAddDbNoteRequest) NoteInput

func (r ApiAddDbNoteRequest) NoteInput(noteInput NoteInput) ApiAddDbNoteRequest

Body or payload of note to be added to the device

type ApiAddDeviceToFleetsRequest

type ApiAddDeviceToFleetsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiAddDeviceToFleetsRequest) AddDeviceToFleetsRequest

func (r ApiAddDeviceToFleetsRequest) AddDeviceToFleetsRequest(addDeviceToFleetsRequest AddDeviceToFleetsRequest) ApiAddDeviceToFleetsRequest

The fleets to add to the device. Note that the endpoint takes an array of fleetUIDs, to facilitate multi-fleet devices. Multi-fleet is not yet enabled on all SaaS plans - unless it is supported by the SaaS plan of the project, passing more than a single fleetUID in the array is an error.

func (ApiAddDeviceToFleetsRequest) Execute

type ApiAddQiNoteRequest

type ApiAddQiNoteRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiAddQiNoteRequest) Execute

func (r ApiAddQiNoteRequest) Execute() (*http.Response, error)

func (ApiAddQiNoteRequest) NoteInput

func (r ApiAddQiNoteRequest) NoteInput(noteInput NoteInput) ApiAddQiNoteRequest

Body or payload of note to be added to the device

type ApiCloneProjectRequest

type ApiCloneProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiCloneProjectRequest) CloneProjectRequest

func (r ApiCloneProjectRequest) CloneProjectRequest(cloneProjectRequest CloneProjectRequest) ApiCloneProjectRequest

Project to be cloned

func (ApiCloneProjectRequest) Execute

func (r ApiCloneProjectRequest) Execute() (*Project, *http.Response, error)

type ApiCreateEventExtDeviceRequest

type ApiCreateEventExtDeviceRequest struct {
	ApiService *ExternalDevicesAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEventExtDeviceRequest) Event

Event Object

func (ApiCreateEventExtDeviceRequest) Execute

type ApiCreateFleetRequest

type ApiCreateFleetRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiCreateFleetRequest) CreateFleetRequest

func (r ApiCreateFleetRequest) CreateFleetRequest(createFleetRequest CreateFleetRequest) ApiCreateFleetRequest

Fleet to be added

func (ApiCreateFleetRequest) Execute

func (r ApiCreateFleetRequest) Execute() (*Fleet, *http.Response, error)

type ApiCreateMonitorRequest

type ApiCreateMonitorRequest struct {
	ApiService *MonitorAPIService
	// contains filtered or unexported fields
}

func (ApiCreateMonitorRequest) Body

Body or payload of monitor to be created

func (ApiCreateMonitorRequest) Execute

type ApiCreateProductRequest

type ApiCreateProductRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiCreateProductRequest) CreateProductRequest

func (r ApiCreateProductRequest) CreateProductRequest(createProductRequest CreateProductRequest) ApiCreateProductRequest

Product to be created

func (ApiCreateProductRequest) Execute

type ApiCreateProjectRequest

type ApiCreateProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiCreateProjectRequest) CreateProjectRequest

func (r ApiCreateProjectRequest) CreateProjectRequest(createProjectRequest CreateProjectRequest) ApiCreateProjectRequest

Project to be created

func (ApiCreateProjectRequest) Execute

type ApiCreateRouteRequest

type ApiCreateRouteRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRouteRequest) Execute

func (ApiCreateRouteRequest) NotehubRoute

func (r ApiCreateRouteRequest) NotehubRoute(notehubRoute NotehubRoute) ApiCreateRouteRequest

Route to be created

type ApiCreateWebhookRequest

type ApiCreateWebhookRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiCreateWebhookRequest) Execute

func (r ApiCreateWebhookRequest) Execute() (*http.Response, error)

func (ApiCreateWebhookRequest) WebhookSettings

func (r ApiCreateWebhookRequest) WebhookSettings(webhookSettings WebhookSettings) ApiCreateWebhookRequest

type ApiDeleteDeviceEnvironmentVariableRequest

type ApiDeleteDeviceEnvironmentVariableRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteDeviceEnvironmentVariableRequest) Execute

type ApiDeleteDeviceFromFleetsRequest

type ApiDeleteDeviceFromFleetsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteDeviceFromFleetsRequest) DeleteDeviceFromFleetsRequest

func (r ApiDeleteDeviceFromFleetsRequest) DeleteDeviceFromFleetsRequest(deleteDeviceFromFleetsRequest DeleteDeviceFromFleetsRequest) ApiDeleteDeviceFromFleetsRequest

The fleets to remove from the device. Note that the endpoint takes an array of fleetUIDs, to facilitate multi-fleet devices. Multi-fleet is not yet enabled on all SaaS plans - unless it is supported by the SaaS plan of the project, passing more than a single fleetUID in the array is an error.

func (ApiDeleteDeviceFromFleetsRequest) Execute

type ApiDeleteDeviceRequest

type ApiDeleteDeviceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteDeviceRequest) Execute

func (r ApiDeleteDeviceRequest) Execute() (*http.Response, error)

func (ApiDeleteDeviceRequest) Purge

type ApiDeleteFleetEnvironmentVariableRequest

type ApiDeleteFleetEnvironmentVariableRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFleetEnvironmentVariableRequest) Execute

type ApiDeleteFleetRequest

type ApiDeleteFleetRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFleetRequest) Execute

func (r ApiDeleteFleetRequest) Execute() (*http.Response, error)

type ApiDeleteMonitorRequest

type ApiDeleteMonitorRequest struct {
	ApiService *MonitorAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMonitorRequest) Execute

type ApiDeleteNoteRequest

type ApiDeleteNoteRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteNoteRequest) Execute

func (r ApiDeleteNoteRequest) Execute() (*http.Response, error)

type ApiDeleteNotefilesRequest

type ApiDeleteNotefilesRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteNotefilesRequest) DeleteNotefilesRequest

func (r ApiDeleteNotefilesRequest) DeleteNotefilesRequest(deleteNotefilesRequest DeleteNotefilesRequest) ApiDeleteNotefilesRequest

func (ApiDeleteNotefilesRequest) Execute

func (r ApiDeleteNotefilesRequest) Execute() (*http.Response, error)

type ApiDeleteProductRequest

type ApiDeleteProductRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteProductRequest) Execute

func (r ApiDeleteProductRequest) Execute() (*http.Response, error)

type ApiDeleteProjectEnvironmentVariableRequest

type ApiDeleteProjectEnvironmentVariableRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteProjectEnvironmentVariableRequest) Execute

type ApiDeleteProjectRequest

type ApiDeleteProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteProjectRequest) Execute

func (r ApiDeleteProjectRequest) Execute() (*http.Response, error)

type ApiDeleteRouteRequest

type ApiDeleteRouteRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteRouteRequest) Execute

func (r ApiDeleteRouteRequest) Execute() (*http.Response, error)

type ApiDeleteWebhookRequest

type ApiDeleteWebhookRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteWebhookRequest) Execute

func (r ApiDeleteWebhookRequest) Execute() (*http.Response, error)

type ApiDisableDeviceConnectivityAssuranceRequest

type ApiDisableDeviceConnectivityAssuranceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiDisableDeviceConnectivityAssuranceRequest) Execute

type ApiDisableDeviceRequest

type ApiDisableDeviceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiDisableDeviceRequest) Execute

func (r ApiDisableDeviceRequest) Execute() (*http.Response, error)

type ApiDisableGlobalEventTransformationRequest

type ApiDisableGlobalEventTransformationRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiDisableGlobalEventTransformationRequest) Execute

type ApiEnableDeviceConnectivityAssuranceRequest

type ApiEnableDeviceConnectivityAssuranceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiEnableDeviceConnectivityAssuranceRequest) Execute

type ApiEnableDeviceRequest

type ApiEnableDeviceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiEnableDeviceRequest) Execute

func (r ApiEnableDeviceRequest) Execute() (*http.Response, error)

type ApiEnableGlobalEventTransformationRequest

type ApiEnableGlobalEventTransformationRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiEnableGlobalEventTransformationRequest) Execute

type ApiExtDeviceSessionCloseRequest

type ApiExtDeviceSessionCloseRequest struct {
	ApiService *ExternalDevicesAPIService
	// contains filtered or unexported fields
}

func (ApiExtDeviceSessionCloseRequest) DeviceSession

Session Object

func (ApiExtDeviceSessionCloseRequest) Execute

type ApiExtDeviceSessionOpenRequest

type ApiExtDeviceSessionOpenRequest struct {
	ApiService *ExternalDevicesAPIService
	// contains filtered or unexported fields
}

func (ApiExtDeviceSessionOpenRequest) DeviceSession

Session Object

func (ApiExtDeviceSessionOpenRequest) Execute

type ApiGetAlertsRequest

type ApiGetAlertsRequest struct {
	ApiService *AlertAPIService
	// contains filtered or unexported fields
}

func (ApiGetAlertsRequest) Execute

func (ApiGetAlertsRequest) MonitorUID

func (r ApiGetAlertsRequest) MonitorUID(monitorUID string) ApiGetAlertsRequest

func (ApiGetAlertsRequest) PageNum

func (r ApiGetAlertsRequest) PageNum(pageNum int32) ApiGetAlertsRequest

func (ApiGetAlertsRequest) PageSize

func (r ApiGetAlertsRequest) PageSize(pageSize int32) ApiGetAlertsRequest

type ApiGetBillingAccountsRequest

type ApiGetBillingAccountsRequest struct {
	ApiService *BillingAccountAPIService
	// contains filtered or unexported fields
}

func (ApiGetBillingAccountsRequest) Execute

type ApiGetDataUsageRequest

type ApiGetDataUsageRequest struct {
	ApiService *UsageAPIService
	// contains filtered or unexported fields
}

func (ApiGetDataUsageRequest) Aggregate

func (r ApiGetDataUsageRequest) Aggregate(aggregate string) ApiGetDataUsageRequest

Aggregation level for results

func (ApiGetDataUsageRequest) DeviceUID

func (r ApiGetDataUsageRequest) DeviceUID(deviceUID []string) ApiGetDataUsageRequest

A Device UID.

func (ApiGetDataUsageRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetDataUsageRequest) Execute

func (ApiGetDataUsageRequest) FleetUID

func (r ApiGetDataUsageRequest) FleetUID(fleetUID []string) ApiGetDataUsageRequest

Filter by Fleet UID

func (ApiGetDataUsageRequest) Period

Period type for aggregation

func (ApiGetDataUsageRequest) StartDate

func (r ApiGetDataUsageRequest) StartDate(startDate int32) ApiGetDataUsageRequest

Start date for filtering results, specified as a Unix timestamp

type ApiGetDbNoteRequest

type ApiGetDbNoteRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDbNoteRequest) Delete

func (r ApiGetDbNoteRequest) Delete(delete bool) ApiGetDbNoteRequest

Whether to delete the note from the DB notefile

func (ApiGetDbNoteRequest) Deleted

func (r ApiGetDbNoteRequest) Deleted(deleted bool) ApiGetDbNoteRequest

Whether to return deleted notes

func (ApiGetDbNoteRequest) Execute

type ApiGetDeviceDfuHistoryRequest

type ApiGetDeviceDfuHistoryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceDfuHistoryRequest) Execute

type ApiGetDeviceDfuStatusRequest

type ApiGetDeviceDfuStatusRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceDfuStatusRequest) Execute

type ApiGetDeviceEnvironmentHierarchyRequest

type ApiGetDeviceEnvironmentHierarchyRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceEnvironmentHierarchyRequest) Execute

type ApiGetDeviceEnvironmentVariablesByPinRequest

type ApiGetDeviceEnvironmentVariablesByPinRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceEnvironmentVariablesByPinRequest) Execute

type ApiGetDeviceEnvironmentVariablesRequest

type ApiGetDeviceEnvironmentVariablesRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceEnvironmentVariablesRequest) Execute

type ApiGetDeviceFleetsRequest

type ApiGetDeviceFleetsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceFleetsRequest) Execute

type ApiGetDeviceHealthLogRequest

type ApiGetDeviceHealthLogRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceHealthLogRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetDeviceHealthLogRequest) Execute

func (ApiGetDeviceHealthLogRequest) LogType

Return only specified log types

func (ApiGetDeviceHealthLogRequest) StartDate

Start date for filtering results, specified as a Unix timestamp

type ApiGetDeviceLatestEventsRequest

type ApiGetDeviceLatestEventsRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceLatestEventsRequest) Execute

type ApiGetDevicePlansRequest

type ApiGetDevicePlansRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDevicePlansRequest) Execute

type ApiGetDevicePublicKeyRequest

type ApiGetDevicePublicKeyRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDevicePublicKeyRequest) Execute

type ApiGetDevicePublicKeysRequest

type ApiGetDevicePublicKeysRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDevicePublicKeysRequest) Execute

func (ApiGetDevicePublicKeysRequest) PageNum

func (ApiGetDevicePublicKeysRequest) PageSize

type ApiGetDeviceRequest

type ApiGetDeviceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceRequest) Execute

func (r ApiGetDeviceRequest) Execute() (*Device, *http.Response, error)

type ApiGetDeviceSessionsRequest

type ApiGetDeviceSessionsRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceSessionsRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetDeviceSessionsRequest) Execute

func (ApiGetDeviceSessionsRequest) PageNum

func (ApiGetDeviceSessionsRequest) PageSize

func (ApiGetDeviceSessionsRequest) StartDate

Start date for filtering results, specified as a Unix timestamp

type ApiGetDevicesDfuHistoryRequest

type ApiGetDevicesDfuHistoryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetDevicesDfuHistoryRequest) DeviceUID

A Device UID.

func (ApiGetDevicesDfuHistoryRequest) Execute

func (ApiGetDevicesDfuHistoryRequest) FleetUID

func (ApiGetDevicesDfuHistoryRequest) HostFirmware

Host firmware filter

func (ApiGetDevicesDfuHistoryRequest) Location

Location filter

func (ApiGetDevicesDfuHistoryRequest) NotecardFirmware

func (r ApiGetDevicesDfuHistoryRequest) NotecardFirmware(notecardFirmware []string) ApiGetDevicesDfuHistoryRequest

Firmware version filter

func (ApiGetDevicesDfuHistoryRequest) PageNum

func (ApiGetDevicesDfuHistoryRequest) PageSize

func (ApiGetDevicesDfuHistoryRequest) ProductUID

func (ApiGetDevicesDfuHistoryRequest) SerialNumber

Serial number filter

func (ApiGetDevicesDfuHistoryRequest) Sku

SKU filter

func (ApiGetDevicesDfuHistoryRequest) SortBy

func (ApiGetDevicesDfuHistoryRequest) SortOrder

func (ApiGetDevicesDfuHistoryRequest) Tag

Tag filter

type ApiGetDevicesDfuStatusRequest

type ApiGetDevicesDfuStatusRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetDevicesDfuStatusRequest) DeviceUID

A Device UID.

func (ApiGetDevicesDfuStatusRequest) Execute

func (ApiGetDevicesDfuStatusRequest) FleetUID

func (ApiGetDevicesDfuStatusRequest) HostFirmware

Host firmware filter

func (ApiGetDevicesDfuStatusRequest) Location

Location filter

func (ApiGetDevicesDfuStatusRequest) NotecardFirmware

func (r ApiGetDevicesDfuStatusRequest) NotecardFirmware(notecardFirmware []string) ApiGetDevicesDfuStatusRequest

Firmware version filter

func (ApiGetDevicesDfuStatusRequest) PageNum

func (ApiGetDevicesDfuStatusRequest) PageSize

func (ApiGetDevicesDfuStatusRequest) ProductUID

func (ApiGetDevicesDfuStatusRequest) SerialNumber

Serial number filter

func (ApiGetDevicesDfuStatusRequest) Sku

SKU filter

func (ApiGetDevicesDfuStatusRequest) SortBy

func (ApiGetDevicesDfuStatusRequest) SortOrder

func (ApiGetDevicesDfuStatusRequest) Tag

Tag filter

type ApiGetDevicesRequest

type ApiGetDevicesRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetDevicesRequest) DeviceUID

func (r ApiGetDevicesRequest) DeviceUID(deviceUID []string) ApiGetDevicesRequest

A Device UID.

func (ApiGetDevicesRequest) Execute

func (ApiGetDevicesRequest) FleetUID

func (r ApiGetDevicesRequest) FleetUID(fleetUID []string) ApiGetDevicesRequest

func (ApiGetDevicesRequest) HostFirmware

func (r ApiGetDevicesRequest) HostFirmware(hostFirmware []string) ApiGetDevicesRequest

Host firmware filter

func (ApiGetDevicesRequest) Location

func (r ApiGetDevicesRequest) Location(location []string) ApiGetDevicesRequest

Location filter

func (ApiGetDevicesRequest) NotecardFirmware

func (r ApiGetDevicesRequest) NotecardFirmware(notecardFirmware []string) ApiGetDevicesRequest

Firmware version filter

func (ApiGetDevicesRequest) PageNum

func (r ApiGetDevicesRequest) PageNum(pageNum int32) ApiGetDevicesRequest

func (ApiGetDevicesRequest) PageSize

func (r ApiGetDevicesRequest) PageSize(pageSize int32) ApiGetDevicesRequest

func (ApiGetDevicesRequest) ProductUID

func (r ApiGetDevicesRequest) ProductUID(productUID []string) ApiGetDevicesRequest

func (ApiGetDevicesRequest) SerialNumber

func (r ApiGetDevicesRequest) SerialNumber(serialNumber []string) ApiGetDevicesRequest

Serial number filter

func (ApiGetDevicesRequest) Sku

SKU filter

func (ApiGetDevicesRequest) Tag

Tag filter

type ApiGetEventsByCursorRequest

type ApiGetEventsByCursorRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiGetEventsByCursorRequest) Cursor

A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.

func (ApiGetEventsByCursorRequest) DeviceUID

A Device UID.

func (ApiGetEventsByCursorRequest) Execute

func (ApiGetEventsByCursorRequest) Files

func (ApiGetEventsByCursorRequest) FleetUID

func (ApiGetEventsByCursorRequest) Limit

func (ApiGetEventsByCursorRequest) SortOrder

func (ApiGetEventsByCursorRequest) SystemFilesOnly

func (r ApiGetEventsByCursorRequest) SystemFilesOnly(systemFilesOnly bool) ApiGetEventsByCursorRequest

type ApiGetEventsRequest

type ApiGetEventsRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiGetEventsRequest) DateType

func (r ApiGetEventsRequest) DateType(dateType string) ApiGetEventsRequest

Which date to filter on, either 'captured' or 'uploaded'. This will apply to the startDate and endDate parameters

func (ApiGetEventsRequest) DeviceUID

func (r ApiGetEventsRequest) DeviceUID(deviceUID []string) ApiGetEventsRequest

A Device UID.

func (ApiGetEventsRequest) EndDate

func (r ApiGetEventsRequest) EndDate(endDate int32) ApiGetEventsRequest

End date for filtering results, specified as a Unix timestamp

func (ApiGetEventsRequest) EventUID

func (r ApiGetEventsRequest) EventUID(eventUID []string) ApiGetEventsRequest

Filter by Event UID

func (ApiGetEventsRequest) Execute

func (ApiGetEventsRequest) Files

func (ApiGetEventsRequest) FleetUID

func (r ApiGetEventsRequest) FleetUID(fleetUID []string) ApiGetEventsRequest

Filter by Fleet UID

func (ApiGetEventsRequest) Format

Response format (JSON or CSV)

func (ApiGetEventsRequest) PageNum

func (r ApiGetEventsRequest) PageNum(pageNum int32) ApiGetEventsRequest

func (ApiGetEventsRequest) PageSize

func (r ApiGetEventsRequest) PageSize(pageSize int32) ApiGetEventsRequest

func (ApiGetEventsRequest) SelectFields

func (r ApiGetEventsRequest) SelectFields(selectFields string) ApiGetEventsRequest

Comma-separated list of fields to select from JSON payload (e.g., \"field1,field2.subfield,field3\"), this will reflect the columns in the CSV output.

func (ApiGetEventsRequest) SerialNumber

func (r ApiGetEventsRequest) SerialNumber(serialNumber []string) ApiGetEventsRequest

Filter by Serial Number

func (ApiGetEventsRequest) SessionUID

func (r ApiGetEventsRequest) SessionUID(sessionUID []string) ApiGetEventsRequest

Filter by Session UID

func (ApiGetEventsRequest) SortBy

func (ApiGetEventsRequest) SortOrder

func (r ApiGetEventsRequest) SortOrder(sortOrder string) ApiGetEventsRequest

func (ApiGetEventsRequest) StartDate

func (r ApiGetEventsRequest) StartDate(startDate int32) ApiGetEventsRequest

Start date for filtering results, specified as a Unix timestamp

func (ApiGetEventsRequest) SystemFilesOnly

func (r ApiGetEventsRequest) SystemFilesOnly(systemFilesOnly bool) ApiGetEventsRequest

type ApiGetEventsUsageRequest

type ApiGetEventsUsageRequest struct {
	ApiService *UsageAPIService
	// contains filtered or unexported fields
}

func (ApiGetEventsUsageRequest) Aggregate

Aggregation level for results

func (ApiGetEventsUsageRequest) DeviceUID

func (r ApiGetEventsUsageRequest) DeviceUID(deviceUID []string) ApiGetEventsUsageRequest

A Device UID.

func (ApiGetEventsUsageRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetEventsUsageRequest) Execute

func (ApiGetEventsUsageRequest) FleetUID

Filter by Fleet UID

func (ApiGetEventsUsageRequest) IncludeNotefiles

func (r ApiGetEventsUsageRequest) IncludeNotefiles(includeNotefiles bool) ApiGetEventsUsageRequest

Include per-notefile event counts in the response

func (ApiGetEventsUsageRequest) Notefile

Filter to specific notefiles

func (ApiGetEventsUsageRequest) Period

Period type for aggregation

func (ApiGetEventsUsageRequest) SkipRecentData

func (r ApiGetEventsUsageRequest) SkipRecentData(skipRecentData bool) ApiGetEventsUsageRequest

When true, skips fetching recent data from raw event tables and only returns data from summary tables. Use this for better performance on large projects.

func (ApiGetEventsUsageRequest) StartDate

Start date for filtering results, specified as a Unix timestamp

type ApiGetFirmwareInfoRequest

type ApiGetFirmwareInfoRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetFirmwareInfoRequest) Execute

func (ApiGetFirmwareInfoRequest) Filename

func (ApiGetFirmwareInfoRequest) FirmwareType

func (r ApiGetFirmwareInfoRequest) FirmwareType(firmwareType string) ApiGetFirmwareInfoRequest

func (ApiGetFirmwareInfoRequest) Md5

func (ApiGetFirmwareInfoRequest) Product

func (ApiGetFirmwareInfoRequest) Target

func (ApiGetFirmwareInfoRequest) Unpublished

func (r ApiGetFirmwareInfoRequest) Unpublished(unpublished bool) ApiGetFirmwareInfoRequest

func (ApiGetFirmwareInfoRequest) Version

type ApiGetFleetDevicesRequest

type ApiGetFleetDevicesRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetFleetDevicesRequest) DeviceUID

A Device UID.

func (ApiGetFleetDevicesRequest) Execute

func (ApiGetFleetDevicesRequest) HostFirmware

func (r ApiGetFleetDevicesRequest) HostFirmware(hostFirmware []string) ApiGetFleetDevicesRequest

Host firmware filter

func (ApiGetFleetDevicesRequest) Location

Location filter

func (ApiGetFleetDevicesRequest) NotecardFirmware

func (r ApiGetFleetDevicesRequest) NotecardFirmware(notecardFirmware []string) ApiGetFleetDevicesRequest

Firmware version filter

func (ApiGetFleetDevicesRequest) PageNum

func (ApiGetFleetDevicesRequest) PageSize

func (ApiGetFleetDevicesRequest) ProductUID

func (r ApiGetFleetDevicesRequest) ProductUID(productUID []string) ApiGetFleetDevicesRequest

func (ApiGetFleetDevicesRequest) SerialNumber

func (r ApiGetFleetDevicesRequest) SerialNumber(serialNumber []string) ApiGetFleetDevicesRequest

Serial number filter

func (ApiGetFleetDevicesRequest) Sku

SKU filter

func (ApiGetFleetDevicesRequest) Tag

Tag filter

type ApiGetFleetEnvironmentHierarchyRequest

type ApiGetFleetEnvironmentHierarchyRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetFleetEnvironmentHierarchyRequest) Execute

type ApiGetFleetEnvironmentVariablesRequest

type ApiGetFleetEnvironmentVariablesRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetFleetEnvironmentVariablesRequest) Execute

type ApiGetFleetEventsByCursorRequest

type ApiGetFleetEventsByCursorRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiGetFleetEventsByCursorRequest) Cursor

A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.

func (ApiGetFleetEventsByCursorRequest) DeviceUID

A Device UID.

func (ApiGetFleetEventsByCursorRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetFleetEventsByCursorRequest) Execute

func (ApiGetFleetEventsByCursorRequest) Files

func (ApiGetFleetEventsByCursorRequest) Limit

func (ApiGetFleetEventsByCursorRequest) SortOrder

func (ApiGetFleetEventsByCursorRequest) StartDate

Start date for filtering results, specified as a Unix timestamp

func (ApiGetFleetEventsByCursorRequest) SystemFilesOnly

func (r ApiGetFleetEventsByCursorRequest) SystemFilesOnly(systemFilesOnly bool) ApiGetFleetEventsByCursorRequest

type ApiGetFleetEventsRequest

type ApiGetFleetEventsRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiGetFleetEventsRequest) DateType

Which date to filter on, either 'captured' or 'uploaded'. This will apply to the startDate and endDate parameters

func (ApiGetFleetEventsRequest) DeviceUID

func (r ApiGetFleetEventsRequest) DeviceUID(deviceUID []string) ApiGetFleetEventsRequest

A Device UID.

func (ApiGetFleetEventsRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetFleetEventsRequest) EventUID

Filter by Event UID

func (ApiGetFleetEventsRequest) Execute

func (ApiGetFleetEventsRequest) Files

func (ApiGetFleetEventsRequest) Format

Response format (JSON or CSV)

func (ApiGetFleetEventsRequest) PageNum

func (ApiGetFleetEventsRequest) PageSize

func (ApiGetFleetEventsRequest) SelectFields

func (r ApiGetFleetEventsRequest) SelectFields(selectFields string) ApiGetFleetEventsRequest

Comma-separated list of fields to select from JSON payload (e.g., \"field1,field2.subfield,field3\"), this will reflect the columns in the CSV output.

func (ApiGetFleetEventsRequest) SerialNumber

func (r ApiGetFleetEventsRequest) SerialNumber(serialNumber []string) ApiGetFleetEventsRequest

Filter by Serial Number

func (ApiGetFleetEventsRequest) SessionUID

func (r ApiGetFleetEventsRequest) SessionUID(sessionUID []string) ApiGetFleetEventsRequest

Filter by Session UID

func (ApiGetFleetEventsRequest) SortBy

func (ApiGetFleetEventsRequest) SortOrder

func (ApiGetFleetEventsRequest) StartDate

Start date for filtering results, specified as a Unix timestamp

func (ApiGetFleetEventsRequest) SystemFilesOnly

func (r ApiGetFleetEventsRequest) SystemFilesOnly(systemFilesOnly bool) ApiGetFleetEventsRequest

type ApiGetFleetRequest

type ApiGetFleetRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetFleetRequest) Execute

func (r ApiGetFleetRequest) Execute() (*Fleet, *http.Response, error)

type ApiGetFleetsRequest

type ApiGetFleetsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetFleetsRequest) Execute

type ApiGetMonitorRequest

type ApiGetMonitorRequest struct {
	ApiService *MonitorAPIService
	// contains filtered or unexported fields
}

func (ApiGetMonitorRequest) Execute

func (r ApiGetMonitorRequest) Execute() (*Monitor, *http.Response, error)

type ApiGetMonitorsRequest

type ApiGetMonitorsRequest struct {
	ApiService *MonitorAPIService
	// contains filtered or unexported fields
}

func (ApiGetMonitorsRequest) Execute

func (r ApiGetMonitorsRequest) Execute() ([]Monitor, *http.Response, error)

type ApiGetNotefileRequest

type ApiGetNotefileRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiGetNotefileRequest) Delete

true to delete the notes returned by the request.

func (ApiGetNotefileRequest) Deleted

true to return deleted notes.

func (ApiGetNotefileRequest) Execute

func (ApiGetNotefileRequest) Max

The maximum number of Notes to return in the request.

type ApiGetNotefileSchemasRequest

type ApiGetNotefileSchemasRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetNotefileSchemasRequest) Execute

type ApiGetProductsRequest

type ApiGetProductsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetProductsRequest) Execute

type ApiGetProjectByProductRequest

type ApiGetProjectByProductRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetProjectByProductRequest) Execute

type ApiGetProjectEnvironmentHierarchyRequest

type ApiGetProjectEnvironmentHierarchyRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetProjectEnvironmentHierarchyRequest) Execute

type ApiGetProjectEnvironmentVariablesRequest

type ApiGetProjectEnvironmentVariablesRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetProjectEnvironmentVariablesRequest) Execute

type ApiGetProjectMembersRequest

type ApiGetProjectMembersRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetProjectMembersRequest) Execute

type ApiGetProjectRequest

type ApiGetProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetProjectRequest) Execute

func (r ApiGetProjectRequest) Execute() (*Project, *http.Response, error)

type ApiGetProjectsRequest

type ApiGetProjectsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetProjectsRequest) Execute

type ApiGetRouteLogsByEventRequest

type ApiGetRouteLogsByEventRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiGetRouteLogsByEventRequest) Execute

type ApiGetRouteLogsByRouteRequest

type ApiGetRouteLogsByRouteRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiGetRouteLogsByRouteRequest) DeviceUID

A Device UID.

func (ApiGetRouteLogsByRouteRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetRouteLogsByRouteRequest) Execute

func (ApiGetRouteLogsByRouteRequest) Files

func (ApiGetRouteLogsByRouteRequest) MostRecentOnly

func (r ApiGetRouteLogsByRouteRequest) MostRecentOnly(mostRecentOnly bool) ApiGetRouteLogsByRouteRequest

func (ApiGetRouteLogsByRouteRequest) PageNum

func (ApiGetRouteLogsByRouteRequest) PageSize

func (ApiGetRouteLogsByRouteRequest) SortBy

func (ApiGetRouteLogsByRouteRequest) SortOrder

func (ApiGetRouteLogsByRouteRequest) StartDate

Start date for filtering results, specified as a Unix timestamp

func (ApiGetRouteLogsByRouteRequest) SystemFilesOnly

func (r ApiGetRouteLogsByRouteRequest) SystemFilesOnly(systemFilesOnly bool) ApiGetRouteLogsByRouteRequest

type ApiGetRouteLogsUsageRequest

type ApiGetRouteLogsUsageRequest struct {
	ApiService *UsageAPIService
	// contains filtered or unexported fields
}

func (ApiGetRouteLogsUsageRequest) Aggregate

Aggregation level for results

func (ApiGetRouteLogsUsageRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetRouteLogsUsageRequest) Execute

func (ApiGetRouteLogsUsageRequest) Period

Period type for aggregation

func (ApiGetRouteLogsUsageRequest) RouteUID

A Route UID.

func (ApiGetRouteLogsUsageRequest) StartDate

Start date for filtering results, specified as a Unix timestamp

type ApiGetRouteRequest

type ApiGetRouteRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiGetRouteRequest) Execute

type ApiGetRoutesRequest

type ApiGetRoutesRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiGetRoutesRequest) Execute

type ApiGetSessionsUsageRequest

type ApiGetSessionsUsageRequest struct {
	ApiService *UsageAPIService
	// contains filtered or unexported fields
}

func (ApiGetSessionsUsageRequest) Aggregate

Aggregation level for results

func (ApiGetSessionsUsageRequest) DeviceUID

A Device UID.

func (ApiGetSessionsUsageRequest) EndDate

End date for filtering results, specified as a Unix timestamp

func (ApiGetSessionsUsageRequest) Execute

func (ApiGetSessionsUsageRequest) FleetUID

Filter by Fleet UID

func (ApiGetSessionsUsageRequest) Period

Period type for aggregation

func (ApiGetSessionsUsageRequest) SkipRecentData

func (r ApiGetSessionsUsageRequest) SkipRecentData(skipRecentData bool) ApiGetSessionsUsageRequest

When true, skips fetching recent data from raw event tables and only returns data from summary tables. Use this for better performance on large projects.

func (ApiGetSessionsUsageRequest) StartDate

Start date for filtering results, specified as a Unix timestamp

type ApiGetWebhookRequest

type ApiGetWebhookRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiGetWebhookRequest) Execute

type ApiGetWebhooksRequest

type ApiGetWebhooksRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiGetWebhooksRequest) Execute

type ApiListNotefilesRequest

type ApiListNotefilesRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiListNotefilesRequest) Execute

func (r ApiListNotefilesRequest) Execute() ([]Notefile, *http.Response, error)

func (ApiListNotefilesRequest) Files

One or more files to obtain change information from.

func (ApiListNotefilesRequest) Pending

show only files that are pending sync to the Notecard

type ApiLoginRequest

type ApiLoginRequest struct {
	ApiService *AuthorizationAPIService
	// contains filtered or unexported fields
}

func (ApiLoginRequest) Execute

func (ApiLoginRequest) LoginRequest

func (r ApiLoginRequest) LoginRequest(loginRequest LoginRequest) ApiLoginRequest

type ApiOAuth2ClientCredentialsRequest

type ApiOAuth2ClientCredentialsRequest struct {
	ApiService *AuthorizationAPIService
	// contains filtered or unexported fields
}

func (ApiOAuth2ClientCredentialsRequest) ClientId

func (ApiOAuth2ClientCredentialsRequest) ClientSecret

func (ApiOAuth2ClientCredentialsRequest) Execute

func (ApiOAuth2ClientCredentialsRequest) GrantType

func (ApiOAuth2ClientCredentialsRequest) Scope

Space-delimited scopes.

type ApiPerformDfuActionRequest

type ApiPerformDfuActionRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiPerformDfuActionRequest) DeviceUID

A Device UID.

func (ApiPerformDfuActionRequest) DfuActionRequest

func (r ApiPerformDfuActionRequest) DfuActionRequest(dfuActionRequest DfuActionRequest) ApiPerformDfuActionRequest

Which firmware in the case of an update action

func (ApiPerformDfuActionRequest) Execute

func (ApiPerformDfuActionRequest) FleetUID

func (ApiPerformDfuActionRequest) HostFirmware

func (r ApiPerformDfuActionRequest) HostFirmware(hostFirmware []string) ApiPerformDfuActionRequest

Host firmware filter

func (ApiPerformDfuActionRequest) Location

Location filter

func (ApiPerformDfuActionRequest) NotecardFirmware

func (r ApiPerformDfuActionRequest) NotecardFirmware(notecardFirmware []string) ApiPerformDfuActionRequest

Firmware version filter

func (ApiPerformDfuActionRequest) ProductUID

func (ApiPerformDfuActionRequest) SerialNumber

func (r ApiPerformDfuActionRequest) SerialNumber(serialNumber []string) ApiPerformDfuActionRequest

Serial number filter

func (ApiPerformDfuActionRequest) Sku

SKU filter

func (ApiPerformDfuActionRequest) Tag

Tag filter

type ApiProvisionDeviceRequest

type ApiProvisionDeviceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiProvisionDeviceRequest) Execute

func (r ApiProvisionDeviceRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiProvisionDeviceRequest) ProvisionDeviceRequest

func (r ApiProvisionDeviceRequest) ProvisionDeviceRequest(provisionDeviceRequest ProvisionDeviceRequest) ApiProvisionDeviceRequest

Provision a device to a specific ProductUID

type ApiSetDeviceEnvironmentVariablesByPinRequest

type ApiSetDeviceEnvironmentVariablesByPinRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiSetDeviceEnvironmentVariablesByPinRequest) EnvironmentVariables

Environment variables to be added to the device

func (ApiSetDeviceEnvironmentVariablesByPinRequest) Execute

type ApiSetDeviceEnvironmentVariablesRequest

type ApiSetDeviceEnvironmentVariablesRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiSetDeviceEnvironmentVariablesRequest) EnvironmentVariables

Environment variables to be added to the device

func (ApiSetDeviceEnvironmentVariablesRequest) Execute

type ApiSetFleetEnvironmentVariablesRequest

type ApiSetFleetEnvironmentVariablesRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiSetFleetEnvironmentVariablesRequest) EnvironmentVariables

Environment variables to be added to the fleet

func (ApiSetFleetEnvironmentVariablesRequest) Execute

type ApiSetGlobalEventTransformationRequest

type ApiSetGlobalEventTransformationRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiSetGlobalEventTransformationRequest) Body

JSONata expression which will be applied to each event before it is persisted and routed

func (ApiSetGlobalEventTransformationRequest) Execute

type ApiSetProjectEnvironmentVariablesRequest

type ApiSetProjectEnvironmentVariablesRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiSetProjectEnvironmentVariablesRequest) EnvironmentVariables

func (ApiSetProjectEnvironmentVariablesRequest) Execute

type ApiSignalDeviceRequest

type ApiSignalDeviceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiSignalDeviceRequest) Body

Body or payload of signal to be sent to the device

func (ApiSignalDeviceRequest) Execute

type ApiUpdateDbNoteRequest

type ApiUpdateDbNoteRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateDbNoteRequest) Execute

func (r ApiUpdateDbNoteRequest) Execute() (*http.Response, error)

func (ApiUpdateDbNoteRequest) NoteInput

Body or payload of note to be added to the device

type ApiUpdateFleetRequest

type ApiUpdateFleetRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateFleetRequest) Execute

func (r ApiUpdateFleetRequest) Execute() (*Fleet, *http.Response, error)

func (ApiUpdateFleetRequest) UpdateFleetRequest

func (r ApiUpdateFleetRequest) UpdateFleetRequest(updateFleetRequest UpdateFleetRequest) ApiUpdateFleetRequest

Fleet details to update

type ApiUpdateMonitorRequest

type ApiUpdateMonitorRequest struct {
	ApiService *MonitorAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateMonitorRequest) Execute

func (ApiUpdateMonitorRequest) Monitor

Body or payload of monitor to be created

type ApiUpdateRouteRequest

type ApiUpdateRouteRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateRouteRequest) Execute

func (ApiUpdateRouteRequest) NotehubRoute

func (r ApiUpdateRouteRequest) NotehubRoute(notehubRoute NotehubRoute) ApiUpdateRouteRequest

Route settings to be updated

type ApiUpdateWebhookRequest

type ApiUpdateWebhookRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateWebhookRequest) Execute

func (r ApiUpdateWebhookRequest) Execute() (*http.Response, error)

func (ApiUpdateWebhookRequest) WebhookSettings

func (r ApiUpdateWebhookRequest) WebhookSettings(webhookSettings WebhookSettings) ApiUpdateWebhookRequest

type ApiUploadFirmwareRequest

type ApiUploadFirmwareRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiUploadFirmwareRequest) Body

contents of the firmware binary

func (ApiUploadFirmwareRequest) Execute

func (ApiUploadFirmwareRequest) Notes

Optional notes describing what's different about this firmware version

func (ApiUploadFirmwareRequest) Version

Firmware version (optional). If not provided, the version will be extracted from firmware binary if available, otherwise left empty

type AuthorizationAPIService

type AuthorizationAPIService service

AuthorizationAPIService AuthorizationAPI service

func (*AuthorizationAPIService) Login

Login Method for Login

Gets an API key from username and password

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

func (*AuthorizationAPIService) LoginExecute

Execute executes the request

@return Login200Response

func (*AuthorizationAPIService) OAuth2ClientCredentials

OAuth2ClientCredentials Issue an OAuth 2.0 access token (Client Credentials)

Exchanges client credentials for an access token. Parameters must be sent as application/x-www-form-urlencoded.

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

func (*AuthorizationAPIService) OAuth2ClientCredentialsExecute

Execute executes the request

@return OAuth2TokenResponse

type AwsRoute

type AwsRoute struct {
	AccessKeyId            *string                 `json:"access_key_id,omitempty"`
	AccessKeySecret        *string                 `json:"access_key_secret,omitempty"`
	Channel                *string                 `json:"channel,omitempty"`
	DisableHttpHeaders     *bool                   `json:"disable_http_headers,omitempty"`
	Filter                 *Filter                 `json:"filter,omitempty"`
	Fleets                 []string                `json:"fleets,omitempty"`
	HttpHeaders            *map[string]string      `json:"http_headers,omitempty"`
	MessageDeduplicationId *string                 `json:"message_deduplication_id,omitempty"`
	MessageGroupId         *string                 `json:"message_group_id,omitempty"`
	Region                 *string                 `json:"region,omitempty"`
	ThrottleMs             *int32                  `json:"throttle_ms,omitempty"`
	Timeout                *int32                  `json:"timeout,omitempty"`
	Transform              *RouteTransformSettings `json:"transform,omitempty"`
	Url                    *string                 `json:"url,omitempty"`
}

AwsRoute struct for AwsRoute

func NewAwsRoute

func NewAwsRoute() *AwsRoute

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

func NewAwsRouteWithDefaults

func NewAwsRouteWithDefaults() *AwsRoute

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

func (*AwsRoute) GetAccessKeyId

func (o *AwsRoute) GetAccessKeyId() string

GetAccessKeyId returns the AccessKeyId field value if set, zero value otherwise.

func (*AwsRoute) GetAccessKeyIdOk

func (o *AwsRoute) GetAccessKeyIdOk() (*string, bool)

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

func (*AwsRoute) GetAccessKeySecret

func (o *AwsRoute) GetAccessKeySecret() string

GetAccessKeySecret returns the AccessKeySecret field value if set, zero value otherwise.

func (*AwsRoute) GetAccessKeySecretOk

func (o *AwsRoute) GetAccessKeySecretOk() (*string, bool)

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

func (*AwsRoute) GetChannel

func (o *AwsRoute) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*AwsRoute) GetChannelOk

func (o *AwsRoute) GetChannelOk() (*string, bool)

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

func (*AwsRoute) GetDisableHttpHeaders

func (o *AwsRoute) GetDisableHttpHeaders() bool

GetDisableHttpHeaders returns the DisableHttpHeaders field value if set, zero value otherwise.

func (*AwsRoute) GetDisableHttpHeadersOk

func (o *AwsRoute) GetDisableHttpHeadersOk() (*bool, bool)

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

func (*AwsRoute) GetFilter

func (o *AwsRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*AwsRoute) GetFilterOk

func (o *AwsRoute) GetFilterOk() (*Filter, bool)

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

func (*AwsRoute) GetFleets

func (o *AwsRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*AwsRoute) GetFleetsOk

func (o *AwsRoute) GetFleetsOk() ([]string, bool)

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

func (*AwsRoute) GetHttpHeaders

func (o *AwsRoute) GetHttpHeaders() map[string]string

GetHttpHeaders returns the HttpHeaders field value if set, zero value otherwise.

func (*AwsRoute) GetHttpHeadersOk

func (o *AwsRoute) GetHttpHeadersOk() (*map[string]string, bool)

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

func (*AwsRoute) GetMessageDeduplicationId

func (o *AwsRoute) GetMessageDeduplicationId() string

GetMessageDeduplicationId returns the MessageDeduplicationId field value if set, zero value otherwise.

func (*AwsRoute) GetMessageDeduplicationIdOk

func (o *AwsRoute) GetMessageDeduplicationIdOk() (*string, bool)

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

func (*AwsRoute) GetMessageGroupId

func (o *AwsRoute) GetMessageGroupId() string

GetMessageGroupId returns the MessageGroupId field value if set, zero value otherwise.

func (*AwsRoute) GetMessageGroupIdOk

func (o *AwsRoute) GetMessageGroupIdOk() (*string, bool)

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

func (*AwsRoute) GetRegion

func (o *AwsRoute) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*AwsRoute) GetRegionOk

func (o *AwsRoute) GetRegionOk() (*string, bool)

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

func (*AwsRoute) GetThrottleMs

func (o *AwsRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*AwsRoute) GetThrottleMsOk

func (o *AwsRoute) GetThrottleMsOk() (*int32, bool)

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

func (*AwsRoute) GetTimeout

func (o *AwsRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*AwsRoute) GetTimeoutOk

func (o *AwsRoute) GetTimeoutOk() (*int32, bool)

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

func (*AwsRoute) GetTransform

func (o *AwsRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*AwsRoute) GetTransformOk

func (o *AwsRoute) GetTransformOk() (*RouteTransformSettings, bool)

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

func (*AwsRoute) GetUrl

func (o *AwsRoute) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*AwsRoute) GetUrlOk

func (o *AwsRoute) GetUrlOk() (*string, bool)

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

func (*AwsRoute) HasAccessKeyId

func (o *AwsRoute) HasAccessKeyId() bool

HasAccessKeyId returns a boolean if a field has been set.

func (*AwsRoute) HasAccessKeySecret

func (o *AwsRoute) HasAccessKeySecret() bool

HasAccessKeySecret returns a boolean if a field has been set.

func (*AwsRoute) HasChannel

func (o *AwsRoute) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*AwsRoute) HasDisableHttpHeaders

func (o *AwsRoute) HasDisableHttpHeaders() bool

HasDisableHttpHeaders returns a boolean if a field has been set.

func (*AwsRoute) HasFilter

func (o *AwsRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*AwsRoute) HasFleets

func (o *AwsRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*AwsRoute) HasHttpHeaders

func (o *AwsRoute) HasHttpHeaders() bool

HasHttpHeaders returns a boolean if a field has been set.

func (*AwsRoute) HasMessageDeduplicationId

func (o *AwsRoute) HasMessageDeduplicationId() bool

HasMessageDeduplicationId returns a boolean if a field has been set.

func (*AwsRoute) HasMessageGroupId

func (o *AwsRoute) HasMessageGroupId() bool

HasMessageGroupId returns a boolean if a field has been set.

func (*AwsRoute) HasRegion

func (o *AwsRoute) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*AwsRoute) HasThrottleMs

func (o *AwsRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*AwsRoute) HasTimeout

func (o *AwsRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*AwsRoute) HasTransform

func (o *AwsRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*AwsRoute) HasUrl

func (o *AwsRoute) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (AwsRoute) MarshalJSON

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

func (*AwsRoute) SetAccessKeyId

func (o *AwsRoute) SetAccessKeyId(v string)

SetAccessKeyId gets a reference to the given string and assigns it to the AccessKeyId field.

func (*AwsRoute) SetAccessKeySecret

func (o *AwsRoute) SetAccessKeySecret(v string)

SetAccessKeySecret gets a reference to the given string and assigns it to the AccessKeySecret field.

func (*AwsRoute) SetChannel

func (o *AwsRoute) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*AwsRoute) SetDisableHttpHeaders

func (o *AwsRoute) SetDisableHttpHeaders(v bool)

SetDisableHttpHeaders gets a reference to the given bool and assigns it to the DisableHttpHeaders field.

func (*AwsRoute) SetFilter

func (o *AwsRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*AwsRoute) SetFleets

func (o *AwsRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*AwsRoute) SetHttpHeaders

func (o *AwsRoute) SetHttpHeaders(v map[string]string)

SetHttpHeaders gets a reference to the given map[string]string and assigns it to the HttpHeaders field.

func (*AwsRoute) SetMessageDeduplicationId

func (o *AwsRoute) SetMessageDeduplicationId(v string)

SetMessageDeduplicationId gets a reference to the given string and assigns it to the MessageDeduplicationId field.

func (*AwsRoute) SetMessageGroupId

func (o *AwsRoute) SetMessageGroupId(v string)

SetMessageGroupId gets a reference to the given string and assigns it to the MessageGroupId field.

func (*AwsRoute) SetRegion

func (o *AwsRoute) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*AwsRoute) SetThrottleMs

func (o *AwsRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*AwsRoute) SetTimeout

func (o *AwsRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*AwsRoute) SetTransform

func (o *AwsRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*AwsRoute) SetUrl

func (o *AwsRoute) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (AwsRoute) ToMap

func (o AwsRoute) ToMap() (map[string]interface{}, error)

type AzureRoute

type AzureRoute struct {
	Filter             *Filter                 `json:"filter,omitempty"`
	Fleets             []string                `json:"fleets,omitempty"`
	FunctionsKeySecret *string                 `json:"functions_key_secret,omitempty"`
	SasPolicyKey       *string                 `json:"sas_policy_key,omitempty"`
	SasPolicyName      *string                 `json:"sas_policy_name,omitempty"`
	ThrottleMs         *int32                  `json:"throttle_ms,omitempty"`
	Timeout            *int32                  `json:"timeout,omitempty"`
	Transform          *RouteTransformSettings `json:"transform,omitempty"`
	Url                *string                 `json:"url,omitempty"`
}

AzureRoute struct for AzureRoute

func NewAzureRoute

func NewAzureRoute() *AzureRoute

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

func NewAzureRouteWithDefaults

func NewAzureRouteWithDefaults() *AzureRoute

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

func (*AzureRoute) GetFilter

func (o *AzureRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*AzureRoute) GetFilterOk

func (o *AzureRoute) GetFilterOk() (*Filter, bool)

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

func (*AzureRoute) GetFleets

func (o *AzureRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*AzureRoute) GetFleetsOk

func (o *AzureRoute) GetFleetsOk() ([]string, bool)

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

func (*AzureRoute) GetFunctionsKeySecret

func (o *AzureRoute) GetFunctionsKeySecret() string

GetFunctionsKeySecret returns the FunctionsKeySecret field value if set, zero value otherwise.

func (*AzureRoute) GetFunctionsKeySecretOk

func (o *AzureRoute) GetFunctionsKeySecretOk() (*string, bool)

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

func (*AzureRoute) GetSasPolicyKey

func (o *AzureRoute) GetSasPolicyKey() string

GetSasPolicyKey returns the SasPolicyKey field value if set, zero value otherwise.

func (*AzureRoute) GetSasPolicyKeyOk

func (o *AzureRoute) GetSasPolicyKeyOk() (*string, bool)

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

func (*AzureRoute) GetSasPolicyName

func (o *AzureRoute) GetSasPolicyName() string

GetSasPolicyName returns the SasPolicyName field value if set, zero value otherwise.

func (*AzureRoute) GetSasPolicyNameOk

func (o *AzureRoute) GetSasPolicyNameOk() (*string, bool)

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

func (*AzureRoute) GetThrottleMs

func (o *AzureRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*AzureRoute) GetThrottleMsOk

func (o *AzureRoute) GetThrottleMsOk() (*int32, bool)

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

func (*AzureRoute) GetTimeout

func (o *AzureRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*AzureRoute) GetTimeoutOk

func (o *AzureRoute) GetTimeoutOk() (*int32, bool)

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

func (*AzureRoute) GetTransform

func (o *AzureRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*AzureRoute) GetTransformOk

func (o *AzureRoute) GetTransformOk() (*RouteTransformSettings, bool)

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

func (*AzureRoute) GetUrl

func (o *AzureRoute) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*AzureRoute) GetUrlOk

func (o *AzureRoute) GetUrlOk() (*string, bool)

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

func (*AzureRoute) HasFilter

func (o *AzureRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*AzureRoute) HasFleets

func (o *AzureRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*AzureRoute) HasFunctionsKeySecret

func (o *AzureRoute) HasFunctionsKeySecret() bool

HasFunctionsKeySecret returns a boolean if a field has been set.

func (*AzureRoute) HasSasPolicyKey

func (o *AzureRoute) HasSasPolicyKey() bool

HasSasPolicyKey returns a boolean if a field has been set.

func (*AzureRoute) HasSasPolicyName

func (o *AzureRoute) HasSasPolicyName() bool

HasSasPolicyName returns a boolean if a field has been set.

func (*AzureRoute) HasThrottleMs

func (o *AzureRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*AzureRoute) HasTimeout

func (o *AzureRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*AzureRoute) HasTransform

func (o *AzureRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*AzureRoute) HasUrl

func (o *AzureRoute) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (AzureRoute) MarshalJSON

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

func (*AzureRoute) SetFilter

func (o *AzureRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*AzureRoute) SetFleets

func (o *AzureRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*AzureRoute) SetFunctionsKeySecret

func (o *AzureRoute) SetFunctionsKeySecret(v string)

SetFunctionsKeySecret gets a reference to the given string and assigns it to the FunctionsKeySecret field.

func (*AzureRoute) SetSasPolicyKey

func (o *AzureRoute) SetSasPolicyKey(v string)

SetSasPolicyKey gets a reference to the given string and assigns it to the SasPolicyKey field.

func (*AzureRoute) SetSasPolicyName

func (o *AzureRoute) SetSasPolicyName(v string)

SetSasPolicyName gets a reference to the given string and assigns it to the SasPolicyName field.

func (*AzureRoute) SetThrottleMs

func (o *AzureRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*AzureRoute) SetTimeout

func (o *AzureRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*AzureRoute) SetTransform

func (o *AzureRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*AzureRoute) SetUrl

func (o *AzureRoute) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (AzureRoute) ToMap

func (o AzureRoute) ToMap() (map[string]interface{}, error)

type BasicAuth

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

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

type BillingAccount

type BillingAccount struct {
	Name string             `json:"name"`
	Role BillingAccountRole `json:"role"`
	Uid  string             `json:"uid"`
}

BillingAccount struct for BillingAccount

func NewBillingAccount

func NewBillingAccount(name string, role BillingAccountRole, uid string) *BillingAccount

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

func NewBillingAccountWithDefaults

func NewBillingAccountWithDefaults() *BillingAccount

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

func (*BillingAccount) GetName

func (o *BillingAccount) GetName() string

GetName returns the Name field value

func (*BillingAccount) GetNameOk

func (o *BillingAccount) GetNameOk() (*string, bool)

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

func (*BillingAccount) GetRole

func (o *BillingAccount) GetRole() BillingAccountRole

GetRole returns the Role field value

func (*BillingAccount) GetRoleOk

func (o *BillingAccount) GetRoleOk() (*BillingAccountRole, bool)

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

func (*BillingAccount) GetUid

func (o *BillingAccount) GetUid() string

GetUid returns the Uid field value

func (*BillingAccount) GetUidOk

func (o *BillingAccount) GetUidOk() (*string, bool)

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

func (BillingAccount) MarshalJSON

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

func (*BillingAccount) SetName

func (o *BillingAccount) SetName(v string)

SetName sets field value

func (*BillingAccount) SetRole

func (o *BillingAccount) SetRole(v BillingAccountRole)

SetRole sets field value

func (*BillingAccount) SetUid

func (o *BillingAccount) SetUid(v string)

SetUid sets field value

func (BillingAccount) ToMap

func (o BillingAccount) ToMap() (map[string]interface{}, error)

func (*BillingAccount) UnmarshalJSON

func (o *BillingAccount) UnmarshalJSON(data []byte) (err error)

type BillingAccountAPIService

type BillingAccountAPIService service

BillingAccountAPIService BillingAccountAPI service

func (*BillingAccountAPIService) GetBillingAccounts

GetBillingAccounts Method for GetBillingAccounts

Get Billing Accounts accessible by the api_key

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

func (*BillingAccountAPIService) GetBillingAccountsExecute

Execute executes the request

@return GetBillingAccounts200Response

type BillingAccountRole

type BillingAccountRole string

BillingAccountRole the model 'BillingAccountRole'

const (
	BILLING_ADMIN   BillingAccountRole = "billing_admin"
	BILLING_MANAGER BillingAccountRole = "billing_manager"
	PROJECT_CREATOR BillingAccountRole = "project_creator"
)

List of BillingAccountRole

func NewBillingAccountRoleFromValue

func NewBillingAccountRoleFromValue(v string) (*BillingAccountRole, error)

NewBillingAccountRoleFromValue returns a pointer to a valid BillingAccountRole for the value passed as argument, or an error if the value passed is not allowed by the enum

func (BillingAccountRole) IsValid

func (v BillingAccountRole) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (BillingAccountRole) Ptr

Ptr returns reference to BillingAccountRole value

func (*BillingAccountRole) UnmarshalJSON

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

type BlynkRoute

type BlynkRoute struct {
	Filter     *Filter                 `json:"filter,omitempty"`
	Fleets     []string                `json:"fleets,omitempty"`
	Region     *string                 `json:"region,omitempty"`
	ThrottleMs *int32                  `json:"throttle_ms,omitempty"`
	Timeout    *int32                  `json:"timeout,omitempty"`
	Transform  *RouteTransformSettings `json:"transform,omitempty"`
}

BlynkRoute struct for BlynkRoute

func NewBlynkRoute

func NewBlynkRoute() *BlynkRoute

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

func NewBlynkRouteWithDefaults

func NewBlynkRouteWithDefaults() *BlynkRoute

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

func (*BlynkRoute) GetFilter

func (o *BlynkRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*BlynkRoute) GetFilterOk

func (o *BlynkRoute) GetFilterOk() (*Filter, bool)

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

func (*BlynkRoute) GetFleets

func (o *BlynkRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*BlynkRoute) GetFleetsOk

func (o *BlynkRoute) GetFleetsOk() ([]string, bool)

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

func (*BlynkRoute) GetRegion

func (o *BlynkRoute) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*BlynkRoute) GetRegionOk

func (o *BlynkRoute) GetRegionOk() (*string, bool)

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

func (*BlynkRoute) GetThrottleMs

func (o *BlynkRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*BlynkRoute) GetThrottleMsOk

func (o *BlynkRoute) GetThrottleMsOk() (*int32, bool)

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

func (*BlynkRoute) GetTimeout

func (o *BlynkRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*BlynkRoute) GetTimeoutOk

func (o *BlynkRoute) GetTimeoutOk() (*int32, bool)

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

func (*BlynkRoute) GetTransform

func (o *BlynkRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*BlynkRoute) GetTransformOk

func (o *BlynkRoute) GetTransformOk() (*RouteTransformSettings, bool)

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

func (*BlynkRoute) HasFilter

func (o *BlynkRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*BlynkRoute) HasFleets

func (o *BlynkRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*BlynkRoute) HasRegion

func (o *BlynkRoute) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*BlynkRoute) HasThrottleMs

func (o *BlynkRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*BlynkRoute) HasTimeout

func (o *BlynkRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*BlynkRoute) HasTransform

func (o *BlynkRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (BlynkRoute) MarshalJSON

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

func (*BlynkRoute) SetFilter

func (o *BlynkRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*BlynkRoute) SetFleets

func (o *BlynkRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*BlynkRoute) SetRegion

func (o *BlynkRoute) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*BlynkRoute) SetThrottleMs

func (o *BlynkRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*BlynkRoute) SetTimeout

func (o *BlynkRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*BlynkRoute) SetTransform

func (o *BlynkRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (BlynkRoute) ToMap

func (o BlynkRoute) ToMap() (map[string]interface{}, error)

type Body

type Body struct {
	Body map[string]interface{} `json:"body,omitempty"`
}

Body struct for Body

func NewBody

func NewBody() *Body

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

func NewBodyWithDefaults

func NewBodyWithDefaults() *Body

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

func (*Body) GetBody

func (o *Body) GetBody() map[string]interface{}

GetBody returns the Body field value if set, zero value otherwise.

func (*Body) GetBodyOk

func (o *Body) GetBodyOk() (map[string]interface{}, bool)

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

func (*Body) HasBody

func (o *Body) HasBody() bool

HasBody returns a boolean if a field has been set.

func (Body) MarshalJSON

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

func (*Body) SetBody

func (o *Body) SetBody(v map[string]interface{})

SetBody gets a reference to the given map[string]interface{} and assigns it to the Body field.

func (Body) ToMap

func (o Body) ToMap() (map[string]interface{}, error)

type CellularPlan

type CellularPlan struct {
	// Unix timestamp of when the SIM was activated
	Activated *int64     `json:"activated,omitempty"`
	DataUsage *DataUsage `json:"data_usage,omitempty"`
	ExpiresAt *int64     `json:"expires_at,omitempty"`
	// The Integrated Circuit Card Identifier of the SIM card
	Iccid *string `json:"iccid,omitempty"`
	// IMSI of the SIM card
	Imsi *string `json:"imsi,omitempty"`
	// Time this plan information was last updated
	LastUpdated *int64 `json:"last_updated,omitempty"`
	// Total bytes used by this SIM
	LifetimeUsed *int64 `json:"lifetime_used,omitempty"`
	// Description of the SIM plan type including data allowance, region, and validity period
	PlanType *string `json:"plan_type,omitempty"`
}

CellularPlan struct for CellularPlan

func NewCellularPlan

func NewCellularPlan() *CellularPlan

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

func NewCellularPlanWithDefaults

func NewCellularPlanWithDefaults() *CellularPlan

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

func (*CellularPlan) GetActivated

func (o *CellularPlan) GetActivated() int64

GetActivated returns the Activated field value if set, zero value otherwise.

func (*CellularPlan) GetActivatedOk

func (o *CellularPlan) GetActivatedOk() (*int64, bool)

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

func (*CellularPlan) GetDataUsage

func (o *CellularPlan) GetDataUsage() DataUsage

GetDataUsage returns the DataUsage field value if set, zero value otherwise.

func (*CellularPlan) GetDataUsageOk

func (o *CellularPlan) GetDataUsageOk() (*DataUsage, bool)

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

func (*CellularPlan) GetExpiresAt

func (o *CellularPlan) GetExpiresAt() int64

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*CellularPlan) GetExpiresAtOk

func (o *CellularPlan) GetExpiresAtOk() (*int64, bool)

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

func (*CellularPlan) GetIccid

func (o *CellularPlan) GetIccid() string

GetIccid returns the Iccid field value if set, zero value otherwise.

func (*CellularPlan) GetIccidOk

func (o *CellularPlan) GetIccidOk() (*string, bool)

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

func (*CellularPlan) GetImsi

func (o *CellularPlan) GetImsi() string

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

func (*CellularPlan) GetImsiOk

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

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

func (*CellularPlan) GetLastUpdated

func (o *CellularPlan) GetLastUpdated() int64

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*CellularPlan) GetLastUpdatedOk

func (o *CellularPlan) GetLastUpdatedOk() (*int64, bool)

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

func (*CellularPlan) GetLifetimeUsed

func (o *CellularPlan) GetLifetimeUsed() int64

GetLifetimeUsed returns the LifetimeUsed field value if set, zero value otherwise.

func (*CellularPlan) GetLifetimeUsedOk

func (o *CellularPlan) GetLifetimeUsedOk() (*int64, bool)

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

func (*CellularPlan) GetPlanType

func (o *CellularPlan) GetPlanType() string

GetPlanType returns the PlanType field value if set, zero value otherwise.

func (*CellularPlan) GetPlanTypeOk

func (o *CellularPlan) GetPlanTypeOk() (*string, bool)

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

func (*CellularPlan) HasActivated

func (o *CellularPlan) HasActivated() bool

HasActivated returns a boolean if a field has been set.

func (*CellularPlan) HasDataUsage

func (o *CellularPlan) HasDataUsage() bool

HasDataUsage returns a boolean if a field has been set.

func (*CellularPlan) HasExpiresAt

func (o *CellularPlan) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*CellularPlan) HasIccid

func (o *CellularPlan) HasIccid() bool

HasIccid returns a boolean if a field has been set.

func (*CellularPlan) HasImsi

func (o *CellularPlan) HasImsi() bool

HasImsi returns a boolean if a field has been set.

func (*CellularPlan) HasLastUpdated

func (o *CellularPlan) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*CellularPlan) HasLifetimeUsed

func (o *CellularPlan) HasLifetimeUsed() bool

HasLifetimeUsed returns a boolean if a field has been set.

func (*CellularPlan) HasPlanType

func (o *CellularPlan) HasPlanType() bool

HasPlanType returns a boolean if a field has been set.

func (CellularPlan) MarshalJSON

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

func (*CellularPlan) SetActivated

func (o *CellularPlan) SetActivated(v int64)

SetActivated gets a reference to the given int64 and assigns it to the Activated field.

func (*CellularPlan) SetDataUsage

func (o *CellularPlan) SetDataUsage(v DataUsage)

SetDataUsage gets a reference to the given DataUsage and assigns it to the DataUsage field.

func (*CellularPlan) SetExpiresAt

func (o *CellularPlan) SetExpiresAt(v int64)

SetExpiresAt gets a reference to the given int64 and assigns it to the ExpiresAt field.

func (*CellularPlan) SetIccid

func (o *CellularPlan) SetIccid(v string)

SetIccid gets a reference to the given string and assigns it to the Iccid field.

func (*CellularPlan) SetImsi

func (o *CellularPlan) SetImsi(v string)

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

func (*CellularPlan) SetLastUpdated

func (o *CellularPlan) SetLastUpdated(v int64)

SetLastUpdated gets a reference to the given int64 and assigns it to the LastUpdated field.

func (*CellularPlan) SetLifetimeUsed

func (o *CellularPlan) SetLifetimeUsed(v int64)

SetLifetimeUsed gets a reference to the given int64 and assigns it to the LifetimeUsed field.

func (*CellularPlan) SetPlanType

func (o *CellularPlan) SetPlanType(v string)

SetPlanType gets a reference to the given string and assigns it to the PlanType field.

func (CellularPlan) ToMap

func (o CellularPlan) ToMap() (map[string]interface{}, error)

type CloneProjectRequest

type CloneProjectRequest struct {
	// The billing account UID for the project. The caller of the API must be able to create projects within the billing account, otherwise an error will be returned.
	BillingAccountUid string `json:"billing_account_uid"`
	// Whether to disallow the cloning of the fleets from the parent project.  Default is false if not specified.
	DisableCloneFleets *bool `json:"disable_clone_fleets,omitempty"`
	// Whether to disallow the cloning of the routes from the parent project.  Default is false if not specified.
	DisableCloneRoutes *bool `json:"disable_clone_routes,omitempty"`
	// The label for the project.
	Label string `json:"label"`
}

CloneProjectRequest struct for CloneProjectRequest

func NewCloneProjectRequest

func NewCloneProjectRequest(billingAccountUid string, label string) *CloneProjectRequest

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

func NewCloneProjectRequestWithDefaults

func NewCloneProjectRequestWithDefaults() *CloneProjectRequest

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

func (*CloneProjectRequest) GetBillingAccountUid

func (o *CloneProjectRequest) GetBillingAccountUid() string

GetBillingAccountUid returns the BillingAccountUid field value

func (*CloneProjectRequest) GetBillingAccountUidOk

func (o *CloneProjectRequest) GetBillingAccountUidOk() (*string, bool)

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

func (*CloneProjectRequest) GetDisableCloneFleets

func (o *CloneProjectRequest) GetDisableCloneFleets() bool

GetDisableCloneFleets returns the DisableCloneFleets field value if set, zero value otherwise.

func (*CloneProjectRequest) GetDisableCloneFleetsOk

func (o *CloneProjectRequest) GetDisableCloneFleetsOk() (*bool, bool)

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

func (*CloneProjectRequest) GetDisableCloneRoutes

func (o *CloneProjectRequest) GetDisableCloneRoutes() bool

GetDisableCloneRoutes returns the DisableCloneRoutes field value if set, zero value otherwise.

func (*CloneProjectRequest) GetDisableCloneRoutesOk

func (o *CloneProjectRequest) GetDisableCloneRoutesOk() (*bool, bool)

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

func (*CloneProjectRequest) GetLabel

func (o *CloneProjectRequest) GetLabel() string

GetLabel returns the Label field value

func (*CloneProjectRequest) GetLabelOk

func (o *CloneProjectRequest) GetLabelOk() (*string, bool)

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

func (*CloneProjectRequest) HasDisableCloneFleets

func (o *CloneProjectRequest) HasDisableCloneFleets() bool

HasDisableCloneFleets returns a boolean if a field has been set.

func (*CloneProjectRequest) HasDisableCloneRoutes

func (o *CloneProjectRequest) HasDisableCloneRoutes() bool

HasDisableCloneRoutes returns a boolean if a field has been set.

func (CloneProjectRequest) MarshalJSON

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

func (*CloneProjectRequest) SetBillingAccountUid

func (o *CloneProjectRequest) SetBillingAccountUid(v string)

SetBillingAccountUid sets field value

func (*CloneProjectRequest) SetDisableCloneFleets

func (o *CloneProjectRequest) SetDisableCloneFleets(v bool)

SetDisableCloneFleets gets a reference to the given bool and assigns it to the DisableCloneFleets field.

func (*CloneProjectRequest) SetDisableCloneRoutes

func (o *CloneProjectRequest) SetDisableCloneRoutes(v bool)

SetDisableCloneRoutes gets a reference to the given bool and assigns it to the DisableCloneRoutes field.

func (*CloneProjectRequest) SetLabel

func (o *CloneProjectRequest) SetLabel(v string)

SetLabel sets field value

func (CloneProjectRequest) ToMap

func (o CloneProjectRequest) ToMap() (map[string]interface{}, error)

func (*CloneProjectRequest) UnmarshalJSON

func (o *CloneProjectRequest) UnmarshalJSON(data []byte) (err error)

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type Contact

type Contact struct {
	Email        *string `json:"email,omitempty"`
	Name         *string `json:"name,omitempty"`
	Organization *string `json:"organization,omitempty"`
	Role         *string `json:"role,omitempty"`
}

Contact struct for Contact

func NewContact

func NewContact() *Contact

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

func NewContactWithDefaults

func NewContactWithDefaults() *Contact

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

func (*Contact) GetEmail

func (o *Contact) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*Contact) GetEmailOk

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

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

func (*Contact) GetName

func (o *Contact) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Contact) GetNameOk

func (o *Contact) GetNameOk() (*string, bool)

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

func (*Contact) GetOrganization

func (o *Contact) GetOrganization() string

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*Contact) GetOrganizationOk

func (o *Contact) GetOrganizationOk() (*string, bool)

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

func (*Contact) GetRole

func (o *Contact) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*Contact) GetRoleOk

func (o *Contact) GetRoleOk() (*string, bool)

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

func (*Contact) HasEmail

func (o *Contact) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Contact) HasName

func (o *Contact) HasName() bool

HasName returns a boolean if a field has been set.

func (*Contact) HasOrganization

func (o *Contact) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*Contact) HasRole

func (o *Contact) HasRole() bool

HasRole returns a boolean if a field has been set.

func (Contact) MarshalJSON

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

func (*Contact) SetEmail

func (o *Contact) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*Contact) SetName

func (o *Contact) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Contact) SetOrganization

func (o *Contact) SetOrganization(v string)

SetOrganization gets a reference to the given string and assigns it to the Organization field.

func (*Contact) SetRole

func (o *Contact) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (Contact) ToMap

func (o Contact) ToMap() (map[string]interface{}, error)

type CreateFleetRequest

type CreateFleetRequest struct {
	ConnectivityAssurance NullableFleetConnectivityAssurance `json:"connectivity_assurance,omitempty"`
	// The label, or name,  for the Fleet.
	Label *string `json:"label,omitempty"`
	// JSONata expression that will be evaluated to determine device membership into this fleet, if the expression evaluates to a 1, the device will be included, if it evaluates to -1 it will be removed, and if it evaluates to 0 or errors it will be left unchanged.
	SmartRule        *string `json:"smart_rule,omitempty"`
	SmartRuleEnabled *bool   `json:"smart_rule_enabled,omitempty"`
}

CreateFleetRequest struct for CreateFleetRequest

func NewCreateFleetRequest

func NewCreateFleetRequest() *CreateFleetRequest

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

func NewCreateFleetRequestWithDefaults

func NewCreateFleetRequestWithDefaults() *CreateFleetRequest

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

func (*CreateFleetRequest) GetConnectivityAssurance

func (o *CreateFleetRequest) GetConnectivityAssurance() FleetConnectivityAssurance

GetConnectivityAssurance returns the ConnectivityAssurance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateFleetRequest) GetConnectivityAssuranceOk

func (o *CreateFleetRequest) GetConnectivityAssuranceOk() (*FleetConnectivityAssurance, bool)

GetConnectivityAssuranceOk returns a tuple with the ConnectivityAssurance field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateFleetRequest) GetLabel

func (o *CreateFleetRequest) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*CreateFleetRequest) GetLabelOk

func (o *CreateFleetRequest) GetLabelOk() (*string, bool)

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

func (*CreateFleetRequest) GetSmartRule

func (o *CreateFleetRequest) GetSmartRule() string

GetSmartRule returns the SmartRule field value if set, zero value otherwise.

func (*CreateFleetRequest) GetSmartRuleEnabled

func (o *CreateFleetRequest) GetSmartRuleEnabled() bool

GetSmartRuleEnabled returns the SmartRuleEnabled field value if set, zero value otherwise.

func (*CreateFleetRequest) GetSmartRuleEnabledOk

func (o *CreateFleetRequest) GetSmartRuleEnabledOk() (*bool, bool)

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

func (*CreateFleetRequest) GetSmartRuleOk

func (o *CreateFleetRequest) GetSmartRuleOk() (*string, bool)

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

func (*CreateFleetRequest) HasConnectivityAssurance

func (o *CreateFleetRequest) HasConnectivityAssurance() bool

HasConnectivityAssurance returns a boolean if a field has been set.

func (*CreateFleetRequest) HasLabel

func (o *CreateFleetRequest) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*CreateFleetRequest) HasSmartRule

func (o *CreateFleetRequest) HasSmartRule() bool

HasSmartRule returns a boolean if a field has been set.

func (*CreateFleetRequest) HasSmartRuleEnabled

func (o *CreateFleetRequest) HasSmartRuleEnabled() bool

HasSmartRuleEnabled returns a boolean if a field has been set.

func (CreateFleetRequest) MarshalJSON

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

func (*CreateFleetRequest) SetConnectivityAssurance

func (o *CreateFleetRequest) SetConnectivityAssurance(v FleetConnectivityAssurance)

SetConnectivityAssurance gets a reference to the given NullableFleetConnectivityAssurance and assigns it to the ConnectivityAssurance field.

func (*CreateFleetRequest) SetConnectivityAssuranceNil

func (o *CreateFleetRequest) SetConnectivityAssuranceNil()

SetConnectivityAssuranceNil sets the value for ConnectivityAssurance to be an explicit nil

func (*CreateFleetRequest) SetLabel

func (o *CreateFleetRequest) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*CreateFleetRequest) SetSmartRule

func (o *CreateFleetRequest) SetSmartRule(v string)

SetSmartRule gets a reference to the given string and assigns it to the SmartRule field.

func (*CreateFleetRequest) SetSmartRuleEnabled

func (o *CreateFleetRequest) SetSmartRuleEnabled(v bool)

SetSmartRuleEnabled gets a reference to the given bool and assigns it to the SmartRuleEnabled field.

func (CreateFleetRequest) ToMap

func (o CreateFleetRequest) ToMap() (map[string]interface{}, error)

func (*CreateFleetRequest) UnsetConnectivityAssurance

func (o *CreateFleetRequest) UnsetConnectivityAssurance()

UnsetConnectivityAssurance ensures that no value is present for ConnectivityAssurance, not even an explicit nil

type CreateMonitor

type CreateMonitor struct {
	// Aggregate function to apply to the selected values before applying the condition. [none, sum, average, max, min]
	AggregateFunction *string `json:"aggregate_function,omitempty"`
	// The time window to aggregate the selected values. It follows the format of a number followed by a time unit
	AggregateWindow *string `json:"aggregate_window,omitempty" validate:"regexp=^[0-9]+[smh]$"`
	// If true, the monitor is in alert state.
	Alert       *bool                     `json:"alert,omitempty"`
	AlertRoutes []MonitorAlertRoutesInner `json:"alert_routes,omitempty"`
	// A comparison operation to apply to the value selected by the source_selector [greater_than, greater_than_or_equal_to, less_than, less_than_or_equal_to, equal_to, not_equal_to]
	ConditionType *string `json:"condition_type,omitempty"`
	Description   *string `json:"description,omitempty"`
	// If true, the monitor will not be evaluated.
	Disabled    *bool    `json:"disabled,omitempty"`
	FleetFilter []string `json:"fleet_filter,omitempty"`
	// The last time the monitor was evaluated and routed.
	LastRoutedAt   *string  `json:"last_routed_at,omitempty"`
	Name           *string  `json:"name,omitempty"`
	NotefileFilter []string `json:"notefile_filter,omitempty"`
	// Only relevant when using an aggregate_function. If true, the monitor will be evaluated per device, | rather than across the set of selected devices. If true then if a single device matches the specified criteria, | and alert will be created, otherwise the aggregate function will be applied across all devices.
	PerDevice *bool `json:"per_device,omitempty"`
	// The time period to wait before routing another event after the monitor | has been triggered. It follows the format of a number followed by a time unit.
	RoutingCooldownPeriod *string `json:"routing_cooldown_period,omitempty" validate:"regexp=^[0-9]+[smh]$"`
	// If true, alerts will be created, but no notifications will be sent.
	Silenced *bool `json:"silenced,omitempty"`
	// A valid JSONata expression that selects the value to monitor from the source. | It should return a single, numeric value.
	SourceSelector *string `json:"source_selector,omitempty"`
	// The type of source to monitor. Currently only \"event\" is supported.
	SourceType *string `json:"source_type,omitempty"`
	// The type of condition to apply to the value selected by the source_selector
	Threshold *int32  `json:"threshold,omitempty"`
	Uid       *string `json:"uid,omitempty"`
}

CreateMonitor struct for CreateMonitor

func NewCreateMonitor

func NewCreateMonitor() *CreateMonitor

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

func NewCreateMonitorWithDefaults

func NewCreateMonitorWithDefaults() *CreateMonitor

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

func (*CreateMonitor) GetAggregateFunction

func (o *CreateMonitor) GetAggregateFunction() string

GetAggregateFunction returns the AggregateFunction field value if set, zero value otherwise.

func (*CreateMonitor) GetAggregateFunctionOk

func (o *CreateMonitor) GetAggregateFunctionOk() (*string, bool)

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

func (*CreateMonitor) GetAggregateWindow

func (o *CreateMonitor) GetAggregateWindow() string

GetAggregateWindow returns the AggregateWindow field value if set, zero value otherwise.

func (*CreateMonitor) GetAggregateWindowOk

func (o *CreateMonitor) GetAggregateWindowOk() (*string, bool)

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

func (*CreateMonitor) GetAlert

func (o *CreateMonitor) GetAlert() bool

GetAlert returns the Alert field value if set, zero value otherwise.

func (*CreateMonitor) GetAlertOk

func (o *CreateMonitor) GetAlertOk() (*bool, bool)

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

func (*CreateMonitor) GetAlertRoutes

func (o *CreateMonitor) GetAlertRoutes() []MonitorAlertRoutesInner

GetAlertRoutes returns the AlertRoutes field value if set, zero value otherwise.

func (*CreateMonitor) GetAlertRoutesOk

func (o *CreateMonitor) GetAlertRoutesOk() ([]MonitorAlertRoutesInner, bool)

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

func (*CreateMonitor) GetConditionType

func (o *CreateMonitor) GetConditionType() string

GetConditionType returns the ConditionType field value if set, zero value otherwise.

func (*CreateMonitor) GetConditionTypeOk

func (o *CreateMonitor) GetConditionTypeOk() (*string, bool)

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

func (*CreateMonitor) GetDescription

func (o *CreateMonitor) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateMonitor) GetDescriptionOk

func (o *CreateMonitor) GetDescriptionOk() (*string, bool)

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

func (*CreateMonitor) GetDisabled

func (o *CreateMonitor) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*CreateMonitor) GetDisabledOk

func (o *CreateMonitor) GetDisabledOk() (*bool, bool)

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

func (*CreateMonitor) GetFleetFilter

func (o *CreateMonitor) GetFleetFilter() []string

GetFleetFilter returns the FleetFilter field value if set, zero value otherwise.

func (*CreateMonitor) GetFleetFilterOk

func (o *CreateMonitor) GetFleetFilterOk() ([]string, bool)

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

func (*CreateMonitor) GetLastRoutedAt

func (o *CreateMonitor) GetLastRoutedAt() string

GetLastRoutedAt returns the LastRoutedAt field value if set, zero value otherwise.

func (*CreateMonitor) GetLastRoutedAtOk

func (o *CreateMonitor) GetLastRoutedAtOk() (*string, bool)

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

func (*CreateMonitor) GetName

func (o *CreateMonitor) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*CreateMonitor) GetNameOk

func (o *CreateMonitor) GetNameOk() (*string, bool)

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

func (*CreateMonitor) GetNotefileFilter

func (o *CreateMonitor) GetNotefileFilter() []string

GetNotefileFilter returns the NotefileFilter field value if set, zero value otherwise.

func (*CreateMonitor) GetNotefileFilterOk

func (o *CreateMonitor) GetNotefileFilterOk() ([]string, bool)

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

func (*CreateMonitor) GetPerDevice

func (o *CreateMonitor) GetPerDevice() bool

GetPerDevice returns the PerDevice field value if set, zero value otherwise.

func (*CreateMonitor) GetPerDeviceOk

func (o *CreateMonitor) GetPerDeviceOk() (*bool, bool)

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

func (*CreateMonitor) GetRoutingCooldownPeriod

func (o *CreateMonitor) GetRoutingCooldownPeriod() string

GetRoutingCooldownPeriod returns the RoutingCooldownPeriod field value if set, zero value otherwise.

func (*CreateMonitor) GetRoutingCooldownPeriodOk

func (o *CreateMonitor) GetRoutingCooldownPeriodOk() (*string, bool)

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

func (*CreateMonitor) GetSilenced

func (o *CreateMonitor) GetSilenced() bool

GetSilenced returns the Silenced field value if set, zero value otherwise.

func (*CreateMonitor) GetSilencedOk

func (o *CreateMonitor) GetSilencedOk() (*bool, bool)

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

func (*CreateMonitor) GetSourceSelector

func (o *CreateMonitor) GetSourceSelector() string

GetSourceSelector returns the SourceSelector field value if set, zero value otherwise.

func (*CreateMonitor) GetSourceSelectorOk

func (o *CreateMonitor) GetSourceSelectorOk() (*string, bool)

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

func (*CreateMonitor) GetSourceType

func (o *CreateMonitor) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*CreateMonitor) GetSourceTypeOk

func (o *CreateMonitor) GetSourceTypeOk() (*string, bool)

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

func (*CreateMonitor) GetThreshold

func (o *CreateMonitor) GetThreshold() int32

GetThreshold returns the Threshold field value if set, zero value otherwise.

func (*CreateMonitor) GetThresholdOk

func (o *CreateMonitor) GetThresholdOk() (*int32, bool)

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

func (*CreateMonitor) GetUid

func (o *CreateMonitor) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*CreateMonitor) GetUidOk

func (o *CreateMonitor) GetUidOk() (*string, bool)

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

func (*CreateMonitor) HasAggregateFunction

func (o *CreateMonitor) HasAggregateFunction() bool

HasAggregateFunction returns a boolean if a field has been set.

func (*CreateMonitor) HasAggregateWindow

func (o *CreateMonitor) HasAggregateWindow() bool

HasAggregateWindow returns a boolean if a field has been set.

func (*CreateMonitor) HasAlert

func (o *CreateMonitor) HasAlert() bool

HasAlert returns a boolean if a field has been set.

func (*CreateMonitor) HasAlertRoutes

func (o *CreateMonitor) HasAlertRoutes() bool

HasAlertRoutes returns a boolean if a field has been set.

func (*CreateMonitor) HasConditionType

func (o *CreateMonitor) HasConditionType() bool

HasConditionType returns a boolean if a field has been set.

func (*CreateMonitor) HasDescription

func (o *CreateMonitor) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateMonitor) HasDisabled

func (o *CreateMonitor) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*CreateMonitor) HasFleetFilter

func (o *CreateMonitor) HasFleetFilter() bool

HasFleetFilter returns a boolean if a field has been set.

func (*CreateMonitor) HasLastRoutedAt

func (o *CreateMonitor) HasLastRoutedAt() bool

HasLastRoutedAt returns a boolean if a field has been set.

func (*CreateMonitor) HasName

func (o *CreateMonitor) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateMonitor) HasNotefileFilter

func (o *CreateMonitor) HasNotefileFilter() bool

HasNotefileFilter returns a boolean if a field has been set.

func (*CreateMonitor) HasPerDevice

func (o *CreateMonitor) HasPerDevice() bool

HasPerDevice returns a boolean if a field has been set.

func (*CreateMonitor) HasRoutingCooldownPeriod

func (o *CreateMonitor) HasRoutingCooldownPeriod() bool

HasRoutingCooldownPeriod returns a boolean if a field has been set.

func (*CreateMonitor) HasSilenced

func (o *CreateMonitor) HasSilenced() bool

HasSilenced returns a boolean if a field has been set.

func (*CreateMonitor) HasSourceSelector

func (o *CreateMonitor) HasSourceSelector() bool

HasSourceSelector returns a boolean if a field has been set.

func (*CreateMonitor) HasSourceType

func (o *CreateMonitor) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (*CreateMonitor) HasThreshold

func (o *CreateMonitor) HasThreshold() bool

HasThreshold returns a boolean if a field has been set.

func (*CreateMonitor) HasUid

func (o *CreateMonitor) HasUid() bool

HasUid returns a boolean if a field has been set.

func (CreateMonitor) MarshalJSON

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

func (*CreateMonitor) SetAggregateFunction

func (o *CreateMonitor) SetAggregateFunction(v string)

SetAggregateFunction gets a reference to the given string and assigns it to the AggregateFunction field.

func (*CreateMonitor) SetAggregateWindow

func (o *CreateMonitor) SetAggregateWindow(v string)

SetAggregateWindow gets a reference to the given string and assigns it to the AggregateWindow field.

func (*CreateMonitor) SetAlert

func (o *CreateMonitor) SetAlert(v bool)

SetAlert gets a reference to the given bool and assigns it to the Alert field.

func (*CreateMonitor) SetAlertRoutes

func (o *CreateMonitor) SetAlertRoutes(v []MonitorAlertRoutesInner)

SetAlertRoutes gets a reference to the given []MonitorAlertRoutesInner and assigns it to the AlertRoutes field.

func (*CreateMonitor) SetConditionType

func (o *CreateMonitor) SetConditionType(v string)

SetConditionType gets a reference to the given string and assigns it to the ConditionType field.

func (*CreateMonitor) SetDescription

func (o *CreateMonitor) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreateMonitor) SetDisabled

func (o *CreateMonitor) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*CreateMonitor) SetFleetFilter

func (o *CreateMonitor) SetFleetFilter(v []string)

SetFleetFilter gets a reference to the given []string and assigns it to the FleetFilter field.

func (*CreateMonitor) SetLastRoutedAt

func (o *CreateMonitor) SetLastRoutedAt(v string)

SetLastRoutedAt gets a reference to the given string and assigns it to the LastRoutedAt field.

func (*CreateMonitor) SetName

func (o *CreateMonitor) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*CreateMonitor) SetNotefileFilter

func (o *CreateMonitor) SetNotefileFilter(v []string)

SetNotefileFilter gets a reference to the given []string and assigns it to the NotefileFilter field.

func (*CreateMonitor) SetPerDevice

func (o *CreateMonitor) SetPerDevice(v bool)

SetPerDevice gets a reference to the given bool and assigns it to the PerDevice field.

func (*CreateMonitor) SetRoutingCooldownPeriod

func (o *CreateMonitor) SetRoutingCooldownPeriod(v string)

SetRoutingCooldownPeriod gets a reference to the given string and assigns it to the RoutingCooldownPeriod field.

func (*CreateMonitor) SetSilenced

func (o *CreateMonitor) SetSilenced(v bool)

SetSilenced gets a reference to the given bool and assigns it to the Silenced field.

func (*CreateMonitor) SetSourceSelector

func (o *CreateMonitor) SetSourceSelector(v string)

SetSourceSelector gets a reference to the given string and assigns it to the SourceSelector field.

func (*CreateMonitor) SetSourceType

func (o *CreateMonitor) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (*CreateMonitor) SetThreshold

func (o *CreateMonitor) SetThreshold(v int32)

SetThreshold gets a reference to the given int32 and assigns it to the Threshold field.

func (*CreateMonitor) SetUid

func (o *CreateMonitor) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (CreateMonitor) ToMap

func (o CreateMonitor) ToMap() (map[string]interface{}, error)

type CreateProductRequest

type CreateProductRequest struct {
	AutoProvisionFleets []string `json:"auto_provision_fleets,omitempty"`
	// If `true`, devices provisioned to this product will be automatically disabled by default.
	DisableDevicesByDefault *bool `json:"disable_devices_by_default,omitempty"`
	// The label for the Product.
	Label string `json:"label"`
	// The requested uid for the Product. Will be prefixed with the user's reversed email.
	ProductUid string `json:"product_uid"`
}

CreateProductRequest struct for CreateProductRequest

func NewCreateProductRequest

func NewCreateProductRequest(label string, productUid string) *CreateProductRequest

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

func NewCreateProductRequestWithDefaults

func NewCreateProductRequestWithDefaults() *CreateProductRequest

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

func (*CreateProductRequest) GetAutoProvisionFleets

func (o *CreateProductRequest) GetAutoProvisionFleets() []string

GetAutoProvisionFleets returns the AutoProvisionFleets field value if set, zero value otherwise.

func (*CreateProductRequest) GetAutoProvisionFleetsOk

func (o *CreateProductRequest) GetAutoProvisionFleetsOk() ([]string, bool)

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

func (*CreateProductRequest) GetDisableDevicesByDefault

func (o *CreateProductRequest) GetDisableDevicesByDefault() bool

GetDisableDevicesByDefault returns the DisableDevicesByDefault field value if set, zero value otherwise.

func (*CreateProductRequest) GetDisableDevicesByDefaultOk

func (o *CreateProductRequest) GetDisableDevicesByDefaultOk() (*bool, bool)

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

func (*CreateProductRequest) GetLabel

func (o *CreateProductRequest) GetLabel() string

GetLabel returns the Label field value

func (*CreateProductRequest) GetLabelOk

func (o *CreateProductRequest) GetLabelOk() (*string, bool)

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

func (*CreateProductRequest) GetProductUid

func (o *CreateProductRequest) GetProductUid() string

GetProductUid returns the ProductUid field value

func (*CreateProductRequest) GetProductUidOk

func (o *CreateProductRequest) GetProductUidOk() (*string, bool)

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

func (*CreateProductRequest) HasAutoProvisionFleets

func (o *CreateProductRequest) HasAutoProvisionFleets() bool

HasAutoProvisionFleets returns a boolean if a field has been set.

func (*CreateProductRequest) HasDisableDevicesByDefault

func (o *CreateProductRequest) HasDisableDevicesByDefault() bool

HasDisableDevicesByDefault returns a boolean if a field has been set.

func (CreateProductRequest) MarshalJSON

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

func (*CreateProductRequest) SetAutoProvisionFleets

func (o *CreateProductRequest) SetAutoProvisionFleets(v []string)

SetAutoProvisionFleets gets a reference to the given []string and assigns it to the AutoProvisionFleets field.

func (*CreateProductRequest) SetDisableDevicesByDefault

func (o *CreateProductRequest) SetDisableDevicesByDefault(v bool)

SetDisableDevicesByDefault gets a reference to the given bool and assigns it to the DisableDevicesByDefault field.

func (*CreateProductRequest) SetLabel

func (o *CreateProductRequest) SetLabel(v string)

SetLabel sets field value

func (*CreateProductRequest) SetProductUid

func (o *CreateProductRequest) SetProductUid(v string)

SetProductUid sets field value

func (CreateProductRequest) ToMap

func (o CreateProductRequest) ToMap() (map[string]interface{}, error)

func (*CreateProductRequest) UnmarshalJSON

func (o *CreateProductRequest) UnmarshalJSON(data []byte) (err error)

type CreateProjectRequest

type CreateProjectRequest struct {
	// The billing account UID for the project. The caller of the API must be able to create projects within the billing account, otherwise an error will be returned.
	BillingAccountUid string `json:"billing_account_uid"`
	// The label for the project.
	Label string `json:"label"`
}

CreateProjectRequest struct for CreateProjectRequest

func NewCreateProjectRequest

func NewCreateProjectRequest(billingAccountUid string, label string) *CreateProjectRequest

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

func NewCreateProjectRequestWithDefaults

func NewCreateProjectRequestWithDefaults() *CreateProjectRequest

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

func (*CreateProjectRequest) GetBillingAccountUid

func (o *CreateProjectRequest) GetBillingAccountUid() string

GetBillingAccountUid returns the BillingAccountUid field value

func (*CreateProjectRequest) GetBillingAccountUidOk

func (o *CreateProjectRequest) GetBillingAccountUidOk() (*string, bool)

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

func (*CreateProjectRequest) GetLabel

func (o *CreateProjectRequest) GetLabel() string

GetLabel returns the Label field value

func (*CreateProjectRequest) GetLabelOk

func (o *CreateProjectRequest) GetLabelOk() (*string, bool)

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

func (CreateProjectRequest) MarshalJSON

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

func (*CreateProjectRequest) SetBillingAccountUid

func (o *CreateProjectRequest) SetBillingAccountUid(v string)

SetBillingAccountUid sets field value

func (*CreateProjectRequest) SetLabel

func (o *CreateProjectRequest) SetLabel(v string)

SetLabel sets field value

func (CreateProjectRequest) ToMap

func (o CreateProjectRequest) ToMap() (map[string]interface{}, error)

func (*CreateProjectRequest) UnmarshalJSON

func (o *CreateProjectRequest) UnmarshalJSON(data []byte) (err error)

type CreateUpdateRepository

type CreateUpdateRepository struct {
	FleetUids   []string `json:"fleet_uids,omitempty"`
	Name        *string  `json:"name,omitempty"`
	ProjectUids []string `json:"project_uids,omitempty"`
}

CreateUpdateRepository struct for CreateUpdateRepository

func NewCreateUpdateRepository

func NewCreateUpdateRepository() *CreateUpdateRepository

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

func NewCreateUpdateRepositoryWithDefaults

func NewCreateUpdateRepositoryWithDefaults() *CreateUpdateRepository

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

func (*CreateUpdateRepository) GetFleetUids

func (o *CreateUpdateRepository) GetFleetUids() []string

GetFleetUids returns the FleetUids field value if set, zero value otherwise.

func (*CreateUpdateRepository) GetFleetUidsOk

func (o *CreateUpdateRepository) GetFleetUidsOk() ([]string, bool)

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

func (*CreateUpdateRepository) GetName

func (o *CreateUpdateRepository) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*CreateUpdateRepository) GetNameOk

func (o *CreateUpdateRepository) GetNameOk() (*string, bool)

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

func (*CreateUpdateRepository) GetProjectUids

func (o *CreateUpdateRepository) GetProjectUids() []string

GetProjectUids returns the ProjectUids field value if set, zero value otherwise.

func (*CreateUpdateRepository) GetProjectUidsOk

func (o *CreateUpdateRepository) GetProjectUidsOk() ([]string, bool)

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

func (*CreateUpdateRepository) HasFleetUids

func (o *CreateUpdateRepository) HasFleetUids() bool

HasFleetUids returns a boolean if a field has been set.

func (*CreateUpdateRepository) HasName

func (o *CreateUpdateRepository) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateUpdateRepository) HasProjectUids

func (o *CreateUpdateRepository) HasProjectUids() bool

HasProjectUids returns a boolean if a field has been set.

func (CreateUpdateRepository) MarshalJSON

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

func (*CreateUpdateRepository) SetFleetUids

func (o *CreateUpdateRepository) SetFleetUids(v []string)

SetFleetUids gets a reference to the given []string and assigns it to the FleetUids field.

func (*CreateUpdateRepository) SetName

func (o *CreateUpdateRepository) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*CreateUpdateRepository) SetProjectUids

func (o *CreateUpdateRepository) SetProjectUids(v []string)

SetProjectUids gets a reference to the given []string and assigns it to the ProjectUids field.

func (CreateUpdateRepository) ToMap

func (o CreateUpdateRepository) ToMap() (map[string]interface{}, error)

type CurrentFirmware

type CurrentFirmware struct {
	Metadata NullableFirmware `json:"metadata,omitempty"`
	Version  *string          `json:"version,omitempty"`
}

CurrentFirmware struct for CurrentFirmware

func NewCurrentFirmware

func NewCurrentFirmware() *CurrentFirmware

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

func NewCurrentFirmwareWithDefaults

func NewCurrentFirmwareWithDefaults() *CurrentFirmware

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

func (*CurrentFirmware) GetMetadata

func (o *CurrentFirmware) GetMetadata() Firmware

GetMetadata returns the Metadata field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CurrentFirmware) GetMetadataOk

func (o *CurrentFirmware) GetMetadataOk() (*Firmware, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CurrentFirmware) GetVersion

func (o *CurrentFirmware) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*CurrentFirmware) GetVersionOk

func (o *CurrentFirmware) GetVersionOk() (*string, bool)

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

func (*CurrentFirmware) HasMetadata

func (o *CurrentFirmware) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CurrentFirmware) HasVersion

func (o *CurrentFirmware) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (CurrentFirmware) MarshalJSON

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

func (*CurrentFirmware) SetMetadata

func (o *CurrentFirmware) SetMetadata(v Firmware)

SetMetadata gets a reference to the given NullableFirmware and assigns it to the Metadata field.

func (*CurrentFirmware) SetMetadataNil

func (o *CurrentFirmware) SetMetadataNil()

SetMetadataNil sets the value for Metadata to be an explicit nil

func (*CurrentFirmware) SetVersion

func (o *CurrentFirmware) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (CurrentFirmware) ToMap

func (o CurrentFirmware) ToMap() (map[string]interface{}, error)

func (*CurrentFirmware) UnsetMetadata

func (o *CurrentFirmware) UnsetMetadata()

UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil

type DFUEnv

type DFUEnv struct {
	Card NullableDFUState `json:"card,omitempty"`
	User NullableDFUState `json:"user,omitempty"`
}

DFUEnv struct for DFUEnv

func NewDFUEnv

func NewDFUEnv() *DFUEnv

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

func NewDFUEnvWithDefaults

func NewDFUEnvWithDefaults() *DFUEnv

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

func (*DFUEnv) GetCard

func (o *DFUEnv) GetCard() DFUState

GetCard returns the Card field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DFUEnv) GetCardOk

func (o *DFUEnv) GetCardOk() (*DFUState, bool)

GetCardOk returns a tuple with the Card field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DFUEnv) GetUser

func (o *DFUEnv) GetUser() DFUState

GetUser returns the User field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DFUEnv) GetUserOk

func (o *DFUEnv) GetUserOk() (*DFUState, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DFUEnv) HasCard

func (o *DFUEnv) HasCard() bool

HasCard returns a boolean if a field has been set.

func (*DFUEnv) HasUser

func (o *DFUEnv) HasUser() bool

HasUser returns a boolean if a field has been set.

func (DFUEnv) MarshalJSON

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

func (*DFUEnv) SetCard

func (o *DFUEnv) SetCard(v DFUState)

SetCard gets a reference to the given NullableDFUState and assigns it to the Card field.

func (*DFUEnv) SetCardNil

func (o *DFUEnv) SetCardNil()

SetCardNil sets the value for Card to be an explicit nil

func (*DFUEnv) SetUser

func (o *DFUEnv) SetUser(v DFUState)

SetUser gets a reference to the given NullableDFUState and assigns it to the User field.

func (*DFUEnv) SetUserNil

func (o *DFUEnv) SetUserNil()

SetUserNil sets the value for User to be an explicit nil

func (DFUEnv) ToMap

func (o DFUEnv) ToMap() (map[string]interface{}, error)

func (*DFUEnv) UnsetCard

func (o *DFUEnv) UnsetCard()

UnsetCard ensures that no value is present for Card, not even an explicit nil

func (*DFUEnv) UnsetUser

func (o *DFUEnv) UnsetUser()

UnsetUser ensures that no value is present for User, not even an explicit nil

type DFUState

type DFUState struct {
	// The time when the DFU began
	Began *float32 `json:"began,omitempty"`
	// Used for image verification
	Crc32 *float32 `json:"crc32,omitempty"`
	// The number of consecutive errors the DFU process has encountered
	Errors *float32 `json:"errors,omitempty"`
	// Firmware filename
	File *string `json:"file,omitempty"`
	// Length of firmware file
	Length *float32 `json:"length,omitempty"`
	// Used for image verification
	Md5 *string `json:"md5,omitempty"`
	// * \"idle\"          - nothing downloading or downloaded * \"error\"         - halted and in the error state * \"downloading\"   - transferring data from cloud to module * \"sideloading\"   - transferring data via request to module * \"ready\"         - DFU data is ready/verified and waiting on external storage * \"ready-retry\"   - DFU data is ready/verified and retrying * \"updating\"      - currently updating * \"completed\"     - DFU is done successfully
	Mode *string `json:"mode,omitempty"`
	// The amount the notecard has read of the image from notehub
	Read *float32 `json:"read,omitempty"`
	// Value of _fw_retry environment var at time of DFU initialization
	Retry *float32 `json:"retry,omitempty"`
	// Status message
	Status *string `json:"status,omitempty"`
	Type   *string `json:"type,omitempty"`
	// Last updated timestamp
	Updated *float32 `json:"updated,omitempty"`
	// Last known version, which is generally a JSON object contained within the firmware image
	Version *string `json:"version,omitempty"`
}

DFUState struct for DFUState

func NewDFUState

func NewDFUState() *DFUState

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

func NewDFUStateWithDefaults

func NewDFUStateWithDefaults() *DFUState

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

func (*DFUState) GetBegan

func (o *DFUState) GetBegan() float32

GetBegan returns the Began field value if set, zero value otherwise.

func (*DFUState) GetBeganOk

func (o *DFUState) GetBeganOk() (*float32, bool)

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

func (*DFUState) GetCrc32

func (o *DFUState) GetCrc32() float32

GetCrc32 returns the Crc32 field value if set, zero value otherwise.

func (*DFUState) GetCrc32Ok

func (o *DFUState) GetCrc32Ok() (*float32, bool)

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

func (*DFUState) GetErrors

func (o *DFUState) GetErrors() float32

GetErrors returns the Errors field value if set, zero value otherwise.

func (*DFUState) GetErrorsOk

func (o *DFUState) GetErrorsOk() (*float32, bool)

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

func (*DFUState) GetFile

func (o *DFUState) GetFile() string

GetFile returns the File field value if set, zero value otherwise.

func (*DFUState) GetFileOk

func (o *DFUState) GetFileOk() (*string, bool)

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

func (*DFUState) GetLength

func (o *DFUState) GetLength() float32

GetLength returns the Length field value if set, zero value otherwise.

func (*DFUState) GetLengthOk

func (o *DFUState) GetLengthOk() (*float32, bool)

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

func (*DFUState) GetMd5

func (o *DFUState) GetMd5() string

GetMd5 returns the Md5 field value if set, zero value otherwise.

func (*DFUState) GetMd5Ok

func (o *DFUState) GetMd5Ok() (*string, bool)

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

func (*DFUState) GetMode

func (o *DFUState) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*DFUState) GetModeOk

func (o *DFUState) GetModeOk() (*string, bool)

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

func (*DFUState) GetRead

func (o *DFUState) GetRead() float32

GetRead returns the Read field value if set, zero value otherwise.

func (*DFUState) GetReadOk

func (o *DFUState) GetReadOk() (*float32, bool)

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

func (*DFUState) GetRetry

func (o *DFUState) GetRetry() float32

GetRetry returns the Retry field value if set, zero value otherwise.

func (*DFUState) GetRetryOk

func (o *DFUState) GetRetryOk() (*float32, bool)

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

func (*DFUState) GetStatus

func (o *DFUState) GetStatus() string

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

func (*DFUState) GetStatusOk

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

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

func (*DFUState) GetType

func (o *DFUState) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DFUState) GetTypeOk

func (o *DFUState) GetTypeOk() (*string, bool)

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

func (*DFUState) GetUpdated

func (o *DFUState) GetUpdated() float32

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*DFUState) GetUpdatedOk

func (o *DFUState) GetUpdatedOk() (*float32, bool)

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

func (*DFUState) GetVersion

func (o *DFUState) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*DFUState) GetVersionOk

func (o *DFUState) GetVersionOk() (*string, bool)

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

func (*DFUState) HasBegan

func (o *DFUState) HasBegan() bool

HasBegan returns a boolean if a field has been set.

func (*DFUState) HasCrc32

func (o *DFUState) HasCrc32() bool

HasCrc32 returns a boolean if a field has been set.

func (*DFUState) HasErrors

func (o *DFUState) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*DFUState) HasFile

func (o *DFUState) HasFile() bool

HasFile returns a boolean if a field has been set.

func (*DFUState) HasLength

func (o *DFUState) HasLength() bool

HasLength returns a boolean if a field has been set.

func (*DFUState) HasMd5

func (o *DFUState) HasMd5() bool

HasMd5 returns a boolean if a field has been set.

func (*DFUState) HasMode

func (o *DFUState) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*DFUState) HasRead

func (o *DFUState) HasRead() bool

HasRead returns a boolean if a field has been set.

func (*DFUState) HasRetry

func (o *DFUState) HasRetry() bool

HasRetry returns a boolean if a field has been set.

func (*DFUState) HasStatus

func (o *DFUState) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DFUState) HasType

func (o *DFUState) HasType() bool

HasType returns a boolean if a field has been set.

func (*DFUState) HasUpdated

func (o *DFUState) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*DFUState) HasVersion

func (o *DFUState) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (DFUState) MarshalJSON

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

func (*DFUState) SetBegan

func (o *DFUState) SetBegan(v float32)

SetBegan gets a reference to the given float32 and assigns it to the Began field.

func (*DFUState) SetCrc32

func (o *DFUState) SetCrc32(v float32)

SetCrc32 gets a reference to the given float32 and assigns it to the Crc32 field.

func (*DFUState) SetErrors

func (o *DFUState) SetErrors(v float32)

SetErrors gets a reference to the given float32 and assigns it to the Errors field.

func (*DFUState) SetFile

func (o *DFUState) SetFile(v string)

SetFile gets a reference to the given string and assigns it to the File field.

func (*DFUState) SetLength

func (o *DFUState) SetLength(v float32)

SetLength gets a reference to the given float32 and assigns it to the Length field.

func (*DFUState) SetMd5

func (o *DFUState) SetMd5(v string)

SetMd5 gets a reference to the given string and assigns it to the Md5 field.

func (*DFUState) SetMode

func (o *DFUState) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*DFUState) SetRead

func (o *DFUState) SetRead(v float32)

SetRead gets a reference to the given float32 and assigns it to the Read field.

func (*DFUState) SetRetry

func (o *DFUState) SetRetry(v float32)

SetRetry gets a reference to the given float32 and assigns it to the Retry field.

func (*DFUState) SetStatus

func (o *DFUState) SetStatus(v string)

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

func (*DFUState) SetType

func (o *DFUState) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*DFUState) SetUpdated

func (o *DFUState) SetUpdated(v float32)

SetUpdated gets a reference to the given float32 and assigns it to the Updated field.

func (*DFUState) SetVersion

func (o *DFUState) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (DFUState) ToMap

func (o DFUState) ToMap() (map[string]interface{}, error)

type DataField

type DataField struct {
	// The name of the field
	Name *string `json:"name,omitempty"`
}

DataField struct for DataField

func NewDataField

func NewDataField() *DataField

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

func NewDataFieldWithDefaults

func NewDataFieldWithDefaults() *DataField

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

func (*DataField) GetName

func (o *DataField) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*DataField) GetNameOk

func (o *DataField) GetNameOk() (*string, bool)

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

func (*DataField) HasName

func (o *DataField) HasName() bool

HasName returns a boolean if a field has been set.

func (DataField) MarshalJSON

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

func (*DataField) SetName

func (o *DataField) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (DataField) ToMap

func (o DataField) ToMap() (map[string]interface{}, error)

type DataSetField

type DataSetField struct {
	// The datatype of the field
	Datatype *int32 `json:"datatype,omitempty"`
	// the JSONata expression used to populate this field
	Jsonata *string `json:"jsonata,omitempty"`
	// The name of the field
	Name *string `json:"name,omitempty"`
}

DataSetField struct for DataSetField

func NewDataSetField

func NewDataSetField() *DataSetField

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

func NewDataSetFieldWithDefaults

func NewDataSetFieldWithDefaults() *DataSetField

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

func (*DataSetField) GetDatatype

func (o *DataSetField) GetDatatype() int32

GetDatatype returns the Datatype field value if set, zero value otherwise.

func (*DataSetField) GetDatatypeOk

func (o *DataSetField) GetDatatypeOk() (*int32, bool)

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

func (*DataSetField) GetJsonata

func (o *DataSetField) GetJsonata() string

GetJsonata returns the Jsonata field value if set, zero value otherwise.

func (*DataSetField) GetJsonataOk

func (o *DataSetField) GetJsonataOk() (*string, bool)

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

func (*DataSetField) GetName

func (o *DataSetField) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*DataSetField) GetNameOk

func (o *DataSetField) GetNameOk() (*string, bool)

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

func (*DataSetField) HasDatatype

func (o *DataSetField) HasDatatype() bool

HasDatatype returns a boolean if a field has been set.

func (*DataSetField) HasJsonata

func (o *DataSetField) HasJsonata() bool

HasJsonata returns a boolean if a field has been set.

func (*DataSetField) HasName

func (o *DataSetField) HasName() bool

HasName returns a boolean if a field has been set.

func (DataSetField) MarshalJSON

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

func (*DataSetField) SetDatatype

func (o *DataSetField) SetDatatype(v int32)

SetDatatype gets a reference to the given int32 and assigns it to the Datatype field.

func (*DataSetField) SetJsonata

func (o *DataSetField) SetJsonata(v string)

SetJsonata gets a reference to the given string and assigns it to the Jsonata field.

func (*DataSetField) SetName

func (o *DataSetField) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (DataSetField) ToMap

func (o DataSetField) ToMap() (map[string]interface{}, error)

type DataUsage

type DataUsage struct {
	// Kilobytes remaining in the plan
	KbRemaining float64 `json:"kb_remaining"`
	// Total Kilobytes included in the plan
	KbTotal float64 `json:"kb_total"`
	// Kilobytes used to date
	KbUsed float64 `json:"kb_used"`
}

DataUsage struct for DataUsage

func NewDataUsage

func NewDataUsage(kbRemaining float64, kbTotal float64, kbUsed float64) *DataUsage

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

func NewDataUsageWithDefaults

func NewDataUsageWithDefaults() *DataUsage

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

func (*DataUsage) GetKbRemaining

func (o *DataUsage) GetKbRemaining() float64

GetKbRemaining returns the KbRemaining field value

func (*DataUsage) GetKbRemainingOk

func (o *DataUsage) GetKbRemainingOk() (*float64, bool)

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

func (*DataUsage) GetKbTotal

func (o *DataUsage) GetKbTotal() float64

GetKbTotal returns the KbTotal field value

func (*DataUsage) GetKbTotalOk

func (o *DataUsage) GetKbTotalOk() (*float64, bool)

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

func (*DataUsage) GetKbUsed

func (o *DataUsage) GetKbUsed() float64

GetKbUsed returns the KbUsed field value

func (*DataUsage) GetKbUsedOk

func (o *DataUsage) GetKbUsedOk() (*float64, bool)

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

func (DataUsage) MarshalJSON

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

func (*DataUsage) SetKbRemaining

func (o *DataUsage) SetKbRemaining(v float64)

SetKbRemaining sets field value

func (*DataUsage) SetKbTotal

func (o *DataUsage) SetKbTotal(v float64)

SetKbTotal sets field value

func (*DataUsage) SetKbUsed

func (o *DataUsage) SetKbUsed(v float64)

SetKbUsed sets field value

func (DataUsage) ToMap

func (o DataUsage) ToMap() (map[string]interface{}, error)

func (*DataUsage) UnmarshalJSON

func (o *DataUsage) UnmarshalJSON(data []byte) (err error)

type DatacakeRoute

type DatacakeRoute struct {
	DisableHttpHeaders *bool                   `json:"disable_http_headers,omitempty"`
	Filter             *Filter                 `json:"filter,omitempty"`
	Fleets             []string                `json:"fleets,omitempty"`
	HttpHeaders        *map[string]string      `json:"http_headers,omitempty"`
	ThrottleMs         *int32                  `json:"throttle_ms,omitempty"`
	Timeout            *int32                  `json:"timeout,omitempty"`
	Transform          *RouteTransformSettings `json:"transform,omitempty"`
	Url                *string                 `json:"url,omitempty"`
}

DatacakeRoute struct for DatacakeRoute

func NewDatacakeRoute

func NewDatacakeRoute() *DatacakeRoute

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

func NewDatacakeRouteWithDefaults

func NewDatacakeRouteWithDefaults() *DatacakeRoute

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

func (*DatacakeRoute) GetDisableHttpHeaders

func (o *DatacakeRoute) GetDisableHttpHeaders() bool

GetDisableHttpHeaders returns the DisableHttpHeaders field value if set, zero value otherwise.

func (*DatacakeRoute) GetDisableHttpHeadersOk

func (o *DatacakeRoute) GetDisableHttpHeadersOk() (*bool, bool)

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

func (*DatacakeRoute) GetFilter

func (o *DatacakeRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*DatacakeRoute) GetFilterOk

func (o *DatacakeRoute) GetFilterOk() (*Filter, bool)

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

func (*DatacakeRoute) GetFleets

func (o *DatacakeRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*DatacakeRoute) GetFleetsOk

func (o *DatacakeRoute) GetFleetsOk() ([]string, bool)

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

func (*DatacakeRoute) GetHttpHeaders

func (o *DatacakeRoute) GetHttpHeaders() map[string]string

GetHttpHeaders returns the HttpHeaders field value if set, zero value otherwise.

func (*DatacakeRoute) GetHttpHeadersOk

func (o *DatacakeRoute) GetHttpHeadersOk() (*map[string]string, bool)

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

func (*DatacakeRoute) GetThrottleMs

func (o *DatacakeRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*DatacakeRoute) GetThrottleMsOk

func (o *DatacakeRoute) GetThrottleMsOk() (*int32, bool)

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

func (*DatacakeRoute) GetTimeout

func (o *DatacakeRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*DatacakeRoute) GetTimeoutOk

func (o *DatacakeRoute) GetTimeoutOk() (*int32, bool)

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

func (*DatacakeRoute) GetTransform

func (o *DatacakeRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*DatacakeRoute) GetTransformOk

func (o *DatacakeRoute) GetTransformOk() (*RouteTransformSettings, bool)

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

func (*DatacakeRoute) GetUrl

func (o *DatacakeRoute) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*DatacakeRoute) GetUrlOk

func (o *DatacakeRoute) GetUrlOk() (*string, bool)

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

func (*DatacakeRoute) HasDisableHttpHeaders

func (o *DatacakeRoute) HasDisableHttpHeaders() bool

HasDisableHttpHeaders returns a boolean if a field has been set.

func (*DatacakeRoute) HasFilter

func (o *DatacakeRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*DatacakeRoute) HasFleets

func (o *DatacakeRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*DatacakeRoute) HasHttpHeaders

func (o *DatacakeRoute) HasHttpHeaders() bool

HasHttpHeaders returns a boolean if a field has been set.

func (*DatacakeRoute) HasThrottleMs

func (o *DatacakeRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*DatacakeRoute) HasTimeout

func (o *DatacakeRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*DatacakeRoute) HasTransform

func (o *DatacakeRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*DatacakeRoute) HasUrl

func (o *DatacakeRoute) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (DatacakeRoute) MarshalJSON

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

func (*DatacakeRoute) SetDisableHttpHeaders

func (o *DatacakeRoute) SetDisableHttpHeaders(v bool)

SetDisableHttpHeaders gets a reference to the given bool and assigns it to the DisableHttpHeaders field.

func (*DatacakeRoute) SetFilter

func (o *DatacakeRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*DatacakeRoute) SetFleets

func (o *DatacakeRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*DatacakeRoute) SetHttpHeaders

func (o *DatacakeRoute) SetHttpHeaders(v map[string]string)

SetHttpHeaders gets a reference to the given map[string]string and assigns it to the HttpHeaders field.

func (*DatacakeRoute) SetThrottleMs

func (o *DatacakeRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*DatacakeRoute) SetTimeout

func (o *DatacakeRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*DatacakeRoute) SetTransform

func (o *DatacakeRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*DatacakeRoute) SetUrl

func (o *DatacakeRoute) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (DatacakeRoute) ToMap

func (o DatacakeRoute) ToMap() (map[string]interface{}, error)

type DeleteDeviceFromFleetsRequest

type DeleteDeviceFromFleetsRequest struct {
	// The fleetUIDs to remove from the device.
	FleetUids []string `json:"fleet_uids"`
}

DeleteDeviceFromFleetsRequest struct for DeleteDeviceFromFleetsRequest

func NewDeleteDeviceFromFleetsRequest

func NewDeleteDeviceFromFleetsRequest(fleetUids []string) *DeleteDeviceFromFleetsRequest

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

func NewDeleteDeviceFromFleetsRequestWithDefaults

func NewDeleteDeviceFromFleetsRequestWithDefaults() *DeleteDeviceFromFleetsRequest

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

func (*DeleteDeviceFromFleetsRequest) GetFleetUids

func (o *DeleteDeviceFromFleetsRequest) GetFleetUids() []string

GetFleetUids returns the FleetUids field value

func (*DeleteDeviceFromFleetsRequest) GetFleetUidsOk

func (o *DeleteDeviceFromFleetsRequest) GetFleetUidsOk() ([]string, bool)

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

func (DeleteDeviceFromFleetsRequest) MarshalJSON

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

func (*DeleteDeviceFromFleetsRequest) SetFleetUids

func (o *DeleteDeviceFromFleetsRequest) SetFleetUids(v []string)

SetFleetUids sets field value

func (DeleteDeviceFromFleetsRequest) ToMap

func (o DeleteDeviceFromFleetsRequest) ToMap() (map[string]interface{}, error)

func (*DeleteDeviceFromFleetsRequest) UnmarshalJSON

func (o *DeleteDeviceFromFleetsRequest) UnmarshalJSON(data []byte) (err error)

type DeleteNotefilesRequest

type DeleteNotefilesRequest struct {
	// Name of notefiles to delete
	Files []string `json:"files,omitempty"`
}

DeleteNotefilesRequest struct for DeleteNotefilesRequest

func NewDeleteNotefilesRequest

func NewDeleteNotefilesRequest() *DeleteNotefilesRequest

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

func NewDeleteNotefilesRequestWithDefaults

func NewDeleteNotefilesRequestWithDefaults() *DeleteNotefilesRequest

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

func (*DeleteNotefilesRequest) GetFiles

func (o *DeleteNotefilesRequest) GetFiles() []string

GetFiles returns the Files field value if set, zero value otherwise.

func (*DeleteNotefilesRequest) GetFilesOk

func (o *DeleteNotefilesRequest) GetFilesOk() ([]string, bool)

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

func (*DeleteNotefilesRequest) HasFiles

func (o *DeleteNotefilesRequest) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (DeleteNotefilesRequest) MarshalJSON

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

func (*DeleteNotefilesRequest) SetFiles

func (o *DeleteNotefilesRequest) SetFiles(v []string)

SetFiles gets a reference to the given []string and assigns it to the Files field.

func (DeleteNotefilesRequest) ToMap

func (o DeleteNotefilesRequest) ToMap() (map[string]interface{}, error)

type Device

type Device struct {
	BestLocation         NullableLocation        `json:"best_location,omitempty"`
	CellularUsage        []SimUsage              `json:"cellular_usage,omitempty"`
	Contact              NullableContact         `json:"contact,omitempty"`
	Dfu                  NullableDFUEnv          `json:"dfu,omitempty"`
	Disabled             *bool                   `json:"disabled,omitempty"`
	FirmwareHost         *string                 `json:"firmware_host,omitempty"`
	FirmwareNotecard     *string                 `json:"firmware_notecard,omitempty"`
	FleetUids            []string                `json:"fleet_uids"`
	GpsLocation          NullableLocation        `json:"gps_location,omitempty"`
	LastActivity         NullableTime            `json:"last_activity,omitempty"`
	ProductUid           string                  `json:"product_uid"`
	Provisioned          time.Time               `json:"provisioned"`
	SerialNumber         *string                 `json:"serial_number,omitempty"`
	Sku                  *string                 `json:"sku,omitempty"`
	Temperature          float64                 `json:"temperature"`
	TowerInfo            NullableDeviceTowerInfo `json:"tower_info,omitempty"`
	TowerLocation        NullableLocation        `json:"tower_location,omitempty"`
	TriangulatedLocation NullableLocation        `json:"triangulated_location,omitempty"`
	Uid                  string                  `json:"uid"`
	Voltage              float64                 `json:"voltage"`
}

Device struct for Device

func NewDevice

func NewDevice(fleetUids []string, productUid string, provisioned time.Time, temperature float64, uid string, voltage float64) *Device

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

func NewDeviceWithDefaults

func NewDeviceWithDefaults() *Device

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

func (*Device) GetBestLocation

func (o *Device) GetBestLocation() Location

GetBestLocation returns the BestLocation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetBestLocationOk

func (o *Device) GetBestLocationOk() (*Location, bool)

GetBestLocationOk returns a tuple with the BestLocation field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetCellularUsage

func (o *Device) GetCellularUsage() []SimUsage

GetCellularUsage returns the CellularUsage field value if set, zero value otherwise.

func (*Device) GetCellularUsageOk

func (o *Device) GetCellularUsageOk() ([]SimUsage, bool)

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

func (*Device) GetContact

func (o *Device) GetContact() Contact

GetContact returns the Contact field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetContactOk

func (o *Device) GetContactOk() (*Contact, bool)

GetContactOk returns a tuple with the Contact field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetDfu

func (o *Device) GetDfu() DFUEnv

GetDfu returns the Dfu field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetDfuOk

func (o *Device) GetDfuOk() (*DFUEnv, bool)

GetDfuOk returns a tuple with the Dfu field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetDisabled

func (o *Device) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*Device) GetDisabledOk

func (o *Device) GetDisabledOk() (*bool, bool)

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

func (*Device) GetFirmwareHost

func (o *Device) GetFirmwareHost() string

GetFirmwareHost returns the FirmwareHost field value if set, zero value otherwise.

func (*Device) GetFirmwareHostOk

func (o *Device) GetFirmwareHostOk() (*string, bool)

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

func (*Device) GetFirmwareNotecard

func (o *Device) GetFirmwareNotecard() string

GetFirmwareNotecard returns the FirmwareNotecard field value if set, zero value otherwise.

func (*Device) GetFirmwareNotecardOk

func (o *Device) GetFirmwareNotecardOk() (*string, bool)

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

func (*Device) GetFleetUids

func (o *Device) GetFleetUids() []string

GetFleetUids returns the FleetUids field value

func (*Device) GetFleetUidsOk

func (o *Device) GetFleetUidsOk() ([]string, bool)

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

func (*Device) GetGpsLocation

func (o *Device) GetGpsLocation() Location

GetGpsLocation returns the GpsLocation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetGpsLocationOk

func (o *Device) GetGpsLocationOk() (*Location, bool)

GetGpsLocationOk returns a tuple with the GpsLocation field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetLastActivity

func (o *Device) GetLastActivity() time.Time

GetLastActivity returns the LastActivity field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetLastActivityOk

func (o *Device) GetLastActivityOk() (*time.Time, bool)

GetLastActivityOk returns a tuple with the LastActivity field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetProductUid

func (o *Device) GetProductUid() string

GetProductUid returns the ProductUid field value

func (*Device) GetProductUidOk

func (o *Device) GetProductUidOk() (*string, bool)

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

func (*Device) GetProvisioned

func (o *Device) GetProvisioned() time.Time

GetProvisioned returns the Provisioned field value

func (*Device) GetProvisionedOk

func (o *Device) GetProvisionedOk() (*time.Time, bool)

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

func (*Device) GetSerialNumber

func (o *Device) GetSerialNumber() string

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

func (*Device) GetSerialNumberOk

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

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

func (*Device) GetSku

func (o *Device) GetSku() string

GetSku returns the Sku field value if set, zero value otherwise.

func (*Device) GetSkuOk

func (o *Device) GetSkuOk() (*string, bool)

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

func (*Device) GetTemperature

func (o *Device) GetTemperature() float64

GetTemperature returns the Temperature field value

func (*Device) GetTemperatureOk

func (o *Device) GetTemperatureOk() (*float64, bool)

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

func (*Device) GetTowerInfo

func (o *Device) GetTowerInfo() DeviceTowerInfo

GetTowerInfo returns the TowerInfo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetTowerInfoOk

func (o *Device) GetTowerInfoOk() (*DeviceTowerInfo, bool)

GetTowerInfoOk returns a tuple with the TowerInfo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetTowerLocation

func (o *Device) GetTowerLocation() Location

GetTowerLocation returns the TowerLocation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetTowerLocationOk

func (o *Device) GetTowerLocationOk() (*Location, bool)

GetTowerLocationOk returns a tuple with the TowerLocation field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetTriangulatedLocation

func (o *Device) GetTriangulatedLocation() Location

GetTriangulatedLocation returns the TriangulatedLocation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetTriangulatedLocationOk

func (o *Device) GetTriangulatedLocationOk() (*Location, bool)

GetTriangulatedLocationOk returns a tuple with the TriangulatedLocation field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetUid

func (o *Device) GetUid() string

GetUid returns the Uid field value

func (*Device) GetUidOk

func (o *Device) GetUidOk() (*string, bool)

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

func (*Device) GetVoltage

func (o *Device) GetVoltage() float64

GetVoltage returns the Voltage field value

func (*Device) GetVoltageOk

func (o *Device) GetVoltageOk() (*float64, bool)

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

func (*Device) HasBestLocation

func (o *Device) HasBestLocation() bool

HasBestLocation returns a boolean if a field has been set.

func (*Device) HasCellularUsage

func (o *Device) HasCellularUsage() bool

HasCellularUsage returns a boolean if a field has been set.

func (*Device) HasContact

func (o *Device) HasContact() bool

HasContact returns a boolean if a field has been set.

func (*Device) HasDfu

func (o *Device) HasDfu() bool

HasDfu returns a boolean if a field has been set.

func (*Device) HasDisabled

func (o *Device) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*Device) HasFirmwareHost

func (o *Device) HasFirmwareHost() bool

HasFirmwareHost returns a boolean if a field has been set.

func (*Device) HasFirmwareNotecard

func (o *Device) HasFirmwareNotecard() bool

HasFirmwareNotecard returns a boolean if a field has been set.

func (*Device) HasGpsLocation

func (o *Device) HasGpsLocation() bool

HasGpsLocation returns a boolean if a field has been set.

func (*Device) HasLastActivity

func (o *Device) HasLastActivity() bool

HasLastActivity returns a boolean if a field has been set.

func (*Device) HasSerialNumber

func (o *Device) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*Device) HasSku

func (o *Device) HasSku() bool

HasSku returns a boolean if a field has been set.

func (*Device) HasTowerInfo

func (o *Device) HasTowerInfo() bool

HasTowerInfo returns a boolean if a field has been set.

func (*Device) HasTowerLocation

func (o *Device) HasTowerLocation() bool

HasTowerLocation returns a boolean if a field has been set.

func (*Device) HasTriangulatedLocation

func (o *Device) HasTriangulatedLocation() bool

HasTriangulatedLocation returns a boolean if a field has been set.

func (Device) MarshalJSON

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

func (*Device) SetBestLocation

func (o *Device) SetBestLocation(v Location)

SetBestLocation gets a reference to the given NullableLocation and assigns it to the BestLocation field.

func (*Device) SetBestLocationNil

func (o *Device) SetBestLocationNil()

SetBestLocationNil sets the value for BestLocation to be an explicit nil

func (*Device) SetCellularUsage

func (o *Device) SetCellularUsage(v []SimUsage)

SetCellularUsage gets a reference to the given []SimUsage and assigns it to the CellularUsage field.

func (*Device) SetContact

func (o *Device) SetContact(v Contact)

SetContact gets a reference to the given NullableContact and assigns it to the Contact field.

func (*Device) SetContactNil

func (o *Device) SetContactNil()

SetContactNil sets the value for Contact to be an explicit nil

func (*Device) SetDfu

func (o *Device) SetDfu(v DFUEnv)

SetDfu gets a reference to the given NullableDFUEnv and assigns it to the Dfu field.

func (*Device) SetDfuNil

func (o *Device) SetDfuNil()

SetDfuNil sets the value for Dfu to be an explicit nil

func (*Device) SetDisabled

func (o *Device) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*Device) SetFirmwareHost

func (o *Device) SetFirmwareHost(v string)

SetFirmwareHost gets a reference to the given string and assigns it to the FirmwareHost field.

func (*Device) SetFirmwareNotecard

func (o *Device) SetFirmwareNotecard(v string)

SetFirmwareNotecard gets a reference to the given string and assigns it to the FirmwareNotecard field.

func (*Device) SetFleetUids

func (o *Device) SetFleetUids(v []string)

SetFleetUids sets field value

func (*Device) SetGpsLocation

func (o *Device) SetGpsLocation(v Location)

SetGpsLocation gets a reference to the given NullableLocation and assigns it to the GpsLocation field.

func (*Device) SetGpsLocationNil

func (o *Device) SetGpsLocationNil()

SetGpsLocationNil sets the value for GpsLocation to be an explicit nil

func (*Device) SetLastActivity

func (o *Device) SetLastActivity(v time.Time)

SetLastActivity gets a reference to the given NullableTime and assigns it to the LastActivity field.

func (*Device) SetLastActivityNil

func (o *Device) SetLastActivityNil()

SetLastActivityNil sets the value for LastActivity to be an explicit nil

func (*Device) SetProductUid

func (o *Device) SetProductUid(v string)

SetProductUid sets field value

func (*Device) SetProvisioned

func (o *Device) SetProvisioned(v time.Time)

SetProvisioned sets field value

func (*Device) SetSerialNumber

func (o *Device) SetSerialNumber(v string)

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

func (*Device) SetSku

func (o *Device) SetSku(v string)

SetSku gets a reference to the given string and assigns it to the Sku field.

func (*Device) SetTemperature

func (o *Device) SetTemperature(v float64)

SetTemperature sets field value

func (*Device) SetTowerInfo

func (o *Device) SetTowerInfo(v DeviceTowerInfo)

SetTowerInfo gets a reference to the given NullableDeviceTowerInfo and assigns it to the TowerInfo field.

func (*Device) SetTowerInfoNil

func (o *Device) SetTowerInfoNil()

SetTowerInfoNil sets the value for TowerInfo to be an explicit nil

func (*Device) SetTowerLocation

func (o *Device) SetTowerLocation(v Location)

SetTowerLocation gets a reference to the given NullableLocation and assigns it to the TowerLocation field.

func (*Device) SetTowerLocationNil

func (o *Device) SetTowerLocationNil()

SetTowerLocationNil sets the value for TowerLocation to be an explicit nil

func (*Device) SetTriangulatedLocation

func (o *Device) SetTriangulatedLocation(v Location)

SetTriangulatedLocation gets a reference to the given NullableLocation and assigns it to the TriangulatedLocation field.

func (*Device) SetTriangulatedLocationNil

func (o *Device) SetTriangulatedLocationNil()

SetTriangulatedLocationNil sets the value for TriangulatedLocation to be an explicit nil

func (*Device) SetUid

func (o *Device) SetUid(v string)

SetUid sets field value

func (*Device) SetVoltage

func (o *Device) SetVoltage(v float64)

SetVoltage sets field value

func (Device) ToMap

func (o Device) ToMap() (map[string]interface{}, error)

func (*Device) UnmarshalJSON

func (o *Device) UnmarshalJSON(data []byte) (err error)

func (*Device) UnsetBestLocation

func (o *Device) UnsetBestLocation()

UnsetBestLocation ensures that no value is present for BestLocation, not even an explicit nil

func (*Device) UnsetContact

func (o *Device) UnsetContact()

UnsetContact ensures that no value is present for Contact, not even an explicit nil

func (*Device) UnsetDfu

func (o *Device) UnsetDfu()

UnsetDfu ensures that no value is present for Dfu, not even an explicit nil

func (*Device) UnsetGpsLocation

func (o *Device) UnsetGpsLocation()

UnsetGpsLocation ensures that no value is present for GpsLocation, not even an explicit nil

func (*Device) UnsetLastActivity

func (o *Device) UnsetLastActivity()

UnsetLastActivity ensures that no value is present for LastActivity, not even an explicit nil

func (*Device) UnsetTowerInfo

func (o *Device) UnsetTowerInfo()

UnsetTowerInfo ensures that no value is present for TowerInfo, not even an explicit nil

func (*Device) UnsetTowerLocation

func (o *Device) UnsetTowerLocation()

UnsetTowerLocation ensures that no value is present for TowerLocation, not even an explicit nil

func (*Device) UnsetTriangulatedLocation

func (o *Device) UnsetTriangulatedLocation()

UnsetTriangulatedLocation ensures that no value is present for TriangulatedLocation, not even an explicit nil

type DeviceAPIService

type DeviceAPIService service

DeviceAPIService DeviceAPI service

func (*DeviceAPIService) AddDbNote

func (a *DeviceAPIService) AddDbNote(ctx context.Context, projectOrProductUID string, deviceUID string, notefileID string, noteID string) ApiAddDbNoteRequest

AddDbNote Method for AddDbNote

Add a Note to a .db notefile. if noteID is '-' then payload is ignored and empty notefile is created

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

func (*DeviceAPIService) AddDbNoteExecute

func (a *DeviceAPIService) AddDbNoteExecute(r ApiAddDbNoteRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) AddQiNote

func (a *DeviceAPIService) AddQiNote(ctx context.Context, projectOrProductUID string, deviceUID string, notefileID string) ApiAddQiNoteRequest

AddQiNote Method for AddQiNote

Adds a Note to a Notefile, creating the Notefile if it doesn't yet exist.

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

func (*DeviceAPIService) AddQiNoteExecute

func (a *DeviceAPIService) AddQiNoteExecute(r ApiAddQiNoteRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) DeleteDevice

func (a *DeviceAPIService) DeleteDevice(ctx context.Context, projectOrProductUID string, deviceUID string) ApiDeleteDeviceRequest

DeleteDevice Method for DeleteDevice

Delete Device

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

func (*DeviceAPIService) DeleteDeviceEnvironmentVariable

func (a *DeviceAPIService) DeleteDeviceEnvironmentVariable(ctx context.Context, projectOrProductUID string, deviceUID string, key string) ApiDeleteDeviceEnvironmentVariableRequest

DeleteDeviceEnvironmentVariable Method for DeleteDeviceEnvironmentVariable

Delete environment variable of a device

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param deviceUID
@param key The environment variable key to delete.
@return ApiDeleteDeviceEnvironmentVariableRequest

func (*DeviceAPIService) DeleteDeviceEnvironmentVariableExecute

func (a *DeviceAPIService) DeleteDeviceEnvironmentVariableExecute(r ApiDeleteDeviceEnvironmentVariableRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*DeviceAPIService) DeleteDeviceExecute

func (a *DeviceAPIService) DeleteDeviceExecute(r ApiDeleteDeviceRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) DeleteNote

func (a *DeviceAPIService) DeleteNote(ctx context.Context, projectOrProductUID string, deviceUID string, notefileID string, noteID string) ApiDeleteNoteRequest

DeleteNote Method for DeleteNote

Delete a note from a .db or .qi notefile

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

func (*DeviceAPIService) DeleteNoteExecute

func (a *DeviceAPIService) DeleteNoteExecute(r ApiDeleteNoteRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) DeleteNotefiles

func (a *DeviceAPIService) DeleteNotefiles(ctx context.Context, projectOrProductUID string, deviceUID string) ApiDeleteNotefilesRequest

DeleteNotefiles Method for DeleteNotefiles

Deletes Notefiles and the Notes they contain.

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

func (*DeviceAPIService) DeleteNotefilesExecute

func (a *DeviceAPIService) DeleteNotefilesExecute(r ApiDeleteNotefilesRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) DisableDevice

func (a *DeviceAPIService) DisableDevice(ctx context.Context, projectOrProductUID string, deviceUID string) ApiDisableDeviceRequest

DisableDevice Method for DisableDevice

Disable Device

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

func (*DeviceAPIService) DisableDeviceConnectivityAssurance

func (a *DeviceAPIService) DisableDeviceConnectivityAssurance(ctx context.Context, projectOrProductUID string, deviceUID string) ApiDisableDeviceConnectivityAssuranceRequest

DisableDeviceConnectivityAssurance Method for DisableDeviceConnectivityAssurance

Disable Connectivity Assurance

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

func (*DeviceAPIService) DisableDeviceConnectivityAssuranceExecute

func (a *DeviceAPIService) DisableDeviceConnectivityAssuranceExecute(r ApiDisableDeviceConnectivityAssuranceRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) DisableDeviceExecute

func (a *DeviceAPIService) DisableDeviceExecute(r ApiDisableDeviceRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) EnableDevice

func (a *DeviceAPIService) EnableDevice(ctx context.Context, projectOrProductUID string, deviceUID string) ApiEnableDeviceRequest

EnableDevice Method for EnableDevice

Enable Device

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

func (*DeviceAPIService) EnableDeviceConnectivityAssurance

func (a *DeviceAPIService) EnableDeviceConnectivityAssurance(ctx context.Context, projectOrProductUID string, deviceUID string) ApiEnableDeviceConnectivityAssuranceRequest

EnableDeviceConnectivityAssurance Method for EnableDeviceConnectivityAssurance

Enable Connectivity Assurance

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

func (*DeviceAPIService) EnableDeviceConnectivityAssuranceExecute

func (a *DeviceAPIService) EnableDeviceConnectivityAssuranceExecute(r ApiEnableDeviceConnectivityAssuranceRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) EnableDeviceExecute

func (a *DeviceAPIService) EnableDeviceExecute(r ApiEnableDeviceRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) GetDbNote

func (a *DeviceAPIService) GetDbNote(ctx context.Context, projectOrProductUID string, deviceUID string, notefileID string, noteID string) ApiGetDbNoteRequest

GetDbNote Method for GetDbNote

Get a note from a .db or .qi notefile

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

func (*DeviceAPIService) GetDbNoteExecute

Execute executes the request

@return GetDbNote200Response

func (*DeviceAPIService) GetDevice

func (a *DeviceAPIService) GetDevice(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDeviceRequest

GetDevice Method for GetDevice

Get Device

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

func (*DeviceAPIService) GetDeviceEnvironmentHierarchy

func (a *DeviceAPIService) GetDeviceEnvironmentHierarchy(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDeviceEnvironmentHierarchyRequest

GetDeviceEnvironmentHierarchy Get environment variable hierarchy for a device

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

func (*DeviceAPIService) GetDeviceEnvironmentHierarchyExecute

func (a *DeviceAPIService) GetDeviceEnvironmentHierarchyExecute(r ApiGetDeviceEnvironmentHierarchyRequest) (*EnvTreeJsonNode, *http.Response, error)

Execute executes the request

@return EnvTreeJsonNode

func (*DeviceAPIService) GetDeviceEnvironmentVariables

func (a *DeviceAPIService) GetDeviceEnvironmentVariables(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDeviceEnvironmentVariablesRequest

GetDeviceEnvironmentVariables Method for GetDeviceEnvironmentVariables

Get environment variables of a device

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

func (*DeviceAPIService) GetDeviceEnvironmentVariablesByPin

func (a *DeviceAPIService) GetDeviceEnvironmentVariablesByPin(ctx context.Context, productUID string, deviceUID string) ApiGetDeviceEnvironmentVariablesByPinRequest

GetDeviceEnvironmentVariablesByPin Method for GetDeviceEnvironmentVariablesByPin

Get environment variables of a device with device pin authorization

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

func (*DeviceAPIService) GetDeviceEnvironmentVariablesByPinExecute

Execute executes the request

@return GetDeviceEnvironmentVariablesByPin200Response

func (*DeviceAPIService) GetDeviceEnvironmentVariablesExecute

Execute executes the request

@return GetDeviceEnvironmentVariablesByPin200Response

func (*DeviceAPIService) GetDeviceExecute

func (a *DeviceAPIService) GetDeviceExecute(r ApiGetDeviceRequest) (*Device, *http.Response, error)

Execute executes the request

@return Device

func (*DeviceAPIService) GetDeviceHealthLog

func (a *DeviceAPIService) GetDeviceHealthLog(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDeviceHealthLogRequest

GetDeviceHealthLog Method for GetDeviceHealthLog

Get Device Health Log

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

func (*DeviceAPIService) GetDeviceHealthLogExecute

Execute executes the request

@return GetDeviceHealthLog200Response

func (*DeviceAPIService) GetDeviceLatestEvents

func (a *DeviceAPIService) GetDeviceLatestEvents(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDeviceLatestEventsRequest

GetDeviceLatestEvents Method for GetDeviceLatestEvents

Get Device Latest Events

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

func (*DeviceAPIService) GetDeviceLatestEventsExecute

Execute executes the request

@return GetDeviceLatestEvents200Response

func (*DeviceAPIService) GetDevicePlans

func (a *DeviceAPIService) GetDevicePlans(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDevicePlansRequest

GetDevicePlans Method for GetDevicePlans

Get Data Plans associated with the device, this include the primary sim, any external sim, as well as any satellite connections.

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

func (*DeviceAPIService) GetDevicePlansExecute

Execute executes the request

@return GetDevicePlans200Response

func (*DeviceAPIService) GetDevicePublicKey

func (a *DeviceAPIService) GetDevicePublicKey(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDevicePublicKeyRequest

GetDevicePublicKey Method for GetDevicePublicKey

Get Device Public Key

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

func (*DeviceAPIService) GetDevicePublicKeyExecute

Execute executes the request

@return GetDevicePublicKey200Response

func (*DeviceAPIService) GetDevicePublicKeys

func (a *DeviceAPIService) GetDevicePublicKeys(ctx context.Context, projectOrProductUID string) ApiGetDevicePublicKeysRequest

GetDevicePublicKeys Method for GetDevicePublicKeys

Get Device Public Keys of a Project

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

func (*DeviceAPIService) GetDevicePublicKeysExecute

Execute executes the request

@return GetDevicePublicKeys200Response

func (*DeviceAPIService) GetDeviceSessions

func (a *DeviceAPIService) GetDeviceSessions(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDeviceSessionsRequest

GetDeviceSessions Method for GetDeviceSessions

Get Device Sessions

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

func (*DeviceAPIService) GetDeviceSessionsExecute

Execute executes the request

@return GetDeviceSessions200Response

func (*DeviceAPIService) GetDevices

func (a *DeviceAPIService) GetDevices(ctx context.Context, projectOrProductUID string) ApiGetDevicesRequest

GetDevices Method for GetDevices

Get Devices of a Project

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

func (*DeviceAPIService) GetDevicesExecute

Execute executes the request

@return GetDevices200Response

func (*DeviceAPIService) GetFleetDevices

func (a *DeviceAPIService) GetFleetDevices(ctx context.Context, projectOrProductUID string, fleetUID string) ApiGetFleetDevicesRequest

GetFleetDevices Method for GetFleetDevices

Get Devices of a Fleet within a Project

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

func (*DeviceAPIService) GetFleetDevicesExecute

Execute executes the request

@return GetDevices200Response

func (*DeviceAPIService) GetNotefile

func (a *DeviceAPIService) GetNotefile(ctx context.Context, projectOrProductUID string, deviceUID string, notefileID string) ApiGetNotefileRequest

GetNotefile Method for GetNotefile

For .qi files, returns the queued up notes. For .db files, returns all notes in the notefile

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

func (*DeviceAPIService) GetNotefileExecute

Execute executes the request

@return GetNotefile200Response

func (*DeviceAPIService) ListNotefiles

func (a *DeviceAPIService) ListNotefiles(ctx context.Context, projectOrProductUID string, deviceUID string) ApiListNotefilesRequest

ListNotefiles Method for ListNotefiles

Lists .qi and .db files for the device

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

func (*DeviceAPIService) ListNotefilesExecute

func (a *DeviceAPIService) ListNotefilesExecute(r ApiListNotefilesRequest) ([]Notefile, *http.Response, error)

Execute executes the request

@return []Notefile

func (*DeviceAPIService) ProvisionDevice

func (a *DeviceAPIService) ProvisionDevice(ctx context.Context, projectOrProductUID string, deviceUID string) ApiProvisionDeviceRequest

ProvisionDevice Method for ProvisionDevice

Provision Device for a Project

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

func (*DeviceAPIService) ProvisionDeviceExecute

func (a *DeviceAPIService) ProvisionDeviceExecute(r ApiProvisionDeviceRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*DeviceAPIService) SetDeviceEnvironmentVariables

func (a *DeviceAPIService) SetDeviceEnvironmentVariables(ctx context.Context, projectOrProductUID string, deviceUID string) ApiSetDeviceEnvironmentVariablesRequest

SetDeviceEnvironmentVariables Method for SetDeviceEnvironmentVariables

Set environment variables of a device

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

func (*DeviceAPIService) SetDeviceEnvironmentVariablesByPin

func (a *DeviceAPIService) SetDeviceEnvironmentVariablesByPin(ctx context.Context, productUID string, deviceUID string) ApiSetDeviceEnvironmentVariablesByPinRequest

SetDeviceEnvironmentVariablesByPin Method for SetDeviceEnvironmentVariablesByPin

Set environment variables of a device with device pin authorization

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

func (*DeviceAPIService) SetDeviceEnvironmentVariablesByPinExecute

func (a *DeviceAPIService) SetDeviceEnvironmentVariablesByPinExecute(r ApiSetDeviceEnvironmentVariablesByPinRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*DeviceAPIService) SetDeviceEnvironmentVariablesExecute

func (a *DeviceAPIService) SetDeviceEnvironmentVariablesExecute(r ApiSetDeviceEnvironmentVariablesRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*DeviceAPIService) SignalDevice

func (a *DeviceAPIService) SignalDevice(ctx context.Context, projectOrProductUID string, deviceUID string) ApiSignalDeviceRequest

SignalDevice Method for SignalDevice

Send a signal from Notehub to a Notecard.

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

func (*DeviceAPIService) SignalDeviceExecute

Execute executes the request

@return SignalDevice200Response

func (*DeviceAPIService) UpdateDbNote

func (a *DeviceAPIService) UpdateDbNote(ctx context.Context, projectOrProductUID string, deviceUID string, notefileID string, noteID string) ApiUpdateDbNoteRequest

UpdateDbNote Method for UpdateDbNote

Update a note in a .db or .qi notefile

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

func (*DeviceAPIService) UpdateDbNoteExecute

func (a *DeviceAPIService) UpdateDbNoteExecute(r ApiUpdateDbNoteRequest) (*http.Response, error)

Execute executes the request

type DeviceDfuHistory

type DeviceDfuHistory struct {
	Current *DeviceDfuHistoryCurrent `json:"current,omitempty"`
	// Device UID
	DeviceUid *string                 `json:"device_uid,omitempty"`
	History   []DeviceDfuStateMachine `json:"history,omitempty"`
}

DeviceDfuHistory struct for DeviceDfuHistory

func NewDeviceDfuHistory

func NewDeviceDfuHistory() *DeviceDfuHistory

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

func NewDeviceDfuHistoryWithDefaults

func NewDeviceDfuHistoryWithDefaults() *DeviceDfuHistory

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

func (*DeviceDfuHistory) GetCurrent

func (o *DeviceDfuHistory) GetCurrent() DeviceDfuHistoryCurrent

GetCurrent returns the Current field value if set, zero value otherwise.

func (*DeviceDfuHistory) GetCurrentOk

func (o *DeviceDfuHistory) GetCurrentOk() (*DeviceDfuHistoryCurrent, bool)

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

func (*DeviceDfuHistory) GetDeviceUid

func (o *DeviceDfuHistory) GetDeviceUid() string

GetDeviceUid returns the DeviceUid field value if set, zero value otherwise.

func (*DeviceDfuHistory) GetDeviceUidOk

func (o *DeviceDfuHistory) GetDeviceUidOk() (*string, bool)

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

func (*DeviceDfuHistory) GetHistory

func (o *DeviceDfuHistory) GetHistory() []DeviceDfuStateMachine

GetHistory returns the History field value if set, zero value otherwise.

func (*DeviceDfuHistory) GetHistoryOk

func (o *DeviceDfuHistory) GetHistoryOk() ([]DeviceDfuStateMachine, bool)

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

func (*DeviceDfuHistory) HasCurrent

func (o *DeviceDfuHistory) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*DeviceDfuHistory) HasDeviceUid

func (o *DeviceDfuHistory) HasDeviceUid() bool

HasDeviceUid returns a boolean if a field has been set.

func (*DeviceDfuHistory) HasHistory

func (o *DeviceDfuHistory) HasHistory() bool

HasHistory returns a boolean if a field has been set.

func (DeviceDfuHistory) MarshalJSON

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

func (*DeviceDfuHistory) SetCurrent

func (o *DeviceDfuHistory) SetCurrent(v DeviceDfuHistoryCurrent)

SetCurrent gets a reference to the given DeviceDfuHistoryCurrent and assigns it to the Current field.

func (*DeviceDfuHistory) SetDeviceUid

func (o *DeviceDfuHistory) SetDeviceUid(v string)

SetDeviceUid gets a reference to the given string and assigns it to the DeviceUid field.

func (*DeviceDfuHistory) SetHistory

func (o *DeviceDfuHistory) SetHistory(v []DeviceDfuStateMachine)

SetHistory gets a reference to the given []DeviceDfuStateMachine and assigns it to the History field.

func (DeviceDfuHistory) ToMap

func (o DeviceDfuHistory) ToMap() (map[string]interface{}, error)

type DeviceDfuHistoryCurrent

type DeviceDfuHistoryCurrent struct {
	// Firmware author
	Builder *string `json:"builder,omitempty"`
	// Firmware build date
	Built *string `json:"built,omitempty"`
	// Firmware description
	Description *string `json:"description,omitempty"`
	// Firmware organization
	Organization *string `json:"organization,omitempty"`
	// Firmware product
	Product *string `json:"product,omitempty"`
	// Firmware version
	Version *string `json:"version,omitempty"`
}

DeviceDfuHistoryCurrent Description of the current firmware

func NewDeviceDfuHistoryCurrent

func NewDeviceDfuHistoryCurrent() *DeviceDfuHistoryCurrent

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

func NewDeviceDfuHistoryCurrentWithDefaults

func NewDeviceDfuHistoryCurrentWithDefaults() *DeviceDfuHistoryCurrent

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

func (*DeviceDfuHistoryCurrent) GetBuilder

func (o *DeviceDfuHistoryCurrent) GetBuilder() string

GetBuilder returns the Builder field value if set, zero value otherwise.

func (*DeviceDfuHistoryCurrent) GetBuilderOk

func (o *DeviceDfuHistoryCurrent) GetBuilderOk() (*string, bool)

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

func (*DeviceDfuHistoryCurrent) GetBuilt

func (o *DeviceDfuHistoryCurrent) GetBuilt() string

GetBuilt returns the Built field value if set, zero value otherwise.

func (*DeviceDfuHistoryCurrent) GetBuiltOk

func (o *DeviceDfuHistoryCurrent) GetBuiltOk() (*string, bool)

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

func (*DeviceDfuHistoryCurrent) GetDescription

func (o *DeviceDfuHistoryCurrent) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DeviceDfuHistoryCurrent) GetDescriptionOk

func (o *DeviceDfuHistoryCurrent) GetDescriptionOk() (*string, bool)

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

func (*DeviceDfuHistoryCurrent) GetOrganization

func (o *DeviceDfuHistoryCurrent) GetOrganization() string

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*DeviceDfuHistoryCurrent) GetOrganizationOk

func (o *DeviceDfuHistoryCurrent) GetOrganizationOk() (*string, bool)

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

func (*DeviceDfuHistoryCurrent) GetProduct

func (o *DeviceDfuHistoryCurrent) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*DeviceDfuHistoryCurrent) GetProductOk

func (o *DeviceDfuHistoryCurrent) GetProductOk() (*string, bool)

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

func (*DeviceDfuHistoryCurrent) GetVersion

func (o *DeviceDfuHistoryCurrent) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*DeviceDfuHistoryCurrent) GetVersionOk

func (o *DeviceDfuHistoryCurrent) GetVersionOk() (*string, bool)

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

func (*DeviceDfuHistoryCurrent) HasBuilder

func (o *DeviceDfuHistoryCurrent) HasBuilder() bool

HasBuilder returns a boolean if a field has been set.

func (*DeviceDfuHistoryCurrent) HasBuilt

func (o *DeviceDfuHistoryCurrent) HasBuilt() bool

HasBuilt returns a boolean if a field has been set.

func (*DeviceDfuHistoryCurrent) HasDescription

func (o *DeviceDfuHistoryCurrent) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DeviceDfuHistoryCurrent) HasOrganization

func (o *DeviceDfuHistoryCurrent) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*DeviceDfuHistoryCurrent) HasProduct

func (o *DeviceDfuHistoryCurrent) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*DeviceDfuHistoryCurrent) HasVersion

func (o *DeviceDfuHistoryCurrent) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (DeviceDfuHistoryCurrent) MarshalJSON

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

func (*DeviceDfuHistoryCurrent) SetBuilder

func (o *DeviceDfuHistoryCurrent) SetBuilder(v string)

SetBuilder gets a reference to the given string and assigns it to the Builder field.

func (*DeviceDfuHistoryCurrent) SetBuilt

func (o *DeviceDfuHistoryCurrent) SetBuilt(v string)

SetBuilt gets a reference to the given string and assigns it to the Built field.

func (*DeviceDfuHistoryCurrent) SetDescription

func (o *DeviceDfuHistoryCurrent) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DeviceDfuHistoryCurrent) SetOrganization

func (o *DeviceDfuHistoryCurrent) SetOrganization(v string)

SetOrganization gets a reference to the given string and assigns it to the Organization field.

func (*DeviceDfuHistoryCurrent) SetProduct

func (o *DeviceDfuHistoryCurrent) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*DeviceDfuHistoryCurrent) SetVersion

func (o *DeviceDfuHistoryCurrent) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (DeviceDfuHistoryCurrent) ToMap

func (o DeviceDfuHistoryCurrent) ToMap() (map[string]interface{}, error)

type DeviceDfuHistoryPage

type DeviceDfuHistoryPage struct {
	Devices []DeviceDfuHistory `json:"devices,omitempty"`
	HasMore *bool              `json:"has_more,omitempty"`
}

DeviceDfuHistoryPage struct for DeviceDfuHistoryPage

func NewDeviceDfuHistoryPage

func NewDeviceDfuHistoryPage() *DeviceDfuHistoryPage

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

func NewDeviceDfuHistoryPageWithDefaults

func NewDeviceDfuHistoryPageWithDefaults() *DeviceDfuHistoryPage

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

func (*DeviceDfuHistoryPage) GetDevices

func (o *DeviceDfuHistoryPage) GetDevices() []DeviceDfuHistory

GetDevices returns the Devices field value if set, zero value otherwise.

func (*DeviceDfuHistoryPage) GetDevicesOk

func (o *DeviceDfuHistoryPage) GetDevicesOk() ([]DeviceDfuHistory, bool)

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

func (*DeviceDfuHistoryPage) GetHasMore

func (o *DeviceDfuHistoryPage) GetHasMore() bool

GetHasMore returns the HasMore field value if set, zero value otherwise.

func (*DeviceDfuHistoryPage) GetHasMoreOk

func (o *DeviceDfuHistoryPage) GetHasMoreOk() (*bool, bool)

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

func (*DeviceDfuHistoryPage) HasDevices

func (o *DeviceDfuHistoryPage) HasDevices() bool

HasDevices returns a boolean if a field has been set.

func (*DeviceDfuHistoryPage) HasHasMore

func (o *DeviceDfuHistoryPage) HasHasMore() bool

HasHasMore returns a boolean if a field has been set.

func (DeviceDfuHistoryPage) MarshalJSON

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

func (*DeviceDfuHistoryPage) SetDevices

func (o *DeviceDfuHistoryPage) SetDevices(v []DeviceDfuHistory)

SetDevices gets a reference to the given []DeviceDfuHistory and assigns it to the Devices field.

func (*DeviceDfuHistoryPage) SetHasMore

func (o *DeviceDfuHistoryPage) SetHasMore(v bool)

SetHasMore gets a reference to the given bool and assigns it to the HasMore field.

func (DeviceDfuHistoryPage) ToMap

func (o DeviceDfuHistoryPage) ToMap() (map[string]interface{}, error)

type DeviceDfuStateMachine

type DeviceDfuStateMachine struct {
	// Version of the firmware that was installed prior to this request
	CurrentVersion *string `json:"current_version,omitempty"`
	// RFC3339 datetime of when this update was requested
	Initiated *string `json:"initiated,omitempty"`
	// Version of the firmware that was requested to be installed
	RequestedVersion *string                     `json:"requested_version,omitempty"`
	Updates          []DeviceDfuStateMachineNode `json:"updates,omitempty"`
}

DeviceDfuStateMachine Represents a single request to update the host or Notecard firmware

func NewDeviceDfuStateMachine

func NewDeviceDfuStateMachine() *DeviceDfuStateMachine

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

func NewDeviceDfuStateMachineWithDefaults

func NewDeviceDfuStateMachineWithDefaults() *DeviceDfuStateMachine

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

func (*DeviceDfuStateMachine) GetCurrentVersion

func (o *DeviceDfuStateMachine) GetCurrentVersion() string

GetCurrentVersion returns the CurrentVersion field value if set, zero value otherwise.

func (*DeviceDfuStateMachine) GetCurrentVersionOk

func (o *DeviceDfuStateMachine) GetCurrentVersionOk() (*string, bool)

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

func (*DeviceDfuStateMachine) GetInitiated

func (o *DeviceDfuStateMachine) GetInitiated() string

GetInitiated returns the Initiated field value if set, zero value otherwise.

func (*DeviceDfuStateMachine) GetInitiatedOk

func (o *DeviceDfuStateMachine) GetInitiatedOk() (*string, bool)

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

func (*DeviceDfuStateMachine) GetRequestedVersion

func (o *DeviceDfuStateMachine) GetRequestedVersion() string

GetRequestedVersion returns the RequestedVersion field value if set, zero value otherwise.

func (*DeviceDfuStateMachine) GetRequestedVersionOk

func (o *DeviceDfuStateMachine) GetRequestedVersionOk() (*string, bool)

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

func (*DeviceDfuStateMachine) GetUpdates

GetUpdates returns the Updates field value if set, zero value otherwise.

func (*DeviceDfuStateMachine) GetUpdatesOk

func (o *DeviceDfuStateMachine) GetUpdatesOk() ([]DeviceDfuStateMachineNode, bool)

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

func (*DeviceDfuStateMachine) HasCurrentVersion

func (o *DeviceDfuStateMachine) HasCurrentVersion() bool

HasCurrentVersion returns a boolean if a field has been set.

func (*DeviceDfuStateMachine) HasInitiated

func (o *DeviceDfuStateMachine) HasInitiated() bool

HasInitiated returns a boolean if a field has been set.

func (*DeviceDfuStateMachine) HasRequestedVersion

func (o *DeviceDfuStateMachine) HasRequestedVersion() bool

HasRequestedVersion returns a boolean if a field has been set.

func (*DeviceDfuStateMachine) HasUpdates

func (o *DeviceDfuStateMachine) HasUpdates() bool

HasUpdates returns a boolean if a field has been set.

func (DeviceDfuStateMachine) MarshalJSON

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

func (*DeviceDfuStateMachine) SetCurrentVersion

func (o *DeviceDfuStateMachine) SetCurrentVersion(v string)

SetCurrentVersion gets a reference to the given string and assigns it to the CurrentVersion field.

func (*DeviceDfuStateMachine) SetInitiated

func (o *DeviceDfuStateMachine) SetInitiated(v string)

SetInitiated gets a reference to the given string and assigns it to the Initiated field.

func (*DeviceDfuStateMachine) SetRequestedVersion

func (o *DeviceDfuStateMachine) SetRequestedVersion(v string)

SetRequestedVersion gets a reference to the given string and assigns it to the RequestedVersion field.

func (*DeviceDfuStateMachine) SetUpdates

SetUpdates gets a reference to the given []DeviceDfuStateMachineNode and assigns it to the Updates field.

func (DeviceDfuStateMachine) ToMap

func (o DeviceDfuStateMachine) ToMap() (map[string]interface{}, error)

type DeviceDfuStateMachineNode

type DeviceDfuStateMachineNode struct {
	// RFC3339 compatible datetime of when this status update happened
	Datetime *string `json:"datetime,omitempty"`
	// Additional information
	Description *string `json:"description,omitempty"`
	// Phase for this step in the firmware update process
	Phase *string `json:"phase,omitempty"`
	// Status for this step in the firmware update process
	Status *string `json:"status,omitempty"`
}

DeviceDfuStateMachineNode Represents a single request to update the host or Notecard firmware

func NewDeviceDfuStateMachineNode

func NewDeviceDfuStateMachineNode() *DeviceDfuStateMachineNode

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

func NewDeviceDfuStateMachineNodeWithDefaults

func NewDeviceDfuStateMachineNodeWithDefaults() *DeviceDfuStateMachineNode

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

func (*DeviceDfuStateMachineNode) GetDatetime

func (o *DeviceDfuStateMachineNode) GetDatetime() string

GetDatetime returns the Datetime field value if set, zero value otherwise.

func (*DeviceDfuStateMachineNode) GetDatetimeOk

func (o *DeviceDfuStateMachineNode) GetDatetimeOk() (*string, bool)

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

func (*DeviceDfuStateMachineNode) GetDescription

func (o *DeviceDfuStateMachineNode) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DeviceDfuStateMachineNode) GetDescriptionOk

func (o *DeviceDfuStateMachineNode) GetDescriptionOk() (*string, bool)

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

func (*DeviceDfuStateMachineNode) GetPhase

func (o *DeviceDfuStateMachineNode) GetPhase() string

GetPhase returns the Phase field value if set, zero value otherwise.

func (*DeviceDfuStateMachineNode) GetPhaseOk

func (o *DeviceDfuStateMachineNode) GetPhaseOk() (*string, bool)

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

func (*DeviceDfuStateMachineNode) GetStatus

func (o *DeviceDfuStateMachineNode) GetStatus() string

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

func (*DeviceDfuStateMachineNode) GetStatusOk

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

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

func (*DeviceDfuStateMachineNode) HasDatetime

func (o *DeviceDfuStateMachineNode) HasDatetime() bool

HasDatetime returns a boolean if a field has been set.

func (*DeviceDfuStateMachineNode) HasDescription

func (o *DeviceDfuStateMachineNode) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DeviceDfuStateMachineNode) HasPhase

func (o *DeviceDfuStateMachineNode) HasPhase() bool

HasPhase returns a boolean if a field has been set.

func (*DeviceDfuStateMachineNode) HasStatus

func (o *DeviceDfuStateMachineNode) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DeviceDfuStateMachineNode) MarshalJSON

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

func (*DeviceDfuStateMachineNode) SetDatetime

func (o *DeviceDfuStateMachineNode) SetDatetime(v string)

SetDatetime gets a reference to the given string and assigns it to the Datetime field.

func (*DeviceDfuStateMachineNode) SetDescription

func (o *DeviceDfuStateMachineNode) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DeviceDfuStateMachineNode) SetPhase

func (o *DeviceDfuStateMachineNode) SetPhase(v string)

SetPhase gets a reference to the given string and assigns it to the Phase field.

func (*DeviceDfuStateMachineNode) SetStatus

func (o *DeviceDfuStateMachineNode) SetStatus(v string)

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

func (DeviceDfuStateMachineNode) ToMap

func (o DeviceDfuStateMachineNode) ToMap() (map[string]interface{}, error)

type DeviceDfuStatus

type DeviceDfuStatus struct {
	Current *DeviceDfuHistoryCurrent `json:"current,omitempty"`
	// Device UID
	DeviceUid *string `json:"device_uid,omitempty"`
	// true if there is a DFU currently in progress
	DfuInProgress *bool                  `json:"dfu_in_progress,omitempty"`
	Status        *DeviceDfuStateMachine `json:"status,omitempty"`
}

DeviceDfuStatus struct for DeviceDfuStatus

func NewDeviceDfuStatus

func NewDeviceDfuStatus() *DeviceDfuStatus

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

func NewDeviceDfuStatusWithDefaults

func NewDeviceDfuStatusWithDefaults() *DeviceDfuStatus

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

func (*DeviceDfuStatus) GetCurrent

func (o *DeviceDfuStatus) GetCurrent() DeviceDfuHistoryCurrent

GetCurrent returns the Current field value if set, zero value otherwise.

func (*DeviceDfuStatus) GetCurrentOk

func (o *DeviceDfuStatus) GetCurrentOk() (*DeviceDfuHistoryCurrent, bool)

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

func (*DeviceDfuStatus) GetDeviceUid

func (o *DeviceDfuStatus) GetDeviceUid() string

GetDeviceUid returns the DeviceUid field value if set, zero value otherwise.

func (*DeviceDfuStatus) GetDeviceUidOk

func (o *DeviceDfuStatus) GetDeviceUidOk() (*string, bool)

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

func (*DeviceDfuStatus) GetDfuInProgress

func (o *DeviceDfuStatus) GetDfuInProgress() bool

GetDfuInProgress returns the DfuInProgress field value if set, zero value otherwise.

func (*DeviceDfuStatus) GetDfuInProgressOk

func (o *DeviceDfuStatus) GetDfuInProgressOk() (*bool, bool)

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

func (*DeviceDfuStatus) GetStatus

func (o *DeviceDfuStatus) GetStatus() DeviceDfuStateMachine

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

func (*DeviceDfuStatus) GetStatusOk

func (o *DeviceDfuStatus) GetStatusOk() (*DeviceDfuStateMachine, bool)

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

func (*DeviceDfuStatus) HasCurrent

func (o *DeviceDfuStatus) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*DeviceDfuStatus) HasDeviceUid

func (o *DeviceDfuStatus) HasDeviceUid() bool

HasDeviceUid returns a boolean if a field has been set.

func (*DeviceDfuStatus) HasDfuInProgress

func (o *DeviceDfuStatus) HasDfuInProgress() bool

HasDfuInProgress returns a boolean if a field has been set.

func (*DeviceDfuStatus) HasStatus

func (o *DeviceDfuStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DeviceDfuStatus) MarshalJSON

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

func (*DeviceDfuStatus) SetCurrent

func (o *DeviceDfuStatus) SetCurrent(v DeviceDfuHistoryCurrent)

SetCurrent gets a reference to the given DeviceDfuHistoryCurrent and assigns it to the Current field.

func (*DeviceDfuStatus) SetDeviceUid

func (o *DeviceDfuStatus) SetDeviceUid(v string)

SetDeviceUid gets a reference to the given string and assigns it to the DeviceUid field.

func (*DeviceDfuStatus) SetDfuInProgress

func (o *DeviceDfuStatus) SetDfuInProgress(v bool)

SetDfuInProgress gets a reference to the given bool and assigns it to the DfuInProgress field.

func (*DeviceDfuStatus) SetStatus

func (o *DeviceDfuStatus) SetStatus(v DeviceDfuStateMachine)

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

func (DeviceDfuStatus) ToMap

func (o DeviceDfuStatus) ToMap() (map[string]interface{}, error)

type DeviceDfuStatusPage

type DeviceDfuStatusPage struct {
	Devices []DeviceDfuStatus `json:"devices,omitempty"`
	HasMore *bool             `json:"has_more,omitempty"`
}

DeviceDfuStatusPage struct for DeviceDfuStatusPage

func NewDeviceDfuStatusPage

func NewDeviceDfuStatusPage() *DeviceDfuStatusPage

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

func NewDeviceDfuStatusPageWithDefaults

func NewDeviceDfuStatusPageWithDefaults() *DeviceDfuStatusPage

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

func (*DeviceDfuStatusPage) GetDevices

func (o *DeviceDfuStatusPage) GetDevices() []DeviceDfuStatus

GetDevices returns the Devices field value if set, zero value otherwise.

func (*DeviceDfuStatusPage) GetDevicesOk

func (o *DeviceDfuStatusPage) GetDevicesOk() ([]DeviceDfuStatus, bool)

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

func (*DeviceDfuStatusPage) GetHasMore

func (o *DeviceDfuStatusPage) GetHasMore() bool

GetHasMore returns the HasMore field value if set, zero value otherwise.

func (*DeviceDfuStatusPage) GetHasMoreOk

func (o *DeviceDfuStatusPage) GetHasMoreOk() (*bool, bool)

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

func (*DeviceDfuStatusPage) HasDevices

func (o *DeviceDfuStatusPage) HasDevices() bool

HasDevices returns a boolean if a field has been set.

func (*DeviceDfuStatusPage) HasHasMore

func (o *DeviceDfuStatusPage) HasHasMore() bool

HasHasMore returns a boolean if a field has been set.

func (DeviceDfuStatusPage) MarshalJSON

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

func (*DeviceDfuStatusPage) SetDevices

func (o *DeviceDfuStatusPage) SetDevices(v []DeviceDfuStatus)

SetDevices gets a reference to the given []DeviceDfuStatus and assigns it to the Devices field.

func (*DeviceDfuStatusPage) SetHasMore

func (o *DeviceDfuStatusPage) SetHasMore(v bool)

SetHasMore gets a reference to the given bool and assigns it to the HasMore field.

func (DeviceDfuStatusPage) ToMap

func (o DeviceDfuStatusPage) ToMap() (map[string]interface{}, error)

type DeviceSession

type DeviceSession struct {
	Apn    *string `json:"apn,omitempty"`
	Bars   *int32  `json:"bars,omitempty"`
	Bearer *string `json:"bearer,omitempty"`
	Bssid  *string `json:"bssid,omitempty"`
	// Cell ID where the session originated and quality (\"mcc,mnc,lac,cellid\")
	Cell *string `json:"cell,omitempty"`
	// Was this a continuous connection?
	Continuous *bool `json:"continuous,omitempty"`
	// Device UID
	Device *string `json:"device,omitempty"`
	// Number of events routed
	Events *int64 `json:"events,omitempty"`
	// Number of failed connection attempts in the prior session
	FailedConnects *int64 `json:"failed_connects,omitempty"`
	// Array of Fleet UIDs
	Fleets        []string `json:"fleets,omitempty"`
	HpCyclesData  *int64   `json:"hp_cycles_data,omitempty"`
	HpCyclesGps   *int64   `json:"hp_cycles_gps,omitempty"`
	HpCyclesTotal *int64   `json:"hp_cycles_total,omitempty"`
	HpSecsData    *int64   `json:"hp_secs_data,omitempty"`
	HpSecsGps     *int64   `json:"hp_secs_gps,omitempty"`
	// Total number of seconds in high power mode
	HpSecsTotal *int64  `json:"hp_secs_total,omitempty"`
	Iccid       *string `json:"iccid,omitempty"`
	Ip          *string `json:"ip,omitempty"`
	Moved       *int64  `json:"moved,omitempty"`
	Orientation *string `json:"orientation,omitempty"`
	// Number of seconds in penalty in the prior session
	PenaltySecs   *int64       `json:"penalty_secs,omitempty"`
	Period        *DeviceUsage `json:"period,omitempty"`
	PowerCharging *bool        `json:"power_charging,omitempty"`
	PowerMah      *float64     `json:"power_mah,omitempty"`
	PowerPrimary  *bool        `json:"power_primary,omitempty"`
	PowerUsb      *bool        `json:"power_usb,omitempty"`
	// Product UID
	Product *string `json:"product,omitempty"`
	Rat     *string `json:"rat,omitempty"`
	Rsrp    *int32  `json:"rsrp,omitempty"`
	Rsrq    *int32  `json:"rsrq,omitempty"`
	Rssi    *int32  `json:"rssi,omitempty"`
	Scan    *string `json:"scan,omitempty"`
	// Session UID
	Session *string `json:"session,omitempty"`
	// UNIX timestamp of session start
	SessionBegan *int64 `json:"session_began,omitempty"`
	// UNIX timestamp of session end
	SessionEnded *int64 `json:"session_ended,omitempty"`
	Sinr         *int32 `json:"sinr,omitempty"`
	// Device Serial Number
	Sn   *string  `json:"sn,omitempty"`
	Ssid *string  `json:"ssid,omitempty"`
	Temp *float64 `json:"temp,omitempty"`
	// Was TLS used?
	Tls   *bool          `json:"tls,omitempty"`
	Tower *TowerLocation `json:"tower,omitempty"`
	// Type of network transport
	Transport   *string                `json:"transport,omitempty"`
	Tri         *TowerLocation         `json:"tri,omitempty"`
	Triangulate map[string]interface{} `json:"triangulate,omitempty"`
	UsageActual *bool                  `json:"usage_actual,omitempty"`
	Voltage     *float64               `json:"voltage,omitempty"`
	// Last known capture time of a note routed through this session in Unix timestamp
	When *int64 `json:"when,omitempty"`
	// Open Location Code from last GPS location
	Where         *string  `json:"where,omitempty"`
	WhereCountry  *string  `json:"where_country,omitempty"`
	WhereLat      *float64 `json:"where_lat,omitempty"`
	WhereLocation *string  `json:"where_location,omitempty"`
	WhereLon      *float64 `json:"where_lon,omitempty"`
	WhereTimezone *string  `json:"where_timezone,omitempty"`
	// Unix timestamp of last GPS location
	WhereWhen *int64 `json:"where_when,omitempty"`
	// Reason for session closing
	WhySessionClosed *string `json:"why_session_closed,omitempty"`
	// Reason for session opening
	WhySessionOpened *string `json:"why_session_opened,omitempty"`
	// Unix timestamp of the last time work was done for this session
	Work *int64 `json:"work,omitempty"`
}

DeviceSession struct for DeviceSession

func NewDeviceSession

func NewDeviceSession() *DeviceSession

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

func NewDeviceSessionWithDefaults

func NewDeviceSessionWithDefaults() *DeviceSession

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

func (*DeviceSession) GetApn

func (o *DeviceSession) GetApn() string

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

func (*DeviceSession) GetApnOk

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

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

func (*DeviceSession) GetBars

func (o *DeviceSession) GetBars() int32

GetBars returns the Bars field value if set, zero value otherwise.

func (*DeviceSession) GetBarsOk

func (o *DeviceSession) GetBarsOk() (*int32, bool)

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

func (*DeviceSession) GetBearer

func (o *DeviceSession) GetBearer() string

GetBearer returns the Bearer field value if set, zero value otherwise.

func (*DeviceSession) GetBearerOk

func (o *DeviceSession) GetBearerOk() (*string, bool)

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

func (*DeviceSession) GetBssid

func (o *DeviceSession) GetBssid() string

GetBssid returns the Bssid field value if set, zero value otherwise.

func (*DeviceSession) GetBssidOk

func (o *DeviceSession) GetBssidOk() (*string, bool)

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

func (*DeviceSession) GetCell

func (o *DeviceSession) GetCell() string

GetCell returns the Cell field value if set, zero value otherwise.

func (*DeviceSession) GetCellOk

func (o *DeviceSession) GetCellOk() (*string, bool)

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

func (*DeviceSession) GetContinuous

func (o *DeviceSession) GetContinuous() bool

GetContinuous returns the Continuous field value if set, zero value otherwise.

func (*DeviceSession) GetContinuousOk

func (o *DeviceSession) GetContinuousOk() (*bool, bool)

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

func (*DeviceSession) GetDevice

func (o *DeviceSession) GetDevice() string

GetDevice returns the Device field value if set, zero value otherwise.

func (*DeviceSession) GetDeviceOk

func (o *DeviceSession) GetDeviceOk() (*string, bool)

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

func (*DeviceSession) GetEvents

func (o *DeviceSession) GetEvents() int64

GetEvents returns the Events field value if set, zero value otherwise.

func (*DeviceSession) GetEventsOk

func (o *DeviceSession) GetEventsOk() (*int64, bool)

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

func (*DeviceSession) GetFailedConnects

func (o *DeviceSession) GetFailedConnects() int64

GetFailedConnects returns the FailedConnects field value if set, zero value otherwise.

func (*DeviceSession) GetFailedConnectsOk

func (o *DeviceSession) GetFailedConnectsOk() (*int64, bool)

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

func (*DeviceSession) GetFleets

func (o *DeviceSession) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*DeviceSession) GetFleetsOk

func (o *DeviceSession) GetFleetsOk() ([]string, bool)

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

func (*DeviceSession) GetHpCyclesData

func (o *DeviceSession) GetHpCyclesData() int64

GetHpCyclesData returns the HpCyclesData field value if set, zero value otherwise.

func (*DeviceSession) GetHpCyclesDataOk

func (o *DeviceSession) GetHpCyclesDataOk() (*int64, bool)

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

func (*DeviceSession) GetHpCyclesGps

func (o *DeviceSession) GetHpCyclesGps() int64

GetHpCyclesGps returns the HpCyclesGps field value if set, zero value otherwise.

func (*DeviceSession) GetHpCyclesGpsOk

func (o *DeviceSession) GetHpCyclesGpsOk() (*int64, bool)

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

func (*DeviceSession) GetHpCyclesTotal

func (o *DeviceSession) GetHpCyclesTotal() int64

GetHpCyclesTotal returns the HpCyclesTotal field value if set, zero value otherwise.

func (*DeviceSession) GetHpCyclesTotalOk

func (o *DeviceSession) GetHpCyclesTotalOk() (*int64, bool)

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

func (*DeviceSession) GetHpSecsData

func (o *DeviceSession) GetHpSecsData() int64

GetHpSecsData returns the HpSecsData field value if set, zero value otherwise.

func (*DeviceSession) GetHpSecsDataOk

func (o *DeviceSession) GetHpSecsDataOk() (*int64, bool)

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

func (*DeviceSession) GetHpSecsGps

func (o *DeviceSession) GetHpSecsGps() int64

GetHpSecsGps returns the HpSecsGps field value if set, zero value otherwise.

func (*DeviceSession) GetHpSecsGpsOk

func (o *DeviceSession) GetHpSecsGpsOk() (*int64, bool)

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

func (*DeviceSession) GetHpSecsTotal

func (o *DeviceSession) GetHpSecsTotal() int64

GetHpSecsTotal returns the HpSecsTotal field value if set, zero value otherwise.

func (*DeviceSession) GetHpSecsTotalOk

func (o *DeviceSession) GetHpSecsTotalOk() (*int64, bool)

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

func (*DeviceSession) GetIccid

func (o *DeviceSession) GetIccid() string

GetIccid returns the Iccid field value if set, zero value otherwise.

func (*DeviceSession) GetIccidOk

func (o *DeviceSession) GetIccidOk() (*string, bool)

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

func (*DeviceSession) GetIp

func (o *DeviceSession) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*DeviceSession) GetIpOk

func (o *DeviceSession) GetIpOk() (*string, bool)

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

func (*DeviceSession) GetMoved

func (o *DeviceSession) GetMoved() int64

GetMoved returns the Moved field value if set, zero value otherwise.

func (*DeviceSession) GetMovedOk

func (o *DeviceSession) GetMovedOk() (*int64, bool)

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

func (*DeviceSession) GetOrientation

func (o *DeviceSession) GetOrientation() string

GetOrientation returns the Orientation field value if set, zero value otherwise.

func (*DeviceSession) GetOrientationOk

func (o *DeviceSession) GetOrientationOk() (*string, bool)

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

func (*DeviceSession) GetPenaltySecs

func (o *DeviceSession) GetPenaltySecs() int64

GetPenaltySecs returns the PenaltySecs field value if set, zero value otherwise.

func (*DeviceSession) GetPenaltySecsOk

func (o *DeviceSession) GetPenaltySecsOk() (*int64, bool)

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

func (*DeviceSession) GetPeriod

func (o *DeviceSession) GetPeriod() DeviceUsage

GetPeriod returns the Period field value if set, zero value otherwise.

func (*DeviceSession) GetPeriodOk

func (o *DeviceSession) GetPeriodOk() (*DeviceUsage, bool)

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

func (*DeviceSession) GetPowerCharging

func (o *DeviceSession) GetPowerCharging() bool

GetPowerCharging returns the PowerCharging field value if set, zero value otherwise.

func (*DeviceSession) GetPowerChargingOk

func (o *DeviceSession) GetPowerChargingOk() (*bool, bool)

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

func (*DeviceSession) GetPowerMah

func (o *DeviceSession) GetPowerMah() float64

GetPowerMah returns the PowerMah field value if set, zero value otherwise.

func (*DeviceSession) GetPowerMahOk

func (o *DeviceSession) GetPowerMahOk() (*float64, bool)

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

func (*DeviceSession) GetPowerPrimary

func (o *DeviceSession) GetPowerPrimary() bool

GetPowerPrimary returns the PowerPrimary field value if set, zero value otherwise.

func (*DeviceSession) GetPowerPrimaryOk

func (o *DeviceSession) GetPowerPrimaryOk() (*bool, bool)

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

func (*DeviceSession) GetPowerUsb

func (o *DeviceSession) GetPowerUsb() bool

GetPowerUsb returns the PowerUsb field value if set, zero value otherwise.

func (*DeviceSession) GetPowerUsbOk

func (o *DeviceSession) GetPowerUsbOk() (*bool, bool)

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

func (*DeviceSession) GetProduct

func (o *DeviceSession) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*DeviceSession) GetProductOk

func (o *DeviceSession) GetProductOk() (*string, bool)

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

func (*DeviceSession) GetRat

func (o *DeviceSession) GetRat() string

GetRat returns the Rat field value if set, zero value otherwise.

func (*DeviceSession) GetRatOk

func (o *DeviceSession) GetRatOk() (*string, bool)

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

func (*DeviceSession) GetRsrp

func (o *DeviceSession) GetRsrp() int32

GetRsrp returns the Rsrp field value if set, zero value otherwise.

func (*DeviceSession) GetRsrpOk

func (o *DeviceSession) GetRsrpOk() (*int32, bool)

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

func (*DeviceSession) GetRsrq

func (o *DeviceSession) GetRsrq() int32

GetRsrq returns the Rsrq field value if set, zero value otherwise.

func (*DeviceSession) GetRsrqOk

func (o *DeviceSession) GetRsrqOk() (*int32, bool)

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

func (*DeviceSession) GetRssi

func (o *DeviceSession) GetRssi() int32

GetRssi returns the Rssi field value if set, zero value otherwise.

func (*DeviceSession) GetRssiOk

func (o *DeviceSession) GetRssiOk() (*int32, bool)

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

func (*DeviceSession) GetScan

func (o *DeviceSession) GetScan() string

GetScan returns the Scan field value if set, zero value otherwise.

func (*DeviceSession) GetScanOk

func (o *DeviceSession) GetScanOk() (*string, bool)

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

func (*DeviceSession) GetSession

func (o *DeviceSession) GetSession() string

GetSession returns the Session field value if set, zero value otherwise.

func (*DeviceSession) GetSessionBegan

func (o *DeviceSession) GetSessionBegan() int64

GetSessionBegan returns the SessionBegan field value if set, zero value otherwise.

func (*DeviceSession) GetSessionBeganOk

func (o *DeviceSession) GetSessionBeganOk() (*int64, bool)

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

func (*DeviceSession) GetSessionEnded

func (o *DeviceSession) GetSessionEnded() int64

GetSessionEnded returns the SessionEnded field value if set, zero value otherwise.

func (*DeviceSession) GetSessionEndedOk

func (o *DeviceSession) GetSessionEndedOk() (*int64, bool)

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

func (*DeviceSession) GetSessionOk

func (o *DeviceSession) GetSessionOk() (*string, bool)

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

func (*DeviceSession) GetSinr

func (o *DeviceSession) GetSinr() int32

GetSinr returns the Sinr field value if set, zero value otherwise.

func (*DeviceSession) GetSinrOk

func (o *DeviceSession) GetSinrOk() (*int32, bool)

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

func (*DeviceSession) GetSn

func (o *DeviceSession) GetSn() string

GetSn returns the Sn field value if set, zero value otherwise.

func (*DeviceSession) GetSnOk

func (o *DeviceSession) GetSnOk() (*string, bool)

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

func (*DeviceSession) GetSsid

func (o *DeviceSession) GetSsid() string

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*DeviceSession) GetSsidOk

func (o *DeviceSession) GetSsidOk() (*string, bool)

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

func (*DeviceSession) GetTemp

func (o *DeviceSession) GetTemp() float64

GetTemp returns the Temp field value if set, zero value otherwise.

func (*DeviceSession) GetTempOk

func (o *DeviceSession) GetTempOk() (*float64, bool)

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

func (*DeviceSession) GetTls

func (o *DeviceSession) GetTls() bool

GetTls returns the Tls field value if set, zero value otherwise.

func (*DeviceSession) GetTlsOk

func (o *DeviceSession) GetTlsOk() (*bool, bool)

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

func (*DeviceSession) GetTower

func (o *DeviceSession) GetTower() TowerLocation

GetTower returns the Tower field value if set, zero value otherwise.

func (*DeviceSession) GetTowerOk

func (o *DeviceSession) GetTowerOk() (*TowerLocation, bool)

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

func (*DeviceSession) GetTransport

func (o *DeviceSession) GetTransport() string

GetTransport returns the Transport field value if set, zero value otherwise.

func (*DeviceSession) GetTransportOk

func (o *DeviceSession) GetTransportOk() (*string, bool)

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

func (*DeviceSession) GetTri

func (o *DeviceSession) GetTri() TowerLocation

GetTri returns the Tri field value if set, zero value otherwise.

func (*DeviceSession) GetTriOk

func (o *DeviceSession) GetTriOk() (*TowerLocation, bool)

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

func (*DeviceSession) GetTriangulate

func (o *DeviceSession) GetTriangulate() map[string]interface{}

GetTriangulate returns the Triangulate field value if set, zero value otherwise.

func (*DeviceSession) GetTriangulateOk

func (o *DeviceSession) GetTriangulateOk() (map[string]interface{}, bool)

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

func (*DeviceSession) GetUsageActual

func (o *DeviceSession) GetUsageActual() bool

GetUsageActual returns the UsageActual field value if set, zero value otherwise.

func (*DeviceSession) GetUsageActualOk

func (o *DeviceSession) GetUsageActualOk() (*bool, bool)

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

func (*DeviceSession) GetVoltage

func (o *DeviceSession) GetVoltage() float64

GetVoltage returns the Voltage field value if set, zero value otherwise.

func (*DeviceSession) GetVoltageOk

func (o *DeviceSession) GetVoltageOk() (*float64, bool)

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

func (*DeviceSession) GetWhen

func (o *DeviceSession) GetWhen() int64

GetWhen returns the When field value if set, zero value otherwise.

func (*DeviceSession) GetWhenOk

func (o *DeviceSession) GetWhenOk() (*int64, bool)

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

func (*DeviceSession) GetWhere

func (o *DeviceSession) GetWhere() string

GetWhere returns the Where field value if set, zero value otherwise.

func (*DeviceSession) GetWhereCountry

func (o *DeviceSession) GetWhereCountry() string

GetWhereCountry returns the WhereCountry field value if set, zero value otherwise.

func (*DeviceSession) GetWhereCountryOk

func (o *DeviceSession) GetWhereCountryOk() (*string, bool)

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

func (*DeviceSession) GetWhereLat

func (o *DeviceSession) GetWhereLat() float64

GetWhereLat returns the WhereLat field value if set, zero value otherwise.

func (*DeviceSession) GetWhereLatOk

func (o *DeviceSession) GetWhereLatOk() (*float64, bool)

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

func (*DeviceSession) GetWhereLocation

func (o *DeviceSession) GetWhereLocation() string

GetWhereLocation returns the WhereLocation field value if set, zero value otherwise.

func (*DeviceSession) GetWhereLocationOk

func (o *DeviceSession) GetWhereLocationOk() (*string, bool)

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

func (*DeviceSession) GetWhereLon

func (o *DeviceSession) GetWhereLon() float64

GetWhereLon returns the WhereLon field value if set, zero value otherwise.

func (*DeviceSession) GetWhereLonOk

func (o *DeviceSession) GetWhereLonOk() (*float64, bool)

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

func (*DeviceSession) GetWhereOk

func (o *DeviceSession) GetWhereOk() (*string, bool)

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

func (*DeviceSession) GetWhereTimezone

func (o *DeviceSession) GetWhereTimezone() string

GetWhereTimezone returns the WhereTimezone field value if set, zero value otherwise.

func (*DeviceSession) GetWhereTimezoneOk

func (o *DeviceSession) GetWhereTimezoneOk() (*string, bool)

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

func (*DeviceSession) GetWhereWhen

func (o *DeviceSession) GetWhereWhen() int64

GetWhereWhen returns the WhereWhen field value if set, zero value otherwise.

func (*DeviceSession) GetWhereWhenOk

func (o *DeviceSession) GetWhereWhenOk() (*int64, bool)

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

func (*DeviceSession) GetWhySessionClosed

func (o *DeviceSession) GetWhySessionClosed() string

GetWhySessionClosed returns the WhySessionClosed field value if set, zero value otherwise.

func (*DeviceSession) GetWhySessionClosedOk

func (o *DeviceSession) GetWhySessionClosedOk() (*string, bool)

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

func (*DeviceSession) GetWhySessionOpened

func (o *DeviceSession) GetWhySessionOpened() string

GetWhySessionOpened returns the WhySessionOpened field value if set, zero value otherwise.

func (*DeviceSession) GetWhySessionOpenedOk

func (o *DeviceSession) GetWhySessionOpenedOk() (*string, bool)

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

func (*DeviceSession) GetWork

func (o *DeviceSession) GetWork() int64

GetWork returns the Work field value if set, zero value otherwise.

func (*DeviceSession) GetWorkOk

func (o *DeviceSession) GetWorkOk() (*int64, bool)

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

func (*DeviceSession) HasApn

func (o *DeviceSession) HasApn() bool

HasApn returns a boolean if a field has been set.

func (*DeviceSession) HasBars

func (o *DeviceSession) HasBars() bool

HasBars returns a boolean if a field has been set.

func (*DeviceSession) HasBearer

func (o *DeviceSession) HasBearer() bool

HasBearer returns a boolean if a field has been set.

func (*DeviceSession) HasBssid

func (o *DeviceSession) HasBssid() bool

HasBssid returns a boolean if a field has been set.

func (*DeviceSession) HasCell

func (o *DeviceSession) HasCell() bool

HasCell returns a boolean if a field has been set.

func (*DeviceSession) HasContinuous

func (o *DeviceSession) HasContinuous() bool

HasContinuous returns a boolean if a field has been set.

func (*DeviceSession) HasDevice

func (o *DeviceSession) HasDevice() bool

HasDevice returns a boolean if a field has been set.

func (*DeviceSession) HasEvents

func (o *DeviceSession) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*DeviceSession) HasFailedConnects

func (o *DeviceSession) HasFailedConnects() bool

HasFailedConnects returns a boolean if a field has been set.

func (*DeviceSession) HasFleets

func (o *DeviceSession) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*DeviceSession) HasHpCyclesData

func (o *DeviceSession) HasHpCyclesData() bool

HasHpCyclesData returns a boolean if a field has been set.

func (*DeviceSession) HasHpCyclesGps

func (o *DeviceSession) HasHpCyclesGps() bool

HasHpCyclesGps returns a boolean if a field has been set.

func (*DeviceSession) HasHpCyclesTotal

func (o *DeviceSession) HasHpCyclesTotal() bool

HasHpCyclesTotal returns a boolean if a field has been set.

func (*DeviceSession) HasHpSecsData

func (o *DeviceSession) HasHpSecsData() bool

HasHpSecsData returns a boolean if a field has been set.

func (*DeviceSession) HasHpSecsGps

func (o *DeviceSession) HasHpSecsGps() bool

HasHpSecsGps returns a boolean if a field has been set.

func (*DeviceSession) HasHpSecsTotal

func (o *DeviceSession) HasHpSecsTotal() bool

HasHpSecsTotal returns a boolean if a field has been set.

func (*DeviceSession) HasIccid

func (o *DeviceSession) HasIccid() bool

HasIccid returns a boolean if a field has been set.

func (*DeviceSession) HasIp

func (o *DeviceSession) HasIp() bool

HasIp returns a boolean if a field has been set.

func (*DeviceSession) HasMoved

func (o *DeviceSession) HasMoved() bool

HasMoved returns a boolean if a field has been set.

func (*DeviceSession) HasOrientation

func (o *DeviceSession) HasOrientation() bool

HasOrientation returns a boolean if a field has been set.

func (*DeviceSession) HasPenaltySecs

func (o *DeviceSession) HasPenaltySecs() bool

HasPenaltySecs returns a boolean if a field has been set.

func (*DeviceSession) HasPeriod

func (o *DeviceSession) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*DeviceSession) HasPowerCharging

func (o *DeviceSession) HasPowerCharging() bool

HasPowerCharging returns a boolean if a field has been set.

func (*DeviceSession) HasPowerMah

func (o *DeviceSession) HasPowerMah() bool

HasPowerMah returns a boolean if a field has been set.

func (*DeviceSession) HasPowerPrimary

func (o *DeviceSession) HasPowerPrimary() bool

HasPowerPrimary returns a boolean if a field has been set.

func (*DeviceSession) HasPowerUsb

func (o *DeviceSession) HasPowerUsb() bool

HasPowerUsb returns a boolean if a field has been set.

func (*DeviceSession) HasProduct

func (o *DeviceSession) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*DeviceSession) HasRat

func (o *DeviceSession) HasRat() bool

HasRat returns a boolean if a field has been set.

func (*DeviceSession) HasRsrp

func (o *DeviceSession) HasRsrp() bool

HasRsrp returns a boolean if a field has been set.

func (*DeviceSession) HasRsrq

func (o *DeviceSession) HasRsrq() bool

HasRsrq returns a boolean if a field has been set.

func (*DeviceSession) HasRssi

func (o *DeviceSession) HasRssi() bool

HasRssi returns a boolean if a field has been set.

func (*DeviceSession) HasScan

func (o *DeviceSession) HasScan() bool

HasScan returns a boolean if a field has been set.

func (*DeviceSession) HasSession

func (o *DeviceSession) HasSession() bool

HasSession returns a boolean if a field has been set.

func (*DeviceSession) HasSessionBegan

func (o *DeviceSession) HasSessionBegan() bool

HasSessionBegan returns a boolean if a field has been set.

func (*DeviceSession) HasSessionEnded

func (o *DeviceSession) HasSessionEnded() bool

HasSessionEnded returns a boolean if a field has been set.

func (*DeviceSession) HasSinr

func (o *DeviceSession) HasSinr() bool

HasSinr returns a boolean if a field has been set.

func (*DeviceSession) HasSn

func (o *DeviceSession) HasSn() bool

HasSn returns a boolean if a field has been set.

func (*DeviceSession) HasSsid

func (o *DeviceSession) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*DeviceSession) HasTemp

func (o *DeviceSession) HasTemp() bool

HasTemp returns a boolean if a field has been set.

func (*DeviceSession) HasTls

func (o *DeviceSession) HasTls() bool

HasTls returns a boolean if a field has been set.

func (*DeviceSession) HasTower

func (o *DeviceSession) HasTower() bool

HasTower returns a boolean if a field has been set.

func (*DeviceSession) HasTransport

func (o *DeviceSession) HasTransport() bool

HasTransport returns a boolean if a field has been set.

func (*DeviceSession) HasTri

func (o *DeviceSession) HasTri() bool

HasTri returns a boolean if a field has been set.

func (*DeviceSession) HasTriangulate

func (o *DeviceSession) HasTriangulate() bool

HasTriangulate returns a boolean if a field has been set.

func (*DeviceSession) HasUsageActual

func (o *DeviceSession) HasUsageActual() bool

HasUsageActual returns a boolean if a field has been set.

func (*DeviceSession) HasVoltage

func (o *DeviceSession) HasVoltage() bool

HasVoltage returns a boolean if a field has been set.

func (*DeviceSession) HasWhen

func (o *DeviceSession) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (*DeviceSession) HasWhere

func (o *DeviceSession) HasWhere() bool

HasWhere returns a boolean if a field has been set.

func (*DeviceSession) HasWhereCountry

func (o *DeviceSession) HasWhereCountry() bool

HasWhereCountry returns a boolean if a field has been set.

func (*DeviceSession) HasWhereLat

func (o *DeviceSession) HasWhereLat() bool

HasWhereLat returns a boolean if a field has been set.

func (*DeviceSession) HasWhereLocation

func (o *DeviceSession) HasWhereLocation() bool

HasWhereLocation returns a boolean if a field has been set.

func (*DeviceSession) HasWhereLon

func (o *DeviceSession) HasWhereLon() bool

HasWhereLon returns a boolean if a field has been set.

func (*DeviceSession) HasWhereTimezone

func (o *DeviceSession) HasWhereTimezone() bool

HasWhereTimezone returns a boolean if a field has been set.

func (*DeviceSession) HasWhereWhen

func (o *DeviceSession) HasWhereWhen() bool

HasWhereWhen returns a boolean if a field has been set.

func (*DeviceSession) HasWhySessionClosed

func (o *DeviceSession) HasWhySessionClosed() bool

HasWhySessionClosed returns a boolean if a field has been set.

func (*DeviceSession) HasWhySessionOpened

func (o *DeviceSession) HasWhySessionOpened() bool

HasWhySessionOpened returns a boolean if a field has been set.

func (*DeviceSession) HasWork

func (o *DeviceSession) HasWork() bool

HasWork returns a boolean if a field has been set.

func (DeviceSession) MarshalJSON

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

func (*DeviceSession) SetApn

func (o *DeviceSession) SetApn(v string)

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

func (*DeviceSession) SetBars

func (o *DeviceSession) SetBars(v int32)

SetBars gets a reference to the given int32 and assigns it to the Bars field.

func (*DeviceSession) SetBearer

func (o *DeviceSession) SetBearer(v string)

SetBearer gets a reference to the given string and assigns it to the Bearer field.

func (*DeviceSession) SetBssid

func (o *DeviceSession) SetBssid(v string)

SetBssid gets a reference to the given string and assigns it to the Bssid field.

func (*DeviceSession) SetCell

func (o *DeviceSession) SetCell(v string)

SetCell gets a reference to the given string and assigns it to the Cell field.

func (*DeviceSession) SetContinuous

func (o *DeviceSession) SetContinuous(v bool)

SetContinuous gets a reference to the given bool and assigns it to the Continuous field.

func (*DeviceSession) SetDevice

func (o *DeviceSession) SetDevice(v string)

SetDevice gets a reference to the given string and assigns it to the Device field.

func (*DeviceSession) SetEvents

func (o *DeviceSession) SetEvents(v int64)

SetEvents gets a reference to the given int64 and assigns it to the Events field.

func (*DeviceSession) SetFailedConnects

func (o *DeviceSession) SetFailedConnects(v int64)

SetFailedConnects gets a reference to the given int64 and assigns it to the FailedConnects field.

func (*DeviceSession) SetFleets

func (o *DeviceSession) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*DeviceSession) SetHpCyclesData

func (o *DeviceSession) SetHpCyclesData(v int64)

SetHpCyclesData gets a reference to the given int64 and assigns it to the HpCyclesData field.

func (*DeviceSession) SetHpCyclesGps

func (o *DeviceSession) SetHpCyclesGps(v int64)

SetHpCyclesGps gets a reference to the given int64 and assigns it to the HpCyclesGps field.

func (*DeviceSession) SetHpCyclesTotal

func (o *DeviceSession) SetHpCyclesTotal(v int64)

SetHpCyclesTotal gets a reference to the given int64 and assigns it to the HpCyclesTotal field.

func (*DeviceSession) SetHpSecsData

func (o *DeviceSession) SetHpSecsData(v int64)

SetHpSecsData gets a reference to the given int64 and assigns it to the HpSecsData field.

func (*DeviceSession) SetHpSecsGps

func (o *DeviceSession) SetHpSecsGps(v int64)

SetHpSecsGps gets a reference to the given int64 and assigns it to the HpSecsGps field.

func (*DeviceSession) SetHpSecsTotal

func (o *DeviceSession) SetHpSecsTotal(v int64)

SetHpSecsTotal gets a reference to the given int64 and assigns it to the HpSecsTotal field.

func (*DeviceSession) SetIccid

func (o *DeviceSession) SetIccid(v string)

SetIccid gets a reference to the given string and assigns it to the Iccid field.

func (*DeviceSession) SetIp

func (o *DeviceSession) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

func (*DeviceSession) SetMoved

func (o *DeviceSession) SetMoved(v int64)

SetMoved gets a reference to the given int64 and assigns it to the Moved field.

func (*DeviceSession) SetOrientation

func (o *DeviceSession) SetOrientation(v string)

SetOrientation gets a reference to the given string and assigns it to the Orientation field.

func (*DeviceSession) SetPenaltySecs

func (o *DeviceSession) SetPenaltySecs(v int64)

SetPenaltySecs gets a reference to the given int64 and assigns it to the PenaltySecs field.

func (*DeviceSession) SetPeriod

func (o *DeviceSession) SetPeriod(v DeviceUsage)

SetPeriod gets a reference to the given DeviceUsage and assigns it to the Period field.

func (*DeviceSession) SetPowerCharging

func (o *DeviceSession) SetPowerCharging(v bool)

SetPowerCharging gets a reference to the given bool and assigns it to the PowerCharging field.

func (*DeviceSession) SetPowerMah

func (o *DeviceSession) SetPowerMah(v float64)

SetPowerMah gets a reference to the given float64 and assigns it to the PowerMah field.

func (*DeviceSession) SetPowerPrimary

func (o *DeviceSession) SetPowerPrimary(v bool)

SetPowerPrimary gets a reference to the given bool and assigns it to the PowerPrimary field.

func (*DeviceSession) SetPowerUsb

func (o *DeviceSession) SetPowerUsb(v bool)

SetPowerUsb gets a reference to the given bool and assigns it to the PowerUsb field.

func (*DeviceSession) SetProduct

func (o *DeviceSession) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*DeviceSession) SetRat

func (o *DeviceSession) SetRat(v string)

SetRat gets a reference to the given string and assigns it to the Rat field.

func (*DeviceSession) SetRsrp

func (o *DeviceSession) SetRsrp(v int32)

SetRsrp gets a reference to the given int32 and assigns it to the Rsrp field.

func (*DeviceSession) SetRsrq

func (o *DeviceSession) SetRsrq(v int32)

SetRsrq gets a reference to the given int32 and assigns it to the Rsrq field.

func (*DeviceSession) SetRssi

func (o *DeviceSession) SetRssi(v int32)

SetRssi gets a reference to the given int32 and assigns it to the Rssi field.

func (*DeviceSession) SetScan

func (o *DeviceSession) SetScan(v string)

SetScan gets a reference to the given string and assigns it to the Scan field.

func (*DeviceSession) SetSession

func (o *DeviceSession) SetSession(v string)

SetSession gets a reference to the given string and assigns it to the Session field.

func (*DeviceSession) SetSessionBegan

func (o *DeviceSession) SetSessionBegan(v int64)

SetSessionBegan gets a reference to the given int64 and assigns it to the SessionBegan field.

func (*DeviceSession) SetSessionEnded

func (o *DeviceSession) SetSessionEnded(v int64)

SetSessionEnded gets a reference to the given int64 and assigns it to the SessionEnded field.

func (*DeviceSession) SetSinr

func (o *DeviceSession) SetSinr(v int32)

SetSinr gets a reference to the given int32 and assigns it to the Sinr field.

func (*DeviceSession) SetSn

func (o *DeviceSession) SetSn(v string)

SetSn gets a reference to the given string and assigns it to the Sn field.

func (*DeviceSession) SetSsid

func (o *DeviceSession) SetSsid(v string)

SetSsid gets a reference to the given string and assigns it to the Ssid field.

func (*DeviceSession) SetTemp

func (o *DeviceSession) SetTemp(v float64)

SetTemp gets a reference to the given float64 and assigns it to the Temp field.

func (*DeviceSession) SetTls

func (o *DeviceSession) SetTls(v bool)

SetTls gets a reference to the given bool and assigns it to the Tls field.

func (*DeviceSession) SetTower

func (o *DeviceSession) SetTower(v TowerLocation)

SetTower gets a reference to the given TowerLocation and assigns it to the Tower field.

func (*DeviceSession) SetTransport

func (o *DeviceSession) SetTransport(v string)

SetTransport gets a reference to the given string and assigns it to the Transport field.

func (*DeviceSession) SetTri

func (o *DeviceSession) SetTri(v TowerLocation)

SetTri gets a reference to the given TowerLocation and assigns it to the Tri field.

func (*DeviceSession) SetTriangulate

func (o *DeviceSession) SetTriangulate(v map[string]interface{})

SetTriangulate gets a reference to the given map[string]interface{} and assigns it to the Triangulate field.

func (*DeviceSession) SetUsageActual

func (o *DeviceSession) SetUsageActual(v bool)

SetUsageActual gets a reference to the given bool and assigns it to the UsageActual field.

func (*DeviceSession) SetVoltage

func (o *DeviceSession) SetVoltage(v float64)

SetVoltage gets a reference to the given float64 and assigns it to the Voltage field.

func (*DeviceSession) SetWhen

func (o *DeviceSession) SetWhen(v int64)

SetWhen gets a reference to the given int64 and assigns it to the When field.

func (*DeviceSession) SetWhere

func (o *DeviceSession) SetWhere(v string)

SetWhere gets a reference to the given string and assigns it to the Where field.

func (*DeviceSession) SetWhereCountry

func (o *DeviceSession) SetWhereCountry(v string)

SetWhereCountry gets a reference to the given string and assigns it to the WhereCountry field.

func (*DeviceSession) SetWhereLat

func (o *DeviceSession) SetWhereLat(v float64)

SetWhereLat gets a reference to the given float64 and assigns it to the WhereLat field.

func (*DeviceSession) SetWhereLocation

func (o *DeviceSession) SetWhereLocation(v string)

SetWhereLocation gets a reference to the given string and assigns it to the WhereLocation field.

func (*DeviceSession) SetWhereLon

func (o *DeviceSession) SetWhereLon(v float64)

SetWhereLon gets a reference to the given float64 and assigns it to the WhereLon field.

func (*DeviceSession) SetWhereTimezone

func (o *DeviceSession) SetWhereTimezone(v string)

SetWhereTimezone gets a reference to the given string and assigns it to the WhereTimezone field.

func (*DeviceSession) SetWhereWhen

func (o *DeviceSession) SetWhereWhen(v int64)

SetWhereWhen gets a reference to the given int64 and assigns it to the WhereWhen field.

func (*DeviceSession) SetWhySessionClosed

func (o *DeviceSession) SetWhySessionClosed(v string)

SetWhySessionClosed gets a reference to the given string and assigns it to the WhySessionClosed field.

func (*DeviceSession) SetWhySessionOpened

func (o *DeviceSession) SetWhySessionOpened(v string)

SetWhySessionOpened gets a reference to the given string and assigns it to the WhySessionOpened field.

func (*DeviceSession) SetWork

func (o *DeviceSession) SetWork(v int64)

SetWork gets a reference to the given int64 and assigns it to the Work field.

func (DeviceSession) ToMap

func (o DeviceSession) ToMap() (map[string]interface{}, error)

type DeviceTowerInfo

type DeviceTowerInfo struct {
	CellId *int32 `json:"cell_id,omitempty"`
	Lac    *int32 `json:"lac,omitempty"`
	Mcc    *int32 `json:"mcc,omitempty"`
	Mnc    *int32 `json:"mnc,omitempty"`
}

DeviceTowerInfo struct for DeviceTowerInfo

func NewDeviceTowerInfo

func NewDeviceTowerInfo() *DeviceTowerInfo

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

func NewDeviceTowerInfoWithDefaults

func NewDeviceTowerInfoWithDefaults() *DeviceTowerInfo

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

func (*DeviceTowerInfo) GetCellId

func (o *DeviceTowerInfo) GetCellId() int32

GetCellId returns the CellId field value if set, zero value otherwise.

func (*DeviceTowerInfo) GetCellIdOk

func (o *DeviceTowerInfo) GetCellIdOk() (*int32, bool)

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

func (*DeviceTowerInfo) GetLac

func (o *DeviceTowerInfo) GetLac() int32

GetLac returns the Lac field value if set, zero value otherwise.

func (*DeviceTowerInfo) GetLacOk

func (o *DeviceTowerInfo) GetLacOk() (*int32, bool)

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

func (*DeviceTowerInfo) GetMcc

func (o *DeviceTowerInfo) GetMcc() int32

GetMcc returns the Mcc field value if set, zero value otherwise.

func (*DeviceTowerInfo) GetMccOk

func (o *DeviceTowerInfo) GetMccOk() (*int32, bool)

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

func (*DeviceTowerInfo) GetMnc

func (o *DeviceTowerInfo) GetMnc() int32

GetMnc returns the Mnc field value if set, zero value otherwise.

func (*DeviceTowerInfo) GetMncOk

func (o *DeviceTowerInfo) GetMncOk() (*int32, bool)

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

func (*DeviceTowerInfo) HasCellId

func (o *DeviceTowerInfo) HasCellId() bool

HasCellId returns a boolean if a field has been set.

func (*DeviceTowerInfo) HasLac

func (o *DeviceTowerInfo) HasLac() bool

HasLac returns a boolean if a field has been set.

func (*DeviceTowerInfo) HasMcc

func (o *DeviceTowerInfo) HasMcc() bool

HasMcc returns a boolean if a field has been set.

func (*DeviceTowerInfo) HasMnc

func (o *DeviceTowerInfo) HasMnc() bool

HasMnc returns a boolean if a field has been set.

func (DeviceTowerInfo) MarshalJSON

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

func (*DeviceTowerInfo) SetCellId

func (o *DeviceTowerInfo) SetCellId(v int32)

SetCellId gets a reference to the given int32 and assigns it to the CellId field.

func (*DeviceTowerInfo) SetLac

func (o *DeviceTowerInfo) SetLac(v int32)

SetLac gets a reference to the given int32 and assigns it to the Lac field.

func (*DeviceTowerInfo) SetMcc

func (o *DeviceTowerInfo) SetMcc(v int32)

SetMcc gets a reference to the given int32 and assigns it to the Mcc field.

func (*DeviceTowerInfo) SetMnc

func (o *DeviceTowerInfo) SetMnc(v int32)

SetMnc gets a reference to the given int32 and assigns it to the Mnc field.

func (DeviceTowerInfo) ToMap

func (o DeviceTowerInfo) ToMap() (map[string]interface{}, error)

type DeviceUsage

type DeviceUsage struct {
	BytesRcvd          *int64 `json:"bytes_rcvd,omitempty"`
	BytesRcvdSecondary *int64 `json:"bytes_rcvd_secondary,omitempty"`
	BytesSent          *int64 `json:"bytes_sent,omitempty"`
	BytesSentSecondary *int64 `json:"bytes_sent_secondary,omitempty"`
	// Duration in seconds
	Duration    *int64 `json:"duration,omitempty"`
	NotesRcvd   *int64 `json:"notes_rcvd,omitempty"`
	NotesSent   *int64 `json:"notes_sent,omitempty"`
	SessionsTcp *int64 `json:"sessions_tcp,omitempty"`
	SessionsTls *int64 `json:"sessions_tls,omitempty"`
	// Unix timestamp
	Since *int64 `json:"since,omitempty"`
}

DeviceUsage struct for DeviceUsage

func NewDeviceUsage

func NewDeviceUsage() *DeviceUsage

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

func NewDeviceUsageWithDefaults

func NewDeviceUsageWithDefaults() *DeviceUsage

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

func (*DeviceUsage) GetBytesRcvd

func (o *DeviceUsage) GetBytesRcvd() int64

GetBytesRcvd returns the BytesRcvd field value if set, zero value otherwise.

func (*DeviceUsage) GetBytesRcvdOk

func (o *DeviceUsage) GetBytesRcvdOk() (*int64, bool)

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

func (*DeviceUsage) GetBytesRcvdSecondary

func (o *DeviceUsage) GetBytesRcvdSecondary() int64

GetBytesRcvdSecondary returns the BytesRcvdSecondary field value if set, zero value otherwise.

func (*DeviceUsage) GetBytesRcvdSecondaryOk

func (o *DeviceUsage) GetBytesRcvdSecondaryOk() (*int64, bool)

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

func (*DeviceUsage) GetBytesSent

func (o *DeviceUsage) GetBytesSent() int64

GetBytesSent returns the BytesSent field value if set, zero value otherwise.

func (*DeviceUsage) GetBytesSentOk

func (o *DeviceUsage) GetBytesSentOk() (*int64, bool)

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

func (*DeviceUsage) GetBytesSentSecondary

func (o *DeviceUsage) GetBytesSentSecondary() int64

GetBytesSentSecondary returns the BytesSentSecondary field value if set, zero value otherwise.

func (*DeviceUsage) GetBytesSentSecondaryOk

func (o *DeviceUsage) GetBytesSentSecondaryOk() (*int64, bool)

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

func (*DeviceUsage) GetDuration

func (o *DeviceUsage) GetDuration() int64

GetDuration returns the Duration field value if set, zero value otherwise.

func (*DeviceUsage) GetDurationOk

func (o *DeviceUsage) GetDurationOk() (*int64, bool)

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

func (*DeviceUsage) GetNotesRcvd

func (o *DeviceUsage) GetNotesRcvd() int64

GetNotesRcvd returns the NotesRcvd field value if set, zero value otherwise.

func (*DeviceUsage) GetNotesRcvdOk

func (o *DeviceUsage) GetNotesRcvdOk() (*int64, bool)

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

func (*DeviceUsage) GetNotesSent

func (o *DeviceUsage) GetNotesSent() int64

GetNotesSent returns the NotesSent field value if set, zero value otherwise.

func (*DeviceUsage) GetNotesSentOk

func (o *DeviceUsage) GetNotesSentOk() (*int64, bool)

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

func (*DeviceUsage) GetSessionsTcp

func (o *DeviceUsage) GetSessionsTcp() int64

GetSessionsTcp returns the SessionsTcp field value if set, zero value otherwise.

func (*DeviceUsage) GetSessionsTcpOk

func (o *DeviceUsage) GetSessionsTcpOk() (*int64, bool)

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

func (*DeviceUsage) GetSessionsTls

func (o *DeviceUsage) GetSessionsTls() int64

GetSessionsTls returns the SessionsTls field value if set, zero value otherwise.

func (*DeviceUsage) GetSessionsTlsOk

func (o *DeviceUsage) GetSessionsTlsOk() (*int64, bool)

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

func (*DeviceUsage) GetSince

func (o *DeviceUsage) GetSince() int64

GetSince returns the Since field value if set, zero value otherwise.

func (*DeviceUsage) GetSinceOk

func (o *DeviceUsage) GetSinceOk() (*int64, bool)

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

func (*DeviceUsage) HasBytesRcvd

func (o *DeviceUsage) HasBytesRcvd() bool

HasBytesRcvd returns a boolean if a field has been set.

func (*DeviceUsage) HasBytesRcvdSecondary

func (o *DeviceUsage) HasBytesRcvdSecondary() bool

HasBytesRcvdSecondary returns a boolean if a field has been set.

func (*DeviceUsage) HasBytesSent

func (o *DeviceUsage) HasBytesSent() bool

HasBytesSent returns a boolean if a field has been set.

func (*DeviceUsage) HasBytesSentSecondary

func (o *DeviceUsage) HasBytesSentSecondary() bool

HasBytesSentSecondary returns a boolean if a field has been set.

func (*DeviceUsage) HasDuration

func (o *DeviceUsage) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*DeviceUsage) HasNotesRcvd

func (o *DeviceUsage) HasNotesRcvd() bool

HasNotesRcvd returns a boolean if a field has been set.

func (*DeviceUsage) HasNotesSent

func (o *DeviceUsage) HasNotesSent() bool

HasNotesSent returns a boolean if a field has been set.

func (*DeviceUsage) HasSessionsTcp

func (o *DeviceUsage) HasSessionsTcp() bool

HasSessionsTcp returns a boolean if a field has been set.

func (*DeviceUsage) HasSessionsTls

func (o *DeviceUsage) HasSessionsTls() bool

HasSessionsTls returns a boolean if a field has been set.

func (*DeviceUsage) HasSince

func (o *DeviceUsage) HasSince() bool

HasSince returns a boolean if a field has been set.

func (DeviceUsage) MarshalJSON

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

func (*DeviceUsage) SetBytesRcvd

func (o *DeviceUsage) SetBytesRcvd(v int64)

SetBytesRcvd gets a reference to the given int64 and assigns it to the BytesRcvd field.

func (*DeviceUsage) SetBytesRcvdSecondary

func (o *DeviceUsage) SetBytesRcvdSecondary(v int64)

SetBytesRcvdSecondary gets a reference to the given int64 and assigns it to the BytesRcvdSecondary field.

func (*DeviceUsage) SetBytesSent

func (o *DeviceUsage) SetBytesSent(v int64)

SetBytesSent gets a reference to the given int64 and assigns it to the BytesSent field.

func (*DeviceUsage) SetBytesSentSecondary

func (o *DeviceUsage) SetBytesSentSecondary(v int64)

SetBytesSentSecondary gets a reference to the given int64 and assigns it to the BytesSentSecondary field.

func (*DeviceUsage) SetDuration

func (o *DeviceUsage) SetDuration(v int64)

SetDuration gets a reference to the given int64 and assigns it to the Duration field.

func (*DeviceUsage) SetNotesRcvd

func (o *DeviceUsage) SetNotesRcvd(v int64)

SetNotesRcvd gets a reference to the given int64 and assigns it to the NotesRcvd field.

func (*DeviceUsage) SetNotesSent

func (o *DeviceUsage) SetNotesSent(v int64)

SetNotesSent gets a reference to the given int64 and assigns it to the NotesSent field.

func (*DeviceUsage) SetSessionsTcp

func (o *DeviceUsage) SetSessionsTcp(v int64)

SetSessionsTcp gets a reference to the given int64 and assigns it to the SessionsTcp field.

func (*DeviceUsage) SetSessionsTls

func (o *DeviceUsage) SetSessionsTls(v int64)

SetSessionsTls gets a reference to the given int64 and assigns it to the SessionsTls field.

func (*DeviceUsage) SetSince

func (o *DeviceUsage) SetSince(v int64)

SetSince gets a reference to the given int64 and assigns it to the Since field.

func (DeviceUsage) ToMap

func (o DeviceUsage) ToMap() (map[string]interface{}, error)

type DfuActionRequest

type DfuActionRequest struct {
	// The name of the firmware file
	Filename *string `json:"filename,omitempty"`
}

DfuActionRequest struct for DfuActionRequest

func NewDfuActionRequest

func NewDfuActionRequest() *DfuActionRequest

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

func NewDfuActionRequestWithDefaults

func NewDfuActionRequestWithDefaults() *DfuActionRequest

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

func (*DfuActionRequest) GetFilename

func (o *DfuActionRequest) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise.

func (*DfuActionRequest) GetFilenameOk

func (o *DfuActionRequest) GetFilenameOk() (*string, bool)

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

func (*DfuActionRequest) HasFilename

func (o *DfuActionRequest) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (DfuActionRequest) MarshalJSON

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

func (*DfuActionRequest) SetFilename

func (o *DfuActionRequest) SetFilename(v string)

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (DfuActionRequest) ToMap

func (o DfuActionRequest) ToMap() (map[string]interface{}, error)

type EmailNotification

type EmailNotification struct {
	// Email Address
	Email *string `json:"email,omitempty"`
}

EmailNotification struct for EmailNotification

func NewEmailNotification

func NewEmailNotification() *EmailNotification

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

func NewEmailNotificationWithDefaults

func NewEmailNotificationWithDefaults() *EmailNotification

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

func (*EmailNotification) GetEmail

func (o *EmailNotification) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*EmailNotification) GetEmailOk

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

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

func (*EmailNotification) HasEmail

func (o *EmailNotification) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (EmailNotification) MarshalJSON

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

func (*EmailNotification) SetEmail

func (o *EmailNotification) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (EmailNotification) ToMap

func (o EmailNotification) ToMap() (map[string]interface{}, error)

type EnvTreeJsonNode

type EnvTreeJsonNode struct {
	AppLabel          *string           `json:"app_label,omitempty"`
	AppUid            *string           `json:"app_uid,omitempty"`
	Children          []EnvTreeJsonNode `json:"children"`
	DeviceUid         *string           `json:"device_uid,omitempty"`
	FleetLabel        *string           `json:"fleet_label,omitempty"`
	FleetUid          *string           `json:"fleet_uid,omitempty"`
	InheritedVarCount int32             `json:"inherited_var_count"`
	Type              string            `json:"type"`
	Url               *string           `json:"url,omitempty"`
	VarCount          int32             `json:"var_count"`
	Variables         []EnvVar          `json:"variables"`
}

EnvTreeJsonNode struct for EnvTreeJsonNode

func NewEnvTreeJsonNode

func NewEnvTreeJsonNode(children []EnvTreeJsonNode, inheritedVarCount int32, type_ string, varCount int32, variables []EnvVar) *EnvTreeJsonNode

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

func NewEnvTreeJsonNodeWithDefaults

func NewEnvTreeJsonNodeWithDefaults() *EnvTreeJsonNode

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

func (*EnvTreeJsonNode) GetAppLabel

func (o *EnvTreeJsonNode) GetAppLabel() string

GetAppLabel returns the AppLabel field value if set, zero value otherwise.

func (*EnvTreeJsonNode) GetAppLabelOk

func (o *EnvTreeJsonNode) GetAppLabelOk() (*string, bool)

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

func (*EnvTreeJsonNode) GetAppUid

func (o *EnvTreeJsonNode) GetAppUid() string

GetAppUid returns the AppUid field value if set, zero value otherwise.

func (*EnvTreeJsonNode) GetAppUidOk

func (o *EnvTreeJsonNode) GetAppUidOk() (*string, bool)

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

func (*EnvTreeJsonNode) GetChildren

func (o *EnvTreeJsonNode) GetChildren() []EnvTreeJsonNode

GetChildren returns the Children field value

func (*EnvTreeJsonNode) GetChildrenOk

func (o *EnvTreeJsonNode) GetChildrenOk() ([]EnvTreeJsonNode, bool)

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

func (*EnvTreeJsonNode) GetDeviceUid

func (o *EnvTreeJsonNode) GetDeviceUid() string

GetDeviceUid returns the DeviceUid field value if set, zero value otherwise.

func (*EnvTreeJsonNode) GetDeviceUidOk

func (o *EnvTreeJsonNode) GetDeviceUidOk() (*string, bool)

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

func (*EnvTreeJsonNode) GetFleetLabel

func (o *EnvTreeJsonNode) GetFleetLabel() string

GetFleetLabel returns the FleetLabel field value if set, zero value otherwise.

func (*EnvTreeJsonNode) GetFleetLabelOk

func (o *EnvTreeJsonNode) GetFleetLabelOk() (*string, bool)

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

func (*EnvTreeJsonNode) GetFleetUid

func (o *EnvTreeJsonNode) GetFleetUid() string

GetFleetUid returns the FleetUid field value if set, zero value otherwise.

func (*EnvTreeJsonNode) GetFleetUidOk

func (o *EnvTreeJsonNode) GetFleetUidOk() (*string, bool)

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

func (*EnvTreeJsonNode) GetInheritedVarCount

func (o *EnvTreeJsonNode) GetInheritedVarCount() int32

GetInheritedVarCount returns the InheritedVarCount field value

func (*EnvTreeJsonNode) GetInheritedVarCountOk

func (o *EnvTreeJsonNode) GetInheritedVarCountOk() (*int32, bool)

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

func (*EnvTreeJsonNode) GetType

func (o *EnvTreeJsonNode) GetType() string

GetType returns the Type field value

func (*EnvTreeJsonNode) GetTypeOk

func (o *EnvTreeJsonNode) GetTypeOk() (*string, bool)

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

func (*EnvTreeJsonNode) GetUrl

func (o *EnvTreeJsonNode) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*EnvTreeJsonNode) GetUrlOk

func (o *EnvTreeJsonNode) GetUrlOk() (*string, bool)

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

func (*EnvTreeJsonNode) GetVarCount

func (o *EnvTreeJsonNode) GetVarCount() int32

GetVarCount returns the VarCount field value

func (*EnvTreeJsonNode) GetVarCountOk

func (o *EnvTreeJsonNode) GetVarCountOk() (*int32, bool)

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

func (*EnvTreeJsonNode) GetVariables

func (o *EnvTreeJsonNode) GetVariables() []EnvVar

GetVariables returns the Variables field value

func (*EnvTreeJsonNode) GetVariablesOk

func (o *EnvTreeJsonNode) GetVariablesOk() ([]EnvVar, bool)

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

func (*EnvTreeJsonNode) HasAppLabel

func (o *EnvTreeJsonNode) HasAppLabel() bool

HasAppLabel returns a boolean if a field has been set.

func (*EnvTreeJsonNode) HasAppUid

func (o *EnvTreeJsonNode) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (*EnvTreeJsonNode) HasDeviceUid

func (o *EnvTreeJsonNode) HasDeviceUid() bool

HasDeviceUid returns a boolean if a field has been set.

func (*EnvTreeJsonNode) HasFleetLabel

func (o *EnvTreeJsonNode) HasFleetLabel() bool

HasFleetLabel returns a boolean if a field has been set.

func (*EnvTreeJsonNode) HasFleetUid

func (o *EnvTreeJsonNode) HasFleetUid() bool

HasFleetUid returns a boolean if a field has been set.

func (*EnvTreeJsonNode) HasUrl

func (o *EnvTreeJsonNode) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (EnvTreeJsonNode) MarshalJSON

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

func (*EnvTreeJsonNode) SetAppLabel

func (o *EnvTreeJsonNode) SetAppLabel(v string)

SetAppLabel gets a reference to the given string and assigns it to the AppLabel field.

func (*EnvTreeJsonNode) SetAppUid

func (o *EnvTreeJsonNode) SetAppUid(v string)

SetAppUid gets a reference to the given string and assigns it to the AppUid field.

func (*EnvTreeJsonNode) SetChildren

func (o *EnvTreeJsonNode) SetChildren(v []EnvTreeJsonNode)

SetChildren sets field value

func (*EnvTreeJsonNode) SetDeviceUid

func (o *EnvTreeJsonNode) SetDeviceUid(v string)

SetDeviceUid gets a reference to the given string and assigns it to the DeviceUid field.

func (*EnvTreeJsonNode) SetFleetLabel

func (o *EnvTreeJsonNode) SetFleetLabel(v string)

SetFleetLabel gets a reference to the given string and assigns it to the FleetLabel field.

func (*EnvTreeJsonNode) SetFleetUid

func (o *EnvTreeJsonNode) SetFleetUid(v string)

SetFleetUid gets a reference to the given string and assigns it to the FleetUid field.

func (*EnvTreeJsonNode) SetInheritedVarCount

func (o *EnvTreeJsonNode) SetInheritedVarCount(v int32)

SetInheritedVarCount sets field value

func (*EnvTreeJsonNode) SetType

func (o *EnvTreeJsonNode) SetType(v string)

SetType sets field value

func (*EnvTreeJsonNode) SetUrl

func (o *EnvTreeJsonNode) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*EnvTreeJsonNode) SetVarCount

func (o *EnvTreeJsonNode) SetVarCount(v int32)

SetVarCount sets field value

func (*EnvTreeJsonNode) SetVariables

func (o *EnvTreeJsonNode) SetVariables(v []EnvVar)

SetVariables sets field value

func (EnvTreeJsonNode) ToMap

func (o EnvTreeJsonNode) ToMap() (map[string]interface{}, error)

func (*EnvTreeJsonNode) UnmarshalJSON

func (o *EnvTreeJsonNode) UnmarshalJSON(data []byte) (err error)

type EnvVar

type EnvVar struct {
	Key        *string `json:"key,omitempty"`
	Precedence *int32  `json:"precedence,omitempty"`
	Used       *bool   `json:"used,omitempty"`
	Value      *string `json:"value,omitempty"`
}

EnvVar struct for EnvVar

func NewEnvVar

func NewEnvVar() *EnvVar

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

func NewEnvVarWithDefaults

func NewEnvVarWithDefaults() *EnvVar

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

func (*EnvVar) GetKey

func (o *EnvVar) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*EnvVar) GetKeyOk

func (o *EnvVar) GetKeyOk() (*string, bool)

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

func (*EnvVar) GetPrecedence

func (o *EnvVar) GetPrecedence() int32

GetPrecedence returns the Precedence field value if set, zero value otherwise.

func (*EnvVar) GetPrecedenceOk

func (o *EnvVar) GetPrecedenceOk() (*int32, bool)

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

func (*EnvVar) GetUsed

func (o *EnvVar) GetUsed() bool

GetUsed returns the Used field value if set, zero value otherwise.

func (*EnvVar) GetUsedOk

func (o *EnvVar) GetUsedOk() (*bool, bool)

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

func (*EnvVar) GetValue

func (o *EnvVar) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*EnvVar) GetValueOk

func (o *EnvVar) GetValueOk() (*string, bool)

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

func (*EnvVar) HasKey

func (o *EnvVar) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*EnvVar) HasPrecedence

func (o *EnvVar) HasPrecedence() bool

HasPrecedence returns a boolean if a field has been set.

func (*EnvVar) HasUsed

func (o *EnvVar) HasUsed() bool

HasUsed returns a boolean if a field has been set.

func (*EnvVar) HasValue

func (o *EnvVar) HasValue() bool

HasValue returns a boolean if a field has been set.

func (EnvVar) MarshalJSON

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

func (*EnvVar) SetKey

func (o *EnvVar) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*EnvVar) SetPrecedence

func (o *EnvVar) SetPrecedence(v int32)

SetPrecedence gets a reference to the given int32 and assigns it to the Precedence field.

func (*EnvVar) SetUsed

func (o *EnvVar) SetUsed(v bool)

SetUsed gets a reference to the given bool and assigns it to the Used field.

func (*EnvVar) SetValue

func (o *EnvVar) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (EnvVar) ToMap

func (o EnvVar) ToMap() (map[string]interface{}, error)

type EnvironmentVariables

type EnvironmentVariables struct {
	EnvironmentVariables map[string]string `json:"environment_variables"`
}

EnvironmentVariables struct for EnvironmentVariables

func NewEnvironmentVariables

func NewEnvironmentVariables(environmentVariables map[string]string) *EnvironmentVariables

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

func NewEnvironmentVariablesWithDefaults

func NewEnvironmentVariablesWithDefaults() *EnvironmentVariables

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

func (*EnvironmentVariables) GetEnvironmentVariables

func (o *EnvironmentVariables) GetEnvironmentVariables() map[string]string

GetEnvironmentVariables returns the EnvironmentVariables field value

func (*EnvironmentVariables) GetEnvironmentVariablesOk

func (o *EnvironmentVariables) GetEnvironmentVariablesOk() (*map[string]string, bool)

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

func (EnvironmentVariables) MarshalJSON

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

func (*EnvironmentVariables) SetEnvironmentVariables

func (o *EnvironmentVariables) SetEnvironmentVariables(v map[string]string)

SetEnvironmentVariables sets field value

func (EnvironmentVariables) ToMap

func (o EnvironmentVariables) ToMap() (map[string]interface{}, error)

func (*EnvironmentVariables) UnmarshalJSON

func (o *EnvironmentVariables) UnmarshalJSON(data []byte) (err error)

type Error

type Error struct {
	// The HTTP error code associated with the error.
	Code    int32                  `json:"code"`
	Debug   *string                `json:"debug,omitempty"`
	Details map[string]interface{} `json:"details,omitempty"`
	// Human readable error message.
	Err     string  `json:"err"`
	Request *string `json:"request,omitempty"`
	// Machine readable representation of the HTTP error code.
	Status string `json:"status"`
}

Error struct for Error

func NewError

func NewError(code int32, err string, status string) *Error

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

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

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

func (*Error) GetCode

func (o *Error) GetCode() int32

GetCode returns the Code field value

func (*Error) GetCodeOk

func (o *Error) GetCodeOk() (*int32, bool)

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

func (*Error) GetDebug

func (o *Error) GetDebug() string

GetDebug returns the Debug field value if set, zero value otherwise.

func (*Error) GetDebugOk

func (o *Error) GetDebugOk() (*string, bool)

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

func (*Error) GetDetails

func (o *Error) GetDetails() map[string]interface{}

GetDetails returns the Details field value if set, zero value otherwise.

func (*Error) GetDetailsOk

func (o *Error) GetDetailsOk() (map[string]interface{}, bool)

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

func (*Error) GetErr

func (o *Error) GetErr() string

GetErr returns the Err field value

func (*Error) GetErrOk

func (o *Error) GetErrOk() (*string, bool)

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

func (*Error) GetRequest

func (o *Error) GetRequest() string

GetRequest returns the Request field value if set, zero value otherwise.

func (*Error) GetRequestOk

func (o *Error) GetRequestOk() (*string, bool)

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

func (*Error) GetStatus

func (o *Error) GetStatus() string

GetStatus returns the Status field value

func (*Error) GetStatusOk

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

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

func (*Error) HasDebug

func (o *Error) HasDebug() bool

HasDebug returns a boolean if a field has been set.

func (*Error) HasDetails

func (o *Error) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*Error) HasRequest

func (o *Error) HasRequest() bool

HasRequest returns a boolean if a field has been set.

func (Error) MarshalJSON

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

func (*Error) SetCode

func (o *Error) SetCode(v int32)

SetCode sets field value

func (*Error) SetDebug

func (o *Error) SetDebug(v string)

SetDebug gets a reference to the given string and assigns it to the Debug field.

func (*Error) SetDetails

func (o *Error) SetDetails(v map[string]interface{})

SetDetails gets a reference to the given map[string]interface{} and assigns it to the Details field.

func (*Error) SetErr

func (o *Error) SetErr(v string)

SetErr sets field value

func (*Error) SetRequest

func (o *Error) SetRequest(v string)

SetRequest gets a reference to the given string and assigns it to the Request field.

func (*Error) SetStatus

func (o *Error) SetStatus(v string)

SetStatus sets field value

func (Error) ToMap

func (o Error) ToMap() (map[string]interface{}, error)

func (*Error) UnmarshalJSON

func (o *Error) UnmarshalJSON(data []byte) (err error)

type Event

type Event struct {
	// App UID (globally unique)
	App *string `json:"app,omitempty"`
	// Bars. Only available on _session.qo events.
	Bars *float32 `json:"bars,omitempty"`
	// Country
	BestCountry *string `json:"best_country,omitempty"`
	// The device serial number, or the DeviceUID if the serial number is not set
	BestId *string `json:"best_id,omitempty"`
	// Latitude
	BestLat *float64 `json:"best_lat,omitempty"`
	// Location
	BestLocation *string `json:"best_location,omitempty"`
	// One of \"gps\", \"triangulated\", or \"tower\"
	BestLocationType *string `json:"best_location_type,omitempty"`
	// Unix timestamp
	BestLocationWhen *float32 `json:"best_location_when,omitempty"`
	// Longitude
	BestLon *float64 `json:"best_lon,omitempty"`
	// Timezone
	BestTimezone *string `json:"best_timezone,omitempty"`
	// A JSON object containing event details
	Body map[string]interface{} `json:"body,omitempty"`
	// BSSID. Only available on _session.qo events.
	Bssid *string `json:"bssid,omitempty"`
	// Device UID (globally unique)
	Device *string `json:"device,omitempty"`
	// Routed environment variables beginning with \"$\". Only available on _session.qo events.
	Environment map[string]interface{} `json:"environment,omitempty"`
	// Event UID (globally unique)
	Event *string `json:"event,omitempty"`
	// The notefile associated with this event
	File *string `json:"file,omitempty"`
	// The number of times the device was sensed to have moved between the last session and this session. Only available on _session.qo events.
	Moved *float32 `json:"moved,omitempty"`
	// The note ID in the notefile
	Note *string `json:"note,omitempty"`
	// Ordering code. Only available on _session.qo events.
	OrderingCode *string `json:"ordering_code,omitempty"`
	// The orientation of the device. Only available on _session.qo events.
	Orientation *string `json:"orientation,omitempty"`
	// A base64-encoded binary payload
	Payload *string `json:"payload,omitempty"`
	// Product UID (globally unique)
	Product *string `json:"product,omitempty"`
	// Rat. Only available on _session.qo events.
	Rat *string `json:"rat,omitempty"`
	// The unix timestamp when the event was received
	Received *float64 `json:"received,omitempty"`
	// The notecard request
	Req *string `json:"req,omitempty"`
	// RSRP. Only available on _session.qo events.
	Rsrp *float32 `json:"rsrp,omitempty"`
	// RSRQ. Only available on _session.qo events.
	Rsrq *float32 `json:"rsrq,omitempty"`
	// Received Signal Strength Indicator (RSSI) is an estimated measurement of how well a device can receive signals. Only available on _session.qo events.
	Rssi *float32 `json:"rssi,omitempty"`
	// Session UID (globally unique)
	Session *string `json:"session,omitempty"`
	// SINR. Only available on _session.qo events.
	Sinr *float32 `json:"sinr,omitempty"`
	// SKU. Only available on _session.qo events.
	Sku *string `json:"sku,omitempty"`
	// The device serial number
	Sn *string `json:"sn,omitempty"`
	// SSID. Only available on _session.qo events.
	Ssid *string `json:"ssid,omitempty"`
	// Device temperature. Only available on _session.qo events.
	Temp *float64 `json:"temp,omitempty"`
	// Whether TLS was used on the connection between the device and notehub. Only available on _session.qo events.
	Tls *bool `json:"tls,omitempty"`
	// Country
	TowerCountry *string `json:"tower_country,omitempty"`
	// Tower ID
	TowerId *string `json:"tower_id,omitempty"`
	// Latitude
	TowerLat *float64 `json:"tower_lat,omitempty"`
	// Location
	TowerLocation *string `json:"tower_location,omitempty"`
	// Longitude
	TowerLon *float64 `json:"tower_lon,omitempty"`
	// Timezone
	TowerTimezone *string `json:"tower_timezone,omitempty"`
	// Unix timestamp
	TowerWhen *float32 `json:"tower_when,omitempty"`
	// The transport used for this event, e.g., \"cellular\", \"wifi\", \", etc.
	Transport *string `json:"transport,omitempty"`
	// Country
	TriCountry *string `json:"tri_country,omitempty"`
	// Latitude
	TriLat *float64 `json:"tri_lat,omitempty"`
	// Location
	TriLocation *string `json:"tri_location,omitempty"`
	// Longitude
	TriLon *float64 `json:"tri_lon,omitempty"`
	// Triangulation points
	TriPoints *float32 `json:"tri_points,omitempty"`
	// Timezone
	TriTimezone *string `json:"tri_timezone,omitempty"`
	// Unix timestamp
	TriWhen *float32 `json:"tri_when,omitempty"`
	Updates *float32 `json:"updates,omitempty"`
	// Device voltage. Only available on _session.qo events.
	Voltage *float64 `json:"voltage,omitempty"`
	// When the event was captured on the device
	When *float32 `json:"when,omitempty"`
	// Country
	WhereCountry *string `json:"where_country,omitempty"`
	// Latitude
	WhereLat *float64 `json:"where_lat,omitempty"`
	// Location
	WhereLocation *string `json:"where_location,omitempty"`
	// Longitude
	WhereLon *float64 `json:"where_lon,omitempty"`
	// Open Location Code
	WhereOlc *string `json:"where_olc,omitempty"`
	// Timezone
	WhereTimezone *string `json:"where_timezone,omitempty"`
	// Unix timestamp
	WhereWhen *float32 `json:"where_when,omitempty"`
}

Event struct for Event

func NewEvent

func NewEvent() *Event

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

func NewEventWithDefaults

func NewEventWithDefaults() *Event

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

func (*Event) GetApp

func (o *Event) GetApp() string

GetApp returns the App field value if set, zero value otherwise.

func (*Event) GetAppOk

func (o *Event) GetAppOk() (*string, bool)

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

func (*Event) GetBars

func (o *Event) GetBars() float32

GetBars returns the Bars field value if set, zero value otherwise.

func (*Event) GetBarsOk

func (o *Event) GetBarsOk() (*float32, bool)

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

func (*Event) GetBestCountry

func (o *Event) GetBestCountry() string

GetBestCountry returns the BestCountry field value if set, zero value otherwise.

func (*Event) GetBestCountryOk

func (o *Event) GetBestCountryOk() (*string, bool)

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

func (*Event) GetBestId

func (o *Event) GetBestId() string

GetBestId returns the BestId field value if set, zero value otherwise.

func (*Event) GetBestIdOk

func (o *Event) GetBestIdOk() (*string, bool)

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

func (*Event) GetBestLat

func (o *Event) GetBestLat() float64

GetBestLat returns the BestLat field value if set, zero value otherwise.

func (*Event) GetBestLatOk

func (o *Event) GetBestLatOk() (*float64, bool)

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

func (*Event) GetBestLocation

func (o *Event) GetBestLocation() string

GetBestLocation returns the BestLocation field value if set, zero value otherwise.

func (*Event) GetBestLocationOk

func (o *Event) GetBestLocationOk() (*string, bool)

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

func (*Event) GetBestLocationType

func (o *Event) GetBestLocationType() string

GetBestLocationType returns the BestLocationType field value if set, zero value otherwise.

func (*Event) GetBestLocationTypeOk

func (o *Event) GetBestLocationTypeOk() (*string, bool)

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

func (*Event) GetBestLocationWhen

func (o *Event) GetBestLocationWhen() float32

GetBestLocationWhen returns the BestLocationWhen field value if set, zero value otherwise.

func (*Event) GetBestLocationWhenOk

func (o *Event) GetBestLocationWhenOk() (*float32, bool)

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

func (*Event) GetBestLon

func (o *Event) GetBestLon() float64

GetBestLon returns the BestLon field value if set, zero value otherwise.

func (*Event) GetBestLonOk

func (o *Event) GetBestLonOk() (*float64, bool)

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

func (*Event) GetBestTimezone

func (o *Event) GetBestTimezone() string

GetBestTimezone returns the BestTimezone field value if set, zero value otherwise.

func (*Event) GetBestTimezoneOk

func (o *Event) GetBestTimezoneOk() (*string, bool)

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

func (*Event) GetBody

func (o *Event) GetBody() map[string]interface{}

GetBody returns the Body field value if set, zero value otherwise.

func (*Event) GetBodyOk

func (o *Event) GetBodyOk() (map[string]interface{}, bool)

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

func (*Event) GetBssid

func (o *Event) GetBssid() string

GetBssid returns the Bssid field value if set, zero value otherwise.

func (*Event) GetBssidOk

func (o *Event) GetBssidOk() (*string, bool)

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

func (*Event) GetDevice

func (o *Event) GetDevice() string

GetDevice returns the Device field value if set, zero value otherwise.

func (*Event) GetDeviceOk

func (o *Event) GetDeviceOk() (*string, bool)

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

func (*Event) GetEnvironment

func (o *Event) GetEnvironment() map[string]interface{}

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*Event) GetEnvironmentOk

func (o *Event) GetEnvironmentOk() (map[string]interface{}, bool)

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

func (*Event) GetEvent

func (o *Event) GetEvent() string

GetEvent returns the Event field value if set, zero value otherwise.

func (*Event) GetEventOk

func (o *Event) GetEventOk() (*string, bool)

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

func (*Event) GetFile

func (o *Event) GetFile() string

GetFile returns the File field value if set, zero value otherwise.

func (*Event) GetFileOk

func (o *Event) GetFileOk() (*string, bool)

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

func (*Event) GetMoved

func (o *Event) GetMoved() float32

GetMoved returns the Moved field value if set, zero value otherwise.

func (*Event) GetMovedOk

func (o *Event) GetMovedOk() (*float32, bool)

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

func (*Event) GetNote

func (o *Event) GetNote() string

GetNote returns the Note field value if set, zero value otherwise.

func (*Event) GetNoteOk

func (o *Event) GetNoteOk() (*string, bool)

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

func (*Event) GetOrderingCode

func (o *Event) GetOrderingCode() string

GetOrderingCode returns the OrderingCode field value if set, zero value otherwise.

func (*Event) GetOrderingCodeOk

func (o *Event) GetOrderingCodeOk() (*string, bool)

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

func (*Event) GetOrientation

func (o *Event) GetOrientation() string

GetOrientation returns the Orientation field value if set, zero value otherwise.

func (*Event) GetOrientationOk

func (o *Event) GetOrientationOk() (*string, bool)

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

func (*Event) GetPayload

func (o *Event) GetPayload() string

GetPayload returns the Payload field value if set, zero value otherwise.

func (*Event) GetPayloadOk

func (o *Event) GetPayloadOk() (*string, bool)

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

func (*Event) GetProduct

func (o *Event) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*Event) GetProductOk

func (o *Event) GetProductOk() (*string, bool)

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

func (*Event) GetRat

func (o *Event) GetRat() string

GetRat returns the Rat field value if set, zero value otherwise.

func (*Event) GetRatOk

func (o *Event) GetRatOk() (*string, bool)

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

func (*Event) GetReceived

func (o *Event) GetReceived() float64

GetReceived returns the Received field value if set, zero value otherwise.

func (*Event) GetReceivedOk

func (o *Event) GetReceivedOk() (*float64, bool)

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

func (*Event) GetReq

func (o *Event) GetReq() string

GetReq returns the Req field value if set, zero value otherwise.

func (*Event) GetReqOk

func (o *Event) GetReqOk() (*string, bool)

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

func (*Event) GetRsrp

func (o *Event) GetRsrp() float32

GetRsrp returns the Rsrp field value if set, zero value otherwise.

func (*Event) GetRsrpOk

func (o *Event) GetRsrpOk() (*float32, bool)

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

func (*Event) GetRsrq

func (o *Event) GetRsrq() float32

GetRsrq returns the Rsrq field value if set, zero value otherwise.

func (*Event) GetRsrqOk

func (o *Event) GetRsrqOk() (*float32, bool)

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

func (*Event) GetRssi

func (o *Event) GetRssi() float32

GetRssi returns the Rssi field value if set, zero value otherwise.

func (*Event) GetRssiOk

func (o *Event) GetRssiOk() (*float32, bool)

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

func (*Event) GetSession

func (o *Event) GetSession() string

GetSession returns the Session field value if set, zero value otherwise.

func (*Event) GetSessionOk

func (o *Event) GetSessionOk() (*string, bool)

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

func (*Event) GetSinr

func (o *Event) GetSinr() float32

GetSinr returns the Sinr field value if set, zero value otherwise.

func (*Event) GetSinrOk

func (o *Event) GetSinrOk() (*float32, bool)

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

func (*Event) GetSku

func (o *Event) GetSku() string

GetSku returns the Sku field value if set, zero value otherwise.

func (*Event) GetSkuOk

func (o *Event) GetSkuOk() (*string, bool)

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

func (*Event) GetSn

func (o *Event) GetSn() string

GetSn returns the Sn field value if set, zero value otherwise.

func (*Event) GetSnOk

func (o *Event) GetSnOk() (*string, bool)

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

func (*Event) GetSsid

func (o *Event) GetSsid() string

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*Event) GetSsidOk

func (o *Event) GetSsidOk() (*string, bool)

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

func (*Event) GetTemp

func (o *Event) GetTemp() float64

GetTemp returns the Temp field value if set, zero value otherwise.

func (*Event) GetTempOk

func (o *Event) GetTempOk() (*float64, bool)

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

func (*Event) GetTls

func (o *Event) GetTls() bool

GetTls returns the Tls field value if set, zero value otherwise.

func (*Event) GetTlsOk

func (o *Event) GetTlsOk() (*bool, bool)

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

func (*Event) GetTowerCountry

func (o *Event) GetTowerCountry() string

GetTowerCountry returns the TowerCountry field value if set, zero value otherwise.

func (*Event) GetTowerCountryOk

func (o *Event) GetTowerCountryOk() (*string, bool)

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

func (*Event) GetTowerId

func (o *Event) GetTowerId() string

GetTowerId returns the TowerId field value if set, zero value otherwise.

func (*Event) GetTowerIdOk

func (o *Event) GetTowerIdOk() (*string, bool)

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

func (*Event) GetTowerLat

func (o *Event) GetTowerLat() float64

GetTowerLat returns the TowerLat field value if set, zero value otherwise.

func (*Event) GetTowerLatOk

func (o *Event) GetTowerLatOk() (*float64, bool)

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

func (*Event) GetTowerLocation

func (o *Event) GetTowerLocation() string

GetTowerLocation returns the TowerLocation field value if set, zero value otherwise.

func (*Event) GetTowerLocationOk

func (o *Event) GetTowerLocationOk() (*string, bool)

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

func (*Event) GetTowerLon

func (o *Event) GetTowerLon() float64

GetTowerLon returns the TowerLon field value if set, zero value otherwise.

func (*Event) GetTowerLonOk

func (o *Event) GetTowerLonOk() (*float64, bool)

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

func (*Event) GetTowerTimezone

func (o *Event) GetTowerTimezone() string

GetTowerTimezone returns the TowerTimezone field value if set, zero value otherwise.

func (*Event) GetTowerTimezoneOk

func (o *Event) GetTowerTimezoneOk() (*string, bool)

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

func (*Event) GetTowerWhen

func (o *Event) GetTowerWhen() float32

GetTowerWhen returns the TowerWhen field value if set, zero value otherwise.

func (*Event) GetTowerWhenOk

func (o *Event) GetTowerWhenOk() (*float32, bool)

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

func (*Event) GetTransport

func (o *Event) GetTransport() string

GetTransport returns the Transport field value if set, zero value otherwise.

func (*Event) GetTransportOk

func (o *Event) GetTransportOk() (*string, bool)

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

func (*Event) GetTriCountry

func (o *Event) GetTriCountry() string

GetTriCountry returns the TriCountry field value if set, zero value otherwise.

func (*Event) GetTriCountryOk

func (o *Event) GetTriCountryOk() (*string, bool)

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

func (*Event) GetTriLat

func (o *Event) GetTriLat() float64

GetTriLat returns the TriLat field value if set, zero value otherwise.

func (*Event) GetTriLatOk

func (o *Event) GetTriLatOk() (*float64, bool)

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

func (*Event) GetTriLocation

func (o *Event) GetTriLocation() string

GetTriLocation returns the TriLocation field value if set, zero value otherwise.

func (*Event) GetTriLocationOk

func (o *Event) GetTriLocationOk() (*string, bool)

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

func (*Event) GetTriLon

func (o *Event) GetTriLon() float64

GetTriLon returns the TriLon field value if set, zero value otherwise.

func (*Event) GetTriLonOk

func (o *Event) GetTriLonOk() (*float64, bool)

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

func (*Event) GetTriPoints

func (o *Event) GetTriPoints() float32

GetTriPoints returns the TriPoints field value if set, zero value otherwise.

func (*Event) GetTriPointsOk

func (o *Event) GetTriPointsOk() (*float32, bool)

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

func (*Event) GetTriTimezone

func (o *Event) GetTriTimezone() string

GetTriTimezone returns the TriTimezone field value if set, zero value otherwise.

func (*Event) GetTriTimezoneOk

func (o *Event) GetTriTimezoneOk() (*string, bool)

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

func (*Event) GetTriWhen

func (o *Event) GetTriWhen() float32

GetTriWhen returns the TriWhen field value if set, zero value otherwise.

func (*Event) GetTriWhenOk

func (o *Event) GetTriWhenOk() (*float32, bool)

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

func (*Event) GetUpdates

func (o *Event) GetUpdates() float32

GetUpdates returns the Updates field value if set, zero value otherwise.

func (*Event) GetUpdatesOk

func (o *Event) GetUpdatesOk() (*float32, bool)

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

func (*Event) GetVoltage

func (o *Event) GetVoltage() float64

GetVoltage returns the Voltage field value if set, zero value otherwise.

func (*Event) GetVoltageOk

func (o *Event) GetVoltageOk() (*float64, bool)

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

func (*Event) GetWhen

func (o *Event) GetWhen() float32

GetWhen returns the When field value if set, zero value otherwise.

func (*Event) GetWhenOk

func (o *Event) GetWhenOk() (*float32, bool)

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

func (*Event) GetWhereCountry

func (o *Event) GetWhereCountry() string

GetWhereCountry returns the WhereCountry field value if set, zero value otherwise.

func (*Event) GetWhereCountryOk

func (o *Event) GetWhereCountryOk() (*string, bool)

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

func (*Event) GetWhereLat

func (o *Event) GetWhereLat() float64

GetWhereLat returns the WhereLat field value if set, zero value otherwise.

func (*Event) GetWhereLatOk

func (o *Event) GetWhereLatOk() (*float64, bool)

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

func (*Event) GetWhereLocation

func (o *Event) GetWhereLocation() string

GetWhereLocation returns the WhereLocation field value if set, zero value otherwise.

func (*Event) GetWhereLocationOk

func (o *Event) GetWhereLocationOk() (*string, bool)

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

func (*Event) GetWhereLon

func (o *Event) GetWhereLon() float64

GetWhereLon returns the WhereLon field value if set, zero value otherwise.

func (*Event) GetWhereLonOk

func (o *Event) GetWhereLonOk() (*float64, bool)

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

func (*Event) GetWhereOlc

func (o *Event) GetWhereOlc() string

GetWhereOlc returns the WhereOlc field value if set, zero value otherwise.

func (*Event) GetWhereOlcOk

func (o *Event) GetWhereOlcOk() (*string, bool)

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

func (*Event) GetWhereTimezone

func (o *Event) GetWhereTimezone() string

GetWhereTimezone returns the WhereTimezone field value if set, zero value otherwise.

func (*Event) GetWhereTimezoneOk

func (o *Event) GetWhereTimezoneOk() (*string, bool)

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

func (*Event) GetWhereWhen

func (o *Event) GetWhereWhen() float32

GetWhereWhen returns the WhereWhen field value if set, zero value otherwise.

func (*Event) GetWhereWhenOk

func (o *Event) GetWhereWhenOk() (*float32, bool)

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

func (*Event) HasApp

func (o *Event) HasApp() bool

HasApp returns a boolean if a field has been set.

func (*Event) HasBars

func (o *Event) HasBars() bool

HasBars returns a boolean if a field has been set.

func (*Event) HasBestCountry

func (o *Event) HasBestCountry() bool

HasBestCountry returns a boolean if a field has been set.

func (*Event) HasBestId

func (o *Event) HasBestId() bool

HasBestId returns a boolean if a field has been set.

func (*Event) HasBestLat

func (o *Event) HasBestLat() bool

HasBestLat returns a boolean if a field has been set.

func (*Event) HasBestLocation

func (o *Event) HasBestLocation() bool

HasBestLocation returns a boolean if a field has been set.

func (*Event) HasBestLocationType

func (o *Event) HasBestLocationType() bool

HasBestLocationType returns a boolean if a field has been set.

func (*Event) HasBestLocationWhen

func (o *Event) HasBestLocationWhen() bool

HasBestLocationWhen returns a boolean if a field has been set.

func (*Event) HasBestLon

func (o *Event) HasBestLon() bool

HasBestLon returns a boolean if a field has been set.

func (*Event) HasBestTimezone

func (o *Event) HasBestTimezone() bool

HasBestTimezone returns a boolean if a field has been set.

func (*Event) HasBody

func (o *Event) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*Event) HasBssid

func (o *Event) HasBssid() bool

HasBssid returns a boolean if a field has been set.

func (*Event) HasDevice

func (o *Event) HasDevice() bool

HasDevice returns a boolean if a field has been set.

func (*Event) HasEnvironment

func (o *Event) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*Event) HasEvent

func (o *Event) HasEvent() bool

HasEvent returns a boolean if a field has been set.

func (*Event) HasFile

func (o *Event) HasFile() bool

HasFile returns a boolean if a field has been set.

func (*Event) HasMoved

func (o *Event) HasMoved() bool

HasMoved returns a boolean if a field has been set.

func (*Event) HasNote

func (o *Event) HasNote() bool

HasNote returns a boolean if a field has been set.

func (*Event) HasOrderingCode

func (o *Event) HasOrderingCode() bool

HasOrderingCode returns a boolean if a field has been set.

func (*Event) HasOrientation

func (o *Event) HasOrientation() bool

HasOrientation returns a boolean if a field has been set.

func (*Event) HasPayload

func (o *Event) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*Event) HasProduct

func (o *Event) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*Event) HasRat

func (o *Event) HasRat() bool

HasRat returns a boolean if a field has been set.

func (*Event) HasReceived

func (o *Event) HasReceived() bool

HasReceived returns a boolean if a field has been set.

func (*Event) HasReq

func (o *Event) HasReq() bool

HasReq returns a boolean if a field has been set.

func (*Event) HasRsrp

func (o *Event) HasRsrp() bool

HasRsrp returns a boolean if a field has been set.

func (*Event) HasRsrq

func (o *Event) HasRsrq() bool

HasRsrq returns a boolean if a field has been set.

func (*Event) HasRssi

func (o *Event) HasRssi() bool

HasRssi returns a boolean if a field has been set.

func (*Event) HasSession

func (o *Event) HasSession() bool

HasSession returns a boolean if a field has been set.

func (*Event) HasSinr

func (o *Event) HasSinr() bool

HasSinr returns a boolean if a field has been set.

func (*Event) HasSku

func (o *Event) HasSku() bool

HasSku returns a boolean if a field has been set.

func (*Event) HasSn

func (o *Event) HasSn() bool

HasSn returns a boolean if a field has been set.

func (*Event) HasSsid

func (o *Event) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*Event) HasTemp

func (o *Event) HasTemp() bool

HasTemp returns a boolean if a field has been set.

func (*Event) HasTls

func (o *Event) HasTls() bool

HasTls returns a boolean if a field has been set.

func (*Event) HasTowerCountry

func (o *Event) HasTowerCountry() bool

HasTowerCountry returns a boolean if a field has been set.

func (*Event) HasTowerId

func (o *Event) HasTowerId() bool

HasTowerId returns a boolean if a field has been set.

func (*Event) HasTowerLat

func (o *Event) HasTowerLat() bool

HasTowerLat returns a boolean if a field has been set.

func (*Event) HasTowerLocation

func (o *Event) HasTowerLocation() bool

HasTowerLocation returns a boolean if a field has been set.

func (*Event) HasTowerLon

func (o *Event) HasTowerLon() bool

HasTowerLon returns a boolean if a field has been set.

func (*Event) HasTowerTimezone

func (o *Event) HasTowerTimezone() bool

HasTowerTimezone returns a boolean if a field has been set.

func (*Event) HasTowerWhen

func (o *Event) HasTowerWhen() bool

HasTowerWhen returns a boolean if a field has been set.

func (*Event) HasTransport

func (o *Event) HasTransport() bool

HasTransport returns a boolean if a field has been set.

func (*Event) HasTriCountry

func (o *Event) HasTriCountry() bool

HasTriCountry returns a boolean if a field has been set.

func (*Event) HasTriLat

func (o *Event) HasTriLat() bool

HasTriLat returns a boolean if a field has been set.

func (*Event) HasTriLocation

func (o *Event) HasTriLocation() bool

HasTriLocation returns a boolean if a field has been set.

func (*Event) HasTriLon

func (o *Event) HasTriLon() bool

HasTriLon returns a boolean if a field has been set.

func (*Event) HasTriPoints

func (o *Event) HasTriPoints() bool

HasTriPoints returns a boolean if a field has been set.

func (*Event) HasTriTimezone

func (o *Event) HasTriTimezone() bool

HasTriTimezone returns a boolean if a field has been set.

func (*Event) HasTriWhen

func (o *Event) HasTriWhen() bool

HasTriWhen returns a boolean if a field has been set.

func (*Event) HasUpdates

func (o *Event) HasUpdates() bool

HasUpdates returns a boolean if a field has been set.

func (*Event) HasVoltage

func (o *Event) HasVoltage() bool

HasVoltage returns a boolean if a field has been set.

func (*Event) HasWhen

func (o *Event) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (*Event) HasWhereCountry

func (o *Event) HasWhereCountry() bool

HasWhereCountry returns a boolean if a field has been set.

func (*Event) HasWhereLat

func (o *Event) HasWhereLat() bool

HasWhereLat returns a boolean if a field has been set.

func (*Event) HasWhereLocation

func (o *Event) HasWhereLocation() bool

HasWhereLocation returns a boolean if a field has been set.

func (*Event) HasWhereLon

func (o *Event) HasWhereLon() bool

HasWhereLon returns a boolean if a field has been set.

func (*Event) HasWhereOlc

func (o *Event) HasWhereOlc() bool

HasWhereOlc returns a boolean if a field has been set.

func (*Event) HasWhereTimezone

func (o *Event) HasWhereTimezone() bool

HasWhereTimezone returns a boolean if a field has been set.

func (*Event) HasWhereWhen

func (o *Event) HasWhereWhen() bool

HasWhereWhen returns a boolean if a field has been set.

func (Event) MarshalJSON

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

func (*Event) SetApp

func (o *Event) SetApp(v string)

SetApp gets a reference to the given string and assigns it to the App field.

func (*Event) SetBars

func (o *Event) SetBars(v float32)

SetBars gets a reference to the given float32 and assigns it to the Bars field.

func (*Event) SetBestCountry

func (o *Event) SetBestCountry(v string)

SetBestCountry gets a reference to the given string and assigns it to the BestCountry field.

func (*Event) SetBestId

func (o *Event) SetBestId(v string)

SetBestId gets a reference to the given string and assigns it to the BestId field.

func (*Event) SetBestLat

func (o *Event) SetBestLat(v float64)

SetBestLat gets a reference to the given float64 and assigns it to the BestLat field.

func (*Event) SetBestLocation

func (o *Event) SetBestLocation(v string)

SetBestLocation gets a reference to the given string and assigns it to the BestLocation field.

func (*Event) SetBestLocationType

func (o *Event) SetBestLocationType(v string)

SetBestLocationType gets a reference to the given string and assigns it to the BestLocationType field.

func (*Event) SetBestLocationWhen

func (o *Event) SetBestLocationWhen(v float32)

SetBestLocationWhen gets a reference to the given float32 and assigns it to the BestLocationWhen field.

func (*Event) SetBestLon

func (o *Event) SetBestLon(v float64)

SetBestLon gets a reference to the given float64 and assigns it to the BestLon field.

func (*Event) SetBestTimezone

func (o *Event) SetBestTimezone(v string)

SetBestTimezone gets a reference to the given string and assigns it to the BestTimezone field.

func (*Event) SetBody

func (o *Event) SetBody(v map[string]interface{})

SetBody gets a reference to the given map[string]interface{} and assigns it to the Body field.

func (*Event) SetBssid

func (o *Event) SetBssid(v string)

SetBssid gets a reference to the given string and assigns it to the Bssid field.

func (*Event) SetDevice

func (o *Event) SetDevice(v string)

SetDevice gets a reference to the given string and assigns it to the Device field.

func (*Event) SetEnvironment

func (o *Event) SetEnvironment(v map[string]interface{})

SetEnvironment gets a reference to the given map[string]interface{} and assigns it to the Environment field.

func (*Event) SetEvent

func (o *Event) SetEvent(v string)

SetEvent gets a reference to the given string and assigns it to the Event field.

func (*Event) SetFile

func (o *Event) SetFile(v string)

SetFile gets a reference to the given string and assigns it to the File field.

func (*Event) SetMoved

func (o *Event) SetMoved(v float32)

SetMoved gets a reference to the given float32 and assigns it to the Moved field.

func (*Event) SetNote

func (o *Event) SetNote(v string)

SetNote gets a reference to the given string and assigns it to the Note field.

func (*Event) SetOrderingCode

func (o *Event) SetOrderingCode(v string)

SetOrderingCode gets a reference to the given string and assigns it to the OrderingCode field.

func (*Event) SetOrientation

func (o *Event) SetOrientation(v string)

SetOrientation gets a reference to the given string and assigns it to the Orientation field.

func (*Event) SetPayload

func (o *Event) SetPayload(v string)

SetPayload gets a reference to the given string and assigns it to the Payload field.

func (*Event) SetProduct

func (o *Event) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*Event) SetRat

func (o *Event) SetRat(v string)

SetRat gets a reference to the given string and assigns it to the Rat field.

func (*Event) SetReceived

func (o *Event) SetReceived(v float64)

SetReceived gets a reference to the given float64 and assigns it to the Received field.

func (*Event) SetReq

func (o *Event) SetReq(v string)

SetReq gets a reference to the given string and assigns it to the Req field.

func (*Event) SetRsrp

func (o *Event) SetRsrp(v float32)

SetRsrp gets a reference to the given float32 and assigns it to the Rsrp field.

func (*Event) SetRsrq

func (o *Event) SetRsrq(v float32)

SetRsrq gets a reference to the given float32 and assigns it to the Rsrq field.

func (*Event) SetRssi

func (o *Event) SetRssi(v float32)

SetRssi gets a reference to the given float32 and assigns it to the Rssi field.

func (*Event) SetSession

func (o *Event) SetSession(v string)

SetSession gets a reference to the given string and assigns it to the Session field.

func (*Event) SetSinr

func (o *Event) SetSinr(v float32)

SetSinr gets a reference to the given float32 and assigns it to the Sinr field.

func (*Event) SetSku

func (o *Event) SetSku(v string)

SetSku gets a reference to the given string and assigns it to the Sku field.

func (*Event) SetSn

func (o *Event) SetSn(v string)

SetSn gets a reference to the given string and assigns it to the Sn field.

func (*Event) SetSsid

func (o *Event) SetSsid(v string)

SetSsid gets a reference to the given string and assigns it to the Ssid field.

func (*Event) SetTemp

func (o *Event) SetTemp(v float64)

SetTemp gets a reference to the given float64 and assigns it to the Temp field.

func (*Event) SetTls

func (o *Event) SetTls(v bool)

SetTls gets a reference to the given bool and assigns it to the Tls field.

func (*Event) SetTowerCountry

func (o *Event) SetTowerCountry(v string)

SetTowerCountry gets a reference to the given string and assigns it to the TowerCountry field.

func (*Event) SetTowerId

func (o *Event) SetTowerId(v string)

SetTowerId gets a reference to the given string and assigns it to the TowerId field.

func (*Event) SetTowerLat

func (o *Event) SetTowerLat(v float64)

SetTowerLat gets a reference to the given float64 and assigns it to the TowerLat field.

func (*Event) SetTowerLocation

func (o *Event) SetTowerLocation(v string)

SetTowerLocation gets a reference to the given string and assigns it to the TowerLocation field.

func (*Event) SetTowerLon

func (o *Event) SetTowerLon(v float64)

SetTowerLon gets a reference to the given float64 and assigns it to the TowerLon field.

func (*Event) SetTowerTimezone

func (o *Event) SetTowerTimezone(v string)

SetTowerTimezone gets a reference to the given string and assigns it to the TowerTimezone field.

func (*Event) SetTowerWhen

func (o *Event) SetTowerWhen(v float32)

SetTowerWhen gets a reference to the given float32 and assigns it to the TowerWhen field.

func (*Event) SetTransport

func (o *Event) SetTransport(v string)

SetTransport gets a reference to the given string and assigns it to the Transport field.

func (*Event) SetTriCountry

func (o *Event) SetTriCountry(v string)

SetTriCountry gets a reference to the given string and assigns it to the TriCountry field.

func (*Event) SetTriLat

func (o *Event) SetTriLat(v float64)

SetTriLat gets a reference to the given float64 and assigns it to the TriLat field.

func (*Event) SetTriLocation

func (o *Event) SetTriLocation(v string)

SetTriLocation gets a reference to the given string and assigns it to the TriLocation field.

func (*Event) SetTriLon

func (o *Event) SetTriLon(v float64)

SetTriLon gets a reference to the given float64 and assigns it to the TriLon field.

func (*Event) SetTriPoints

func (o *Event) SetTriPoints(v float32)

SetTriPoints gets a reference to the given float32 and assigns it to the TriPoints field.

func (*Event) SetTriTimezone

func (o *Event) SetTriTimezone(v string)

SetTriTimezone gets a reference to the given string and assigns it to the TriTimezone field.

func (*Event) SetTriWhen

func (o *Event) SetTriWhen(v float32)

SetTriWhen gets a reference to the given float32 and assigns it to the TriWhen field.

func (*Event) SetUpdates

func (o *Event) SetUpdates(v float32)

SetUpdates gets a reference to the given float32 and assigns it to the Updates field.

func (*Event) SetVoltage

func (o *Event) SetVoltage(v float64)

SetVoltage gets a reference to the given float64 and assigns it to the Voltage field.

func (*Event) SetWhen

func (o *Event) SetWhen(v float32)

SetWhen gets a reference to the given float32 and assigns it to the When field.

func (*Event) SetWhereCountry

func (o *Event) SetWhereCountry(v string)

SetWhereCountry gets a reference to the given string and assigns it to the WhereCountry field.

func (*Event) SetWhereLat

func (o *Event) SetWhereLat(v float64)

SetWhereLat gets a reference to the given float64 and assigns it to the WhereLat field.

func (*Event) SetWhereLocation

func (o *Event) SetWhereLocation(v string)

SetWhereLocation gets a reference to the given string and assigns it to the WhereLocation field.

func (*Event) SetWhereLon

func (o *Event) SetWhereLon(v float64)

SetWhereLon gets a reference to the given float64 and assigns it to the WhereLon field.

func (*Event) SetWhereOlc

func (o *Event) SetWhereOlc(v string)

SetWhereOlc gets a reference to the given string and assigns it to the WhereOlc field.

func (*Event) SetWhereTimezone

func (o *Event) SetWhereTimezone(v string)

SetWhereTimezone gets a reference to the given string and assigns it to the WhereTimezone field.

func (*Event) SetWhereWhen

func (o *Event) SetWhereWhen(v float32)

SetWhereWhen gets a reference to the given float32 and assigns it to the WhereWhen field.

func (Event) ToMap

func (o Event) ToMap() (map[string]interface{}, error)

type EventAPIService

type EventAPIService service

EventAPIService EventAPI service

func (*EventAPIService) GetEvents

func (a *EventAPIService) GetEvents(ctx context.Context, projectOrProductUID string) ApiGetEventsRequest

GetEvents Method for GetEvents

Get Events of a Project

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

func (*EventAPIService) GetEventsByCursor

func (a *EventAPIService) GetEventsByCursor(ctx context.Context, projectOrProductUID string) ApiGetEventsByCursorRequest

GetEventsByCursor Method for GetEventsByCursor

Get Events of a Project by cursor

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

func (*EventAPIService) GetEventsByCursorExecute

Execute executes the request

@return GetEventsByCursor200Response

func (*EventAPIService) GetEventsExecute

Execute executes the request

@return GetEvents200Response

func (*EventAPIService) GetFleetEvents

func (a *EventAPIService) GetFleetEvents(ctx context.Context, projectOrProductUID string, fleetUID string) ApiGetFleetEventsRequest

GetFleetEvents Method for GetFleetEvents

Get Events of a Fleet

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

func (*EventAPIService) GetFleetEventsByCursor

func (a *EventAPIService) GetFleetEventsByCursor(ctx context.Context, projectOrProductUID string, fleetUID string) ApiGetFleetEventsByCursorRequest

GetFleetEventsByCursor Method for GetFleetEventsByCursor

Get Events of a Fleet by cursor

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

func (*EventAPIService) GetFleetEventsByCursorExecute

Execute executes the request

@return GetEventsByCursor200Response

func (*EventAPIService) GetFleetEventsExecute

Execute executes the request

@return GetEvents200Response

func (*EventAPIService) GetRouteLogsByEvent

func (a *EventAPIService) GetRouteLogsByEvent(ctx context.Context, projectOrProductUID string, eventUID string) ApiGetRouteLogsByEventRequest

GetRouteLogsByEvent Method for GetRouteLogsByEvent

Get Route Logs by Event UID

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

func (*EventAPIService) GetRouteLogsByEventExecute

func (a *EventAPIService) GetRouteLogsByEventExecute(r ApiGetRouteLogsByEventRequest) ([]RouteLog, *http.Response, error)

Execute executes the request

@return []RouteLog

type ExternalDevicesAPIService

type ExternalDevicesAPIService service

ExternalDevicesAPIService ExternalDevicesAPI service

func (*ExternalDevicesAPIService) CreateEventExtDevice

func (a *ExternalDevicesAPIService) CreateEventExtDevice(ctx context.Context, productUID string, deviceUID string) ApiCreateEventExtDeviceRequest

CreateEventExtDevice Method for CreateEventExtDevice

Creates an event using specified webhook

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

func (*ExternalDevicesAPIService) CreateEventExtDeviceExecute

func (a *ExternalDevicesAPIService) CreateEventExtDeviceExecute(r ApiCreateEventExtDeviceRequest) (*http.Response, error)

Execute executes the request

func (*ExternalDevicesAPIService) ExtDeviceSessionClose

func (a *ExternalDevicesAPIService) ExtDeviceSessionClose(ctx context.Context, productUID string, deviceUID string) ApiExtDeviceSessionCloseRequest

ExtDeviceSessionClose Method for ExtDeviceSessionClose

Closes the session for the specified device if open

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

func (*ExternalDevicesAPIService) ExtDeviceSessionCloseExecute

func (a *ExternalDevicesAPIService) ExtDeviceSessionCloseExecute(r ApiExtDeviceSessionCloseRequest) (*http.Response, error)

Execute executes the request

func (*ExternalDevicesAPIService) ExtDeviceSessionOpen

func (a *ExternalDevicesAPIService) ExtDeviceSessionOpen(ctx context.Context, productUID string, deviceUID string) ApiExtDeviceSessionOpenRequest

ExtDeviceSessionOpen Method for ExtDeviceSessionOpen

Create a Session for the specified device. | If a session is currently open it will be closed and a new one opened.

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

func (*ExternalDevicesAPIService) ExtDeviceSessionOpenExecute

func (a *ExternalDevicesAPIService) ExtDeviceSessionOpenExecute(r ApiExtDeviceSessionOpenRequest) (*http.Response, error)

Execute executes the request

type Filter

type Filter struct {
	// List of notefile names or patterns to filter on.
	Files []string `json:"files,omitempty"`
	// Whether system notefiles should be included.
	SystemNotefiles *bool `json:"system_notefiles,omitempty"`
	// Type of filter to apply (corresponds to `hublib.NotefileFilterType`).
	Type *string `json:"type,omitempty"`
}

Filter Filter applied to route data. Controls which notefiles are sent through the route.

func NewFilter

func NewFilter() *Filter

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

func NewFilterWithDefaults

func NewFilterWithDefaults() *Filter

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

func (*Filter) GetFiles

func (o *Filter) GetFiles() []string

GetFiles returns the Files field value if set, zero value otherwise.

func (*Filter) GetFilesOk

func (o *Filter) GetFilesOk() ([]string, bool)

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

func (*Filter) GetSystemNotefiles

func (o *Filter) GetSystemNotefiles() bool

GetSystemNotefiles returns the SystemNotefiles field value if set, zero value otherwise.

func (*Filter) GetSystemNotefilesOk

func (o *Filter) GetSystemNotefilesOk() (*bool, bool)

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

func (*Filter) GetType

func (o *Filter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Filter) GetTypeOk

func (o *Filter) GetTypeOk() (*string, bool)

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

func (*Filter) HasFiles

func (o *Filter) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*Filter) HasSystemNotefiles

func (o *Filter) HasSystemNotefiles() bool

HasSystemNotefiles returns a boolean if a field has been set.

func (*Filter) HasType

func (o *Filter) HasType() bool

HasType returns a boolean if a field has been set.

func (Filter) MarshalJSON

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

func (*Filter) SetFiles

func (o *Filter) SetFiles(v []string)

SetFiles gets a reference to the given []string and assigns it to the Files field.

func (*Filter) SetSystemNotefiles

func (o *Filter) SetSystemNotefiles(v bool)

SetSystemNotefiles gets a reference to the given bool and assigns it to the SystemNotefiles field.

func (*Filter) SetType

func (o *Filter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Filter) ToMap

func (o Filter) ToMap() (map[string]interface{}, error)

type Firmware

type Firmware struct {
	Builder  *string `json:"builder,omitempty"`
	Built    *string `json:"built,omitempty"`
	Firmware *string `json:"firmware,omitempty"`
	Org      *string `json:"org,omitempty"`
	Product  *string `json:"product,omitempty"`
	Target   *string `json:"target,omitempty"`
	VerBuild *int32  `json:"ver_build,omitempty"`
	VerMajor *int32  `json:"ver_major,omitempty"`
	VerMinor *int32  `json:"ver_minor,omitempty"`
	VerPatch *int32  `json:"ver_patch,omitempty"`
	Version  *string `json:"version,omitempty"`
}

Firmware struct for Firmware

func NewFirmware

func NewFirmware() *Firmware

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

func NewFirmwareWithDefaults

func NewFirmwareWithDefaults() *Firmware

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

func (*Firmware) GetBuilder

func (o *Firmware) GetBuilder() string

GetBuilder returns the Builder field value if set, zero value otherwise.

func (*Firmware) GetBuilderOk

func (o *Firmware) GetBuilderOk() (*string, bool)

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

func (*Firmware) GetBuilt

func (o *Firmware) GetBuilt() string

GetBuilt returns the Built field value if set, zero value otherwise.

func (*Firmware) GetBuiltOk

func (o *Firmware) GetBuiltOk() (*string, bool)

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

func (*Firmware) GetFirmware

func (o *Firmware) GetFirmware() string

GetFirmware returns the Firmware field value if set, zero value otherwise.

func (*Firmware) GetFirmwareOk

func (o *Firmware) GetFirmwareOk() (*string, bool)

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

func (*Firmware) GetOrg

func (o *Firmware) GetOrg() string

GetOrg returns the Org field value if set, zero value otherwise.

func (*Firmware) GetOrgOk

func (o *Firmware) GetOrgOk() (*string, bool)

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

func (*Firmware) GetProduct

func (o *Firmware) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*Firmware) GetProductOk

func (o *Firmware) GetProductOk() (*string, bool)

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

func (*Firmware) GetTarget

func (o *Firmware) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*Firmware) GetTargetOk

func (o *Firmware) GetTargetOk() (*string, bool)

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

func (*Firmware) GetVerBuild

func (o *Firmware) GetVerBuild() int32

GetVerBuild returns the VerBuild field value if set, zero value otherwise.

func (*Firmware) GetVerBuildOk

func (o *Firmware) GetVerBuildOk() (*int32, bool)

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

func (*Firmware) GetVerMajor

func (o *Firmware) GetVerMajor() int32

GetVerMajor returns the VerMajor field value if set, zero value otherwise.

func (*Firmware) GetVerMajorOk

func (o *Firmware) GetVerMajorOk() (*int32, bool)

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

func (*Firmware) GetVerMinor

func (o *Firmware) GetVerMinor() int32

GetVerMinor returns the VerMinor field value if set, zero value otherwise.

func (*Firmware) GetVerMinorOk

func (o *Firmware) GetVerMinorOk() (*int32, bool)

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

func (*Firmware) GetVerPatch

func (o *Firmware) GetVerPatch() int32

GetVerPatch returns the VerPatch field value if set, zero value otherwise.

func (*Firmware) GetVerPatchOk

func (o *Firmware) GetVerPatchOk() (*int32, bool)

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

func (*Firmware) GetVersion

func (o *Firmware) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Firmware) GetVersionOk

func (o *Firmware) GetVersionOk() (*string, bool)

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

func (*Firmware) HasBuilder

func (o *Firmware) HasBuilder() bool

HasBuilder returns a boolean if a field has been set.

func (*Firmware) HasBuilt

func (o *Firmware) HasBuilt() bool

HasBuilt returns a boolean if a field has been set.

func (*Firmware) HasFirmware

func (o *Firmware) HasFirmware() bool

HasFirmware returns a boolean if a field has been set.

func (*Firmware) HasOrg

func (o *Firmware) HasOrg() bool

HasOrg returns a boolean if a field has been set.

func (*Firmware) HasProduct

func (o *Firmware) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*Firmware) HasTarget

func (o *Firmware) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*Firmware) HasVerBuild

func (o *Firmware) HasVerBuild() bool

HasVerBuild returns a boolean if a field has been set.

func (*Firmware) HasVerMajor

func (o *Firmware) HasVerMajor() bool

HasVerMajor returns a boolean if a field has been set.

func (*Firmware) HasVerMinor

func (o *Firmware) HasVerMinor() bool

HasVerMinor returns a boolean if a field has been set.

func (*Firmware) HasVerPatch

func (o *Firmware) HasVerPatch() bool

HasVerPatch returns a boolean if a field has been set.

func (*Firmware) HasVersion

func (o *Firmware) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Firmware) MarshalJSON

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

func (*Firmware) SetBuilder

func (o *Firmware) SetBuilder(v string)

SetBuilder gets a reference to the given string and assigns it to the Builder field.

func (*Firmware) SetBuilt

func (o *Firmware) SetBuilt(v string)

SetBuilt gets a reference to the given string and assigns it to the Built field.

func (*Firmware) SetFirmware

func (o *Firmware) SetFirmware(v string)

SetFirmware gets a reference to the given string and assigns it to the Firmware field.

func (*Firmware) SetOrg

func (o *Firmware) SetOrg(v string)

SetOrg gets a reference to the given string and assigns it to the Org field.

func (*Firmware) SetProduct

func (o *Firmware) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*Firmware) SetTarget

func (o *Firmware) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (*Firmware) SetVerBuild

func (o *Firmware) SetVerBuild(v int32)

SetVerBuild gets a reference to the given int32 and assigns it to the VerBuild field.

func (*Firmware) SetVerMajor

func (o *Firmware) SetVerMajor(v int32)

SetVerMajor gets a reference to the given int32 and assigns it to the VerMajor field.

func (*Firmware) SetVerMinor

func (o *Firmware) SetVerMinor(v int32)

SetVerMinor gets a reference to the given int32 and assigns it to the VerMinor field.

func (*Firmware) SetVerPatch

func (o *Firmware) SetVerPatch(v int32)

SetVerPatch gets a reference to the given int32 and assigns it to the VerPatch field.

func (*Firmware) SetVersion

func (o *Firmware) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Firmware) ToMap

func (o Firmware) ToMap() (map[string]interface{}, error)

type FirmwareInfo

type FirmwareInfo struct {
	// The date the firmware was built.
	Built *string `json:"built,omitempty"`
	// The date the firmware was created.
	Created *string `json:"created,omitempty"`
	// A description of the firmware.
	Description *string `json:"description,omitempty"`
	// The name of the firmware file.
	Filename *string `json:"filename,omitempty"`
	// The MD5 hash of the firmware file.
	Md5 *string `json:"md5,omitempty"`
	// The organization that owns the firmware.
	Organization *string `json:"organization,omitempty"`
	// The product that the firmware is for.
	Product *string `json:"product,omitempty"`
	// True if the firmware is published.
	Published *bool `json:"published,omitempty"`
	// A list of tags associated with the firmware.
	Tags *string `json:"tags,omitempty"`
	// The target device for the firmware.
	Target *string `json:"target,omitempty"`
	// The type of firmware.
	Type *string `json:"type,omitempty"`
	// The version of the firmware.
	Version *string `json:"version,omitempty"`
}

FirmwareInfo struct for FirmwareInfo

func NewFirmwareInfo

func NewFirmwareInfo() *FirmwareInfo

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

func NewFirmwareInfoWithDefaults

func NewFirmwareInfoWithDefaults() *FirmwareInfo

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

func (*FirmwareInfo) GetBuilt

func (o *FirmwareInfo) GetBuilt() string

GetBuilt returns the Built field value if set, zero value otherwise.

func (*FirmwareInfo) GetBuiltOk

func (o *FirmwareInfo) GetBuiltOk() (*string, bool)

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

func (*FirmwareInfo) GetCreated

func (o *FirmwareInfo) GetCreated() string

GetCreated returns the Created field value if set, zero value otherwise.

func (*FirmwareInfo) GetCreatedOk

func (o *FirmwareInfo) GetCreatedOk() (*string, bool)

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

func (*FirmwareInfo) GetDescription

func (o *FirmwareInfo) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*FirmwareInfo) GetDescriptionOk

func (o *FirmwareInfo) GetDescriptionOk() (*string, bool)

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

func (*FirmwareInfo) GetFilename

func (o *FirmwareInfo) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise.

func (*FirmwareInfo) GetFilenameOk

func (o *FirmwareInfo) GetFilenameOk() (*string, bool)

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

func (*FirmwareInfo) GetMd5

func (o *FirmwareInfo) GetMd5() string

GetMd5 returns the Md5 field value if set, zero value otherwise.

func (*FirmwareInfo) GetMd5Ok

func (o *FirmwareInfo) GetMd5Ok() (*string, bool)

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

func (*FirmwareInfo) GetOrganization

func (o *FirmwareInfo) GetOrganization() string

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*FirmwareInfo) GetOrganizationOk

func (o *FirmwareInfo) GetOrganizationOk() (*string, bool)

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

func (*FirmwareInfo) GetProduct

func (o *FirmwareInfo) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*FirmwareInfo) GetProductOk

func (o *FirmwareInfo) GetProductOk() (*string, bool)

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

func (*FirmwareInfo) GetPublished

func (o *FirmwareInfo) GetPublished() bool

GetPublished returns the Published field value if set, zero value otherwise.

func (*FirmwareInfo) GetPublishedOk

func (o *FirmwareInfo) GetPublishedOk() (*bool, bool)

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

func (*FirmwareInfo) GetTags

func (o *FirmwareInfo) GetTags() string

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

func (*FirmwareInfo) GetTagsOk

func (o *FirmwareInfo) GetTagsOk() (*string, bool)

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

func (*FirmwareInfo) GetTarget

func (o *FirmwareInfo) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*FirmwareInfo) GetTargetOk

func (o *FirmwareInfo) GetTargetOk() (*string, bool)

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

func (*FirmwareInfo) GetType

func (o *FirmwareInfo) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*FirmwareInfo) GetTypeOk

func (o *FirmwareInfo) GetTypeOk() (*string, bool)

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

func (*FirmwareInfo) GetVersion

func (o *FirmwareInfo) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*FirmwareInfo) GetVersionOk

func (o *FirmwareInfo) GetVersionOk() (*string, bool)

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

func (*FirmwareInfo) HasBuilt

func (o *FirmwareInfo) HasBuilt() bool

HasBuilt returns a boolean if a field has been set.

func (*FirmwareInfo) HasCreated

func (o *FirmwareInfo) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*FirmwareInfo) HasDescription

func (o *FirmwareInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FirmwareInfo) HasFilename

func (o *FirmwareInfo) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (*FirmwareInfo) HasMd5

func (o *FirmwareInfo) HasMd5() bool

HasMd5 returns a boolean if a field has been set.

func (*FirmwareInfo) HasOrganization

func (o *FirmwareInfo) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*FirmwareInfo) HasProduct

func (o *FirmwareInfo) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*FirmwareInfo) HasPublished

func (o *FirmwareInfo) HasPublished() bool

HasPublished returns a boolean if a field has been set.

func (*FirmwareInfo) HasTags

func (o *FirmwareInfo) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*FirmwareInfo) HasTarget

func (o *FirmwareInfo) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*FirmwareInfo) HasType

func (o *FirmwareInfo) HasType() bool

HasType returns a boolean if a field has been set.

func (*FirmwareInfo) HasVersion

func (o *FirmwareInfo) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (FirmwareInfo) MarshalJSON

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

func (*FirmwareInfo) SetBuilt

func (o *FirmwareInfo) SetBuilt(v string)

SetBuilt gets a reference to the given string and assigns it to the Built field.

func (*FirmwareInfo) SetCreated

func (o *FirmwareInfo) SetCreated(v string)

SetCreated gets a reference to the given string and assigns it to the Created field.

func (*FirmwareInfo) SetDescription

func (o *FirmwareInfo) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*FirmwareInfo) SetFilename

func (o *FirmwareInfo) SetFilename(v string)

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (*FirmwareInfo) SetMd5

func (o *FirmwareInfo) SetMd5(v string)

SetMd5 gets a reference to the given string and assigns it to the Md5 field.

func (*FirmwareInfo) SetOrganization

func (o *FirmwareInfo) SetOrganization(v string)

SetOrganization gets a reference to the given string and assigns it to the Organization field.

func (*FirmwareInfo) SetProduct

func (o *FirmwareInfo) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*FirmwareInfo) SetPublished

func (o *FirmwareInfo) SetPublished(v bool)

SetPublished gets a reference to the given bool and assigns it to the Published field.

func (*FirmwareInfo) SetTags

func (o *FirmwareInfo) SetTags(v string)

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

func (*FirmwareInfo) SetTarget

func (o *FirmwareInfo) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (*FirmwareInfo) SetType

func (o *FirmwareInfo) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*FirmwareInfo) SetVersion

func (o *FirmwareInfo) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (FirmwareInfo) ToMap

func (o FirmwareInfo) ToMap() (map[string]interface{}, error)

type Fleet

type Fleet struct {
	ConnectivityAssurance NullableFleetConnectivityAssurance `json:"connectivity_assurance,omitempty"`
	// RFC3339 timestamp in UTC
	Created time.Time `json:"created"`
	// The environment variables for this device that have been set using the Notehub API or UI.
	EnvironmentVariables *map[string]string `json:"environment_variables,omitempty"`
	// Fleet label
	Label string `json:"label"`
	// JSONata expression that will be evaluated to determine device membership into this fleet, if the expression evaluates to a 1, the device will be included, if it evaluates to -1 it will be removed, and if it evaluates to 0 or errors it will be left unchanged.
	SmartRule        *string `json:"smart_rule,omitempty"`
	SmartRuleEnabled *bool   `json:"smart_rule_enabled,omitempty"`
	// Fleet UID
	Uid string `json:"uid"`
	// A watchdog timer is used to generate an event every N minutes of inactivity. 0 means no watchdog
	WatchdogMins *int64 `json:"watchdog_mins,omitempty"`
}

Fleet struct for Fleet

func NewFleet

func NewFleet(created time.Time, label string, uid string) *Fleet

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

func NewFleetWithDefaults

func NewFleetWithDefaults() *Fleet

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

func (*Fleet) GetConnectivityAssurance

func (o *Fleet) GetConnectivityAssurance() FleetConnectivityAssurance

GetConnectivityAssurance returns the ConnectivityAssurance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Fleet) GetConnectivityAssuranceOk

func (o *Fleet) GetConnectivityAssuranceOk() (*FleetConnectivityAssurance, bool)

GetConnectivityAssuranceOk returns a tuple with the ConnectivityAssurance field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Fleet) GetCreated

func (o *Fleet) GetCreated() time.Time

GetCreated returns the Created field value

func (*Fleet) GetCreatedOk

func (o *Fleet) GetCreatedOk() (*time.Time, bool)

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

func (*Fleet) GetEnvironmentVariables

func (o *Fleet) GetEnvironmentVariables() map[string]string

GetEnvironmentVariables returns the EnvironmentVariables field value if set, zero value otherwise.

func (*Fleet) GetEnvironmentVariablesOk

func (o *Fleet) GetEnvironmentVariablesOk() (*map[string]string, bool)

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

func (*Fleet) GetLabel

func (o *Fleet) GetLabel() string

GetLabel returns the Label field value

func (*Fleet) GetLabelOk

func (o *Fleet) GetLabelOk() (*string, bool)

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

func (*Fleet) GetSmartRule

func (o *Fleet) GetSmartRule() string

GetSmartRule returns the SmartRule field value if set, zero value otherwise.

func (*Fleet) GetSmartRuleEnabled

func (o *Fleet) GetSmartRuleEnabled() bool

GetSmartRuleEnabled returns the SmartRuleEnabled field value if set, zero value otherwise.

func (*Fleet) GetSmartRuleEnabledOk

func (o *Fleet) GetSmartRuleEnabledOk() (*bool, bool)

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

func (*Fleet) GetSmartRuleOk

func (o *Fleet) GetSmartRuleOk() (*string, bool)

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

func (*Fleet) GetUid

func (o *Fleet) GetUid() string

GetUid returns the Uid field value

func (*Fleet) GetUidOk

func (o *Fleet) GetUidOk() (*string, bool)

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

func (*Fleet) GetWatchdogMins

func (o *Fleet) GetWatchdogMins() int64

GetWatchdogMins returns the WatchdogMins field value if set, zero value otherwise.

func (*Fleet) GetWatchdogMinsOk

func (o *Fleet) GetWatchdogMinsOk() (*int64, bool)

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

func (*Fleet) HasConnectivityAssurance

func (o *Fleet) HasConnectivityAssurance() bool

HasConnectivityAssurance returns a boolean if a field has been set.

func (*Fleet) HasEnvironmentVariables

func (o *Fleet) HasEnvironmentVariables() bool

HasEnvironmentVariables returns a boolean if a field has been set.

func (*Fleet) HasSmartRule

func (o *Fleet) HasSmartRule() bool

HasSmartRule returns a boolean if a field has been set.

func (*Fleet) HasSmartRuleEnabled

func (o *Fleet) HasSmartRuleEnabled() bool

HasSmartRuleEnabled returns a boolean if a field has been set.

func (*Fleet) HasWatchdogMins

func (o *Fleet) HasWatchdogMins() bool

HasWatchdogMins returns a boolean if a field has been set.

func (Fleet) MarshalJSON

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

func (*Fleet) SetConnectivityAssurance

func (o *Fleet) SetConnectivityAssurance(v FleetConnectivityAssurance)

SetConnectivityAssurance gets a reference to the given NullableFleetConnectivityAssurance and assigns it to the ConnectivityAssurance field.

func (*Fleet) SetConnectivityAssuranceNil

func (o *Fleet) SetConnectivityAssuranceNil()

SetConnectivityAssuranceNil sets the value for ConnectivityAssurance to be an explicit nil

func (*Fleet) SetCreated

func (o *Fleet) SetCreated(v time.Time)

SetCreated sets field value

func (*Fleet) SetEnvironmentVariables

func (o *Fleet) SetEnvironmentVariables(v map[string]string)

SetEnvironmentVariables gets a reference to the given map[string]string and assigns it to the EnvironmentVariables field.

func (*Fleet) SetLabel

func (o *Fleet) SetLabel(v string)

SetLabel sets field value

func (*Fleet) SetSmartRule

func (o *Fleet) SetSmartRule(v string)

SetSmartRule gets a reference to the given string and assigns it to the SmartRule field.

func (*Fleet) SetSmartRuleEnabled

func (o *Fleet) SetSmartRuleEnabled(v bool)

SetSmartRuleEnabled gets a reference to the given bool and assigns it to the SmartRuleEnabled field.

func (*Fleet) SetUid

func (o *Fleet) SetUid(v string)

SetUid sets field value

func (*Fleet) SetWatchdogMins

func (o *Fleet) SetWatchdogMins(v int64)

SetWatchdogMins gets a reference to the given int64 and assigns it to the WatchdogMins field.

func (Fleet) ToMap

func (o Fleet) ToMap() (map[string]interface{}, error)

func (*Fleet) UnmarshalJSON

func (o *Fleet) UnmarshalJSON(data []byte) (err error)

func (*Fleet) UnsetConnectivityAssurance

func (o *Fleet) UnsetConnectivityAssurance()

UnsetConnectivityAssurance ensures that no value is present for ConnectivityAssurance, not even an explicit nil

type FleetConnectivityAssurance

type FleetConnectivityAssurance struct {
	// Whether Connectivity Assurance is enabled for this fleet
	Enabled NullableBool `json:"enabled,omitempty"`
}

FleetConnectivityAssurance struct for FleetConnectivityAssurance

func NewFleetConnectivityAssurance

func NewFleetConnectivityAssurance() *FleetConnectivityAssurance

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

func NewFleetConnectivityAssuranceWithDefaults

func NewFleetConnectivityAssuranceWithDefaults() *FleetConnectivityAssurance

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

func (*FleetConnectivityAssurance) GetEnabled

func (o *FleetConnectivityAssurance) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FleetConnectivityAssurance) GetEnabledOk

func (o *FleetConnectivityAssurance) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FleetConnectivityAssurance) HasEnabled

func (o *FleetConnectivityAssurance) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (FleetConnectivityAssurance) MarshalJSON

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

func (*FleetConnectivityAssurance) SetEnabled

func (o *FleetConnectivityAssurance) SetEnabled(v bool)

SetEnabled gets a reference to the given NullableBool and assigns it to the Enabled field.

func (*FleetConnectivityAssurance) SetEnabledNil

func (o *FleetConnectivityAssurance) SetEnabledNil()

SetEnabledNil sets the value for Enabled to be an explicit nil

func (FleetConnectivityAssurance) ToMap

func (o FleetConnectivityAssurance) ToMap() (map[string]interface{}, error)

func (*FleetConnectivityAssurance) UnsetEnabled

func (o *FleetConnectivityAssurance) UnsetEnabled()

UnsetEnabled ensures that no value is present for Enabled, not even an explicit nil

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetAlerts200Response

type GetAlerts200Response struct {
	// The list of alerts
	Alerts []Alert `json:"alerts"`
	// True if there are more alerts
	HasMore bool `json:"has_more"`
}

GetAlerts200Response struct for GetAlerts200Response

func NewGetAlerts200Response

func NewGetAlerts200Response(alerts []Alert, hasMore bool) *GetAlerts200Response

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

func NewGetAlerts200ResponseWithDefaults

func NewGetAlerts200ResponseWithDefaults() *GetAlerts200Response

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

func (*GetAlerts200Response) GetAlerts

func (o *GetAlerts200Response) GetAlerts() []Alert

GetAlerts returns the Alerts field value

func (*GetAlerts200Response) GetAlertsOk

func (o *GetAlerts200Response) GetAlertsOk() ([]Alert, bool)

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

func (*GetAlerts200Response) GetHasMore

func (o *GetAlerts200Response) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*GetAlerts200Response) GetHasMoreOk

func (o *GetAlerts200Response) GetHasMoreOk() (*bool, bool)

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

func (GetAlerts200Response) MarshalJSON

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

func (*GetAlerts200Response) SetAlerts

func (o *GetAlerts200Response) SetAlerts(v []Alert)

SetAlerts sets field value

func (*GetAlerts200Response) SetHasMore

func (o *GetAlerts200Response) SetHasMore(v bool)

SetHasMore sets field value

func (GetAlerts200Response) ToMap

func (o GetAlerts200Response) ToMap() (map[string]interface{}, error)

func (*GetAlerts200Response) UnmarshalJSON

func (o *GetAlerts200Response) UnmarshalJSON(data []byte) (err error)

type GetBillingAccounts200Response

type GetBillingAccounts200Response struct {
	BillingAccounts []BillingAccount `json:"billing_accounts,omitempty"`
}

GetBillingAccounts200Response struct for GetBillingAccounts200Response

func NewGetBillingAccounts200Response

func NewGetBillingAccounts200Response() *GetBillingAccounts200Response

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

func NewGetBillingAccounts200ResponseWithDefaults

func NewGetBillingAccounts200ResponseWithDefaults() *GetBillingAccounts200Response

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

func (*GetBillingAccounts200Response) GetBillingAccounts

func (o *GetBillingAccounts200Response) GetBillingAccounts() []BillingAccount

GetBillingAccounts returns the BillingAccounts field value if set, zero value otherwise.

func (*GetBillingAccounts200Response) GetBillingAccountsOk

func (o *GetBillingAccounts200Response) GetBillingAccountsOk() ([]BillingAccount, bool)

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

func (*GetBillingAccounts200Response) HasBillingAccounts

func (o *GetBillingAccounts200Response) HasBillingAccounts() bool

HasBillingAccounts returns a boolean if a field has been set.

func (GetBillingAccounts200Response) MarshalJSON

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

func (*GetBillingAccounts200Response) SetBillingAccounts

func (o *GetBillingAccounts200Response) SetBillingAccounts(v []BillingAccount)

SetBillingAccounts gets a reference to the given []BillingAccount and assigns it to the BillingAccounts field.

func (GetBillingAccounts200Response) ToMap

func (o GetBillingAccounts200Response) ToMap() (map[string]interface{}, error)

type GetDataUsage200Response

type GetDataUsage200Response struct {
	Data []GetDataUsage200ResponseDataInner `json:"data,omitempty"`
}

GetDataUsage200Response struct for GetDataUsage200Response

func NewGetDataUsage200Response

func NewGetDataUsage200Response() *GetDataUsage200Response

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

func NewGetDataUsage200ResponseWithDefaults

func NewGetDataUsage200ResponseWithDefaults() *GetDataUsage200Response

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

func (*GetDataUsage200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetDataUsage200Response) GetDataOk

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

func (*GetDataUsage200Response) HasData

func (o *GetDataUsage200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (GetDataUsage200Response) MarshalJSON

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

func (*GetDataUsage200Response) SetData

SetData gets a reference to the given []GetDataUsage200ResponseDataInner and assigns it to the Data field.

func (GetDataUsage200Response) ToMap

func (o GetDataUsage200Response) ToMap() (map[string]interface{}, error)

type GetDataUsage200ResponseDataInner

type GetDataUsage200ResponseDataInner struct {
	Data []UsageData `json:"data"`
	// The device UID this usage data belongs to (only present when aggregate is 'device')
	Device *string `json:"device,omitempty"`
	// The fleet UID this usage data belongs to (only present when aggregate is 'fleet')
	Fleet *string `json:"fleet,omitempty"`
	// The ICCID of the cellular SIM card (only present when type is 'cellular')
	Iccid *string `json:"iccid,omitempty"`
	// The IMSI of the satellite device (only present when type is 'satellite')
	Imsi *string `json:"imsi,omitempty"`
	// The type of connectivity
	Type string `json:"type"`
}

GetDataUsage200ResponseDataInner struct for GetDataUsage200ResponseDataInner

func NewGetDataUsage200ResponseDataInner

func NewGetDataUsage200ResponseDataInner(data []UsageData, type_ string) *GetDataUsage200ResponseDataInner

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

func NewGetDataUsage200ResponseDataInnerWithDefaults

func NewGetDataUsage200ResponseDataInnerWithDefaults() *GetDataUsage200ResponseDataInner

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

func (*GetDataUsage200ResponseDataInner) GetData

GetData returns the Data field value

func (*GetDataUsage200ResponseDataInner) GetDataOk

func (o *GetDataUsage200ResponseDataInner) GetDataOk() ([]UsageData, bool)

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

func (*GetDataUsage200ResponseDataInner) GetDevice

GetDevice returns the Device field value if set, zero value otherwise.

func (*GetDataUsage200ResponseDataInner) GetDeviceOk

func (o *GetDataUsage200ResponseDataInner) GetDeviceOk() (*string, bool)

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

func (*GetDataUsage200ResponseDataInner) GetFleet

GetFleet returns the Fleet field value if set, zero value otherwise.

func (*GetDataUsage200ResponseDataInner) GetFleetOk

func (o *GetDataUsage200ResponseDataInner) GetFleetOk() (*string, bool)

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

func (*GetDataUsage200ResponseDataInner) GetIccid

GetIccid returns the Iccid field value if set, zero value otherwise.

func (*GetDataUsage200ResponseDataInner) GetIccidOk

func (o *GetDataUsage200ResponseDataInner) GetIccidOk() (*string, bool)

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

func (*GetDataUsage200ResponseDataInner) GetImsi

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

func (*GetDataUsage200ResponseDataInner) GetImsiOk

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

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

func (*GetDataUsage200ResponseDataInner) GetType

GetType returns the Type field value

func (*GetDataUsage200ResponseDataInner) GetTypeOk

func (o *GetDataUsage200ResponseDataInner) GetTypeOk() (*string, bool)

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

func (*GetDataUsage200ResponseDataInner) HasDevice

func (o *GetDataUsage200ResponseDataInner) HasDevice() bool

HasDevice returns a boolean if a field has been set.

func (*GetDataUsage200ResponseDataInner) HasFleet

func (o *GetDataUsage200ResponseDataInner) HasFleet() bool

HasFleet returns a boolean if a field has been set.

func (*GetDataUsage200ResponseDataInner) HasIccid

func (o *GetDataUsage200ResponseDataInner) HasIccid() bool

HasIccid returns a boolean if a field has been set.

func (*GetDataUsage200ResponseDataInner) HasImsi

HasImsi returns a boolean if a field has been set.

func (GetDataUsage200ResponseDataInner) MarshalJSON

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

func (*GetDataUsage200ResponseDataInner) SetData

SetData sets field value

func (*GetDataUsage200ResponseDataInner) SetDevice

func (o *GetDataUsage200ResponseDataInner) SetDevice(v string)

SetDevice gets a reference to the given string and assigns it to the Device field.

func (*GetDataUsage200ResponseDataInner) SetFleet

SetFleet gets a reference to the given string and assigns it to the Fleet field.

func (*GetDataUsage200ResponseDataInner) SetIccid

SetIccid gets a reference to the given string and assigns it to the Iccid field.

func (*GetDataUsage200ResponseDataInner) SetImsi

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

func (*GetDataUsage200ResponseDataInner) SetType

SetType sets field value

func (GetDataUsage200ResponseDataInner) ToMap

func (o GetDataUsage200ResponseDataInner) ToMap() (map[string]interface{}, error)

func (*GetDataUsage200ResponseDataInner) UnmarshalJSON

func (o *GetDataUsage200ResponseDataInner) UnmarshalJSON(data []byte) (err error)

type GetDbNote200Response

type GetDbNote200Response struct {
	// The note body
	Body map[string]interface{} `json:"body,omitempty"`
	// The note payload
	Payload *string `json:"payload,omitempty"`
	// The time the Note was added to the Notecard or Notehub
	Time *int32 `json:"time,omitempty"`
}

GetDbNote200Response struct for GetDbNote200Response

func NewGetDbNote200Response

func NewGetDbNote200Response() *GetDbNote200Response

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

func NewGetDbNote200ResponseWithDefaults

func NewGetDbNote200ResponseWithDefaults() *GetDbNote200Response

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

func (*GetDbNote200Response) GetBody

func (o *GetDbNote200Response) GetBody() map[string]interface{}

GetBody returns the Body field value if set, zero value otherwise.

func (*GetDbNote200Response) GetBodyOk

func (o *GetDbNote200Response) GetBodyOk() (map[string]interface{}, bool)

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

func (*GetDbNote200Response) GetPayload

func (o *GetDbNote200Response) GetPayload() string

GetPayload returns the Payload field value if set, zero value otherwise.

func (*GetDbNote200Response) GetPayloadOk

func (o *GetDbNote200Response) GetPayloadOk() (*string, bool)

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

func (*GetDbNote200Response) GetTime

func (o *GetDbNote200Response) GetTime() int32

GetTime returns the Time field value if set, zero value otherwise.

func (*GetDbNote200Response) GetTimeOk

func (o *GetDbNote200Response) GetTimeOk() (*int32, bool)

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

func (*GetDbNote200Response) HasBody

func (o *GetDbNote200Response) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*GetDbNote200Response) HasPayload

func (o *GetDbNote200Response) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*GetDbNote200Response) HasTime

func (o *GetDbNote200Response) HasTime() bool

HasTime returns a boolean if a field has been set.

func (GetDbNote200Response) MarshalJSON

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

func (*GetDbNote200Response) SetBody

func (o *GetDbNote200Response) SetBody(v map[string]interface{})

SetBody gets a reference to the given map[string]interface{} and assigns it to the Body field.

func (*GetDbNote200Response) SetPayload

func (o *GetDbNote200Response) SetPayload(v string)

SetPayload gets a reference to the given string and assigns it to the Payload field.

func (*GetDbNote200Response) SetTime

func (o *GetDbNote200Response) SetTime(v int32)

SetTime gets a reference to the given int32 and assigns it to the Time field.

func (GetDbNote200Response) ToMap

func (o GetDbNote200Response) ToMap() (map[string]interface{}, error)

type GetDeviceEnvironmentVariablesByPin200Response

type GetDeviceEnvironmentVariablesByPin200Response struct {
	// The environment variables for this device that have been set using host firmware or the Notehub API or UI.
	EnvironmentVariables map[string]string `json:"environment_variables"`
	// The environment variables as they will be seen by the device, fully resolved with project/fleet/device prioritization rules.
	EnvironmentVariablesEffective *map[string]string `json:"environment_variables_effective,omitempty"`
	// The environment variables that have been set using the env.default request through the Notecard API.
	EnvironmentVariablesEnvDefault map[string]string `json:"environment_variables_env_default"`
}

GetDeviceEnvironmentVariablesByPin200Response struct for GetDeviceEnvironmentVariablesByPin200Response

func NewGetDeviceEnvironmentVariablesByPin200Response

func NewGetDeviceEnvironmentVariablesByPin200Response(environmentVariables map[string]string, environmentVariablesEnvDefault map[string]string) *GetDeviceEnvironmentVariablesByPin200Response

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

func NewGetDeviceEnvironmentVariablesByPin200ResponseWithDefaults

func NewGetDeviceEnvironmentVariablesByPin200ResponseWithDefaults() *GetDeviceEnvironmentVariablesByPin200Response

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

func (*GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariables

func (o *GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariables() map[string]string

GetEnvironmentVariables returns the EnvironmentVariables field value

func (*GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesEffective

func (o *GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesEffective() map[string]string

GetEnvironmentVariablesEffective returns the EnvironmentVariablesEffective field value if set, zero value otherwise.

func (*GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesEffectiveOk

func (o *GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesEffectiveOk() (*map[string]string, bool)

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

func (*GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesEnvDefault

func (o *GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesEnvDefault() map[string]string

GetEnvironmentVariablesEnvDefault returns the EnvironmentVariablesEnvDefault field value

func (*GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesEnvDefaultOk

func (o *GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesEnvDefaultOk() (*map[string]string, bool)

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

func (*GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesOk

func (o *GetDeviceEnvironmentVariablesByPin200Response) GetEnvironmentVariablesOk() (*map[string]string, bool)

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

func (*GetDeviceEnvironmentVariablesByPin200Response) HasEnvironmentVariablesEffective

func (o *GetDeviceEnvironmentVariablesByPin200Response) HasEnvironmentVariablesEffective() bool

HasEnvironmentVariablesEffective returns a boolean if a field has been set.

func (GetDeviceEnvironmentVariablesByPin200Response) MarshalJSON

func (*GetDeviceEnvironmentVariablesByPin200Response) SetEnvironmentVariables

func (o *GetDeviceEnvironmentVariablesByPin200Response) SetEnvironmentVariables(v map[string]string)

SetEnvironmentVariables sets field value

func (*GetDeviceEnvironmentVariablesByPin200Response) SetEnvironmentVariablesEffective

func (o *GetDeviceEnvironmentVariablesByPin200Response) SetEnvironmentVariablesEffective(v map[string]string)

SetEnvironmentVariablesEffective gets a reference to the given map[string]string and assigns it to the EnvironmentVariablesEffective field.

func (*GetDeviceEnvironmentVariablesByPin200Response) SetEnvironmentVariablesEnvDefault

func (o *GetDeviceEnvironmentVariablesByPin200Response) SetEnvironmentVariablesEnvDefault(v map[string]string)

SetEnvironmentVariablesEnvDefault sets field value

func (GetDeviceEnvironmentVariablesByPin200Response) ToMap

func (o GetDeviceEnvironmentVariablesByPin200Response) ToMap() (map[string]interface{}, error)

func (*GetDeviceEnvironmentVariablesByPin200Response) UnmarshalJSON

func (o *GetDeviceEnvironmentVariablesByPin200Response) UnmarshalJSON(data []byte) (err error)

type GetDeviceFleets200Response

type GetDeviceFleets200Response struct {
	Fleets []Fleet `json:"fleets"`
}

GetDeviceFleets200Response struct for GetDeviceFleets200Response

func NewGetDeviceFleets200Response

func NewGetDeviceFleets200Response(fleets []Fleet) *GetDeviceFleets200Response

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

func NewGetDeviceFleets200ResponseWithDefaults

func NewGetDeviceFleets200ResponseWithDefaults() *GetDeviceFleets200Response

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

func (*GetDeviceFleets200Response) GetFleets

func (o *GetDeviceFleets200Response) GetFleets() []Fleet

GetFleets returns the Fleets field value

func (*GetDeviceFleets200Response) GetFleetsOk

func (o *GetDeviceFleets200Response) GetFleetsOk() ([]Fleet, bool)

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

func (GetDeviceFleets200Response) MarshalJSON

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

func (*GetDeviceFleets200Response) SetFleets

func (o *GetDeviceFleets200Response) SetFleets(v []Fleet)

SetFleets sets field value

func (GetDeviceFleets200Response) ToMap

func (o GetDeviceFleets200Response) ToMap() (map[string]interface{}, error)

func (*GetDeviceFleets200Response) UnmarshalJSON

func (o *GetDeviceFleets200Response) UnmarshalJSON(data []byte) (err error)

type GetDeviceHealthLog200Response

type GetDeviceHealthLog200Response struct {
	HealthLog []GetDeviceHealthLog200ResponseHealthLogInner `json:"health_log"`
}

GetDeviceHealthLog200Response struct for GetDeviceHealthLog200Response

func NewGetDeviceHealthLog200Response

func NewGetDeviceHealthLog200Response(healthLog []GetDeviceHealthLog200ResponseHealthLogInner) *GetDeviceHealthLog200Response

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

func NewGetDeviceHealthLog200ResponseWithDefaults

func NewGetDeviceHealthLog200ResponseWithDefaults() *GetDeviceHealthLog200Response

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

func (*GetDeviceHealthLog200Response) GetHealthLog

GetHealthLog returns the HealthLog field value

func (*GetDeviceHealthLog200Response) GetHealthLogOk

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

func (GetDeviceHealthLog200Response) MarshalJSON

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

func (*GetDeviceHealthLog200Response) SetHealthLog

SetHealthLog sets field value

func (GetDeviceHealthLog200Response) ToMap

func (o GetDeviceHealthLog200Response) ToMap() (map[string]interface{}, error)

func (*GetDeviceHealthLog200Response) UnmarshalJSON

func (o *GetDeviceHealthLog200Response) UnmarshalJSON(data []byte) (err error)

type GetDeviceHealthLog200ResponseHealthLogInner

type GetDeviceHealthLog200ResponseHealthLogInner struct {
	Alert bool      `json:"alert"`
	Text  string    `json:"text"`
	When  time.Time `json:"when"`
}

GetDeviceHealthLog200ResponseHealthLogInner struct for GetDeviceHealthLog200ResponseHealthLogInner

func NewGetDeviceHealthLog200ResponseHealthLogInner

func NewGetDeviceHealthLog200ResponseHealthLogInner(alert bool, text string, when time.Time) *GetDeviceHealthLog200ResponseHealthLogInner

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

func NewGetDeviceHealthLog200ResponseHealthLogInnerWithDefaults

func NewGetDeviceHealthLog200ResponseHealthLogInnerWithDefaults() *GetDeviceHealthLog200ResponseHealthLogInner

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

func (*GetDeviceHealthLog200ResponseHealthLogInner) GetAlert

GetAlert returns the Alert field value

func (*GetDeviceHealthLog200ResponseHealthLogInner) GetAlertOk

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

func (*GetDeviceHealthLog200ResponseHealthLogInner) GetText

GetText returns the Text field value

func (*GetDeviceHealthLog200ResponseHealthLogInner) GetTextOk

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

func (*GetDeviceHealthLog200ResponseHealthLogInner) GetWhen

GetWhen returns the When field value

func (*GetDeviceHealthLog200ResponseHealthLogInner) GetWhenOk

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

func (GetDeviceHealthLog200ResponseHealthLogInner) MarshalJSON

func (*GetDeviceHealthLog200ResponseHealthLogInner) SetAlert

SetAlert sets field value

func (*GetDeviceHealthLog200ResponseHealthLogInner) SetText

SetText sets field value

func (*GetDeviceHealthLog200ResponseHealthLogInner) SetWhen

SetWhen sets field value

func (GetDeviceHealthLog200ResponseHealthLogInner) ToMap

func (o GetDeviceHealthLog200ResponseHealthLogInner) ToMap() (map[string]interface{}, error)

func (*GetDeviceHealthLog200ResponseHealthLogInner) UnmarshalJSON

func (o *GetDeviceHealthLog200ResponseHealthLogInner) UnmarshalJSON(data []byte) (err error)

type GetDeviceLatestEvents200Response

type GetDeviceLatestEvents200Response struct {
	// The set of latest events.  Will always include the current \"session.begin\" event.
	LatestEvents []Event `json:"latest_events,omitempty"`
}

GetDeviceLatestEvents200Response struct for GetDeviceLatestEvents200Response

func NewGetDeviceLatestEvents200Response

func NewGetDeviceLatestEvents200Response() *GetDeviceLatestEvents200Response

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

func NewGetDeviceLatestEvents200ResponseWithDefaults

func NewGetDeviceLatestEvents200ResponseWithDefaults() *GetDeviceLatestEvents200Response

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

func (*GetDeviceLatestEvents200Response) GetLatestEvents

func (o *GetDeviceLatestEvents200Response) GetLatestEvents() []Event

GetLatestEvents returns the LatestEvents field value if set, zero value otherwise.

func (*GetDeviceLatestEvents200Response) GetLatestEventsOk

func (o *GetDeviceLatestEvents200Response) GetLatestEventsOk() ([]Event, bool)

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

func (*GetDeviceLatestEvents200Response) HasLatestEvents

func (o *GetDeviceLatestEvents200Response) HasLatestEvents() bool

HasLatestEvents returns a boolean if a field has been set.

func (GetDeviceLatestEvents200Response) MarshalJSON

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

func (*GetDeviceLatestEvents200Response) SetLatestEvents

func (o *GetDeviceLatestEvents200Response) SetLatestEvents(v []Event)

SetLatestEvents gets a reference to the given []Event and assigns it to the LatestEvents field.

func (GetDeviceLatestEvents200Response) ToMap

func (o GetDeviceLatestEvents200Response) ToMap() (map[string]interface{}, error)

type GetDevicePlans200Response

type GetDevicePlans200Response struct {
	CellularPlans []CellularPlan `json:"cellular_plans,omitempty"`
}

GetDevicePlans200Response struct for GetDevicePlans200Response

func NewGetDevicePlans200Response

func NewGetDevicePlans200Response() *GetDevicePlans200Response

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

func NewGetDevicePlans200ResponseWithDefaults

func NewGetDevicePlans200ResponseWithDefaults() *GetDevicePlans200Response

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

func (*GetDevicePlans200Response) GetCellularPlans

func (o *GetDevicePlans200Response) GetCellularPlans() []CellularPlan

GetCellularPlans returns the CellularPlans field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetDevicePlans200Response) GetCellularPlansOk

func (o *GetDevicePlans200Response) GetCellularPlansOk() ([]CellularPlan, bool)

GetCellularPlansOk returns a tuple with the CellularPlans field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GetDevicePlans200Response) HasCellularPlans

func (o *GetDevicePlans200Response) HasCellularPlans() bool

HasCellularPlans returns a boolean if a field has been set.

func (GetDevicePlans200Response) MarshalJSON

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

func (*GetDevicePlans200Response) SetCellularPlans

func (o *GetDevicePlans200Response) SetCellularPlans(v []CellularPlan)

SetCellularPlans gets a reference to the given []CellularPlan and assigns it to the CellularPlans field.

func (GetDevicePlans200Response) ToMap

func (o GetDevicePlans200Response) ToMap() (map[string]interface{}, error)

type GetDevicePublicKey200Response

type GetDevicePublicKey200Response struct {
	Key string `json:"key"`
	Uid string `json:"uid"`
}

GetDevicePublicKey200Response struct for GetDevicePublicKey200Response

func NewGetDevicePublicKey200Response

func NewGetDevicePublicKey200Response(key string, uid string) *GetDevicePublicKey200Response

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

func NewGetDevicePublicKey200ResponseWithDefaults

func NewGetDevicePublicKey200ResponseWithDefaults() *GetDevicePublicKey200Response

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

func (*GetDevicePublicKey200Response) GetKey

GetKey returns the Key field value

func (*GetDevicePublicKey200Response) GetKeyOk

func (o *GetDevicePublicKey200Response) GetKeyOk() (*string, bool)

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

func (*GetDevicePublicKey200Response) GetUid

GetUid returns the Uid field value

func (*GetDevicePublicKey200Response) GetUidOk

func (o *GetDevicePublicKey200Response) GetUidOk() (*string, bool)

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

func (GetDevicePublicKey200Response) MarshalJSON

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

func (*GetDevicePublicKey200Response) SetKey

SetKey sets field value

func (*GetDevicePublicKey200Response) SetUid

SetUid sets field value

func (GetDevicePublicKey200Response) ToMap

func (o GetDevicePublicKey200Response) ToMap() (map[string]interface{}, error)

func (*GetDevicePublicKey200Response) UnmarshalJSON

func (o *GetDevicePublicKey200Response) UnmarshalJSON(data []byte) (err error)

type GetDevicePublicKeys200Response

type GetDevicePublicKeys200Response struct {
	DevicePublicKeys []GetDevicePublicKeys200ResponseDevicePublicKeysInner `json:"device_public_keys"`
	HasMore          bool                                                  `json:"has_more"`
}

GetDevicePublicKeys200Response struct for GetDevicePublicKeys200Response

func NewGetDevicePublicKeys200Response

func NewGetDevicePublicKeys200Response(devicePublicKeys []GetDevicePublicKeys200ResponseDevicePublicKeysInner, hasMore bool) *GetDevicePublicKeys200Response

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

func NewGetDevicePublicKeys200ResponseWithDefaults

func NewGetDevicePublicKeys200ResponseWithDefaults() *GetDevicePublicKeys200Response

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

func (*GetDevicePublicKeys200Response) GetDevicePublicKeys

GetDevicePublicKeys returns the DevicePublicKeys field value

func (*GetDevicePublicKeys200Response) GetDevicePublicKeysOk

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

func (*GetDevicePublicKeys200Response) GetHasMore

func (o *GetDevicePublicKeys200Response) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*GetDevicePublicKeys200Response) GetHasMoreOk

func (o *GetDevicePublicKeys200Response) GetHasMoreOk() (*bool, bool)

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

func (GetDevicePublicKeys200Response) MarshalJSON

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

func (*GetDevicePublicKeys200Response) SetDevicePublicKeys

SetDevicePublicKeys sets field value

func (*GetDevicePublicKeys200Response) SetHasMore

func (o *GetDevicePublicKeys200Response) SetHasMore(v bool)

SetHasMore sets field value

func (GetDevicePublicKeys200Response) ToMap

func (o GetDevicePublicKeys200Response) ToMap() (map[string]interface{}, error)

func (*GetDevicePublicKeys200Response) UnmarshalJSON

func (o *GetDevicePublicKeys200Response) UnmarshalJSON(data []byte) (err error)

type GetDevicePublicKeys200ResponseDevicePublicKeysInner

type GetDevicePublicKeys200ResponseDevicePublicKeysInner struct {
	Key *string `json:"key,omitempty"`
	Uid *string `json:"uid,omitempty"`
}

GetDevicePublicKeys200ResponseDevicePublicKeysInner struct for GetDevicePublicKeys200ResponseDevicePublicKeysInner

func NewGetDevicePublicKeys200ResponseDevicePublicKeysInner

func NewGetDevicePublicKeys200ResponseDevicePublicKeysInner() *GetDevicePublicKeys200ResponseDevicePublicKeysInner

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

func NewGetDevicePublicKeys200ResponseDevicePublicKeysInnerWithDefaults

func NewGetDevicePublicKeys200ResponseDevicePublicKeysInnerWithDefaults() *GetDevicePublicKeys200ResponseDevicePublicKeysInner

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

func (*GetDevicePublicKeys200ResponseDevicePublicKeysInner) GetKey

GetKey returns the Key field value if set, zero value otherwise.

func (*GetDevicePublicKeys200ResponseDevicePublicKeysInner) GetKeyOk

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

func (*GetDevicePublicKeys200ResponseDevicePublicKeysInner) GetUid

GetUid returns the Uid field value if set, zero value otherwise.

func (*GetDevicePublicKeys200ResponseDevicePublicKeysInner) GetUidOk

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

func (*GetDevicePublicKeys200ResponseDevicePublicKeysInner) HasKey

HasKey returns a boolean if a field has been set.

func (*GetDevicePublicKeys200ResponseDevicePublicKeysInner) HasUid

HasUid returns a boolean if a field has been set.

func (GetDevicePublicKeys200ResponseDevicePublicKeysInner) MarshalJSON

func (*GetDevicePublicKeys200ResponseDevicePublicKeysInner) SetKey

SetKey gets a reference to the given string and assigns it to the Key field.

func (*GetDevicePublicKeys200ResponseDevicePublicKeysInner) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field.

func (GetDevicePublicKeys200ResponseDevicePublicKeysInner) ToMap

type GetDeviceSessions200Response

type GetDeviceSessions200Response struct {
	HasMore  bool            `json:"has_more"`
	Sessions []DeviceSession `json:"sessions"`
}

GetDeviceSessions200Response struct for GetDeviceSessions200Response

func NewGetDeviceSessions200Response

func NewGetDeviceSessions200Response(hasMore bool, sessions []DeviceSession) *GetDeviceSessions200Response

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

func NewGetDeviceSessions200ResponseWithDefaults

func NewGetDeviceSessions200ResponseWithDefaults() *GetDeviceSessions200Response

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

func (*GetDeviceSessions200Response) GetHasMore

func (o *GetDeviceSessions200Response) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*GetDeviceSessions200Response) GetHasMoreOk

func (o *GetDeviceSessions200Response) GetHasMoreOk() (*bool, bool)

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

func (*GetDeviceSessions200Response) GetSessions

func (o *GetDeviceSessions200Response) GetSessions() []DeviceSession

GetSessions returns the Sessions field value

func (*GetDeviceSessions200Response) GetSessionsOk

func (o *GetDeviceSessions200Response) GetSessionsOk() ([]DeviceSession, bool)

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

func (GetDeviceSessions200Response) MarshalJSON

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

func (*GetDeviceSessions200Response) SetHasMore

func (o *GetDeviceSessions200Response) SetHasMore(v bool)

SetHasMore sets field value

func (*GetDeviceSessions200Response) SetSessions

func (o *GetDeviceSessions200Response) SetSessions(v []DeviceSession)

SetSessions sets field value

func (GetDeviceSessions200Response) ToMap

func (o GetDeviceSessions200Response) ToMap() (map[string]interface{}, error)

func (*GetDeviceSessions200Response) UnmarshalJSON

func (o *GetDeviceSessions200Response) UnmarshalJSON(data []byte) (err error)

type GetDevices200Response

type GetDevices200Response struct {
	Devices []Device `json:"devices"`
	HasMore bool     `json:"has_more"`
}

GetDevices200Response struct for GetDevices200Response

func NewGetDevices200Response

func NewGetDevices200Response(devices []Device, hasMore bool) *GetDevices200Response

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

func NewGetDevices200ResponseWithDefaults

func NewGetDevices200ResponseWithDefaults() *GetDevices200Response

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

func (*GetDevices200Response) GetDevices

func (o *GetDevices200Response) GetDevices() []Device

GetDevices returns the Devices field value

func (*GetDevices200Response) GetDevicesOk

func (o *GetDevices200Response) GetDevicesOk() ([]Device, bool)

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

func (*GetDevices200Response) GetHasMore

func (o *GetDevices200Response) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*GetDevices200Response) GetHasMoreOk

func (o *GetDevices200Response) GetHasMoreOk() (*bool, bool)

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

func (GetDevices200Response) MarshalJSON

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

func (*GetDevices200Response) SetDevices

func (o *GetDevices200Response) SetDevices(v []Device)

SetDevices sets field value

func (*GetDevices200Response) SetHasMore

func (o *GetDevices200Response) SetHasMore(v bool)

SetHasMore sets field value

func (GetDevices200Response) ToMap

func (o GetDevices200Response) ToMap() (map[string]interface{}, error)

func (*GetDevices200Response) UnmarshalJSON

func (o *GetDevices200Response) UnmarshalJSON(data []byte) (err error)

type GetEvents200Response

type GetEvents200Response struct {
	Events []Event `json:"events"`
	// True if there are more events
	HasMore bool `json:"has_more"`
	// The UID of the last event returned
	Through *string `json:"through,omitempty"`
}

GetEvents200Response struct for GetEvents200Response

func NewGetEvents200Response

func NewGetEvents200Response(events []Event, hasMore bool) *GetEvents200Response

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

func NewGetEvents200ResponseWithDefaults

func NewGetEvents200ResponseWithDefaults() *GetEvents200Response

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

func (*GetEvents200Response) GetEvents

func (o *GetEvents200Response) GetEvents() []Event

GetEvents returns the Events field value

func (*GetEvents200Response) GetEventsOk

func (o *GetEvents200Response) GetEventsOk() ([]Event, bool)

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

func (*GetEvents200Response) GetHasMore

func (o *GetEvents200Response) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*GetEvents200Response) GetHasMoreOk

func (o *GetEvents200Response) GetHasMoreOk() (*bool, bool)

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

func (*GetEvents200Response) GetThrough

func (o *GetEvents200Response) GetThrough() string

GetThrough returns the Through field value if set, zero value otherwise.

func (*GetEvents200Response) GetThroughOk

func (o *GetEvents200Response) GetThroughOk() (*string, bool)

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

func (*GetEvents200Response) HasThrough

func (o *GetEvents200Response) HasThrough() bool

HasThrough returns a boolean if a field has been set.

func (GetEvents200Response) MarshalJSON

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

func (*GetEvents200Response) SetEvents

func (o *GetEvents200Response) SetEvents(v []Event)

SetEvents sets field value

func (*GetEvents200Response) SetHasMore

func (o *GetEvents200Response) SetHasMore(v bool)

SetHasMore sets field value

func (*GetEvents200Response) SetThrough

func (o *GetEvents200Response) SetThrough(v string)

SetThrough gets a reference to the given string and assigns it to the Through field.

func (GetEvents200Response) ToMap

func (o GetEvents200Response) ToMap() (map[string]interface{}, error)

func (*GetEvents200Response) UnmarshalJSON

func (o *GetEvents200Response) UnmarshalJSON(data []byte) (err error)

type GetEventsByCursor200Response

type GetEventsByCursor200Response struct {
	Events []Event `json:"events"`
	// True if there are more events
	HasMore bool `json:"has_more"`
	// The cursor value of the next result, which is intended to be used as the \"cursor\" parameter value of the next call to this method. An empty string is returned if there are no more results after this results set.
	NextCursor string `json:"next_cursor"`
}

GetEventsByCursor200Response struct for GetEventsByCursor200Response

func NewGetEventsByCursor200Response

func NewGetEventsByCursor200Response(events []Event, hasMore bool, nextCursor string) *GetEventsByCursor200Response

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

func NewGetEventsByCursor200ResponseWithDefaults

func NewGetEventsByCursor200ResponseWithDefaults() *GetEventsByCursor200Response

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

func (*GetEventsByCursor200Response) GetEvents

func (o *GetEventsByCursor200Response) GetEvents() []Event

GetEvents returns the Events field value

func (*GetEventsByCursor200Response) GetEventsOk

func (o *GetEventsByCursor200Response) GetEventsOk() ([]Event, bool)

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

func (*GetEventsByCursor200Response) GetHasMore

func (o *GetEventsByCursor200Response) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*GetEventsByCursor200Response) GetHasMoreOk

func (o *GetEventsByCursor200Response) GetHasMoreOk() (*bool, bool)

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

func (*GetEventsByCursor200Response) GetNextCursor

func (o *GetEventsByCursor200Response) GetNextCursor() string

GetNextCursor returns the NextCursor field value

func (*GetEventsByCursor200Response) GetNextCursorOk

func (o *GetEventsByCursor200Response) GetNextCursorOk() (*string, bool)

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

func (GetEventsByCursor200Response) MarshalJSON

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

func (*GetEventsByCursor200Response) SetEvents

func (o *GetEventsByCursor200Response) SetEvents(v []Event)

SetEvents sets field value

func (*GetEventsByCursor200Response) SetHasMore

func (o *GetEventsByCursor200Response) SetHasMore(v bool)

SetHasMore sets field value

func (*GetEventsByCursor200Response) SetNextCursor

func (o *GetEventsByCursor200Response) SetNextCursor(v string)

SetNextCursor sets field value

func (GetEventsByCursor200Response) ToMap

func (o GetEventsByCursor200Response) ToMap() (map[string]interface{}, error)

func (*GetEventsByCursor200Response) UnmarshalJSON

func (o *GetEventsByCursor200Response) UnmarshalJSON(data []byte) (err error)

type GetNotefile200Response

type GetNotefile200Response struct {
	// The number of pending changes in the Notefile.
	Changes *int32 `json:"changes,omitempty"`
	// An object with a key for each note and a value object with the body of each Note and the time the Note was added.
	Notes map[string]interface{} `json:"notes,omitempty"`
	// The total number of notes.
	Total *int32 `json:"total,omitempty"`
}

GetNotefile200Response struct for GetNotefile200Response

func NewGetNotefile200Response

func NewGetNotefile200Response() *GetNotefile200Response

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

func NewGetNotefile200ResponseWithDefaults

func NewGetNotefile200ResponseWithDefaults() *GetNotefile200Response

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

func (*GetNotefile200Response) GetChanges

func (o *GetNotefile200Response) GetChanges() int32

GetChanges returns the Changes field value if set, zero value otherwise.

func (*GetNotefile200Response) GetChangesOk

func (o *GetNotefile200Response) GetChangesOk() (*int32, bool)

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

func (*GetNotefile200Response) GetNotes

func (o *GetNotefile200Response) GetNotes() map[string]interface{}

GetNotes returns the Notes field value if set, zero value otherwise.

func (*GetNotefile200Response) GetNotesOk

func (o *GetNotefile200Response) GetNotesOk() (map[string]interface{}, bool)

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

func (*GetNotefile200Response) GetTotal

func (o *GetNotefile200Response) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*GetNotefile200Response) GetTotalOk

func (o *GetNotefile200Response) GetTotalOk() (*int32, bool)

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

func (*GetNotefile200Response) HasChanges

func (o *GetNotefile200Response) HasChanges() bool

HasChanges returns a boolean if a field has been set.

func (*GetNotefile200Response) HasNotes

func (o *GetNotefile200Response) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*GetNotefile200Response) HasTotal

func (o *GetNotefile200Response) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (GetNotefile200Response) MarshalJSON

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

func (*GetNotefile200Response) SetChanges

func (o *GetNotefile200Response) SetChanges(v int32)

SetChanges gets a reference to the given int32 and assigns it to the Changes field.

func (*GetNotefile200Response) SetNotes

func (o *GetNotefile200Response) SetNotes(v map[string]interface{})

SetNotes gets a reference to the given map[string]interface{} and assigns it to the Notes field.

func (*GetNotefile200Response) SetTotal

func (o *GetNotefile200Response) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (GetNotefile200Response) ToMap

func (o GetNotefile200Response) ToMap() (map[string]interface{}, error)

type GetProducts200Response

type GetProducts200Response struct {
	Products []Product `json:"products,omitempty"`
}

GetProducts200Response struct for GetProducts200Response

func NewGetProducts200Response

func NewGetProducts200Response() *GetProducts200Response

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

func NewGetProducts200ResponseWithDefaults

func NewGetProducts200ResponseWithDefaults() *GetProducts200Response

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

func (*GetProducts200Response) GetProducts

func (o *GetProducts200Response) GetProducts() []Product

GetProducts returns the Products field value if set, zero value otherwise.

func (*GetProducts200Response) GetProductsOk

func (o *GetProducts200Response) GetProductsOk() ([]Product, bool)

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

func (*GetProducts200Response) HasProducts

func (o *GetProducts200Response) HasProducts() bool

HasProducts returns a boolean if a field has been set.

func (GetProducts200Response) MarshalJSON

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

func (*GetProducts200Response) SetProducts

func (o *GetProducts200Response) SetProducts(v []Product)

SetProducts gets a reference to the given []Product and assigns it to the Products field.

func (GetProducts200Response) ToMap

func (o GetProducts200Response) ToMap() (map[string]interface{}, error)

type GetProjectMembers200Response

type GetProjectMembers200Response struct {
	Members []ProjectMember `json:"members"`
}

GetProjectMembers200Response struct for GetProjectMembers200Response

func NewGetProjectMembers200Response

func NewGetProjectMembers200Response(members []ProjectMember) *GetProjectMembers200Response

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

func NewGetProjectMembers200ResponseWithDefaults

func NewGetProjectMembers200ResponseWithDefaults() *GetProjectMembers200Response

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

func (*GetProjectMembers200Response) GetMembers

func (o *GetProjectMembers200Response) GetMembers() []ProjectMember

GetMembers returns the Members field value

func (*GetProjectMembers200Response) GetMembersOk

func (o *GetProjectMembers200Response) GetMembersOk() ([]ProjectMember, bool)

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

func (GetProjectMembers200Response) MarshalJSON

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

func (*GetProjectMembers200Response) SetMembers

func (o *GetProjectMembers200Response) SetMembers(v []ProjectMember)

SetMembers sets field value

func (GetProjectMembers200Response) ToMap

func (o GetProjectMembers200Response) ToMap() (map[string]interface{}, error)

func (*GetProjectMembers200Response) UnmarshalJSON

func (o *GetProjectMembers200Response) UnmarshalJSON(data []byte) (err error)

type GetProjects200Response

type GetProjects200Response struct {
	Projects []Project `json:"projects,omitempty"`
}

GetProjects200Response struct for GetProjects200Response

func NewGetProjects200Response

func NewGetProjects200Response() *GetProjects200Response

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

func NewGetProjects200ResponseWithDefaults

func NewGetProjects200ResponseWithDefaults() *GetProjects200Response

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

func (*GetProjects200Response) GetProjects

func (o *GetProjects200Response) GetProjects() []Project

GetProjects returns the Projects field value if set, zero value otherwise.

func (*GetProjects200Response) GetProjectsOk

func (o *GetProjects200Response) GetProjectsOk() ([]Project, bool)

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

func (*GetProjects200Response) HasProjects

func (o *GetProjects200Response) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (GetProjects200Response) MarshalJSON

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

func (*GetProjects200Response) SetProjects

func (o *GetProjects200Response) SetProjects(v []Project)

SetProjects gets a reference to the given []Project and assigns it to the Projects field.

func (GetProjects200Response) ToMap

func (o GetProjects200Response) ToMap() (map[string]interface{}, error)

type GetRouteLogsUsage200Response

type GetRouteLogsUsage200Response struct {
	RouteLogs []UsageRouteLogsData `json:"route_logs"`
}

GetRouteLogsUsage200Response struct for GetRouteLogsUsage200Response

func NewGetRouteLogsUsage200Response

func NewGetRouteLogsUsage200Response(routeLogs []UsageRouteLogsData) *GetRouteLogsUsage200Response

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

func NewGetRouteLogsUsage200ResponseWithDefaults

func NewGetRouteLogsUsage200ResponseWithDefaults() *GetRouteLogsUsage200Response

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

func (*GetRouteLogsUsage200Response) GetRouteLogs

GetRouteLogs returns the RouteLogs field value

func (*GetRouteLogsUsage200Response) GetRouteLogsOk

func (o *GetRouteLogsUsage200Response) GetRouteLogsOk() ([]UsageRouteLogsData, bool)

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

func (GetRouteLogsUsage200Response) MarshalJSON

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

func (*GetRouteLogsUsage200Response) SetRouteLogs

func (o *GetRouteLogsUsage200Response) SetRouteLogs(v []UsageRouteLogsData)

SetRouteLogs sets field value

func (GetRouteLogsUsage200Response) ToMap

func (o GetRouteLogsUsage200Response) ToMap() (map[string]interface{}, error)

func (*GetRouteLogsUsage200Response) UnmarshalJSON

func (o *GetRouteLogsUsage200Response) UnmarshalJSON(data []byte) (err error)

type GetSessionsUsage200Response

type GetSessionsUsage200Response struct {
	Sessions []UsageSessionsData `json:"sessions"`
}

GetSessionsUsage200Response struct for GetSessionsUsage200Response

func NewGetSessionsUsage200Response

func NewGetSessionsUsage200Response(sessions []UsageSessionsData) *GetSessionsUsage200Response

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

func NewGetSessionsUsage200ResponseWithDefaults

func NewGetSessionsUsage200ResponseWithDefaults() *GetSessionsUsage200Response

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

func (*GetSessionsUsage200Response) GetSessions

GetSessions returns the Sessions field value

func (*GetSessionsUsage200Response) GetSessionsOk

func (o *GetSessionsUsage200Response) GetSessionsOk() ([]UsageSessionsData, bool)

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

func (GetSessionsUsage200Response) MarshalJSON

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

func (*GetSessionsUsage200Response) SetSessions

func (o *GetSessionsUsage200Response) SetSessions(v []UsageSessionsData)

SetSessions sets field value

func (GetSessionsUsage200Response) ToMap

func (o GetSessionsUsage200Response) ToMap() (map[string]interface{}, error)

func (*GetSessionsUsage200Response) UnmarshalJSON

func (o *GetSessionsUsage200Response) UnmarshalJSON(data []byte) (err error)

type GetWebhooks200Response

type GetWebhooks200Response struct {
	Webhooks []WebhookSettings `json:"webhooks,omitempty"`
}

GetWebhooks200Response struct for GetWebhooks200Response

func NewGetWebhooks200Response

func NewGetWebhooks200Response() *GetWebhooks200Response

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

func NewGetWebhooks200ResponseWithDefaults

func NewGetWebhooks200ResponseWithDefaults() *GetWebhooks200Response

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

func (*GetWebhooks200Response) GetWebhooks

func (o *GetWebhooks200Response) GetWebhooks() []WebhookSettings

GetWebhooks returns the Webhooks field value if set, zero value otherwise.

func (*GetWebhooks200Response) GetWebhooksOk

func (o *GetWebhooks200Response) GetWebhooksOk() ([]WebhookSettings, bool)

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

func (*GetWebhooks200Response) HasWebhooks

func (o *GetWebhooks200Response) HasWebhooks() bool

HasWebhooks returns a boolean if a field has been set.

func (GetWebhooks200Response) MarshalJSON

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

func (*GetWebhooks200Response) SetWebhooks

func (o *GetWebhooks200Response) SetWebhooks(v []WebhookSettings)

SetWebhooks gets a reference to the given []WebhookSettings and assigns it to the Webhooks field.

func (GetWebhooks200Response) ToMap

func (o GetWebhooks200Response) ToMap() (map[string]interface{}, error)

type GoogleRoute

type GoogleRoute struct {
	Filter     *Filter                 `json:"filter,omitempty"`
	Fleets     []string                `json:"fleets,omitempty"`
	ThrottleMs *int32                  `json:"throttle_ms,omitempty"`
	Timeout    *int32                  `json:"timeout,omitempty"`
	Token      *string                 `json:"token,omitempty"`
	Transform  *RouteTransformSettings `json:"transform,omitempty"`
	Url        *string                 `json:"url,omitempty"`
}

GoogleRoute struct for GoogleRoute

func NewGoogleRoute

func NewGoogleRoute() *GoogleRoute

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

func NewGoogleRouteWithDefaults

func NewGoogleRouteWithDefaults() *GoogleRoute

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

func (*GoogleRoute) GetFilter

func (o *GoogleRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*GoogleRoute) GetFilterOk

func (o *GoogleRoute) GetFilterOk() (*Filter, bool)

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

func (*GoogleRoute) GetFleets

func (o *GoogleRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*GoogleRoute) GetFleetsOk

func (o *GoogleRoute) GetFleetsOk() ([]string, bool)

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

func (*GoogleRoute) GetThrottleMs

func (o *GoogleRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*GoogleRoute) GetThrottleMsOk

func (o *GoogleRoute) GetThrottleMsOk() (*int32, bool)

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

func (*GoogleRoute) GetTimeout

func (o *GoogleRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*GoogleRoute) GetTimeoutOk

func (o *GoogleRoute) GetTimeoutOk() (*int32, bool)

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

func (*GoogleRoute) GetToken

func (o *GoogleRoute) GetToken() string

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

func (*GoogleRoute) GetTokenOk

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

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

func (*GoogleRoute) GetTransform

func (o *GoogleRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*GoogleRoute) GetTransformOk

func (o *GoogleRoute) GetTransformOk() (*RouteTransformSettings, bool)

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

func (*GoogleRoute) GetUrl

func (o *GoogleRoute) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GoogleRoute) GetUrlOk

func (o *GoogleRoute) GetUrlOk() (*string, bool)

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

func (*GoogleRoute) HasFilter

func (o *GoogleRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*GoogleRoute) HasFleets

func (o *GoogleRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*GoogleRoute) HasThrottleMs

func (o *GoogleRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*GoogleRoute) HasTimeout

func (o *GoogleRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*GoogleRoute) HasToken

func (o *GoogleRoute) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*GoogleRoute) HasTransform

func (o *GoogleRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*GoogleRoute) HasUrl

func (o *GoogleRoute) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (GoogleRoute) MarshalJSON

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

func (*GoogleRoute) SetFilter

func (o *GoogleRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*GoogleRoute) SetFleets

func (o *GoogleRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*GoogleRoute) SetThrottleMs

func (o *GoogleRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*GoogleRoute) SetTimeout

func (o *GoogleRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*GoogleRoute) SetToken

func (o *GoogleRoute) SetToken(v string)

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

func (*GoogleRoute) SetTransform

func (o *GoogleRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*GoogleRoute) SetUrl

func (o *GoogleRoute) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (GoogleRoute) ToMap

func (o GoogleRoute) ToMap() (map[string]interface{}, error)

type HttpRoute

type HttpRoute struct {
	DisableHttpHeaders *bool   `json:"disable_http_headers,omitempty"`
	Filter             *Filter `json:"filter,omitempty"`
	// If non-empty, applies only to the listed fleets.
	Fleets      []string                `json:"fleets,omitempty"`
	HttpHeaders *map[string]string      `json:"http_headers,omitempty"`
	ThrottleMs  *int32                  `json:"throttle_ms,omitempty"`
	Timeout     *int32                  `json:"timeout,omitempty"`
	Transform   *RouteTransformSettings `json:"transform,omitempty"`
	Url         *string                 `json:"url,omitempty"`
}

HttpRoute struct for HttpRoute

func NewHttpRoute

func NewHttpRoute() *HttpRoute

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

func NewHttpRouteWithDefaults

func NewHttpRouteWithDefaults() *HttpRoute

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

func (*HttpRoute) GetDisableHttpHeaders

func (o *HttpRoute) GetDisableHttpHeaders() bool

GetDisableHttpHeaders returns the DisableHttpHeaders field value if set, zero value otherwise.

func (*HttpRoute) GetDisableHttpHeadersOk

func (o *HttpRoute) GetDisableHttpHeadersOk() (*bool, bool)

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

func (*HttpRoute) GetFilter

func (o *HttpRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*HttpRoute) GetFilterOk

func (o *HttpRoute) GetFilterOk() (*Filter, bool)

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

func (*HttpRoute) GetFleets

func (o *HttpRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*HttpRoute) GetFleetsOk

func (o *HttpRoute) GetFleetsOk() ([]string, bool)

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

func (*HttpRoute) GetHttpHeaders

func (o *HttpRoute) GetHttpHeaders() map[string]string

GetHttpHeaders returns the HttpHeaders field value if set, zero value otherwise.

func (*HttpRoute) GetHttpHeadersOk

func (o *HttpRoute) GetHttpHeadersOk() (*map[string]string, bool)

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

func (*HttpRoute) GetThrottleMs

func (o *HttpRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*HttpRoute) GetThrottleMsOk

func (o *HttpRoute) GetThrottleMsOk() (*int32, bool)

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

func (*HttpRoute) GetTimeout

func (o *HttpRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*HttpRoute) GetTimeoutOk

func (o *HttpRoute) GetTimeoutOk() (*int32, bool)

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

func (*HttpRoute) GetTransform

func (o *HttpRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*HttpRoute) GetTransformOk

func (o *HttpRoute) GetTransformOk() (*RouteTransformSettings, bool)

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

func (*HttpRoute) GetUrl

func (o *HttpRoute) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*HttpRoute) GetUrlOk

func (o *HttpRoute) GetUrlOk() (*string, bool)

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

func (*HttpRoute) HasDisableHttpHeaders

func (o *HttpRoute) HasDisableHttpHeaders() bool

HasDisableHttpHeaders returns a boolean if a field has been set.

func (*HttpRoute) HasFilter

func (o *HttpRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*HttpRoute) HasFleets

func (o *HttpRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*HttpRoute) HasHttpHeaders

func (o *HttpRoute) HasHttpHeaders() bool

HasHttpHeaders returns a boolean if a field has been set.

func (*HttpRoute) HasThrottleMs

func (o *HttpRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*HttpRoute) HasTimeout

func (o *HttpRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*HttpRoute) HasTransform

func (o *HttpRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*HttpRoute) HasUrl

func (o *HttpRoute) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (HttpRoute) MarshalJSON

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

func (*HttpRoute) SetDisableHttpHeaders

func (o *HttpRoute) SetDisableHttpHeaders(v bool)

SetDisableHttpHeaders gets a reference to the given bool and assigns it to the DisableHttpHeaders field.

func (*HttpRoute) SetFilter

func (o *HttpRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*HttpRoute) SetFleets

func (o *HttpRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*HttpRoute) SetHttpHeaders

func (o *HttpRoute) SetHttpHeaders(v map[string]string)

SetHttpHeaders gets a reference to the given map[string]string and assigns it to the HttpHeaders field.

func (*HttpRoute) SetThrottleMs

func (o *HttpRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*HttpRoute) SetTimeout

func (o *HttpRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*HttpRoute) SetTransform

func (o *HttpRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*HttpRoute) SetUrl

func (o *HttpRoute) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (HttpRoute) ToMap

func (o HttpRoute) ToMap() (map[string]interface{}, error)

type InlineObject

type InlineObject struct {
	// true when a template is active on the Notefile.
	Template *bool `json:"template,omitempty"`
	// The total number of notes active on the Notefile.
	Total *int32 `json:"total,omitempty"`
}

InlineObject struct for InlineObject

func NewInlineObject

func NewInlineObject() *InlineObject

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

func NewInlineObjectWithDefaults

func NewInlineObjectWithDefaults() *InlineObject

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

func (*InlineObject) GetTemplate

func (o *InlineObject) GetTemplate() bool

GetTemplate returns the Template field value if set, zero value otherwise.

func (*InlineObject) GetTemplateOk

func (o *InlineObject) GetTemplateOk() (*bool, bool)

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

func (*InlineObject) GetTotal

func (o *InlineObject) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*InlineObject) GetTotalOk

func (o *InlineObject) GetTotalOk() (*int32, bool)

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

func (*InlineObject) HasTemplate

func (o *InlineObject) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*InlineObject) HasTotal

func (o *InlineObject) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (InlineObject) MarshalJSON

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

func (*InlineObject) SetTemplate

func (o *InlineObject) SetTemplate(v bool)

SetTemplate gets a reference to the given bool and assigns it to the Template field.

func (*InlineObject) SetTotal

func (o *InlineObject) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (InlineObject) ToMap

func (o InlineObject) ToMap() (map[string]interface{}, error)

type Location

type Location struct {
	Country   string  `json:"country"`
	Latitude  float64 `json:"latitude"`
	Longitude float64 `json:"longitude"`
	Name      string  `json:"name"`
	Timezone  string  `json:"timezone"`
	When      string  `json:"when"`
}

Location struct for Location

func NewLocation

func NewLocation(country string, latitude float64, longitude float64, name string, timezone string, when string) *Location

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

func NewLocationWithDefaults

func NewLocationWithDefaults() *Location

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

func (*Location) GetCountry

func (o *Location) GetCountry() string

GetCountry returns the Country field value

func (*Location) GetCountryOk

func (o *Location) GetCountryOk() (*string, bool)

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

func (*Location) GetLatitude

func (o *Location) GetLatitude() float64

GetLatitude returns the Latitude field value

func (*Location) GetLatitudeOk

func (o *Location) GetLatitudeOk() (*float64, bool)

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

func (*Location) GetLongitude

func (o *Location) GetLongitude() float64

GetLongitude returns the Longitude field value

func (*Location) GetLongitudeOk

func (o *Location) GetLongitudeOk() (*float64, bool)

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

func (*Location) GetName

func (o *Location) GetName() string

GetName returns the Name field value

func (*Location) GetNameOk

func (o *Location) GetNameOk() (*string, bool)

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

func (*Location) GetTimezone

func (o *Location) GetTimezone() string

GetTimezone returns the Timezone field value

func (*Location) GetTimezoneOk

func (o *Location) GetTimezoneOk() (*string, bool)

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

func (*Location) GetWhen

func (o *Location) GetWhen() string

GetWhen returns the When field value

func (*Location) GetWhenOk

func (o *Location) GetWhenOk() (*string, bool)

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

func (Location) MarshalJSON

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

func (*Location) SetCountry

func (o *Location) SetCountry(v string)

SetCountry sets field value

func (*Location) SetLatitude

func (o *Location) SetLatitude(v float64)

SetLatitude sets field value

func (*Location) SetLongitude

func (o *Location) SetLongitude(v float64)

SetLongitude sets field value

func (*Location) SetName

func (o *Location) SetName(v string)

SetName sets field value

func (*Location) SetTimezone

func (o *Location) SetTimezone(v string)

SetTimezone sets field value

func (*Location) SetWhen

func (o *Location) SetWhen(v string)

SetWhen sets field value

func (Location) ToMap

func (o Location) ToMap() (map[string]interface{}, error)

func (*Location) UnmarshalJSON

func (o *Location) UnmarshalJSON(data []byte) (err error)

type Login200Response

type Login200Response struct {
	SessionToken *string `json:"session_token,omitempty"`
}

Login200Response struct for Login200Response

func NewLogin200Response

func NewLogin200Response() *Login200Response

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

func NewLogin200ResponseWithDefaults

func NewLogin200ResponseWithDefaults() *Login200Response

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

func (*Login200Response) GetSessionToken

func (o *Login200Response) GetSessionToken() string

GetSessionToken returns the SessionToken field value if set, zero value otherwise.

func (*Login200Response) GetSessionTokenOk

func (o *Login200Response) GetSessionTokenOk() (*string, bool)

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

func (*Login200Response) HasSessionToken

func (o *Login200Response) HasSessionToken() bool

HasSessionToken returns a boolean if a field has been set.

func (Login200Response) MarshalJSON

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

func (*Login200Response) SetSessionToken

func (o *Login200Response) SetSessionToken(v string)

SetSessionToken gets a reference to the given string and assigns it to the SessionToken field.

func (Login200Response) ToMap

func (o Login200Response) ToMap() (map[string]interface{}, error)

type LoginRequest

type LoginRequest struct {
	Password *string `json:"password,omitempty"`
	Username *string `json:"username,omitempty"`
}

LoginRequest struct for LoginRequest

func NewLoginRequest

func NewLoginRequest() *LoginRequest

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

func NewLoginRequestWithDefaults

func NewLoginRequestWithDefaults() *LoginRequest

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

func (*LoginRequest) GetPassword

func (o *LoginRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*LoginRequest) GetPasswordOk

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

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

func (*LoginRequest) GetUsername

func (o *LoginRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*LoginRequest) GetUsernameOk

func (o *LoginRequest) GetUsernameOk() (*string, bool)

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

func (*LoginRequest) HasPassword

func (o *LoginRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*LoginRequest) HasUsername

func (o *LoginRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (LoginRequest) MarshalJSON

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

func (*LoginRequest) SetPassword

func (o *LoginRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*LoginRequest) SetUsername

func (o *LoginRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (LoginRequest) ToMap

func (o LoginRequest) ToMap() (map[string]interface{}, error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type Monitor

type Monitor struct {
	// Aggregate function to apply to the selected values before applying the condition. [none, sum, average, max, min]
	AggregateFunction *string `json:"aggregate_function,omitempty"`
	// The time window to aggregate the selected values. It follows the format of a number followed by a time unit
	AggregateWindow *string `json:"aggregate_window,omitempty" validate:"regexp=^[0-9]+[smh]$"`
	// If true, the monitor is in alert state.
	Alert       *bool                     `json:"alert,omitempty"`
	AlertRoutes []MonitorAlertRoutesInner `json:"alert_routes,omitempty"`
	// A comparison operation to apply to the value selected by the source_selector [greater_than, greater_than_or_equal_to, less_than, less_than_or_equal_to, equal_to, not_equal_to]
	ConditionType *string `json:"condition_type,omitempty"`
	Description   *string `json:"description,omitempty"`
	// If true, the monitor will not be evaluated.
	Disabled    *bool    `json:"disabled,omitempty"`
	FleetFilter []string `json:"fleet_filter,omitempty"`
	// The last time the monitor was evaluated and routed.
	LastRoutedAt   *string  `json:"last_routed_at,omitempty"`
	Name           *string  `json:"name,omitempty"`
	NotefileFilter []string `json:"notefile_filter,omitempty"`
	// Only relevant when using an aggregate_function. If true, the monitor will be evaluated per device, | rather than across the set of selected devices. If true then if a single device matches the specified criteria, | and alert will be created, otherwise the aggregate function will be applied across all devices.
	PerDevice *bool `json:"per_device,omitempty"`
	// The time period to wait before routing another event after the monitor | has been triggered. It follows the format of a number followed by a time unit.
	RoutingCooldownPeriod *string `json:"routing_cooldown_period,omitempty" validate:"regexp=^[0-9]+[smh]$"`
	// If true, alerts will be created, but no notifications will be sent.
	Silenced *bool `json:"silenced,omitempty"`
	// A valid JSONata expression that selects the value to monitor from the source. | It should return a single, numeric value.
	SourceSelector *string `json:"source_selector,omitempty"`
	// The type of source to monitor. Currently only \"event\" is supported.
	SourceType *string `json:"source_type,omitempty"`
	// The type of condition to apply to the value selected by the source_selector
	Threshold *int32  `json:"threshold,omitempty"`
	Uid       *string `json:"uid,omitempty"`
}

Monitor struct for Monitor

func NewMonitor

func NewMonitor() *Monitor

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

func NewMonitorWithDefaults

func NewMonitorWithDefaults() *Monitor

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

func (*Monitor) GetAggregateFunction

func (o *Monitor) GetAggregateFunction() string

GetAggregateFunction returns the AggregateFunction field value if set, zero value otherwise.

func (*Monitor) GetAggregateFunctionOk

func (o *Monitor) GetAggregateFunctionOk() (*string, bool)

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

func (*Monitor) GetAggregateWindow

func (o *Monitor) GetAggregateWindow() string

GetAggregateWindow returns the AggregateWindow field value if set, zero value otherwise.

func (*Monitor) GetAggregateWindowOk

func (o *Monitor) GetAggregateWindowOk() (*string, bool)

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

func (*Monitor) GetAlert

func (o *Monitor) GetAlert() bool

GetAlert returns the Alert field value if set, zero value otherwise.

func (*Monitor) GetAlertOk

func (o *Monitor) GetAlertOk() (*bool, bool)

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

func (*Monitor) GetAlertRoutes

func (o *Monitor) GetAlertRoutes() []MonitorAlertRoutesInner

GetAlertRoutes returns the AlertRoutes field value if set, zero value otherwise.

func (*Monitor) GetAlertRoutesOk

func (o *Monitor) GetAlertRoutesOk() ([]MonitorAlertRoutesInner, bool)

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

func (*Monitor) GetConditionType

func (o *Monitor) GetConditionType() string

GetConditionType returns the ConditionType field value if set, zero value otherwise.

func (*Monitor) GetConditionTypeOk

func (o *Monitor) GetConditionTypeOk() (*string, bool)

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

func (*Monitor) GetDescription

func (o *Monitor) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Monitor) GetDescriptionOk

func (o *Monitor) GetDescriptionOk() (*string, bool)

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

func (*Monitor) GetDisabled

func (o *Monitor) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*Monitor) GetDisabledOk

func (o *Monitor) GetDisabledOk() (*bool, bool)

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

func (*Monitor) GetFleetFilter

func (o *Monitor) GetFleetFilter() []string

GetFleetFilter returns the FleetFilter field value if set, zero value otherwise.

func (*Monitor) GetFleetFilterOk

func (o *Monitor) GetFleetFilterOk() ([]string, bool)

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

func (*Monitor) GetLastRoutedAt

func (o *Monitor) GetLastRoutedAt() string

GetLastRoutedAt returns the LastRoutedAt field value if set, zero value otherwise.

func (*Monitor) GetLastRoutedAtOk

func (o *Monitor) GetLastRoutedAtOk() (*string, bool)

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

func (*Monitor) GetName

func (o *Monitor) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Monitor) GetNameOk

func (o *Monitor) GetNameOk() (*string, bool)

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

func (*Monitor) GetNotefileFilter

func (o *Monitor) GetNotefileFilter() []string

GetNotefileFilter returns the NotefileFilter field value if set, zero value otherwise.

func (*Monitor) GetNotefileFilterOk

func (o *Monitor) GetNotefileFilterOk() ([]string, bool)

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

func (*Monitor) GetPerDevice

func (o *Monitor) GetPerDevice() bool

GetPerDevice returns the PerDevice field value if set, zero value otherwise.

func (*Monitor) GetPerDeviceOk

func (o *Monitor) GetPerDeviceOk() (*bool, bool)

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

func (*Monitor) GetRoutingCooldownPeriod

func (o *Monitor) GetRoutingCooldownPeriod() string

GetRoutingCooldownPeriod returns the RoutingCooldownPeriod field value if set, zero value otherwise.

func (*Monitor) GetRoutingCooldownPeriodOk

func (o *Monitor) GetRoutingCooldownPeriodOk() (*string, bool)

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

func (*Monitor) GetSilenced

func (o *Monitor) GetSilenced() bool

GetSilenced returns the Silenced field value if set, zero value otherwise.

func (*Monitor) GetSilencedOk

func (o *Monitor) GetSilencedOk() (*bool, bool)

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

func (*Monitor) GetSourceSelector

func (o *Monitor) GetSourceSelector() string

GetSourceSelector returns the SourceSelector field value if set, zero value otherwise.

func (*Monitor) GetSourceSelectorOk

func (o *Monitor) GetSourceSelectorOk() (*string, bool)

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

func (*Monitor) GetSourceType

func (o *Monitor) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*Monitor) GetSourceTypeOk

func (o *Monitor) GetSourceTypeOk() (*string, bool)

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

func (*Monitor) GetThreshold

func (o *Monitor) GetThreshold() int32

GetThreshold returns the Threshold field value if set, zero value otherwise.

func (*Monitor) GetThresholdOk

func (o *Monitor) GetThresholdOk() (*int32, bool)

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

func (*Monitor) GetUid

func (o *Monitor) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*Monitor) GetUidOk

func (o *Monitor) GetUidOk() (*string, bool)

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

func (*Monitor) HasAggregateFunction

func (o *Monitor) HasAggregateFunction() bool

HasAggregateFunction returns a boolean if a field has been set.

func (*Monitor) HasAggregateWindow

func (o *Monitor) HasAggregateWindow() bool

HasAggregateWindow returns a boolean if a field has been set.

func (*Monitor) HasAlert

func (o *Monitor) HasAlert() bool

HasAlert returns a boolean if a field has been set.

func (*Monitor) HasAlertRoutes

func (o *Monitor) HasAlertRoutes() bool

HasAlertRoutes returns a boolean if a field has been set.

func (*Monitor) HasConditionType

func (o *Monitor) HasConditionType() bool

HasConditionType returns a boolean if a field has been set.

func (*Monitor) HasDescription

func (o *Monitor) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Monitor) HasDisabled

func (o *Monitor) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*Monitor) HasFleetFilter

func (o *Monitor) HasFleetFilter() bool

HasFleetFilter returns a boolean if a field has been set.

func (*Monitor) HasLastRoutedAt

func (o *Monitor) HasLastRoutedAt() bool

HasLastRoutedAt returns a boolean if a field has been set.

func (*Monitor) HasName

func (o *Monitor) HasName() bool

HasName returns a boolean if a field has been set.

func (*Monitor) HasNotefileFilter

func (o *Monitor) HasNotefileFilter() bool

HasNotefileFilter returns a boolean if a field has been set.

func (*Monitor) HasPerDevice

func (o *Monitor) HasPerDevice() bool

HasPerDevice returns a boolean if a field has been set.

func (*Monitor) HasRoutingCooldownPeriod

func (o *Monitor) HasRoutingCooldownPeriod() bool

HasRoutingCooldownPeriod returns a boolean if a field has been set.

func (*Monitor) HasSilenced

func (o *Monitor) HasSilenced() bool

HasSilenced returns a boolean if a field has been set.

func (*Monitor) HasSourceSelector

func (o *Monitor) HasSourceSelector() bool

HasSourceSelector returns a boolean if a field has been set.

func (*Monitor) HasSourceType

func (o *Monitor) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (*Monitor) HasThreshold

func (o *Monitor) HasThreshold() bool

HasThreshold returns a boolean if a field has been set.

func (*Monitor) HasUid

func (o *Monitor) HasUid() bool

HasUid returns a boolean if a field has been set.

func (Monitor) MarshalJSON

func (o Monitor) MarshalJSON() ([]byte, error)

func (*Monitor) SetAggregateFunction

func (o *Monitor) SetAggregateFunction(v string)

SetAggregateFunction gets a reference to the given string and assigns it to the AggregateFunction field.

func (*Monitor) SetAggregateWindow

func (o *Monitor) SetAggregateWindow(v string)

SetAggregateWindow gets a reference to the given string and assigns it to the AggregateWindow field.

func (*Monitor) SetAlert

func (o *Monitor) SetAlert(v bool)

SetAlert gets a reference to the given bool and assigns it to the Alert field.

func (*Monitor) SetAlertRoutes

func (o *Monitor) SetAlertRoutes(v []MonitorAlertRoutesInner)

SetAlertRoutes gets a reference to the given []MonitorAlertRoutesInner and assigns it to the AlertRoutes field.

func (*Monitor) SetConditionType

func (o *Monitor) SetConditionType(v string)

SetConditionType gets a reference to the given string and assigns it to the ConditionType field.

func (*Monitor) SetDescription

func (o *Monitor) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Monitor) SetDisabled

func (o *Monitor) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*Monitor) SetFleetFilter

func (o *Monitor) SetFleetFilter(v []string)

SetFleetFilter gets a reference to the given []string and assigns it to the FleetFilter field.

func (*Monitor) SetLastRoutedAt

func (o *Monitor) SetLastRoutedAt(v string)

SetLastRoutedAt gets a reference to the given string and assigns it to the LastRoutedAt field.

func (*Monitor) SetName

func (o *Monitor) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Monitor) SetNotefileFilter

func (o *Monitor) SetNotefileFilter(v []string)

SetNotefileFilter gets a reference to the given []string and assigns it to the NotefileFilter field.

func (*Monitor) SetPerDevice

func (o *Monitor) SetPerDevice(v bool)

SetPerDevice gets a reference to the given bool and assigns it to the PerDevice field.

func (*Monitor) SetRoutingCooldownPeriod

func (o *Monitor) SetRoutingCooldownPeriod(v string)

SetRoutingCooldownPeriod gets a reference to the given string and assigns it to the RoutingCooldownPeriod field.

func (*Monitor) SetSilenced

func (o *Monitor) SetSilenced(v bool)

SetSilenced gets a reference to the given bool and assigns it to the Silenced field.

func (*Monitor) SetSourceSelector

func (o *Monitor) SetSourceSelector(v string)

SetSourceSelector gets a reference to the given string and assigns it to the SourceSelector field.

func (*Monitor) SetSourceType

func (o *Monitor) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (*Monitor) SetThreshold

func (o *Monitor) SetThreshold(v int32)

SetThreshold gets a reference to the given int32 and assigns it to the Threshold field.

func (*Monitor) SetUid

func (o *Monitor) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (Monitor) ToMap

func (o Monitor) ToMap() (map[string]interface{}, error)

type MonitorAPIService

type MonitorAPIService service

MonitorAPIService MonitorAPI service

func (*MonitorAPIService) CreateMonitor

func (a *MonitorAPIService) CreateMonitor(ctx context.Context, projectOrProductUID string) ApiCreateMonitorRequest

CreateMonitor Method for CreateMonitor

Create a new Monitor

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiCreateMonitorRequest

func (*MonitorAPIService) CreateMonitorExecute

func (a *MonitorAPIService) CreateMonitorExecute(r ApiCreateMonitorRequest) (*Monitor, *http.Response, error)

Execute executes the request

@return Monitor

func (*MonitorAPIService) DeleteMonitor

func (a *MonitorAPIService) DeleteMonitor(ctx context.Context, projectOrProductUID string, monitorUID string) ApiDeleteMonitorRequest

DeleteMonitor Method for DeleteMonitor

Delete Monitor

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param monitorUID
@return ApiDeleteMonitorRequest

func (*MonitorAPIService) DeleteMonitorExecute

func (a *MonitorAPIService) DeleteMonitorExecute(r ApiDeleteMonitorRequest) (*Monitor, *http.Response, error)

Execute executes the request

@return Monitor

func (*MonitorAPIService) GetMonitor

func (a *MonitorAPIService) GetMonitor(ctx context.Context, projectOrProductUID string, monitorUID string) ApiGetMonitorRequest

GetMonitor Method for GetMonitor

Get Monitor

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param monitorUID
@return ApiGetMonitorRequest

func (*MonitorAPIService) GetMonitorExecute

func (a *MonitorAPIService) GetMonitorExecute(r ApiGetMonitorRequest) (*Monitor, *http.Response, error)

Execute executes the request

@return Monitor

func (*MonitorAPIService) GetMonitors

func (a *MonitorAPIService) GetMonitors(ctx context.Context, projectOrProductUID string) ApiGetMonitorsRequest

GetMonitors Method for GetMonitors

Get list of defined Monitors

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetMonitorsRequest

func (*MonitorAPIService) GetMonitorsExecute

func (a *MonitorAPIService) GetMonitorsExecute(r ApiGetMonitorsRequest) ([]Monitor, *http.Response, error)

Execute executes the request

@return []Monitor

func (*MonitorAPIService) UpdateMonitor

func (a *MonitorAPIService) UpdateMonitor(ctx context.Context, projectOrProductUID string, monitorUID string) ApiUpdateMonitorRequest

UpdateMonitor Method for UpdateMonitor

Update Monitor

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param monitorUID
@return ApiUpdateMonitorRequest

func (*MonitorAPIService) UpdateMonitorExecute

func (a *MonitorAPIService) UpdateMonitorExecute(r ApiUpdateMonitorRequest) (*Monitor, *http.Response, error)

Execute executes the request

@return Monitor

type MonitorAlertRoutesInner

type MonitorAlertRoutesInner struct {
	EmailNotification        *EmailNotification
	SlackBearerNotification  *SlackBearerNotification
	SlackWebHookNotification *SlackWebHookNotification
}

MonitorAlertRoutesInner - struct for MonitorAlertRoutesInner

func EmailNotificationAsMonitorAlertRoutesInner

func EmailNotificationAsMonitorAlertRoutesInner(v *EmailNotification) MonitorAlertRoutesInner

EmailNotificationAsMonitorAlertRoutesInner is a convenience function that returns EmailNotification wrapped in MonitorAlertRoutesInner

func SlackBearerNotificationAsMonitorAlertRoutesInner

func SlackBearerNotificationAsMonitorAlertRoutesInner(v *SlackBearerNotification) MonitorAlertRoutesInner

SlackBearerNotificationAsMonitorAlertRoutesInner is a convenience function that returns SlackBearerNotification wrapped in MonitorAlertRoutesInner

func SlackWebHookNotificationAsMonitorAlertRoutesInner

func SlackWebHookNotificationAsMonitorAlertRoutesInner(v *SlackWebHookNotification) MonitorAlertRoutesInner

SlackWebHookNotificationAsMonitorAlertRoutesInner is a convenience function that returns SlackWebHookNotification wrapped in MonitorAlertRoutesInner

func (*MonitorAlertRoutesInner) GetActualInstance

func (obj *MonitorAlertRoutesInner) GetActualInstance() interface{}

Get the actual instance

func (MonitorAlertRoutesInner) GetActualInstanceValue

func (obj MonitorAlertRoutesInner) GetActualInstanceValue() interface{}

Get the actual instance value

func (MonitorAlertRoutesInner) MarshalJSON

func (src MonitorAlertRoutesInner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*MonitorAlertRoutesInner) UnmarshalJSON

func (dst *MonitorAlertRoutesInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type MqttRoute

type MqttRoute struct {
	Broker          *string                 `json:"broker,omitempty"`
	Certificate     *string                 `json:"certificate,omitempty"`
	CertificateName *string                 `json:"certificate_name,omitempty"`
	Filter          *Filter                 `json:"filter,omitempty"`
	Fleets          []string                `json:"fleets,omitempty"`
	Key             *string                 `json:"key,omitempty"`
	Password        *string                 `json:"password,omitempty"`
	Port            *string                 `json:"port,omitempty"`
	PrivateKeyName  *string                 `json:"private_key_name,omitempty"`
	ThrottleMs      *int32                  `json:"throttle_ms,omitempty"`
	Timeout         *int32                  `json:"timeout,omitempty"`
	Topic           *string                 `json:"topic,omitempty"`
	Transform       *RouteTransformSettings `json:"transform,omitempty"`
	Username        *string                 `json:"username,omitempty"`
}

MqttRoute struct for MqttRoute

func NewMqttRoute

func NewMqttRoute() *MqttRoute

NewMqttRoute instantiates a new MqttRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMqttRouteWithDefaults

func NewMqttRouteWithDefaults() *MqttRoute

NewMqttRouteWithDefaults instantiates a new MqttRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MqttRoute) GetBroker

func (o *MqttRoute) GetBroker() string

GetBroker returns the Broker field value if set, zero value otherwise.

func (*MqttRoute) GetBrokerOk

func (o *MqttRoute) GetBrokerOk() (*string, bool)

GetBrokerOk returns a tuple with the Broker field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetCertificate

func (o *MqttRoute) GetCertificate() string

GetCertificate returns the Certificate field value if set, zero value otherwise.

func (*MqttRoute) GetCertificateName

func (o *MqttRoute) GetCertificateName() string

GetCertificateName returns the CertificateName field value if set, zero value otherwise.

func (*MqttRoute) GetCertificateNameOk

func (o *MqttRoute) GetCertificateNameOk() (*string, bool)

GetCertificateNameOk returns a tuple with the CertificateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetCertificateOk

func (o *MqttRoute) GetCertificateOk() (*string, bool)

GetCertificateOk returns a tuple with the Certificate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetFilter

func (o *MqttRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*MqttRoute) GetFilterOk

func (o *MqttRoute) GetFilterOk() (*Filter, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetFleets

func (o *MqttRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*MqttRoute) GetFleetsOk

func (o *MqttRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetKey

func (o *MqttRoute) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*MqttRoute) GetKeyOk

func (o *MqttRoute) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetPassword

func (o *MqttRoute) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*MqttRoute) GetPasswordOk

func (o *MqttRoute) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetPort

func (o *MqttRoute) GetPort() string

GetPort returns the Port field value if set, zero value otherwise.

func (*MqttRoute) GetPortOk

func (o *MqttRoute) GetPortOk() (*string, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetPrivateKeyName

func (o *MqttRoute) GetPrivateKeyName() string

GetPrivateKeyName returns the PrivateKeyName field value if set, zero value otherwise.

func (*MqttRoute) GetPrivateKeyNameOk

func (o *MqttRoute) GetPrivateKeyNameOk() (*string, bool)

GetPrivateKeyNameOk returns a tuple with the PrivateKeyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetThrottleMs

func (o *MqttRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*MqttRoute) GetThrottleMsOk

func (o *MqttRoute) GetThrottleMsOk() (*int32, bool)

GetThrottleMsOk returns a tuple with the ThrottleMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetTimeout

func (o *MqttRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*MqttRoute) GetTimeoutOk

func (o *MqttRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetTopic

func (o *MqttRoute) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*MqttRoute) GetTopicOk

func (o *MqttRoute) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetTransform

func (o *MqttRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*MqttRoute) GetTransformOk

func (o *MqttRoute) GetTransformOk() (*RouteTransformSettings, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) GetUsername

func (o *MqttRoute) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*MqttRoute) GetUsernameOk

func (o *MqttRoute) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MqttRoute) HasBroker

func (o *MqttRoute) HasBroker() bool

HasBroker returns a boolean if a field has been set.

func (*MqttRoute) HasCertificate

func (o *MqttRoute) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

func (*MqttRoute) HasCertificateName

func (o *MqttRoute) HasCertificateName() bool

HasCertificateName returns a boolean if a field has been set.

func (*MqttRoute) HasFilter

func (o *MqttRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*MqttRoute) HasFleets

func (o *MqttRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*MqttRoute) HasKey

func (o *MqttRoute) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*MqttRoute) HasPassword

func (o *MqttRoute) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*MqttRoute) HasPort

func (o *MqttRoute) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*MqttRoute) HasPrivateKeyName

func (o *MqttRoute) HasPrivateKeyName() bool

HasPrivateKeyName returns a boolean if a field has been set.

func (*MqttRoute) HasThrottleMs

func (o *MqttRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*MqttRoute) HasTimeout

func (o *MqttRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*MqttRoute) HasTopic

func (o *MqttRoute) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*MqttRoute) HasTransform

func (o *MqttRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*MqttRoute) HasUsername

func (o *MqttRoute) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (MqttRoute) MarshalJSON

func (o MqttRoute) MarshalJSON() ([]byte, error)

func (*MqttRoute) SetBroker

func (o *MqttRoute) SetBroker(v string)

SetBroker gets a reference to the given string and assigns it to the Broker field.

func (*MqttRoute) SetCertificate

func (o *MqttRoute) SetCertificate(v string)

SetCertificate gets a reference to the given string and assigns it to the Certificate field.

func (*MqttRoute) SetCertificateName

func (o *MqttRoute) SetCertificateName(v string)

SetCertificateName gets a reference to the given string and assigns it to the CertificateName field.

func (*MqttRoute) SetFilter

func (o *MqttRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*MqttRoute) SetFleets

func (o *MqttRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*MqttRoute) SetKey

func (o *MqttRoute) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*MqttRoute) SetPassword

func (o *MqttRoute) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*MqttRoute) SetPort

func (o *MqttRoute) SetPort(v string)

SetPort gets a reference to the given string and assigns it to the Port field.

func (*MqttRoute) SetPrivateKeyName

func (o *MqttRoute) SetPrivateKeyName(v string)

SetPrivateKeyName gets a reference to the given string and assigns it to the PrivateKeyName field.

func (*MqttRoute) SetThrottleMs

func (o *MqttRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*MqttRoute) SetTimeout

func (o *MqttRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*MqttRoute) SetTopic

func (o *MqttRoute) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (*MqttRoute) SetTransform

func (o *MqttRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*MqttRoute) SetUsername

func (o *MqttRoute) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (MqttRoute) ToMap

func (o MqttRoute) ToMap() (map[string]interface{}, error)

type Note

type Note struct {
	// Arbitrary user-defined JSON for the note.
	Body map[string]interface{} `json:"body"`
	// True if originated from an edge source.
	Edge *bool `json:"edge,omitempty"`
	// Note name/identifier (e.g., \"1:435\", \"my_note\").
	Id string `json:"id"`
	// Optional base64-encoded payload.
	Payload *string `json:"payload,omitempty"`
	// True if the note is pending delivery or processing.
	Pending *bool `json:"pending,omitempty"`
	// Unix epoch seconds.
	Time int64 `json:"time"`
	// Optional location/metadata string.
	Where *string `json:"where,omitempty"`
}

Note struct for Note

func NewNote

func NewNote(body map[string]interface{}, id string, time int64) *Note

NewNote instantiates a new Note object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNoteWithDefaults

func NewNoteWithDefaults() *Note

NewNoteWithDefaults instantiates a new Note object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Note) GetBody

func (o *Note) GetBody() map[string]interface{}

GetBody returns the Body field value

func (*Note) GetBodyOk

func (o *Note) GetBodyOk() (map[string]interface{}, bool)

GetBodyOk returns a tuple with the Body field value and a boolean to check if the value has been set.

func (*Note) GetEdge

func (o *Note) GetEdge() bool

GetEdge returns the Edge field value if set, zero value otherwise.

func (*Note) GetEdgeOk

func (o *Note) GetEdgeOk() (*bool, bool)

GetEdgeOk returns a tuple with the Edge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Note) GetId

func (o *Note) GetId() string

GetId returns the Id field value

func (*Note) GetIdOk

func (o *Note) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Note) GetPayload

func (o *Note) GetPayload() string

GetPayload returns the Payload field value if set, zero value otherwise.

func (*Note) GetPayloadOk

func (o *Note) GetPayloadOk() (*string, bool)

GetPayloadOk returns a tuple with the Payload field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Note) GetPending

func (o *Note) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*Note) GetPendingOk

func (o *Note) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Note) GetTime

func (o *Note) GetTime() int64

GetTime returns the Time field value

func (*Note) GetTimeOk

func (o *Note) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value and a boolean to check if the value has been set.

func (*Note) GetWhere

func (o *Note) GetWhere() string

GetWhere returns the Where field value if set, zero value otherwise.

func (*Note) GetWhereOk

func (o *Note) GetWhereOk() (*string, bool)

GetWhereOk returns a tuple with the Where field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Note) HasEdge

func (o *Note) HasEdge() bool

HasEdge returns a boolean if a field has been set.

func (*Note) HasPayload

func (o *Note) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*Note) HasPending

func (o *Note) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*Note) HasWhere

func (o *Note) HasWhere() bool

HasWhere returns a boolean if a field has been set.

func (Note) MarshalJSON

func (o Note) MarshalJSON() ([]byte, error)

func (*Note) SetBody

func (o *Note) SetBody(v map[string]interface{})

SetBody sets field value

func (*Note) SetEdge

func (o *Note) SetEdge(v bool)

SetEdge gets a reference to the given bool and assigns it to the Edge field.

func (*Note) SetId

func (o *Note) SetId(v string)

SetId sets field value

func (*Note) SetPayload

func (o *Note) SetPayload(v string)

SetPayload gets a reference to the given string and assigns it to the Payload field.

func (*Note) SetPending

func (o *Note) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*Note) SetTime

func (o *Note) SetTime(v int64)

SetTime sets field value

func (*Note) SetWhere

func (o *Note) SetWhere(v string)

SetWhere gets a reference to the given string and assigns it to the Where field.

func (Note) ToMap

func (o Note) ToMap() (map[string]interface{}, error)

func (*Note) UnmarshalJSON

func (o *Note) UnmarshalJSON(data []byte) (err error)

type NoteInput

type NoteInput struct {
	// Arbitrary user-defined JSON for the note.
	Body map[string]interface{} `json:"body,omitempty"`
	// Optional base64-encoded payload.
	Payload *string `json:"payload,omitempty"`
}

NoteInput struct for NoteInput

func NewNoteInput

func NewNoteInput() *NoteInput

NewNoteInput instantiates a new NoteInput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNoteInputWithDefaults

func NewNoteInputWithDefaults() *NoteInput

NewNoteInputWithDefaults instantiates a new NoteInput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NoteInput) GetBody

func (o *NoteInput) GetBody() map[string]interface{}

GetBody returns the Body field value if set, zero value otherwise.

func (*NoteInput) GetBodyOk

func (o *NoteInput) GetBodyOk() (map[string]interface{}, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NoteInput) GetPayload

func (o *NoteInput) GetPayload() string

GetPayload returns the Payload field value if set, zero value otherwise.

func (*NoteInput) GetPayloadOk

func (o *NoteInput) GetPayloadOk() (*string, bool)

GetPayloadOk returns a tuple with the Payload field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NoteInput) HasBody

func (o *NoteInput) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*NoteInput) HasPayload

func (o *NoteInput) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (NoteInput) MarshalJSON

func (o NoteInput) MarshalJSON() ([]byte, error)

func (*NoteInput) SetBody

func (o *NoteInput) SetBody(v map[string]interface{})

SetBody gets a reference to the given map[string]interface{} and assigns it to the Body field.

func (*NoteInput) SetPayload

func (o *NoteInput) SetPayload(v string)

SetPayload gets a reference to the given string and assigns it to the Payload field.

func (NoteInput) ToMap

func (o NoteInput) ToMap() (map[string]interface{}, error)

type Notefile

type Notefile struct {
	// Notefile id (e.g., \"test.qi\", \"config.db\").
	Id       string  `json:"id"`
	Notes    []Note  `json:"notes"`
	Template *string `json:"template,omitempty"`
}

Notefile struct for Notefile

func NewNotefile

func NewNotefile(id string, notes []Note) *Notefile

NewNotefile instantiates a new Notefile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNotefileWithDefaults

func NewNotefileWithDefaults() *Notefile

NewNotefileWithDefaults instantiates a new Notefile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Notefile) GetId

func (o *Notefile) GetId() string

GetId returns the Id field value

func (*Notefile) GetIdOk

func (o *Notefile) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Notefile) GetNotes

func (o *Notefile) GetNotes() []Note

GetNotes returns the Notes field value

func (*Notefile) GetNotesOk

func (o *Notefile) GetNotesOk() ([]Note, bool)

GetNotesOk returns a tuple with the Notes field value and a boolean to check if the value has been set.

func (*Notefile) GetTemplate

func (o *Notefile) GetTemplate() string

GetTemplate returns the Template field value if set, zero value otherwise.

func (*Notefile) GetTemplateOk

func (o *Notefile) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notefile) HasTemplate

func (o *Notefile) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (Notefile) MarshalJSON

func (o Notefile) MarshalJSON() ([]byte, error)

func (*Notefile) SetId

func (o *Notefile) SetId(v string)

SetId sets field value

func (*Notefile) SetNotes

func (o *Notefile) SetNotes(v []Note)

SetNotes sets field value

func (*Notefile) SetTemplate

func (o *Notefile) SetTemplate(v string)

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (Notefile) ToMap

func (o Notefile) ToMap() (map[string]interface{}, error)

func (*Notefile) UnmarshalJSON

func (o *Notefile) UnmarshalJSON(data []byte) (err error)

type NotefileSchema

type NotefileSchema struct {
	Notefile   string           `json:"notefile"`
	Properties []SchemaProperty `json:"properties"`
}

NotefileSchema struct for NotefileSchema

func NewNotefileSchema

func NewNotefileSchema(notefile string, properties []SchemaProperty) *NotefileSchema

NewNotefileSchema instantiates a new NotefileSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNotefileSchemaWithDefaults

func NewNotefileSchemaWithDefaults() *NotefileSchema

NewNotefileSchemaWithDefaults instantiates a new NotefileSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NotefileSchema) GetNotefile

func (o *NotefileSchema) GetNotefile() string

GetNotefile returns the Notefile field value

func (*NotefileSchema) GetNotefileOk

func (o *NotefileSchema) GetNotefileOk() (*string, bool)

GetNotefileOk returns a tuple with the Notefile field value and a boolean to check if the value has been set.

func (*NotefileSchema) GetProperties

func (o *NotefileSchema) GetProperties() []SchemaProperty

GetProperties returns the Properties field value

func (*NotefileSchema) GetPropertiesOk

func (o *NotefileSchema) GetPropertiesOk() ([]SchemaProperty, bool)

GetPropertiesOk returns a tuple with the Properties field value and a boolean to check if the value has been set.

func (NotefileSchema) MarshalJSON

func (o NotefileSchema) MarshalJSON() ([]byte, error)

func (*NotefileSchema) SetNotefile

func (o *NotefileSchema) SetNotefile(v string)

SetNotefile sets field value

func (*NotefileSchema) SetProperties

func (o *NotefileSchema) SetProperties(v []SchemaProperty)

SetProperties sets field value

func (NotefileSchema) ToMap

func (o NotefileSchema) ToMap() (map[string]interface{}, error)

func (*NotefileSchema) UnmarshalJSON

func (o *NotefileSchema) UnmarshalJSON(data []byte) (err error)

type NotehubRoute

type NotehubRoute struct {
	Aws               *AwsRoute               `json:"aws,omitempty"`
	Azure             *AzureRoute             `json:"azure,omitempty"`
	Blynk             *BlynkRoute             `json:"blynk,omitempty"`
	Datacake          *DatacakeRoute          `json:"datacake,omitempty"`
	Disabled          *bool                   `json:"disabled,omitempty"`
	Google            *GoogleRoute            `json:"google,omitempty"`
	Http              *HttpRoute              `json:"http,omitempty"`
	Label             *string                 `json:"label,omitempty"`
	Modified          *time.Time              `json:"modified,omitempty"`
	Mqtt              *MqttRoute              `json:"mqtt,omitempty"`
	Proxy             *ProxyRoute             `json:"proxy,omitempty"`
	Qubitro           *QubitroRoute           `json:"qubitro,omitempty"`
	Radnote           *RadRoute               `json:"radnote,omitempty"`
	S3archive         *S3ArchiveRoute         `json:"s3archive,omitempty"`
	Slack             *SlackRoute             `json:"slack,omitempty"`
	Snowflake         *SnowflakeRoute         `json:"snowflake,omitempty"`
	SnowpipeStreaming *SnowpipeStreamingRoute `json:"snowpipe_streaming,omitempty"`
	Thingworx         *ThingworxRoute         `json:"thingworx,omitempty"`
	Twilio            *TwilioRoute            `json:"twilio,omitempty"`
	// Mirrors hublib.RouteType.
	Type *string `json:"type,omitempty"`
	Uid  *string `json:"uid,omitempty"`
}

NotehubRoute Route resource as stored/returned by the server.

func NewNotehubRoute

func NewNotehubRoute() *NotehubRoute

NewNotehubRoute instantiates a new NotehubRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNotehubRouteWithDefaults

func NewNotehubRouteWithDefaults() *NotehubRoute

NewNotehubRouteWithDefaults instantiates a new NotehubRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NotehubRoute) GetAws

func (o *NotehubRoute) GetAws() AwsRoute

GetAws returns the Aws field value if set, zero value otherwise.

func (*NotehubRoute) GetAwsOk

func (o *NotehubRoute) GetAwsOk() (*AwsRoute, bool)

GetAwsOk returns a tuple with the Aws field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetAzure

func (o *NotehubRoute) GetAzure() AzureRoute

GetAzure returns the Azure field value if set, zero value otherwise.

func (*NotehubRoute) GetAzureOk

func (o *NotehubRoute) GetAzureOk() (*AzureRoute, bool)

GetAzureOk returns a tuple with the Azure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetBlynk

func (o *NotehubRoute) GetBlynk() BlynkRoute

GetBlynk returns the Blynk field value if set, zero value otherwise.

func (*NotehubRoute) GetBlynkOk

func (o *NotehubRoute) GetBlynkOk() (*BlynkRoute, bool)

GetBlynkOk returns a tuple with the Blynk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetDatacake

func (o *NotehubRoute) GetDatacake() DatacakeRoute

GetDatacake returns the Datacake field value if set, zero value otherwise.

func (*NotehubRoute) GetDatacakeOk

func (o *NotehubRoute) GetDatacakeOk() (*DatacakeRoute, bool)

GetDatacakeOk returns a tuple with the Datacake field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetDisabled

func (o *NotehubRoute) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*NotehubRoute) GetDisabledOk

func (o *NotehubRoute) GetDisabledOk() (*bool, bool)

GetDisabledOk returns a tuple with the Disabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetGoogle

func (o *NotehubRoute) GetGoogle() GoogleRoute

GetGoogle returns the Google field value if set, zero value otherwise.

func (*NotehubRoute) GetGoogleOk

func (o *NotehubRoute) GetGoogleOk() (*GoogleRoute, bool)

GetGoogleOk returns a tuple with the Google field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetHttp

func (o *NotehubRoute) GetHttp() HttpRoute

GetHttp returns the Http field value if set, zero value otherwise.

func (*NotehubRoute) GetHttpOk

func (o *NotehubRoute) GetHttpOk() (*HttpRoute, bool)

GetHttpOk returns a tuple with the Http field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetLabel

func (o *NotehubRoute) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*NotehubRoute) GetLabelOk

func (o *NotehubRoute) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetModified

func (o *NotehubRoute) GetModified() time.Time

GetModified returns the Modified field value if set, zero value otherwise.

func (*NotehubRoute) GetModifiedOk

func (o *NotehubRoute) GetModifiedOk() (*time.Time, bool)

GetModifiedOk returns a tuple with the Modified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetMqtt

func (o *NotehubRoute) GetMqtt() MqttRoute

GetMqtt returns the Mqtt field value if set, zero value otherwise.

func (*NotehubRoute) GetMqttOk

func (o *NotehubRoute) GetMqttOk() (*MqttRoute, bool)

GetMqttOk returns a tuple with the Mqtt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetProxy

func (o *NotehubRoute) GetProxy() ProxyRoute

GetProxy returns the Proxy field value if set, zero value otherwise.

func (*NotehubRoute) GetProxyOk

func (o *NotehubRoute) GetProxyOk() (*ProxyRoute, bool)

GetProxyOk returns a tuple with the Proxy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetQubitro

func (o *NotehubRoute) GetQubitro() QubitroRoute

GetQubitro returns the Qubitro field value if set, zero value otherwise.

func (*NotehubRoute) GetQubitroOk

func (o *NotehubRoute) GetQubitroOk() (*QubitroRoute, bool)

GetQubitroOk returns a tuple with the Qubitro field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetRadnote

func (o *NotehubRoute) GetRadnote() RadRoute

GetRadnote returns the Radnote field value if set, zero value otherwise.

func (*NotehubRoute) GetRadnoteOk

func (o *NotehubRoute) GetRadnoteOk() (*RadRoute, bool)

GetRadnoteOk returns a tuple with the Radnote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetS3archive

func (o *NotehubRoute) GetS3archive() S3ArchiveRoute

GetS3archive returns the S3archive field value if set, zero value otherwise.

func (*NotehubRoute) GetS3archiveOk

func (o *NotehubRoute) GetS3archiveOk() (*S3ArchiveRoute, bool)

GetS3archiveOk returns a tuple with the S3archive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetSlack

func (o *NotehubRoute) GetSlack() SlackRoute

GetSlack returns the Slack field value if set, zero value otherwise.

func (*NotehubRoute) GetSlackOk

func (o *NotehubRoute) GetSlackOk() (*SlackRoute, bool)

GetSlackOk returns a tuple with the Slack field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetSnowflake

func (o *NotehubRoute) GetSnowflake() SnowflakeRoute

GetSnowflake returns the Snowflake field value if set, zero value otherwise.

func (*NotehubRoute) GetSnowflakeOk

func (o *NotehubRoute) GetSnowflakeOk() (*SnowflakeRoute, bool)

GetSnowflakeOk returns a tuple with the Snowflake field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetSnowpipeStreaming

func (o *NotehubRoute) GetSnowpipeStreaming() SnowpipeStreamingRoute

GetSnowpipeStreaming returns the SnowpipeStreaming field value if set, zero value otherwise.

func (*NotehubRoute) GetSnowpipeStreamingOk

func (o *NotehubRoute) GetSnowpipeStreamingOk() (*SnowpipeStreamingRoute, bool)

GetSnowpipeStreamingOk returns a tuple with the SnowpipeStreaming field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetThingworx

func (o *NotehubRoute) GetThingworx() ThingworxRoute

GetThingworx returns the Thingworx field value if set, zero value otherwise.

func (*NotehubRoute) GetThingworxOk

func (o *NotehubRoute) GetThingworxOk() (*ThingworxRoute, bool)

GetThingworxOk returns a tuple with the Thingworx field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetTwilio

func (o *NotehubRoute) GetTwilio() TwilioRoute

GetTwilio returns the Twilio field value if set, zero value otherwise.

func (*NotehubRoute) GetTwilioOk

func (o *NotehubRoute) GetTwilioOk() (*TwilioRoute, bool)

GetTwilioOk returns a tuple with the Twilio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetType

func (o *NotehubRoute) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*NotehubRoute) GetTypeOk

func (o *NotehubRoute) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) GetUid

func (o *NotehubRoute) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*NotehubRoute) GetUidOk

func (o *NotehubRoute) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRoute) HasAws

func (o *NotehubRoute) HasAws() bool

HasAws returns a boolean if a field has been set.

func (*NotehubRoute) HasAzure

func (o *NotehubRoute) HasAzure() bool

HasAzure returns a boolean if a field has been set.

func (*NotehubRoute) HasBlynk

func (o *NotehubRoute) HasBlynk() bool

HasBlynk returns a boolean if a field has been set.

func (*NotehubRoute) HasDatacake

func (o *NotehubRoute) HasDatacake() bool

HasDatacake returns a boolean if a field has been set.

func (*NotehubRoute) HasDisabled

func (o *NotehubRoute) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*NotehubRoute) HasGoogle

func (o *NotehubRoute) HasGoogle() bool

HasGoogle returns a boolean if a field has been set.

func (*NotehubRoute) HasHttp

func (o *NotehubRoute) HasHttp() bool

HasHttp returns a boolean if a field has been set.

func (*NotehubRoute) HasLabel

func (o *NotehubRoute) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*NotehubRoute) HasModified

func (o *NotehubRoute) HasModified() bool

HasModified returns a boolean if a field has been set.

func (*NotehubRoute) HasMqtt

func (o *NotehubRoute) HasMqtt() bool

HasMqtt returns a boolean if a field has been set.

func (*NotehubRoute) HasProxy

func (o *NotehubRoute) HasProxy() bool

HasProxy returns a boolean if a field has been set.

func (*NotehubRoute) HasQubitro

func (o *NotehubRoute) HasQubitro() bool

HasQubitro returns a boolean if a field has been set.

func (*NotehubRoute) HasRadnote

func (o *NotehubRoute) HasRadnote() bool

HasRadnote returns a boolean if a field has been set.

func (*NotehubRoute) HasS3archive

func (o *NotehubRoute) HasS3archive() bool

HasS3archive returns a boolean if a field has been set.

func (*NotehubRoute) HasSlack

func (o *NotehubRoute) HasSlack() bool

HasSlack returns a boolean if a field has been set.

func (*NotehubRoute) HasSnowflake

func (o *NotehubRoute) HasSnowflake() bool

HasSnowflake returns a boolean if a field has been set.

func (*NotehubRoute) HasSnowpipeStreaming

func (o *NotehubRoute) HasSnowpipeStreaming() bool

HasSnowpipeStreaming returns a boolean if a field has been set.

func (*NotehubRoute) HasThingworx

func (o *NotehubRoute) HasThingworx() bool

HasThingworx returns a boolean if a field has been set.

func (*NotehubRoute) HasTwilio

func (o *NotehubRoute) HasTwilio() bool

HasTwilio returns a boolean if a field has been set.

func (*NotehubRoute) HasType

func (o *NotehubRoute) HasType() bool

HasType returns a boolean if a field has been set.

func (*NotehubRoute) HasUid

func (o *NotehubRoute) HasUid() bool

HasUid returns a boolean if a field has been set.

func (NotehubRoute) MarshalJSON

func (o NotehubRoute) MarshalJSON() ([]byte, error)

func (*NotehubRoute) SetAws

func (o *NotehubRoute) SetAws(v AwsRoute)

SetAws gets a reference to the given AwsRoute and assigns it to the Aws field.

func (*NotehubRoute) SetAzure

func (o *NotehubRoute) SetAzure(v AzureRoute)

SetAzure gets a reference to the given AzureRoute and assigns it to the Azure field.

func (*NotehubRoute) SetBlynk

func (o *NotehubRoute) SetBlynk(v BlynkRoute)

SetBlynk gets a reference to the given BlynkRoute and assigns it to the Blynk field.

func (*NotehubRoute) SetDatacake

func (o *NotehubRoute) SetDatacake(v DatacakeRoute)

SetDatacake gets a reference to the given DatacakeRoute and assigns it to the Datacake field.

func (*NotehubRoute) SetDisabled

func (o *NotehubRoute) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*NotehubRoute) SetGoogle

func (o *NotehubRoute) SetGoogle(v GoogleRoute)

SetGoogle gets a reference to the given GoogleRoute and assigns it to the Google field.

func (*NotehubRoute) SetHttp

func (o *NotehubRoute) SetHttp(v HttpRoute)

SetHttp gets a reference to the given HttpRoute and assigns it to the Http field.

func (*NotehubRoute) SetLabel

func (o *NotehubRoute) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*NotehubRoute) SetModified

func (o *NotehubRoute) SetModified(v time.Time)

SetModified gets a reference to the given time.Time and assigns it to the Modified field.

func (*NotehubRoute) SetMqtt

func (o *NotehubRoute) SetMqtt(v MqttRoute)

SetMqtt gets a reference to the given MqttRoute and assigns it to the Mqtt field.

func (*NotehubRoute) SetProxy

func (o *NotehubRoute) SetProxy(v ProxyRoute)

SetProxy gets a reference to the given ProxyRoute and assigns it to the Proxy field.

func (*NotehubRoute) SetQubitro

func (o *NotehubRoute) SetQubitro(v QubitroRoute)

SetQubitro gets a reference to the given QubitroRoute and assigns it to the Qubitro field.

func (*NotehubRoute) SetRadnote

func (o *NotehubRoute) SetRadnote(v RadRoute)

SetRadnote gets a reference to the given RadRoute and assigns it to the Radnote field.

func (*NotehubRoute) SetS3archive

func (o *NotehubRoute) SetS3archive(v S3ArchiveRoute)

SetS3archive gets a reference to the given S3ArchiveRoute and assigns it to the S3archive field.

func (*NotehubRoute) SetSlack

func (o *NotehubRoute) SetSlack(v SlackRoute)

SetSlack gets a reference to the given SlackRoute and assigns it to the Slack field.

func (*NotehubRoute) SetSnowflake

func (o *NotehubRoute) SetSnowflake(v SnowflakeRoute)

SetSnowflake gets a reference to the given SnowflakeRoute and assigns it to the Snowflake field.

func (*NotehubRoute) SetSnowpipeStreaming

func (o *NotehubRoute) SetSnowpipeStreaming(v SnowpipeStreamingRoute)

SetSnowpipeStreaming gets a reference to the given SnowpipeStreamingRoute and assigns it to the SnowpipeStreaming field.

func (*NotehubRoute) SetThingworx

func (o *NotehubRoute) SetThingworx(v ThingworxRoute)

SetThingworx gets a reference to the given ThingworxRoute and assigns it to the Thingworx field.

func (*NotehubRoute) SetTwilio

func (o *NotehubRoute) SetTwilio(v TwilioRoute)

SetTwilio gets a reference to the given TwilioRoute and assigns it to the Twilio field.

func (*NotehubRoute) SetType

func (o *NotehubRoute) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*NotehubRoute) SetUid

func (o *NotehubRoute) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (NotehubRoute) ToMap

func (o NotehubRoute) ToMap() (map[string]interface{}, error)

type NotehubRouteSummary

type NotehubRouteSummary struct {
	Disabled *bool      `json:"disabled,omitempty"`
	Label    *string    `json:"label,omitempty"`
	Modified *time.Time `json:"modified,omitempty"`
	Type     *string    `json:"type,omitempty"`
	Uid      *string    `json:"uid,omitempty"`
}

NotehubRouteSummary struct for NotehubRouteSummary

func NewNotehubRouteSummary

func NewNotehubRouteSummary() *NotehubRouteSummary

NewNotehubRouteSummary instantiates a new NotehubRouteSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNotehubRouteSummaryWithDefaults

func NewNotehubRouteSummaryWithDefaults() *NotehubRouteSummary

NewNotehubRouteSummaryWithDefaults instantiates a new NotehubRouteSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NotehubRouteSummary) GetDisabled

func (o *NotehubRouteSummary) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*NotehubRouteSummary) GetDisabledOk

func (o *NotehubRouteSummary) GetDisabledOk() (*bool, bool)

GetDisabledOk returns a tuple with the Disabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRouteSummary) GetLabel

func (o *NotehubRouteSummary) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*NotehubRouteSummary) GetLabelOk

func (o *NotehubRouteSummary) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRouteSummary) GetModified

func (o *NotehubRouteSummary) GetModified() time.Time

GetModified returns the Modified field value if set, zero value otherwise.

func (*NotehubRouteSummary) GetModifiedOk

func (o *NotehubRouteSummary) GetModifiedOk() (*time.Time, bool)

GetModifiedOk returns a tuple with the Modified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRouteSummary) GetType

func (o *NotehubRouteSummary) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*NotehubRouteSummary) GetTypeOk

func (o *NotehubRouteSummary) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRouteSummary) GetUid

func (o *NotehubRouteSummary) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*NotehubRouteSummary) GetUidOk

func (o *NotehubRouteSummary) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotehubRouteSummary) HasDisabled

func (o *NotehubRouteSummary) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*NotehubRouteSummary) HasLabel

func (o *NotehubRouteSummary) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*NotehubRouteSummary) HasModified

func (o *NotehubRouteSummary) HasModified() bool

HasModified returns a boolean if a field has been set.

func (*NotehubRouteSummary) HasType

func (o *NotehubRouteSummary) HasType() bool

HasType returns a boolean if a field has been set.

func (*NotehubRouteSummary) HasUid

func (o *NotehubRouteSummary) HasUid() bool

HasUid returns a boolean if a field has been set.

func (NotehubRouteSummary) MarshalJSON

func (o NotehubRouteSummary) MarshalJSON() ([]byte, error)

func (*NotehubRouteSummary) SetDisabled

func (o *NotehubRouteSummary) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*NotehubRouteSummary) SetLabel

func (o *NotehubRouteSummary) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*NotehubRouteSummary) SetModified

func (o *NotehubRouteSummary) SetModified(v time.Time)

SetModified gets a reference to the given time.Time and assigns it to the Modified field.

func (*NotehubRouteSummary) SetType

func (o *NotehubRouteSummary) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*NotehubRouteSummary) SetUid

func (o *NotehubRouteSummary) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (NotehubRouteSummary) ToMap

func (o NotehubRouteSummary) ToMap() (map[string]interface{}, error)

type NullableAddDeviceToFleetsRequest

type NullableAddDeviceToFleetsRequest struct {
	// contains filtered or unexported fields
}

func (NullableAddDeviceToFleetsRequest) Get

func (NullableAddDeviceToFleetsRequest) IsSet

func (NullableAddDeviceToFleetsRequest) MarshalJSON

func (v NullableAddDeviceToFleetsRequest) MarshalJSON() ([]byte, error)

func (*NullableAddDeviceToFleetsRequest) Set

func (*NullableAddDeviceToFleetsRequest) UnmarshalJSON

func (v *NullableAddDeviceToFleetsRequest) UnmarshalJSON(src []byte) error

func (*NullableAddDeviceToFleetsRequest) Unset

type NullableAlert

type NullableAlert struct {
	// contains filtered or unexported fields
}

func NewNullableAlert

func NewNullableAlert(val *Alert) *NullableAlert

func (NullableAlert) Get

func (v NullableAlert) Get() *Alert

func (NullableAlert) IsSet

func (v NullableAlert) IsSet() bool

func (NullableAlert) MarshalJSON

func (v NullableAlert) MarshalJSON() ([]byte, error)

func (*NullableAlert) Set

func (v *NullableAlert) Set(val *Alert)

func (*NullableAlert) UnmarshalJSON

func (v *NullableAlert) UnmarshalJSON(src []byte) error

func (*NullableAlert) Unset

func (v *NullableAlert) Unset()

type NullableAlertDataInner

type NullableAlertDataInner struct {
	// contains filtered or unexported fields
}

func NewNullableAlertDataInner

func NewNullableAlertDataInner(val *AlertDataInner) *NullableAlertDataInner

func (NullableAlertDataInner) Get

func (NullableAlertDataInner) IsSet

func (v NullableAlertDataInner) IsSet() bool

func (NullableAlertDataInner) MarshalJSON

func (v NullableAlertDataInner) MarshalJSON() ([]byte, error)

func (*NullableAlertDataInner) Set

func (*NullableAlertDataInner) UnmarshalJSON

func (v *NullableAlertDataInner) UnmarshalJSON(src []byte) error

func (*NullableAlertDataInner) Unset

func (v *NullableAlertDataInner) Unset()

type NullableAlertNotificationsInner

type NullableAlertNotificationsInner struct {
	// contains filtered or unexported fields
}

func (NullableAlertNotificationsInner) Get

func (NullableAlertNotificationsInner) IsSet

func (NullableAlertNotificationsInner) MarshalJSON

func (v NullableAlertNotificationsInner) MarshalJSON() ([]byte, error)

func (*NullableAlertNotificationsInner) Set

func (*NullableAlertNotificationsInner) UnmarshalJSON

func (v *NullableAlertNotificationsInner) UnmarshalJSON(src []byte) error

func (*NullableAlertNotificationsInner) Unset

type NullableAwsRoute

type NullableAwsRoute struct {
	// contains filtered or unexported fields
}

func NewNullableAwsRoute

func NewNullableAwsRoute(val *AwsRoute) *NullableAwsRoute

func (NullableAwsRoute) Get

func (v NullableAwsRoute) Get() *AwsRoute

func (NullableAwsRoute) IsSet

func (v NullableAwsRoute) IsSet() bool

func (NullableAwsRoute) MarshalJSON

func (v NullableAwsRoute) MarshalJSON() ([]byte, error)

func (*NullableAwsRoute) Set

func (v *NullableAwsRoute) Set(val *AwsRoute)

func (*NullableAwsRoute) UnmarshalJSON

func (v *NullableAwsRoute) UnmarshalJSON(src []byte) error

func (*NullableAwsRoute) Unset

func (v *NullableAwsRoute) Unset()

type NullableAzureRoute

type NullableAzureRoute struct {
	// contains filtered or unexported fields
}

func NewNullableAzureRoute

func NewNullableAzureRoute(val *AzureRoute) *NullableAzureRoute

func (NullableAzureRoute) Get

func (v NullableAzureRoute) Get() *AzureRoute

func (NullableAzureRoute) IsSet

func (v NullableAzureRoute) IsSet() bool

func (NullableAzureRoute) MarshalJSON

func (v NullableAzureRoute) MarshalJSON() ([]byte, error)

func (*NullableAzureRoute) Set

func (v *NullableAzureRoute) Set(val *AzureRoute)

func (*NullableAzureRoute) UnmarshalJSON

func (v *NullableAzureRoute) UnmarshalJSON(src []byte) error

func (*NullableAzureRoute) Unset

func (v *NullableAzureRoute) Unset()

type NullableBillingAccount

type NullableBillingAccount struct {
	// contains filtered or unexported fields
}

func NewNullableBillingAccount

func NewNullableBillingAccount(val *BillingAccount) *NullableBillingAccount

func (NullableBillingAccount) Get

func (NullableBillingAccount) IsSet

func (v NullableBillingAccount) IsSet() bool

func (NullableBillingAccount) MarshalJSON

func (v NullableBillingAccount) MarshalJSON() ([]byte, error)

func (*NullableBillingAccount) Set

func (*NullableBillingAccount) UnmarshalJSON

func (v *NullableBillingAccount) UnmarshalJSON(src []byte) error

func (*NullableBillingAccount) Unset

func (v *NullableBillingAccount) Unset()

type NullableBillingAccountRole

type NullableBillingAccountRole struct {
	// contains filtered or unexported fields
}

func NewNullableBillingAccountRole

func NewNullableBillingAccountRole(val *BillingAccountRole) *NullableBillingAccountRole

func (NullableBillingAccountRole) Get

func (NullableBillingAccountRole) IsSet

func (v NullableBillingAccountRole) IsSet() bool

func (NullableBillingAccountRole) MarshalJSON

func (v NullableBillingAccountRole) MarshalJSON() ([]byte, error)

func (*NullableBillingAccountRole) Set

func (*NullableBillingAccountRole) UnmarshalJSON

func (v *NullableBillingAccountRole) UnmarshalJSON(src []byte) error

func (*NullableBillingAccountRole) Unset

func (v *NullableBillingAccountRole) Unset()

type NullableBlynkRoute

type NullableBlynkRoute struct {
	// contains filtered or unexported fields
}

func NewNullableBlynkRoute

func NewNullableBlynkRoute(val *BlynkRoute) *NullableBlynkRoute

func (NullableBlynkRoute) Get

func (v NullableBlynkRoute) Get() *BlynkRoute

func (NullableBlynkRoute) IsSet

func (v NullableBlynkRoute) IsSet() bool

func (NullableBlynkRoute) MarshalJSON

func (v NullableBlynkRoute) MarshalJSON() ([]byte, error)

func (*NullableBlynkRoute) Set

func (v *NullableBlynkRoute) Set(val *BlynkRoute)

func (*NullableBlynkRoute) UnmarshalJSON

func (v *NullableBlynkRoute) UnmarshalJSON(src []byte) error

func (*NullableBlynkRoute) Unset

func (v *NullableBlynkRoute) Unset()

type NullableBody

type NullableBody struct {
	// contains filtered or unexported fields
}

func NewNullableBody

func NewNullableBody(val *Body) *NullableBody

func (NullableBody) Get

func (v NullableBody) Get() *Body

func (NullableBody) IsSet

func (v NullableBody) IsSet() bool

func (NullableBody) MarshalJSON

func (v NullableBody) MarshalJSON() ([]byte, error)

func (*NullableBody) Set

func (v *NullableBody) Set(val *Body)

func (*NullableBody) UnmarshalJSON

func (v *NullableBody) UnmarshalJSON(src []byte) error

func (*NullableBody) Unset

func (v *NullableBody) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCellularPlan

type NullableCellularPlan struct {
	// contains filtered or unexported fields
}

func NewNullableCellularPlan

func NewNullableCellularPlan(val *CellularPlan) *NullableCellularPlan

func (NullableCellularPlan) Get

func (NullableCellularPlan) IsSet

func (v NullableCellularPlan) IsSet() bool

func (NullableCellularPlan) MarshalJSON

func (v NullableCellularPlan) MarshalJSON() ([]byte, error)

func (*NullableCellularPlan) Set

func (v *NullableCellularPlan) Set(val *CellularPlan)

func (*NullableCellularPlan) UnmarshalJSON

func (v *NullableCellularPlan) UnmarshalJSON(src []byte) error

func (*NullableCellularPlan) Unset

func (v *NullableCellularPlan) Unset()

type NullableCloneProjectRequest

type NullableCloneProjectRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCloneProjectRequest

func NewNullableCloneProjectRequest(val *CloneProjectRequest) *NullableCloneProjectRequest

func (NullableCloneProjectRequest) Get

func (NullableCloneProjectRequest) IsSet

func (NullableCloneProjectRequest) MarshalJSON

func (v NullableCloneProjectRequest) MarshalJSON() ([]byte, error)

func (*NullableCloneProjectRequest) Set

func (*NullableCloneProjectRequest) UnmarshalJSON

func (v *NullableCloneProjectRequest) UnmarshalJSON(src []byte) error

func (*NullableCloneProjectRequest) Unset

func (v *NullableCloneProjectRequest) Unset()

type NullableContact

type NullableContact struct {
	// contains filtered or unexported fields
}

func NewNullableContact

func NewNullableContact(val *Contact) *NullableContact

func (NullableContact) Get

func (v NullableContact) Get() *Contact

func (NullableContact) IsSet

func (v NullableContact) IsSet() bool

func (NullableContact) MarshalJSON

func (v NullableContact) MarshalJSON() ([]byte, error)

func (*NullableContact) Set

func (v *NullableContact) Set(val *Contact)

func (*NullableContact) UnmarshalJSON

func (v *NullableContact) UnmarshalJSON(src []byte) error

func (*NullableContact) Unset

func (v *NullableContact) Unset()

type NullableCreateFleetRequest

type NullableCreateFleetRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateFleetRequest

func NewNullableCreateFleetRequest(val *CreateFleetRequest) *NullableCreateFleetRequest

func (NullableCreateFleetRequest) Get

func (NullableCreateFleetRequest) IsSet

func (v NullableCreateFleetRequest) IsSet() bool

func (NullableCreateFleetRequest) MarshalJSON

func (v NullableCreateFleetRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateFleetRequest) Set

func (*NullableCreateFleetRequest) UnmarshalJSON

func (v *NullableCreateFleetRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateFleetRequest) Unset

func (v *NullableCreateFleetRequest) Unset()

type NullableCreateMonitor

type NullableCreateMonitor struct {
	// contains filtered or unexported fields
}

func NewNullableCreateMonitor

func NewNullableCreateMonitor(val *CreateMonitor) *NullableCreateMonitor

func (NullableCreateMonitor) Get

func (NullableCreateMonitor) IsSet

func (v NullableCreateMonitor) IsSet() bool

func (NullableCreateMonitor) MarshalJSON

func (v NullableCreateMonitor) MarshalJSON() ([]byte, error)

func (*NullableCreateMonitor) Set

func (v *NullableCreateMonitor) Set(val *CreateMonitor)

func (*NullableCreateMonitor) UnmarshalJSON

func (v *NullableCreateMonitor) UnmarshalJSON(src []byte) error

func (*NullableCreateMonitor) Unset

func (v *NullableCreateMonitor) Unset()

type NullableCreateProductRequest

type NullableCreateProductRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateProductRequest

func NewNullableCreateProductRequest(val *CreateProductRequest) *NullableCreateProductRequest

func (NullableCreateProductRequest) Get

func (NullableCreateProductRequest) IsSet

func (NullableCreateProductRequest) MarshalJSON

func (v NullableCreateProductRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateProductRequest) Set

func (*NullableCreateProductRequest) UnmarshalJSON

func (v *NullableCreateProductRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateProductRequest) Unset

func (v *NullableCreateProductRequest) Unset()

type NullableCreateProjectRequest

type NullableCreateProjectRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateProjectRequest

func NewNullableCreateProjectRequest(val *CreateProjectRequest) *NullableCreateProjectRequest

func (NullableCreateProjectRequest) Get

func (NullableCreateProjectRequest) IsSet

func (NullableCreateProjectRequest) MarshalJSON

func (v NullableCreateProjectRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateProjectRequest) Set

func (*NullableCreateProjectRequest) UnmarshalJSON

func (v *NullableCreateProjectRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateProjectRequest) Unset

func (v *NullableCreateProjectRequest) Unset()

type NullableCreateUpdateRepository

type NullableCreateUpdateRepository struct {
	// contains filtered or unexported fields
}

func (NullableCreateUpdateRepository) Get

func (NullableCreateUpdateRepository) IsSet

func (NullableCreateUpdateRepository) MarshalJSON

func (v NullableCreateUpdateRepository) MarshalJSON() ([]byte, error)

func (*NullableCreateUpdateRepository) Set

func (*NullableCreateUpdateRepository) UnmarshalJSON

func (v *NullableCreateUpdateRepository) UnmarshalJSON(src []byte) error

func (*NullableCreateUpdateRepository) Unset

func (v *NullableCreateUpdateRepository) Unset()

type NullableCurrentFirmware

type NullableCurrentFirmware struct {
	// contains filtered or unexported fields
}

func NewNullableCurrentFirmware

func NewNullableCurrentFirmware(val *CurrentFirmware) *NullableCurrentFirmware

func (NullableCurrentFirmware) Get

func (NullableCurrentFirmware) IsSet

func (v NullableCurrentFirmware) IsSet() bool

func (NullableCurrentFirmware) MarshalJSON

func (v NullableCurrentFirmware) MarshalJSON() ([]byte, error)

func (*NullableCurrentFirmware) Set

func (*NullableCurrentFirmware) UnmarshalJSON

func (v *NullableCurrentFirmware) UnmarshalJSON(src []byte) error

func (*NullableCurrentFirmware) Unset

func (v *NullableCurrentFirmware) Unset()

type NullableDFUEnv

type NullableDFUEnv struct {
	// contains filtered or unexported fields
}

func NewNullableDFUEnv

func NewNullableDFUEnv(val *DFUEnv) *NullableDFUEnv

func (NullableDFUEnv) Get

func (v NullableDFUEnv) Get() *DFUEnv

func (NullableDFUEnv) IsSet

func (v NullableDFUEnv) IsSet() bool

func (NullableDFUEnv) MarshalJSON

func (v NullableDFUEnv) MarshalJSON() ([]byte, error)

func (*NullableDFUEnv) Set

func (v *NullableDFUEnv) Set(val *DFUEnv)

func (*NullableDFUEnv) UnmarshalJSON

func (v *NullableDFUEnv) UnmarshalJSON(src []byte) error

func (*NullableDFUEnv) Unset

func (v *NullableDFUEnv) Unset()

type NullableDFUState

type NullableDFUState struct {
	// contains filtered or unexported fields
}

func NewNullableDFUState

func NewNullableDFUState(val *DFUState) *NullableDFUState

func (NullableDFUState) Get

func (v NullableDFUState) Get() *DFUState

func (NullableDFUState) IsSet

func (v NullableDFUState) IsSet() bool

func (NullableDFUState) MarshalJSON

func (v NullableDFUState) MarshalJSON() ([]byte, error)

func (*NullableDFUState) Set

func (v *NullableDFUState) Set(val *DFUState)

func (*NullableDFUState) UnmarshalJSON

func (v *NullableDFUState) UnmarshalJSON(src []byte) error

func (*NullableDFUState) Unset

func (v *NullableDFUState) Unset()

type NullableDataField

type NullableDataField struct {
	// contains filtered or unexported fields
}

func NewNullableDataField

func NewNullableDataField(val *DataField) *NullableDataField

func (NullableDataField) Get

func (v NullableDataField) Get() *DataField

func (NullableDataField) IsSet

func (v NullableDataField) IsSet() bool

func (NullableDataField) MarshalJSON

func (v NullableDataField) MarshalJSON() ([]byte, error)

func (*NullableDataField) Set

func (v *NullableDataField) Set(val *DataField)

func (*NullableDataField) UnmarshalJSON

func (v *NullableDataField) UnmarshalJSON(src []byte) error

func (*NullableDataField) Unset

func (v *NullableDataField) Unset()

type NullableDataSetField

type NullableDataSetField struct {
	// contains filtered or unexported fields
}

func NewNullableDataSetField

func NewNullableDataSetField(val *DataSetField) *NullableDataSetField

func (NullableDataSetField) Get

func (NullableDataSetField) IsSet

func (v NullableDataSetField) IsSet() bool

func (NullableDataSetField) MarshalJSON

func (v NullableDataSetField) MarshalJSON() ([]byte, error)

func (*NullableDataSetField) Set

func (v *NullableDataSetField) Set(val *DataSetField)

func (*NullableDataSetField) UnmarshalJSON

func (v *NullableDataSetField) UnmarshalJSON(src []byte) error

func (*NullableDataSetField) Unset

func (v *NullableDataSetField) Unset()

type NullableDataUsage

type NullableDataUsage struct {
	// contains filtered or unexported fields
}

func NewNullableDataUsage

func NewNullableDataUsage(val *DataUsage) *NullableDataUsage

func (NullableDataUsage) Get

func (v NullableDataUsage) Get() *DataUsage

func (NullableDataUsage) IsSet

func (v NullableDataUsage) IsSet() bool

func (NullableDataUsage) MarshalJSON

func (v NullableDataUsage) MarshalJSON() ([]byte, error)

func (*NullableDataUsage) Set

func (v *NullableDataUsage) Set(val *DataUsage)

func (*NullableDataUsage) UnmarshalJSON

func (v *NullableDataUsage) UnmarshalJSON(src []byte) error

func (*NullableDataUsage) Unset

func (v *NullableDataUsage) Unset()

type NullableDatacakeRoute

type NullableDatacakeRoute struct {
	// contains filtered or unexported fields
}

func NewNullableDatacakeRoute

func NewNullableDatacakeRoute(val *DatacakeRoute) *NullableDatacakeRoute

func (NullableDatacakeRoute) Get

func (NullableDatacakeRoute) IsSet

func (v NullableDatacakeRoute) IsSet() bool

func (NullableDatacakeRoute) MarshalJSON

func (v NullableDatacakeRoute) MarshalJSON() ([]byte, error)

func (*NullableDatacakeRoute) Set

func (v *NullableDatacakeRoute) Set(val *DatacakeRoute)

func (*NullableDatacakeRoute) UnmarshalJSON

func (v *NullableDatacakeRoute) UnmarshalJSON(src []byte) error

func (*NullableDatacakeRoute) Unset

func (v *NullableDatacakeRoute) Unset()

type NullableDeleteDeviceFromFleetsRequest

type NullableDeleteDeviceFromFleetsRequest struct {
	// contains filtered or unexported fields
}

func (NullableDeleteDeviceFromFleetsRequest) Get

func (NullableDeleteDeviceFromFleetsRequest) IsSet

func (NullableDeleteDeviceFromFleetsRequest) MarshalJSON

func (v NullableDeleteDeviceFromFleetsRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteDeviceFromFleetsRequest) Set

func (*NullableDeleteDeviceFromFleetsRequest) UnmarshalJSON

func (v *NullableDeleteDeviceFromFleetsRequest) UnmarshalJSON(src []byte) error

func (*NullableDeleteDeviceFromFleetsRequest) Unset

type NullableDeleteNotefilesRequest

type NullableDeleteNotefilesRequest struct {
	// contains filtered or unexported fields
}

func (NullableDeleteNotefilesRequest) Get

func (NullableDeleteNotefilesRequest) IsSet

func (NullableDeleteNotefilesRequest) MarshalJSON

func (v NullableDeleteNotefilesRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteNotefilesRequest) Set

func (*NullableDeleteNotefilesRequest) UnmarshalJSON

func (v *NullableDeleteNotefilesRequest) UnmarshalJSON(src []byte) error

func (*NullableDeleteNotefilesRequest) Unset

func (v *NullableDeleteNotefilesRequest) Unset()

type NullableDevice

type NullableDevice struct {
	// contains filtered or unexported fields
}

func NewNullableDevice

func NewNullableDevice(val *Device) *NullableDevice

func (NullableDevice) Get

func (v NullableDevice) Get() *Device

func (NullableDevice) IsSet

func (v NullableDevice) IsSet() bool

func (NullableDevice) MarshalJSON

func (v NullableDevice) MarshalJSON() ([]byte, error)

func (*NullableDevice) Set

func (v *NullableDevice) Set(val *Device)

func (*NullableDevice) UnmarshalJSON

func (v *NullableDevice) UnmarshalJSON(src []byte) error

func (*NullableDevice) Unset

func (v *NullableDevice) Unset()

type NullableDeviceDfuHistory

type NullableDeviceDfuHistory struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceDfuHistory

func NewNullableDeviceDfuHistory(val *DeviceDfuHistory) *NullableDeviceDfuHistory

func (NullableDeviceDfuHistory) Get

func (NullableDeviceDfuHistory) IsSet

func (v NullableDeviceDfuHistory) IsSet() bool

func (NullableDeviceDfuHistory) MarshalJSON

func (v NullableDeviceDfuHistory) MarshalJSON() ([]byte, error)

func (*NullableDeviceDfuHistory) Set

func (*NullableDeviceDfuHistory) UnmarshalJSON

func (v *NullableDeviceDfuHistory) UnmarshalJSON(src []byte) error

func (*NullableDeviceDfuHistory) Unset

func (v *NullableDeviceDfuHistory) Unset()

type NullableDeviceDfuHistoryCurrent

type NullableDeviceDfuHistoryCurrent struct {
	// contains filtered or unexported fields
}

func (NullableDeviceDfuHistoryCurrent) Get

func (NullableDeviceDfuHistoryCurrent) IsSet

func (NullableDeviceDfuHistoryCurrent) MarshalJSON

func (v NullableDeviceDfuHistoryCurrent) MarshalJSON() ([]byte, error)

func (*NullableDeviceDfuHistoryCurrent) Set

func (*NullableDeviceDfuHistoryCurrent) UnmarshalJSON

func (v *NullableDeviceDfuHistoryCurrent) UnmarshalJSON(src []byte) error

func (*NullableDeviceDfuHistoryCurrent) Unset

type NullableDeviceDfuHistoryPage

type NullableDeviceDfuHistoryPage struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceDfuHistoryPage

func NewNullableDeviceDfuHistoryPage(val *DeviceDfuHistoryPage) *NullableDeviceDfuHistoryPage

func (NullableDeviceDfuHistoryPage) Get

func (NullableDeviceDfuHistoryPage) IsSet

func (NullableDeviceDfuHistoryPage) MarshalJSON

func (v NullableDeviceDfuHistoryPage) MarshalJSON() ([]byte, error)

func (*NullableDeviceDfuHistoryPage) Set

func (*NullableDeviceDfuHistoryPage) UnmarshalJSON

func (v *NullableDeviceDfuHistoryPage) UnmarshalJSON(src []byte) error

func (*NullableDeviceDfuHistoryPage) Unset

func (v *NullableDeviceDfuHistoryPage) Unset()

type NullableDeviceDfuStateMachine

type NullableDeviceDfuStateMachine struct {
	// contains filtered or unexported fields
}

func (NullableDeviceDfuStateMachine) Get

func (NullableDeviceDfuStateMachine) IsSet

func (NullableDeviceDfuStateMachine) MarshalJSON

func (v NullableDeviceDfuStateMachine) MarshalJSON() ([]byte, error)

func (*NullableDeviceDfuStateMachine) Set

func (*NullableDeviceDfuStateMachine) UnmarshalJSON

func (v *NullableDeviceDfuStateMachine) UnmarshalJSON(src []byte) error

func (*NullableDeviceDfuStateMachine) Unset

func (v *NullableDeviceDfuStateMachine) Unset()

type NullableDeviceDfuStateMachineNode

type NullableDeviceDfuStateMachineNode struct {
	// contains filtered or unexported fields
}

func (NullableDeviceDfuStateMachineNode) Get

func (NullableDeviceDfuStateMachineNode) IsSet

func (NullableDeviceDfuStateMachineNode) MarshalJSON

func (v NullableDeviceDfuStateMachineNode) MarshalJSON() ([]byte, error)

func (*NullableDeviceDfuStateMachineNode) Set

func (*NullableDeviceDfuStateMachineNode) UnmarshalJSON

func (v *NullableDeviceDfuStateMachineNode) UnmarshalJSON(src []byte) error

func (*NullableDeviceDfuStateMachineNode) Unset

type NullableDeviceDfuStatus

type NullableDeviceDfuStatus struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceDfuStatus

func NewNullableDeviceDfuStatus(val *DeviceDfuStatus) *NullableDeviceDfuStatus

func (NullableDeviceDfuStatus) Get

func (NullableDeviceDfuStatus) IsSet

func (v NullableDeviceDfuStatus) IsSet() bool

func (NullableDeviceDfuStatus) MarshalJSON

func (v NullableDeviceDfuStatus) MarshalJSON() ([]byte, error)

func (*NullableDeviceDfuStatus) Set

func (*NullableDeviceDfuStatus) UnmarshalJSON

func (v *NullableDeviceDfuStatus) UnmarshalJSON(src []byte) error

func (*NullableDeviceDfuStatus) Unset

func (v *NullableDeviceDfuStatus) Unset()

type NullableDeviceDfuStatusPage

type NullableDeviceDfuStatusPage struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceDfuStatusPage

func NewNullableDeviceDfuStatusPage(val *DeviceDfuStatusPage) *NullableDeviceDfuStatusPage

func (NullableDeviceDfuStatusPage) Get

func (NullableDeviceDfuStatusPage) IsSet

func (NullableDeviceDfuStatusPage) MarshalJSON

func (v NullableDeviceDfuStatusPage) MarshalJSON() ([]byte, error)

func (*NullableDeviceDfuStatusPage) Set

func (*NullableDeviceDfuStatusPage) UnmarshalJSON

func (v *NullableDeviceDfuStatusPage) UnmarshalJSON(src []byte) error

func (*NullableDeviceDfuStatusPage) Unset

func (v *NullableDeviceDfuStatusPage) Unset()

type NullableDeviceSession

type NullableDeviceSession struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceSession

func NewNullableDeviceSession(val *DeviceSession) *NullableDeviceSession

func (NullableDeviceSession) Get

func (NullableDeviceSession) IsSet

func (v NullableDeviceSession) IsSet() bool

func (NullableDeviceSession) MarshalJSON

func (v NullableDeviceSession) MarshalJSON() ([]byte, error)

func (*NullableDeviceSession) Set

func (v *NullableDeviceSession) Set(val *DeviceSession)

func (*NullableDeviceSession) UnmarshalJSON

func (v *NullableDeviceSession) UnmarshalJSON(src []byte) error

func (*NullableDeviceSession) Unset

func (v *NullableDeviceSession) Unset()

type NullableDeviceTowerInfo

type NullableDeviceTowerInfo struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceTowerInfo

func NewNullableDeviceTowerInfo(val *DeviceTowerInfo) *NullableDeviceTowerInfo

func (NullableDeviceTowerInfo) Get

func (NullableDeviceTowerInfo) IsSet

func (v NullableDeviceTowerInfo) IsSet() bool

func (NullableDeviceTowerInfo) MarshalJSON

func (v NullableDeviceTowerInfo) MarshalJSON() ([]byte, error)

func (*NullableDeviceTowerInfo) Set

func (*NullableDeviceTowerInfo) UnmarshalJSON

func (v *NullableDeviceTowerInfo) UnmarshalJSON(src []byte) error

func (*NullableDeviceTowerInfo) Unset

func (v *NullableDeviceTowerInfo) Unset()

type NullableDeviceUsage

type NullableDeviceUsage struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceUsage

func NewNullableDeviceUsage(val *DeviceUsage) *NullableDeviceUsage

func (NullableDeviceUsage) Get

func (NullableDeviceUsage) IsSet

func (v NullableDeviceUsage) IsSet() bool

func (NullableDeviceUsage) MarshalJSON

func (v NullableDeviceUsage) MarshalJSON() ([]byte, error)

func (*NullableDeviceUsage) Set

func (v *NullableDeviceUsage) Set(val *DeviceUsage)

func (*NullableDeviceUsage) UnmarshalJSON

func (v *NullableDeviceUsage) UnmarshalJSON(src []byte) error

func (*NullableDeviceUsage) Unset

func (v *NullableDeviceUsage) Unset()

type NullableDfuActionRequest

type NullableDfuActionRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDfuActionRequest

func NewNullableDfuActionRequest(val *DfuActionRequest) *NullableDfuActionRequest

func (NullableDfuActionRequest) Get

func (NullableDfuActionRequest) IsSet

func (v NullableDfuActionRequest) IsSet() bool

func (NullableDfuActionRequest) MarshalJSON

func (v NullableDfuActionRequest) MarshalJSON() ([]byte, error)

func (*NullableDfuActionRequest) Set

func (*NullableDfuActionRequest) UnmarshalJSON

func (v *NullableDfuActionRequest) UnmarshalJSON(src []byte) error

func (*NullableDfuActionRequest) Unset

func (v *NullableDfuActionRequest) Unset()

type NullableEmailNotification

type NullableEmailNotification struct {
	// contains filtered or unexported fields
}

func NewNullableEmailNotification

func NewNullableEmailNotification(val *EmailNotification) *NullableEmailNotification

func (NullableEmailNotification) Get

func (NullableEmailNotification) IsSet

func (v NullableEmailNotification) IsSet() bool

func (NullableEmailNotification) MarshalJSON

func (v NullableEmailNotification) MarshalJSON() ([]byte, error)

func (*NullableEmailNotification) Set

func (*NullableEmailNotification) UnmarshalJSON

func (v *NullableEmailNotification) UnmarshalJSON(src []byte) error

func (*NullableEmailNotification) Unset

func (v *NullableEmailNotification) Unset()

type NullableEnvTreeJsonNode

type NullableEnvTreeJsonNode struct {
	// contains filtered or unexported fields
}

func NewNullableEnvTreeJsonNode

func NewNullableEnvTreeJsonNode(val *EnvTreeJsonNode) *NullableEnvTreeJsonNode

func (NullableEnvTreeJsonNode) Get

func (NullableEnvTreeJsonNode) IsSet

func (v NullableEnvTreeJsonNode) IsSet() bool

func (NullableEnvTreeJsonNode) MarshalJSON

func (v NullableEnvTreeJsonNode) MarshalJSON() ([]byte, error)

func (*NullableEnvTreeJsonNode) Set

func (*NullableEnvTreeJsonNode) UnmarshalJSON

func (v *NullableEnvTreeJsonNode) UnmarshalJSON(src []byte) error

func (*NullableEnvTreeJsonNode) Unset

func (v *NullableEnvTreeJsonNode) Unset()

type NullableEnvVar

type NullableEnvVar struct {
	// contains filtered or unexported fields
}

func NewNullableEnvVar

func NewNullableEnvVar(val *EnvVar) *NullableEnvVar

func (NullableEnvVar) Get

func (v NullableEnvVar) Get() *EnvVar

func (NullableEnvVar) IsSet

func (v NullableEnvVar) IsSet() bool

func (NullableEnvVar) MarshalJSON

func (v NullableEnvVar) MarshalJSON() ([]byte, error)

func (*NullableEnvVar) Set

func (v *NullableEnvVar) Set(val *EnvVar)

func (*NullableEnvVar) UnmarshalJSON

func (v *NullableEnvVar) UnmarshalJSON(src []byte) error

func (*NullableEnvVar) Unset

func (v *NullableEnvVar) Unset()

type NullableEnvironmentVariables

type NullableEnvironmentVariables struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentVariables

func NewNullableEnvironmentVariables(val *EnvironmentVariables) *NullableEnvironmentVariables

func (NullableEnvironmentVariables) Get

func (NullableEnvironmentVariables) IsSet

func (NullableEnvironmentVariables) MarshalJSON

func (v NullableEnvironmentVariables) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentVariables) Set

func (*NullableEnvironmentVariables) UnmarshalJSON

func (v *NullableEnvironmentVariables) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentVariables) Unset

func (v *NullableEnvironmentVariables) Unset()

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableEvent

type NullableEvent struct {
	// contains filtered or unexported fields
}

func NewNullableEvent

func NewNullableEvent(val *Event) *NullableEvent

func (NullableEvent) Get

func (v NullableEvent) Get() *Event

func (NullableEvent) IsSet

func (v NullableEvent) IsSet() bool

func (NullableEvent) MarshalJSON

func (v NullableEvent) MarshalJSON() ([]byte, error)

func (*NullableEvent) Set

func (v *NullableEvent) Set(val *Event)

func (*NullableEvent) UnmarshalJSON

func (v *NullableEvent) UnmarshalJSON(src []byte) error

func (*NullableEvent) Unset

func (v *NullableEvent) Unset()

type NullableFilter

type NullableFilter struct {
	// contains filtered or unexported fields
}

func NewNullableFilter

func NewNullableFilter(val *Filter) *NullableFilter

func (NullableFilter) Get

func (v NullableFilter) Get() *Filter

func (NullableFilter) IsSet

func (v NullableFilter) IsSet() bool

func (NullableFilter) MarshalJSON

func (v NullableFilter) MarshalJSON() ([]byte, error)

func (*NullableFilter) Set

func (v *NullableFilter) Set(val *Filter)

func (*NullableFilter) UnmarshalJSON

func (v *NullableFilter) UnmarshalJSON(src []byte) error

func (*NullableFilter) Unset

func (v *NullableFilter) Unset()

type NullableFirmware

type NullableFirmware struct {
	// contains filtered or unexported fields
}

func NewNullableFirmware

func NewNullableFirmware(val *Firmware) *NullableFirmware

func (NullableFirmware) Get

func (v NullableFirmware) Get() *Firmware

func (NullableFirmware) IsSet

func (v NullableFirmware) IsSet() bool

func (NullableFirmware) MarshalJSON

func (v NullableFirmware) MarshalJSON() ([]byte, error)

func (*NullableFirmware) Set

func (v *NullableFirmware) Set(val *Firmware)

func (*NullableFirmware) UnmarshalJSON

func (v *NullableFirmware) UnmarshalJSON(src []byte) error

func (*NullableFirmware) Unset

func (v *NullableFirmware) Unset()

type NullableFirmwareInfo

type NullableFirmwareInfo struct {
	// contains filtered or unexported fields
}

func NewNullableFirmwareInfo

func NewNullableFirmwareInfo(val *FirmwareInfo) *NullableFirmwareInfo

func (NullableFirmwareInfo) Get

func (NullableFirmwareInfo) IsSet

func (v NullableFirmwareInfo) IsSet() bool

func (NullableFirmwareInfo) MarshalJSON

func (v NullableFirmwareInfo) MarshalJSON() ([]byte, error)

func (*NullableFirmwareInfo) Set

func (v *NullableFirmwareInfo) Set(val *FirmwareInfo)

func (*NullableFirmwareInfo) UnmarshalJSON

func (v *NullableFirmwareInfo) UnmarshalJSON(src []byte) error

func (*NullableFirmwareInfo) Unset

func (v *NullableFirmwareInfo) Unset()

type NullableFleet

type NullableFleet struct {
	// contains filtered or unexported fields
}

func NewNullableFleet

func NewNullableFleet(val *Fleet) *NullableFleet

func (NullableFleet) Get

func (v NullableFleet) Get() *Fleet

func (NullableFleet) IsSet

func (v NullableFleet) IsSet() bool

func (NullableFleet) MarshalJSON

func (v NullableFleet) MarshalJSON() ([]byte, error)

func (*NullableFleet) Set

func (v *NullableFleet) Set(val *Fleet)

func (*NullableFleet) UnmarshalJSON

func (v *NullableFleet) UnmarshalJSON(src []byte) error

func (*NullableFleet) Unset

func (v *NullableFleet) Unset()

type NullableFleetConnectivityAssurance

type NullableFleetConnectivityAssurance struct {
	// contains filtered or unexported fields
}

func (NullableFleetConnectivityAssurance) Get

func (NullableFleetConnectivityAssurance) IsSet

func (NullableFleetConnectivityAssurance) MarshalJSON

func (v NullableFleetConnectivityAssurance) MarshalJSON() ([]byte, error)

func (*NullableFleetConnectivityAssurance) Set

func (*NullableFleetConnectivityAssurance) UnmarshalJSON

func (v *NullableFleetConnectivityAssurance) UnmarshalJSON(src []byte) error

func (*NullableFleetConnectivityAssurance) Unset

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGetAlerts200Response

type NullableGetAlerts200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetAlerts200Response

func NewNullableGetAlerts200Response(val *GetAlerts200Response) *NullableGetAlerts200Response

func (NullableGetAlerts200Response) Get

func (NullableGetAlerts200Response) IsSet

func (NullableGetAlerts200Response) MarshalJSON

func (v NullableGetAlerts200Response) MarshalJSON() ([]byte, error)

func (*NullableGetAlerts200Response) Set

func (*NullableGetAlerts200Response) UnmarshalJSON

func (v *NullableGetAlerts200Response) UnmarshalJSON(src []byte) error

func (*NullableGetAlerts200Response) Unset

func (v *NullableGetAlerts200Response) Unset()

type NullableGetBillingAccounts200Response

type NullableGetBillingAccounts200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetBillingAccounts200Response) Get

func (NullableGetBillingAccounts200Response) IsSet

func (NullableGetBillingAccounts200Response) MarshalJSON

func (v NullableGetBillingAccounts200Response) MarshalJSON() ([]byte, error)

func (*NullableGetBillingAccounts200Response) Set

func (*NullableGetBillingAccounts200Response) UnmarshalJSON

func (v *NullableGetBillingAccounts200Response) UnmarshalJSON(src []byte) error

func (*NullableGetBillingAccounts200Response) Unset

type NullableGetDataUsage200Response

type NullableGetDataUsage200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDataUsage200Response) Get

func (NullableGetDataUsage200Response) IsSet

func (NullableGetDataUsage200Response) MarshalJSON

func (v NullableGetDataUsage200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDataUsage200Response) Set

func (*NullableGetDataUsage200Response) UnmarshalJSON

func (v *NullableGetDataUsage200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDataUsage200Response) Unset

type NullableGetDataUsage200ResponseDataInner

type NullableGetDataUsage200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetDataUsage200ResponseDataInner) Get

func (NullableGetDataUsage200ResponseDataInner) IsSet

func (NullableGetDataUsage200ResponseDataInner) MarshalJSON

func (*NullableGetDataUsage200ResponseDataInner) Set

func (*NullableGetDataUsage200ResponseDataInner) UnmarshalJSON

func (v *NullableGetDataUsage200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetDataUsage200ResponseDataInner) Unset

type NullableGetDbNote200Response

type NullableGetDbNote200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetDbNote200Response

func NewNullableGetDbNote200Response(val *GetDbNote200Response) *NullableGetDbNote200Response

func (NullableGetDbNote200Response) Get

func (NullableGetDbNote200Response) IsSet

func (NullableGetDbNote200Response) MarshalJSON

func (v NullableGetDbNote200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDbNote200Response) Set

func (*NullableGetDbNote200Response) UnmarshalJSON

func (v *NullableGetDbNote200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDbNote200Response) Unset

func (v *NullableGetDbNote200Response) Unset()

type NullableGetDeviceEnvironmentVariablesByPin200Response

type NullableGetDeviceEnvironmentVariablesByPin200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDeviceEnvironmentVariablesByPin200Response) Get

func (NullableGetDeviceEnvironmentVariablesByPin200Response) IsSet

func (NullableGetDeviceEnvironmentVariablesByPin200Response) MarshalJSON

func (*NullableGetDeviceEnvironmentVariablesByPin200Response) Set

func (*NullableGetDeviceEnvironmentVariablesByPin200Response) UnmarshalJSON

func (*NullableGetDeviceEnvironmentVariablesByPin200Response) Unset

type NullableGetDeviceFleets200Response

type NullableGetDeviceFleets200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDeviceFleets200Response) Get

func (NullableGetDeviceFleets200Response) IsSet

func (NullableGetDeviceFleets200Response) MarshalJSON

func (v NullableGetDeviceFleets200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDeviceFleets200Response) Set

func (*NullableGetDeviceFleets200Response) UnmarshalJSON

func (v *NullableGetDeviceFleets200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDeviceFleets200Response) Unset

type NullableGetDeviceHealthLog200Response

type NullableGetDeviceHealthLog200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDeviceHealthLog200Response) Get

func (NullableGetDeviceHealthLog200Response) IsSet

func (NullableGetDeviceHealthLog200Response) MarshalJSON

func (v NullableGetDeviceHealthLog200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDeviceHealthLog200Response) Set

func (*NullableGetDeviceHealthLog200Response) UnmarshalJSON

func (v *NullableGetDeviceHealthLog200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDeviceHealthLog200Response) Unset

type NullableGetDeviceHealthLog200ResponseHealthLogInner

type NullableGetDeviceHealthLog200ResponseHealthLogInner struct {
	// contains filtered or unexported fields
}

func (NullableGetDeviceHealthLog200ResponseHealthLogInner) Get

func (NullableGetDeviceHealthLog200ResponseHealthLogInner) IsSet

func (NullableGetDeviceHealthLog200ResponseHealthLogInner) MarshalJSON

func (*NullableGetDeviceHealthLog200ResponseHealthLogInner) Set

func (*NullableGetDeviceHealthLog200ResponseHealthLogInner) UnmarshalJSON

func (*NullableGetDeviceHealthLog200ResponseHealthLogInner) Unset

type NullableGetDeviceLatestEvents200Response

type NullableGetDeviceLatestEvents200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDeviceLatestEvents200Response) Get

func (NullableGetDeviceLatestEvents200Response) IsSet

func (NullableGetDeviceLatestEvents200Response) MarshalJSON

func (*NullableGetDeviceLatestEvents200Response) Set

func (*NullableGetDeviceLatestEvents200Response) UnmarshalJSON

func (v *NullableGetDeviceLatestEvents200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDeviceLatestEvents200Response) Unset

type NullableGetDevicePlans200Response

type NullableGetDevicePlans200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDevicePlans200Response) Get

func (NullableGetDevicePlans200Response) IsSet

func (NullableGetDevicePlans200Response) MarshalJSON

func (v NullableGetDevicePlans200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDevicePlans200Response) Set

func (*NullableGetDevicePlans200Response) UnmarshalJSON

func (v *NullableGetDevicePlans200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDevicePlans200Response) Unset

type NullableGetDevicePublicKey200Response

type NullableGetDevicePublicKey200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDevicePublicKey200Response) Get

func (NullableGetDevicePublicKey200Response) IsSet

func (NullableGetDevicePublicKey200Response) MarshalJSON

func (v NullableGetDevicePublicKey200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDevicePublicKey200Response) Set

func (*NullableGetDevicePublicKey200Response) UnmarshalJSON

func (v *NullableGetDevicePublicKey200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDevicePublicKey200Response) Unset

type NullableGetDevicePublicKeys200Response

type NullableGetDevicePublicKeys200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDevicePublicKeys200Response) Get

func (NullableGetDevicePublicKeys200Response) IsSet

func (NullableGetDevicePublicKeys200Response) MarshalJSON

func (v NullableGetDevicePublicKeys200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDevicePublicKeys200Response) Set

func (*NullableGetDevicePublicKeys200Response) UnmarshalJSON

func (v *NullableGetDevicePublicKeys200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDevicePublicKeys200Response) Unset

type NullableGetDevicePublicKeys200ResponseDevicePublicKeysInner

type NullableGetDevicePublicKeys200ResponseDevicePublicKeysInner struct {
	// contains filtered or unexported fields
}

func (NullableGetDevicePublicKeys200ResponseDevicePublicKeysInner) Get

func (NullableGetDevicePublicKeys200ResponseDevicePublicKeysInner) IsSet

func (NullableGetDevicePublicKeys200ResponseDevicePublicKeysInner) MarshalJSON

func (*NullableGetDevicePublicKeys200ResponseDevicePublicKeysInner) Set

func (*NullableGetDevicePublicKeys200ResponseDevicePublicKeysInner) UnmarshalJSON

func (*NullableGetDevicePublicKeys200ResponseDevicePublicKeysInner) Unset

type NullableGetDeviceSessions200Response

type NullableGetDeviceSessions200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDeviceSessions200Response) Get

func (NullableGetDeviceSessions200Response) IsSet

func (NullableGetDeviceSessions200Response) MarshalJSON

func (v NullableGetDeviceSessions200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDeviceSessions200Response) Set

func (*NullableGetDeviceSessions200Response) UnmarshalJSON

func (v *NullableGetDeviceSessions200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDeviceSessions200Response) Unset

type NullableGetDevices200Response

type NullableGetDevices200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetDevices200Response) Get

func (NullableGetDevices200Response) IsSet

func (NullableGetDevices200Response) MarshalJSON

func (v NullableGetDevices200Response) MarshalJSON() ([]byte, error)

func (*NullableGetDevices200Response) Set

func (*NullableGetDevices200Response) UnmarshalJSON

func (v *NullableGetDevices200Response) UnmarshalJSON(src []byte) error

func (*NullableGetDevices200Response) Unset

func (v *NullableGetDevices200Response) Unset()

type NullableGetEvents200Response

type NullableGetEvents200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetEvents200Response

func NewNullableGetEvents200Response(val *GetEvents200Response) *NullableGetEvents200Response

func (NullableGetEvents200Response) Get

func (NullableGetEvents200Response) IsSet

func (NullableGetEvents200Response) MarshalJSON

func (v NullableGetEvents200Response) MarshalJSON() ([]byte, error)

func (*NullableGetEvents200Response) Set

func (*NullableGetEvents200Response) UnmarshalJSON

func (v *NullableGetEvents200Response) UnmarshalJSON(src []byte) error

func (*NullableGetEvents200Response) Unset

func (v *NullableGetEvents200Response) Unset()

type NullableGetEventsByCursor200Response

type NullableGetEventsByCursor200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetEventsByCursor200Response) Get

func (NullableGetEventsByCursor200Response) IsSet

func (NullableGetEventsByCursor200Response) MarshalJSON

func (v NullableGetEventsByCursor200Response) MarshalJSON() ([]byte, error)

func (*NullableGetEventsByCursor200Response) Set

func (*NullableGetEventsByCursor200Response) UnmarshalJSON

func (v *NullableGetEventsByCursor200Response) UnmarshalJSON(src []byte) error

func (*NullableGetEventsByCursor200Response) Unset

type NullableGetNotefile200Response

type NullableGetNotefile200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetNotefile200Response) Get

func (NullableGetNotefile200Response) IsSet

func (NullableGetNotefile200Response) MarshalJSON

func (v NullableGetNotefile200Response) MarshalJSON() ([]byte, error)

func (*NullableGetNotefile200Response) Set

func (*NullableGetNotefile200Response) UnmarshalJSON

func (v *NullableGetNotefile200Response) UnmarshalJSON(src []byte) error

func (*NullableGetNotefile200Response) Unset

func (v *NullableGetNotefile200Response) Unset()

type NullableGetProducts200Response

type NullableGetProducts200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetProducts200Response) Get

func (NullableGetProducts200Response) IsSet

func (NullableGetProducts200Response) MarshalJSON

func (v NullableGetProducts200Response) MarshalJSON() ([]byte, error)

func (*NullableGetProducts200Response) Set

func (*NullableGetProducts200Response) UnmarshalJSON

func (v *NullableGetProducts200Response) UnmarshalJSON(src []byte) error

func (*NullableGetProducts200Response) Unset

func (v *NullableGetProducts200Response) Unset()

type NullableGetProjectMembers200Response

type NullableGetProjectMembers200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetProjectMembers200Response) Get

func (NullableGetProjectMembers200Response) IsSet

func (NullableGetProjectMembers200Response) MarshalJSON

func (v NullableGetProjectMembers200Response) MarshalJSON() ([]byte, error)

func (*NullableGetProjectMembers200Response) Set

func (*NullableGetProjectMembers200Response) UnmarshalJSON

func (v *NullableGetProjectMembers200Response) UnmarshalJSON(src []byte) error

func (*NullableGetProjectMembers200Response) Unset

type NullableGetProjects200Response

type NullableGetProjects200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetProjects200Response) Get

func (NullableGetProjects200Response) IsSet

func (NullableGetProjects200Response) MarshalJSON

func (v NullableGetProjects200Response) MarshalJSON() ([]byte, error)

func (*NullableGetProjects200Response) Set

func (*NullableGetProjects200Response) UnmarshalJSON

func (v *NullableGetProjects200Response) UnmarshalJSON(src []byte) error

func (*NullableGetProjects200Response) Unset

func (v *NullableGetProjects200Response) Unset()

type NullableGetRouteLogsUsage200Response

type NullableGetRouteLogsUsage200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetRouteLogsUsage200Response) Get

func (NullableGetRouteLogsUsage200Response) IsSet

func (NullableGetRouteLogsUsage200Response) MarshalJSON

func (v NullableGetRouteLogsUsage200Response) MarshalJSON() ([]byte, error)

func (*NullableGetRouteLogsUsage200Response) Set

func (*NullableGetRouteLogsUsage200Response) UnmarshalJSON

func (v *NullableGetRouteLogsUsage200Response) UnmarshalJSON(src []byte) error

func (*NullableGetRouteLogsUsage200Response) Unset

type NullableGetSessionsUsage200Response

type NullableGetSessionsUsage200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetSessionsUsage200Response) Get

func (NullableGetSessionsUsage200Response) IsSet

func (NullableGetSessionsUsage200Response) MarshalJSON

func (v NullableGetSessionsUsage200Response) MarshalJSON() ([]byte, error)

func (*NullableGetSessionsUsage200Response) Set

func (*NullableGetSessionsUsage200Response) UnmarshalJSON

func (v *NullableGetSessionsUsage200Response) UnmarshalJSON(src []byte) error

func (*NullableGetSessionsUsage200Response) Unset

type NullableGetWebhooks200Response

type NullableGetWebhooks200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetWebhooks200Response) Get

func (NullableGetWebhooks200Response) IsSet

func (NullableGetWebhooks200Response) MarshalJSON

func (v NullableGetWebhooks200Response) MarshalJSON() ([]byte, error)

func (*NullableGetWebhooks200Response) Set

func (*NullableGetWebhooks200Response) UnmarshalJSON

func (v *NullableGetWebhooks200Response) UnmarshalJSON(src []byte) error

func (*NullableGetWebhooks200Response) Unset

func (v *NullableGetWebhooks200Response) Unset()

type NullableGoogleRoute

type NullableGoogleRoute struct {
	// contains filtered or unexported fields
}

func NewNullableGoogleRoute

func NewNullableGoogleRoute(val *GoogleRoute) *NullableGoogleRoute

func (NullableGoogleRoute) Get

func (NullableGoogleRoute) IsSet

func (v NullableGoogleRoute) IsSet() bool

func (NullableGoogleRoute) MarshalJSON

func (v NullableGoogleRoute) MarshalJSON() ([]byte, error)

func (*NullableGoogleRoute) Set

func (v *NullableGoogleRoute) Set(val *GoogleRoute)

func (*NullableGoogleRoute) UnmarshalJSON

func (v *NullableGoogleRoute) UnmarshalJSON(src []byte) error

func (*NullableGoogleRoute) Unset

func (v *NullableGoogleRoute) Unset()

type NullableHttpRoute

type NullableHttpRoute struct {
	// contains filtered or unexported fields
}

func NewNullableHttpRoute

func NewNullableHttpRoute(val *HttpRoute) *NullableHttpRoute

func (NullableHttpRoute) Get

func (v NullableHttpRoute) Get() *HttpRoute

func (NullableHttpRoute) IsSet

func (v NullableHttpRoute) IsSet() bool

func (NullableHttpRoute) MarshalJSON

func (v NullableHttpRoute) MarshalJSON() ([]byte, error)

func (*NullableHttpRoute) Set

func (v *NullableHttpRoute) Set(val *HttpRoute)

func (*NullableHttpRoute) UnmarshalJSON

func (v *NullableHttpRoute) UnmarshalJSON(src []byte) error

func (*NullableHttpRoute) Unset

func (v *NullableHttpRoute) Unset()

type NullableInlineObject

type NullableInlineObject struct {
	// contains filtered or unexported fields
}

func NewNullableInlineObject

func NewNullableInlineObject(val *InlineObject) *NullableInlineObject

func (NullableInlineObject) Get

func (NullableInlineObject) IsSet

func (v NullableInlineObject) IsSet() bool

func (NullableInlineObject) MarshalJSON

func (v NullableInlineObject) MarshalJSON() ([]byte, error)

func (*NullableInlineObject) Set

func (v *NullableInlineObject) Set(val *InlineObject)

func (*NullableInlineObject) UnmarshalJSON

func (v *NullableInlineObject) UnmarshalJSON(src []byte) error

func (*NullableInlineObject) Unset

func (v *NullableInlineObject) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableLocation

type NullableLocation struct {
	// contains filtered or unexported fields
}

func NewNullableLocation

func NewNullableLocation(val *Location) *NullableLocation

func (NullableLocation) Get

func (v NullableLocation) Get() *Location

func (NullableLocation) IsSet

func (v NullableLocation) IsSet() bool

func (NullableLocation) MarshalJSON

func (v NullableLocation) MarshalJSON() ([]byte, error)

func (*NullableLocation) Set

func (v *NullableLocation) Set(val *Location)

func (*NullableLocation) UnmarshalJSON

func (v *NullableLocation) UnmarshalJSON(src []byte) error

func (*NullableLocation) Unset

func (v *NullableLocation) Unset()

type NullableLogin200Response

type NullableLogin200Response struct {
	// contains filtered or unexported fields
}

func NewNullableLogin200Response

func NewNullableLogin200Response(val *Login200Response) *NullableLogin200Response

func (NullableLogin200Response) Get

func (NullableLogin200Response) IsSet

func (v NullableLogin200Response) IsSet() bool

func (NullableLogin200Response) MarshalJSON

func (v NullableLogin200Response) MarshalJSON() ([]byte, error)

func (*NullableLogin200Response) Set

func (*NullableLogin200Response) UnmarshalJSON

func (v *NullableLogin200Response) UnmarshalJSON(src []byte) error

func (*NullableLogin200Response) Unset

func (v *NullableLogin200Response) Unset()

type NullableLoginRequest

type NullableLoginRequest struct {
	// contains filtered or unexported fields
}

func NewNullableLoginRequest

func NewNullableLoginRequest(val *LoginRequest) *NullableLoginRequest

func (NullableLoginRequest) Get

func (NullableLoginRequest) IsSet

func (v NullableLoginRequest) IsSet() bool

func (NullableLoginRequest) MarshalJSON

func (v NullableLoginRequest) MarshalJSON() ([]byte, error)

func (*NullableLoginRequest) Set

func (v *NullableLoginRequest) Set(val *LoginRequest)

func (*NullableLoginRequest) UnmarshalJSON

func (v *NullableLoginRequest) UnmarshalJSON(src []byte) error

func (*NullableLoginRequest) Unset

func (v *NullableLoginRequest) Unset()

type NullableMonitor

type NullableMonitor struct {
	// contains filtered or unexported fields
}

func NewNullableMonitor

func NewNullableMonitor(val *Monitor) *NullableMonitor

func (NullableMonitor) Get

func (v NullableMonitor) Get() *Monitor

func (NullableMonitor) IsSet

func (v NullableMonitor) IsSet() bool

func (NullableMonitor) MarshalJSON

func (v NullableMonitor) MarshalJSON() ([]byte, error)

func (*NullableMonitor) Set

func (v *NullableMonitor) Set(val *Monitor)

func (*NullableMonitor) UnmarshalJSON

func (v *NullableMonitor) UnmarshalJSON(src []byte) error

func (*NullableMonitor) Unset

func (v *NullableMonitor) Unset()

type NullableMonitorAlertRoutesInner

type NullableMonitorAlertRoutesInner struct {
	// contains filtered or unexported fields
}

func (NullableMonitorAlertRoutesInner) Get

func (NullableMonitorAlertRoutesInner) IsSet

func (NullableMonitorAlertRoutesInner) MarshalJSON

func (v NullableMonitorAlertRoutesInner) MarshalJSON() ([]byte, error)

func (*NullableMonitorAlertRoutesInner) Set

func (*NullableMonitorAlertRoutesInner) UnmarshalJSON

func (v *NullableMonitorAlertRoutesInner) UnmarshalJSON(src []byte) error

func (*NullableMonitorAlertRoutesInner) Unset

type NullableMqttRoute

type NullableMqttRoute struct {
	// contains filtered or unexported fields
}

func NewNullableMqttRoute

func NewNullableMqttRoute(val *MqttRoute) *NullableMqttRoute

func (NullableMqttRoute) Get

func (v NullableMqttRoute) Get() *MqttRoute

func (NullableMqttRoute) IsSet

func (v NullableMqttRoute) IsSet() bool

func (NullableMqttRoute) MarshalJSON

func (v NullableMqttRoute) MarshalJSON() ([]byte, error)

func (*NullableMqttRoute) Set

func (v *NullableMqttRoute) Set(val *MqttRoute)

func (*NullableMqttRoute) UnmarshalJSON

func (v *NullableMqttRoute) UnmarshalJSON(src []byte) error

func (*NullableMqttRoute) Unset

func (v *NullableMqttRoute) Unset()

type NullableNote

type NullableNote struct {
	// contains filtered or unexported fields
}

func NewNullableNote

func NewNullableNote(val *Note) *NullableNote

func (NullableNote) Get

func (v NullableNote) Get() *Note

func (NullableNote) IsSet

func (v NullableNote) IsSet() bool

func (NullableNote) MarshalJSON

func (v NullableNote) MarshalJSON() ([]byte, error)

func (*NullableNote) Set

func (v *NullableNote) Set(val *Note)

func (*NullableNote) UnmarshalJSON

func (v *NullableNote) UnmarshalJSON(src []byte) error

func (*NullableNote) Unset

func (v *NullableNote) Unset()

type NullableNoteInput

type NullableNoteInput struct {
	// contains filtered or unexported fields
}

func NewNullableNoteInput

func NewNullableNoteInput(val *NoteInput) *NullableNoteInput

func (NullableNoteInput) Get

func (v NullableNoteInput) Get() *NoteInput

func (NullableNoteInput) IsSet

func (v NullableNoteInput) IsSet() bool

func (NullableNoteInput) MarshalJSON

func (v NullableNoteInput) MarshalJSON() ([]byte, error)

func (*NullableNoteInput) Set

func (v *NullableNoteInput) Set(val *NoteInput)

func (*NullableNoteInput) UnmarshalJSON

func (v *NullableNoteInput) UnmarshalJSON(src []byte) error

func (*NullableNoteInput) Unset

func (v *NullableNoteInput) Unset()

type NullableNotefile

type NullableNotefile struct {
	// contains filtered or unexported fields
}

func NewNullableNotefile

func NewNullableNotefile(val *Notefile) *NullableNotefile

func (NullableNotefile) Get

func (v NullableNotefile) Get() *Notefile

func (NullableNotefile) IsSet

func (v NullableNotefile) IsSet() bool

func (NullableNotefile) MarshalJSON

func (v NullableNotefile) MarshalJSON() ([]byte, error)

func (*NullableNotefile) Set

func (v *NullableNotefile) Set(val *Notefile)

func (*NullableNotefile) UnmarshalJSON

func (v *NullableNotefile) UnmarshalJSON(src []byte) error

func (*NullableNotefile) Unset

func (v *NullableNotefile) Unset()

type NullableNotefileSchema

type NullableNotefileSchema struct {
	// contains filtered or unexported fields
}

func NewNullableNotefileSchema

func NewNullableNotefileSchema(val *NotefileSchema) *NullableNotefileSchema

func (NullableNotefileSchema) Get

func (NullableNotefileSchema) IsSet

func (v NullableNotefileSchema) IsSet() bool

func (NullableNotefileSchema) MarshalJSON

func (v NullableNotefileSchema) MarshalJSON() ([]byte, error)

func (*NullableNotefileSchema) Set

func (*NullableNotefileSchema) UnmarshalJSON

func (v *NullableNotefileSchema) UnmarshalJSON(src []byte) error

func (*NullableNotefileSchema) Unset

func (v *NullableNotefileSchema) Unset()

type NullableNotehubRoute

type NullableNotehubRoute struct {
	// contains filtered or unexported fields
}

func NewNullableNotehubRoute

func NewNullableNotehubRoute(val *NotehubRoute) *NullableNotehubRoute

func (NullableNotehubRoute) Get

func (NullableNotehubRoute) IsSet

func (v NullableNotehubRoute) IsSet() bool

func (NullableNotehubRoute) MarshalJSON

func (v NullableNotehubRoute) MarshalJSON() ([]byte, error)

func (*NullableNotehubRoute) Set

func (v *NullableNotehubRoute) Set(val *NotehubRoute)

func (*NullableNotehubRoute) UnmarshalJSON

func (v *NullableNotehubRoute) UnmarshalJSON(src []byte) error

func (*NullableNotehubRoute) Unset

func (v *NullableNotehubRoute) Unset()

type NullableNotehubRouteSummary

type NullableNotehubRouteSummary struct {
	// contains filtered or unexported fields
}

func NewNullableNotehubRouteSummary

func NewNullableNotehubRouteSummary(val *NotehubRouteSummary) *NullableNotehubRouteSummary

func (NullableNotehubRouteSummary) Get

func (NullableNotehubRouteSummary) IsSet

func (NullableNotehubRouteSummary) MarshalJSON

func (v NullableNotehubRouteSummary) MarshalJSON() ([]byte, error)

func (*NullableNotehubRouteSummary) Set

func (*NullableNotehubRouteSummary) UnmarshalJSON

func (v *NullableNotehubRouteSummary) UnmarshalJSON(src []byte) error

func (*NullableNotehubRouteSummary) Unset

func (v *NullableNotehubRouteSummary) Unset()

type NullableOAuth2Error

type NullableOAuth2Error struct {
	// contains filtered or unexported fields
}

func NewNullableOAuth2Error

func NewNullableOAuth2Error(val *OAuth2Error) *NullableOAuth2Error

func (NullableOAuth2Error) Get

func (NullableOAuth2Error) IsSet

func (v NullableOAuth2Error) IsSet() bool

func (NullableOAuth2Error) MarshalJSON

func (v NullableOAuth2Error) MarshalJSON() ([]byte, error)

func (*NullableOAuth2Error) Set

func (v *NullableOAuth2Error) Set(val *OAuth2Error)

func (*NullableOAuth2Error) UnmarshalJSON

func (v *NullableOAuth2Error) UnmarshalJSON(src []byte) error

func (*NullableOAuth2Error) Unset

func (v *NullableOAuth2Error) Unset()

type NullableOAuth2TokenResponse

type NullableOAuth2TokenResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOAuth2TokenResponse

func NewNullableOAuth2TokenResponse(val *OAuth2TokenResponse) *NullableOAuth2TokenResponse

func (NullableOAuth2TokenResponse) Get

func (NullableOAuth2TokenResponse) IsSet

func (NullableOAuth2TokenResponse) MarshalJSON

func (v NullableOAuth2TokenResponse) MarshalJSON() ([]byte, error)

func (*NullableOAuth2TokenResponse) Set

func (*NullableOAuth2TokenResponse) UnmarshalJSON

func (v *NullableOAuth2TokenResponse) UnmarshalJSON(src []byte) error

func (*NullableOAuth2TokenResponse) Unset

func (v *NullableOAuth2TokenResponse) Unset()

type NullablePersonalAccessToken

type NullablePersonalAccessToken struct {
	// contains filtered or unexported fields
}

func NewNullablePersonalAccessToken

func NewNullablePersonalAccessToken(val *PersonalAccessToken) *NullablePersonalAccessToken

func (NullablePersonalAccessToken) Get

func (NullablePersonalAccessToken) IsSet

func (NullablePersonalAccessToken) MarshalJSON

func (v NullablePersonalAccessToken) MarshalJSON() ([]byte, error)

func (*NullablePersonalAccessToken) Set

func (*NullablePersonalAccessToken) UnmarshalJSON

func (v *NullablePersonalAccessToken) UnmarshalJSON(src []byte) error

func (*NullablePersonalAccessToken) Unset

func (v *NullablePersonalAccessToken) Unset()

type NullablePersonalAccessTokenCreatedBy

type NullablePersonalAccessTokenCreatedBy struct {
	// contains filtered or unexported fields
}

func (NullablePersonalAccessTokenCreatedBy) Get

func (NullablePersonalAccessTokenCreatedBy) IsSet

func (NullablePersonalAccessTokenCreatedBy) MarshalJSON

func (v NullablePersonalAccessTokenCreatedBy) MarshalJSON() ([]byte, error)

func (*NullablePersonalAccessTokenCreatedBy) Set

func (*NullablePersonalAccessTokenCreatedBy) UnmarshalJSON

func (v *NullablePersonalAccessTokenCreatedBy) UnmarshalJSON(src []byte) error

func (*NullablePersonalAccessTokenCreatedBy) Unset

type NullablePersonalAccessTokenInfo

type NullablePersonalAccessTokenInfo struct {
	// contains filtered or unexported fields
}

func (NullablePersonalAccessTokenInfo) Get

func (NullablePersonalAccessTokenInfo) IsSet

func (NullablePersonalAccessTokenInfo) MarshalJSON

func (v NullablePersonalAccessTokenInfo) MarshalJSON() ([]byte, error)

func (*NullablePersonalAccessTokenInfo) Set

func (*NullablePersonalAccessTokenInfo) UnmarshalJSON

func (v *NullablePersonalAccessTokenInfo) UnmarshalJSON(src []byte) error

func (*NullablePersonalAccessTokenInfo) Unset

type NullablePersonalAccessTokenSecret

type NullablePersonalAccessTokenSecret struct {
	// contains filtered or unexported fields
}

func (NullablePersonalAccessTokenSecret) Get

func (NullablePersonalAccessTokenSecret) IsSet

func (NullablePersonalAccessTokenSecret) MarshalJSON

func (v NullablePersonalAccessTokenSecret) MarshalJSON() ([]byte, error)

func (*NullablePersonalAccessTokenSecret) Set

func (*NullablePersonalAccessTokenSecret) UnmarshalJSON

func (v *NullablePersonalAccessTokenSecret) UnmarshalJSON(src []byte) error

func (*NullablePersonalAccessTokenSecret) Unset

type NullableProduct

type NullableProduct struct {
	// contains filtered or unexported fields
}

func NewNullableProduct

func NewNullableProduct(val *Product) *NullableProduct

func (NullableProduct) Get

func (v NullableProduct) Get() *Product

func (NullableProduct) IsSet

func (v NullableProduct) IsSet() bool

func (NullableProduct) MarshalJSON

func (v NullableProduct) MarshalJSON() ([]byte, error)

func (*NullableProduct) Set

func (v *NullableProduct) Set(val *Product)

func (*NullableProduct) UnmarshalJSON

func (v *NullableProduct) UnmarshalJSON(src []byte) error

func (*NullableProduct) Unset

func (v *NullableProduct) Unset()

type NullableProject

type NullableProject struct {
	// contains filtered or unexported fields
}

func NewNullableProject

func NewNullableProject(val *Project) *NullableProject

func (NullableProject) Get

func (v NullableProject) Get() *Project

func (NullableProject) IsSet

func (v NullableProject) IsSet() bool

func (NullableProject) MarshalJSON

func (v NullableProject) MarshalJSON() ([]byte, error)

func (*NullableProject) Set

func (v *NullableProject) Set(val *Project)

func (*NullableProject) UnmarshalJSON

func (v *NullableProject) UnmarshalJSON(src []byte) error

func (*NullableProject) Unset

func (v *NullableProject) Unset()

type NullableProjectMember

type NullableProjectMember struct {
	// contains filtered or unexported fields
}

func NewNullableProjectMember

func NewNullableProjectMember(val *ProjectMember) *NullableProjectMember

func (NullableProjectMember) Get

func (NullableProjectMember) IsSet

func (v NullableProjectMember) IsSet() bool

func (NullableProjectMember) MarshalJSON

func (v NullableProjectMember) MarshalJSON() ([]byte, error)

func (*NullableProjectMember) Set

func (v *NullableProjectMember) Set(val *ProjectMember)

func (*NullableProjectMember) UnmarshalJSON

func (v *NullableProjectMember) UnmarshalJSON(src []byte) error

func (*NullableProjectMember) Unset

func (v *NullableProjectMember) Unset()

type NullableProvisionDeviceRequest

type NullableProvisionDeviceRequest struct {
	// contains filtered or unexported fields
}

func (NullableProvisionDeviceRequest) Get

func (NullableProvisionDeviceRequest) IsSet

func (NullableProvisionDeviceRequest) MarshalJSON

func (v NullableProvisionDeviceRequest) MarshalJSON() ([]byte, error)

func (*NullableProvisionDeviceRequest) Set

func (*NullableProvisionDeviceRequest) UnmarshalJSON

func (v *NullableProvisionDeviceRequest) UnmarshalJSON(src []byte) error

func (*NullableProvisionDeviceRequest) Unset

func (v *NullableProvisionDeviceRequest) Unset()

type NullableProxyRoute

type NullableProxyRoute struct {
	// contains filtered or unexported fields
}

func NewNullableProxyRoute

func NewNullableProxyRoute(val *ProxyRoute) *NullableProxyRoute

func (NullableProxyRoute) Get

func (v NullableProxyRoute) Get() *ProxyRoute

func (NullableProxyRoute) IsSet

func (v NullableProxyRoute) IsSet() bool

func (NullableProxyRoute) MarshalJSON

func (v NullableProxyRoute) MarshalJSON() ([]byte, error)

func (*NullableProxyRoute) Set

func (v *NullableProxyRoute) Set(val *ProxyRoute)

func (*NullableProxyRoute) UnmarshalJSON

func (v *NullableProxyRoute) UnmarshalJSON(src []byte) error

func (*NullableProxyRoute) Unset

func (v *NullableProxyRoute) Unset()

type NullableQubitroRoute

type NullableQubitroRoute struct {
	// contains filtered or unexported fields
}

func NewNullableQubitroRoute

func NewNullableQubitroRoute(val *QubitroRoute) *NullableQubitroRoute

func (NullableQubitroRoute) Get

func (NullableQubitroRoute) IsSet

func (v NullableQubitroRoute) IsSet() bool

func (NullableQubitroRoute) MarshalJSON

func (v NullableQubitroRoute) MarshalJSON() ([]byte, error)

func (*NullableQubitroRoute) Set

func (v *NullableQubitroRoute) Set(val *QubitroRoute)

func (*NullableQubitroRoute) UnmarshalJSON

func (v *NullableQubitroRoute) UnmarshalJSON(src []byte) error

func (*NullableQubitroRoute) Unset

func (v *NullableQubitroRoute) Unset()

type NullableRadRoute

type NullableRadRoute struct {
	// contains filtered or unexported fields
}

func NewNullableRadRoute

func NewNullableRadRoute(val *RadRoute) *NullableRadRoute

func (NullableRadRoute) Get

func (v NullableRadRoute) Get() *RadRoute

func (NullableRadRoute) IsSet

func (v NullableRadRoute) IsSet() bool

func (NullableRadRoute) MarshalJSON

func (v NullableRadRoute) MarshalJSON() ([]byte, error)

func (*NullableRadRoute) Set

func (v *NullableRadRoute) Set(val *RadRoute)

func (*NullableRadRoute) UnmarshalJSON

func (v *NullableRadRoute) UnmarshalJSON(src []byte) error

func (*NullableRadRoute) Unset

func (v *NullableRadRoute) Unset()

type NullableRepository

type NullableRepository struct {
	// contains filtered or unexported fields
}

func NewNullableRepository

func NewNullableRepository(val *Repository) *NullableRepository

func (NullableRepository) Get

func (v NullableRepository) Get() *Repository

func (NullableRepository) IsSet

func (v NullableRepository) IsSet() bool

func (NullableRepository) MarshalJSON

func (v NullableRepository) MarshalJSON() ([]byte, error)

func (*NullableRepository) Set

func (v *NullableRepository) Set(val *Repository)

func (*NullableRepository) UnmarshalJSON

func (v *NullableRepository) UnmarshalJSON(src []byte) error

func (*NullableRepository) Unset

func (v *NullableRepository) Unset()

type NullableRole

type NullableRole struct {
	// contains filtered or unexported fields
}

func NewNullableRole

func NewNullableRole(val *Role) *NullableRole

func (NullableRole) Get

func (v NullableRole) Get() *Role

func (NullableRole) IsSet

func (v NullableRole) IsSet() bool

func (NullableRole) MarshalJSON

func (v NullableRole) MarshalJSON() ([]byte, error)

func (*NullableRole) Set

func (v *NullableRole) Set(val *Role)

func (*NullableRole) UnmarshalJSON

func (v *NullableRole) UnmarshalJSON(src []byte) error

func (*NullableRole) Unset

func (v *NullableRole) Unset()

type NullableRouteLog

type NullableRouteLog struct {
	// contains filtered or unexported fields
}

func NewNullableRouteLog

func NewNullableRouteLog(val *RouteLog) *NullableRouteLog

func (NullableRouteLog) Get

func (v NullableRouteLog) Get() *RouteLog

func (NullableRouteLog) IsSet

func (v NullableRouteLog) IsSet() bool

func (NullableRouteLog) MarshalJSON

func (v NullableRouteLog) MarshalJSON() ([]byte, error)

func (*NullableRouteLog) Set

func (v *NullableRouteLog) Set(val *RouteLog)

func (*NullableRouteLog) UnmarshalJSON

func (v *NullableRouteLog) UnmarshalJSON(src []byte) error

func (*NullableRouteLog) Unset

func (v *NullableRouteLog) Unset()

type NullableRouteTransformSettings

type NullableRouteTransformSettings struct {
	// contains filtered or unexported fields
}

func (NullableRouteTransformSettings) Get

func (NullableRouteTransformSettings) IsSet

func (NullableRouteTransformSettings) MarshalJSON

func (v NullableRouteTransformSettings) MarshalJSON() ([]byte, error)

func (*NullableRouteTransformSettings) Set

func (*NullableRouteTransformSettings) UnmarshalJSON

func (v *NullableRouteTransformSettings) UnmarshalJSON(src []byte) error

func (*NullableRouteTransformSettings) Unset

func (v *NullableRouteTransformSettings) Unset()

type NullableS3ArchiveRoute

type NullableS3ArchiveRoute struct {
	// contains filtered or unexported fields
}

func NewNullableS3ArchiveRoute

func NewNullableS3ArchiveRoute(val *S3ArchiveRoute) *NullableS3ArchiveRoute

func (NullableS3ArchiveRoute) Get

func (NullableS3ArchiveRoute) IsSet

func (v NullableS3ArchiveRoute) IsSet() bool

func (NullableS3ArchiveRoute) MarshalJSON

func (v NullableS3ArchiveRoute) MarshalJSON() ([]byte, error)

func (*NullableS3ArchiveRoute) Set

func (*NullableS3ArchiveRoute) UnmarshalJSON

func (v *NullableS3ArchiveRoute) UnmarshalJSON(src []byte) error

func (*NullableS3ArchiveRoute) Unset

func (v *NullableS3ArchiveRoute) Unset()

type NullableSatellitePlan

type NullableSatellitePlan struct {
	// contains filtered or unexported fields
}

func NewNullableSatellitePlan

func NewNullableSatellitePlan(val *SatellitePlan) *NullableSatellitePlan

func (NullableSatellitePlan) Get

func (NullableSatellitePlan) IsSet

func (v NullableSatellitePlan) IsSet() bool

func (NullableSatellitePlan) MarshalJSON

func (v NullableSatellitePlan) MarshalJSON() ([]byte, error)

func (*NullableSatellitePlan) Set

func (v *NullableSatellitePlan) Set(val *SatellitePlan)

func (*NullableSatellitePlan) UnmarshalJSON

func (v *NullableSatellitePlan) UnmarshalJSON(src []byte) error

func (*NullableSatellitePlan) Unset

func (v *NullableSatellitePlan) Unset()

type NullableSchemaProperty

type NullableSchemaProperty struct {
	// contains filtered or unexported fields
}

func NewNullableSchemaProperty

func NewNullableSchemaProperty(val *SchemaProperty) *NullableSchemaProperty

func (NullableSchemaProperty) Get

func (NullableSchemaProperty) IsSet

func (v NullableSchemaProperty) IsSet() bool

func (NullableSchemaProperty) MarshalJSON

func (v NullableSchemaProperty) MarshalJSON() ([]byte, error)

func (*NullableSchemaProperty) Set

func (*NullableSchemaProperty) UnmarshalJSON

func (v *NullableSchemaProperty) UnmarshalJSON(src []byte) error

func (*NullableSchemaProperty) Unset

func (v *NullableSchemaProperty) Unset()

type NullableSignalDevice200Response

type NullableSignalDevice200Response struct {
	// contains filtered or unexported fields
}

func (NullableSignalDevice200Response) Get

func (NullableSignalDevice200Response) IsSet

func (NullableSignalDevice200Response) MarshalJSON

func (v NullableSignalDevice200Response) MarshalJSON() ([]byte, error)

func (*NullableSignalDevice200Response) Set

func (*NullableSignalDevice200Response) UnmarshalJSON

func (v *NullableSignalDevice200Response) UnmarshalJSON(src []byte) error

func (*NullableSignalDevice200Response) Unset

type NullableSimUsage

type NullableSimUsage struct {
	// contains filtered or unexported fields
}

func NewNullableSimUsage

func NewNullableSimUsage(val *SimUsage) *NullableSimUsage

func (NullableSimUsage) Get

func (v NullableSimUsage) Get() *SimUsage

func (NullableSimUsage) IsSet

func (v NullableSimUsage) IsSet() bool

func (NullableSimUsage) MarshalJSON

func (v NullableSimUsage) MarshalJSON() ([]byte, error)

func (*NullableSimUsage) Set

func (v *NullableSimUsage) Set(val *SimUsage)

func (*NullableSimUsage) UnmarshalJSON

func (v *NullableSimUsage) UnmarshalJSON(src []byte) error

func (*NullableSimUsage) Unset

func (v *NullableSimUsage) Unset()

type NullableSlackBearerNotification

type NullableSlackBearerNotification struct {
	// contains filtered or unexported fields
}

func (NullableSlackBearerNotification) Get

func (NullableSlackBearerNotification) IsSet

func (NullableSlackBearerNotification) MarshalJSON

func (v NullableSlackBearerNotification) MarshalJSON() ([]byte, error)

func (*NullableSlackBearerNotification) Set

func (*NullableSlackBearerNotification) UnmarshalJSON

func (v *NullableSlackBearerNotification) UnmarshalJSON(src []byte) error

func (*NullableSlackBearerNotification) Unset

type NullableSlackRoute

type NullableSlackRoute struct {
	// contains filtered or unexported fields
}

func NewNullableSlackRoute

func NewNullableSlackRoute(val *SlackRoute) *NullableSlackRoute

func (NullableSlackRoute) Get

func (v NullableSlackRoute) Get() *SlackRoute

func (NullableSlackRoute) IsSet

func (v NullableSlackRoute) IsSet() bool

func (NullableSlackRoute) MarshalJSON

func (v NullableSlackRoute) MarshalJSON() ([]byte, error)

func (*NullableSlackRoute) Set

func (v *NullableSlackRoute) Set(val *SlackRoute)

func (*NullableSlackRoute) UnmarshalJSON

func (v *NullableSlackRoute) UnmarshalJSON(src []byte) error

func (*NullableSlackRoute) Unset

func (v *NullableSlackRoute) Unset()

type NullableSlackWebHookNotification

type NullableSlackWebHookNotification struct {
	// contains filtered or unexported fields
}

func (NullableSlackWebHookNotification) Get

func (NullableSlackWebHookNotification) IsSet

func (NullableSlackWebHookNotification) MarshalJSON

func (v NullableSlackWebHookNotification) MarshalJSON() ([]byte, error)

func (*NullableSlackWebHookNotification) Set

func (*NullableSlackWebHookNotification) UnmarshalJSON

func (v *NullableSlackWebHookNotification) UnmarshalJSON(src []byte) error

func (*NullableSlackWebHookNotification) Unset

type NullableSnowflakeRoute

type NullableSnowflakeRoute struct {
	// contains filtered or unexported fields
}

func NewNullableSnowflakeRoute

func NewNullableSnowflakeRoute(val *SnowflakeRoute) *NullableSnowflakeRoute

func (NullableSnowflakeRoute) Get

func (NullableSnowflakeRoute) IsSet

func (v NullableSnowflakeRoute) IsSet() bool

func (NullableSnowflakeRoute) MarshalJSON

func (v NullableSnowflakeRoute) MarshalJSON() ([]byte, error)

func (*NullableSnowflakeRoute) Set

func (*NullableSnowflakeRoute) UnmarshalJSON

func (v *NullableSnowflakeRoute) UnmarshalJSON(src []byte) error

func (*NullableSnowflakeRoute) Unset

func (v *NullableSnowflakeRoute) Unset()

type NullableSnowpipeStreamingRoute

type NullableSnowpipeStreamingRoute struct {
	// contains filtered or unexported fields
}

func (NullableSnowpipeStreamingRoute) Get

func (NullableSnowpipeStreamingRoute) IsSet

func (NullableSnowpipeStreamingRoute) MarshalJSON

func (v NullableSnowpipeStreamingRoute) MarshalJSON() ([]byte, error)

func (*NullableSnowpipeStreamingRoute) Set

func (*NullableSnowpipeStreamingRoute) UnmarshalJSON

func (v *NullableSnowpipeStreamingRoute) UnmarshalJSON(src []byte) error

func (*NullableSnowpipeStreamingRoute) Unset

func (v *NullableSnowpipeStreamingRoute) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableThingworxRoute

type NullableThingworxRoute struct {
	// contains filtered or unexported fields
}

func NewNullableThingworxRoute

func NewNullableThingworxRoute(val *ThingworxRoute) *NullableThingworxRoute

func (NullableThingworxRoute) Get

func (NullableThingworxRoute) IsSet

func (v NullableThingworxRoute) IsSet() bool

func (NullableThingworxRoute) MarshalJSON

func (v NullableThingworxRoute) MarshalJSON() ([]byte, error)

func (*NullableThingworxRoute) Set

func (*NullableThingworxRoute) UnmarshalJSON

func (v *NullableThingworxRoute) UnmarshalJSON(src []byte) error

func (*NullableThingworxRoute) Unset

func (v *NullableThingworxRoute) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTowerLocation

type NullableTowerLocation struct {
	// contains filtered or unexported fields
}

func NewNullableTowerLocation

func NewNullableTowerLocation(val *TowerLocation) *NullableTowerLocation

func (NullableTowerLocation) Get

func (NullableTowerLocation) IsSet

func (v NullableTowerLocation) IsSet() bool

func (NullableTowerLocation) MarshalJSON

func (v NullableTowerLocation) MarshalJSON() ([]byte, error)

func (*NullableTowerLocation) Set

func (v *NullableTowerLocation) Set(val *TowerLocation)

func (*NullableTowerLocation) UnmarshalJSON

func (v *NullableTowerLocation) UnmarshalJSON(src []byte) error

func (*NullableTowerLocation) Unset

func (v *NullableTowerLocation) Unset()

type NullableTwilioRoute

type NullableTwilioRoute struct {
	// contains filtered or unexported fields
}

func NewNullableTwilioRoute

func NewNullableTwilioRoute(val *TwilioRoute) *NullableTwilioRoute

func (NullableTwilioRoute) Get

func (NullableTwilioRoute) IsSet

func (v NullableTwilioRoute) IsSet() bool

func (NullableTwilioRoute) MarshalJSON

func (v NullableTwilioRoute) MarshalJSON() ([]byte, error)

func (*NullableTwilioRoute) Set

func (v *NullableTwilioRoute) Set(val *TwilioRoute)

func (*NullableTwilioRoute) UnmarshalJSON

func (v *NullableTwilioRoute) UnmarshalJSON(src []byte) error

func (*NullableTwilioRoute) Unset

func (v *NullableTwilioRoute) Unset()

type NullableUpdateFleetRequest

type NullableUpdateFleetRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateFleetRequest

func NewNullableUpdateFleetRequest(val *UpdateFleetRequest) *NullableUpdateFleetRequest

func (NullableUpdateFleetRequest) Get

func (NullableUpdateFleetRequest) IsSet

func (v NullableUpdateFleetRequest) IsSet() bool

func (NullableUpdateFleetRequest) MarshalJSON

func (v NullableUpdateFleetRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateFleetRequest) Set

func (*NullableUpdateFleetRequest) UnmarshalJSON

func (v *NullableUpdateFleetRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateFleetRequest) Unset

func (v *NullableUpdateFleetRequest) Unset()

type NullableUploadMetadata

type NullableUploadMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableUploadMetadata

func NewNullableUploadMetadata(val *UploadMetadata) *NullableUploadMetadata

func (NullableUploadMetadata) Get

func (NullableUploadMetadata) IsSet

func (v NullableUploadMetadata) IsSet() bool

func (NullableUploadMetadata) MarshalJSON

func (v NullableUploadMetadata) MarshalJSON() ([]byte, error)

func (*NullableUploadMetadata) Set

func (*NullableUploadMetadata) UnmarshalJSON

func (v *NullableUploadMetadata) UnmarshalJSON(src []byte) error

func (*NullableUploadMetadata) Unset

func (v *NullableUploadMetadata) Unset()

type NullableUsageData

type NullableUsageData struct {
	// contains filtered or unexported fields
}

func NewNullableUsageData

func NewNullableUsageData(val *UsageData) *NullableUsageData

func (NullableUsageData) Get

func (v NullableUsageData) Get() *UsageData

func (NullableUsageData) IsSet

func (v NullableUsageData) IsSet() bool

func (NullableUsageData) MarshalJSON

func (v NullableUsageData) MarshalJSON() ([]byte, error)

func (*NullableUsageData) Set

func (v *NullableUsageData) Set(val *UsageData)

func (*NullableUsageData) UnmarshalJSON

func (v *NullableUsageData) UnmarshalJSON(src []byte) error

func (*NullableUsageData) Unset

func (v *NullableUsageData) Unset()

type NullableUsageEventsData

type NullableUsageEventsData struct {
	// contains filtered or unexported fields
}

func NewNullableUsageEventsData

func NewNullableUsageEventsData(val *UsageEventsData) *NullableUsageEventsData

func (NullableUsageEventsData) Get

func (NullableUsageEventsData) IsSet

func (v NullableUsageEventsData) IsSet() bool

func (NullableUsageEventsData) MarshalJSON

func (v NullableUsageEventsData) MarshalJSON() ([]byte, error)

func (*NullableUsageEventsData) Set

func (*NullableUsageEventsData) UnmarshalJSON

func (v *NullableUsageEventsData) UnmarshalJSON(src []byte) error

func (*NullableUsageEventsData) Unset

func (v *NullableUsageEventsData) Unset()

type NullableUsageEventsResponse

type NullableUsageEventsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUsageEventsResponse

func NewNullableUsageEventsResponse(val *UsageEventsResponse) *NullableUsageEventsResponse

func (NullableUsageEventsResponse) Get

func (NullableUsageEventsResponse) IsSet

func (NullableUsageEventsResponse) MarshalJSON

func (v NullableUsageEventsResponse) MarshalJSON() ([]byte, error)

func (*NullableUsageEventsResponse) Set

func (*NullableUsageEventsResponse) UnmarshalJSON

func (v *NullableUsageEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableUsageEventsResponse) Unset

func (v *NullableUsageEventsResponse) Unset()

type NullableUsageRouteLogsData

type NullableUsageRouteLogsData struct {
	// contains filtered or unexported fields
}

func NewNullableUsageRouteLogsData

func NewNullableUsageRouteLogsData(val *UsageRouteLogsData) *NullableUsageRouteLogsData

func (NullableUsageRouteLogsData) Get

func (NullableUsageRouteLogsData) IsSet

func (v NullableUsageRouteLogsData) IsSet() bool

func (NullableUsageRouteLogsData) MarshalJSON

func (v NullableUsageRouteLogsData) MarshalJSON() ([]byte, error)

func (*NullableUsageRouteLogsData) Set

func (*NullableUsageRouteLogsData) UnmarshalJSON

func (v *NullableUsageRouteLogsData) UnmarshalJSON(src []byte) error

func (*NullableUsageRouteLogsData) Unset

func (v *NullableUsageRouteLogsData) Unset()

type NullableUsageSessionsData

type NullableUsageSessionsData struct {
	// contains filtered or unexported fields
}

func NewNullableUsageSessionsData

func NewNullableUsageSessionsData(val *UsageSessionsData) *NullableUsageSessionsData

func (NullableUsageSessionsData) Get

func (NullableUsageSessionsData) IsSet

func (v NullableUsageSessionsData) IsSet() bool

func (NullableUsageSessionsData) MarshalJSON

func (v NullableUsageSessionsData) MarshalJSON() ([]byte, error)

func (*NullableUsageSessionsData) Set

func (*NullableUsageSessionsData) UnmarshalJSON

func (v *NullableUsageSessionsData) UnmarshalJSON(src []byte) error

func (*NullableUsageSessionsData) Unset

func (v *NullableUsageSessionsData) Unset()

type NullableUserDfuStateMachine

type NullableUserDfuStateMachine struct {
	// contains filtered or unexported fields
}

func NewNullableUserDfuStateMachine

func NewNullableUserDfuStateMachine(val *UserDfuStateMachine) *NullableUserDfuStateMachine

func (NullableUserDfuStateMachine) Get

func (NullableUserDfuStateMachine) IsSet

func (NullableUserDfuStateMachine) MarshalJSON

func (v NullableUserDfuStateMachine) MarshalJSON() ([]byte, error)

func (*NullableUserDfuStateMachine) Set

func (*NullableUserDfuStateMachine) UnmarshalJSON

func (v *NullableUserDfuStateMachine) UnmarshalJSON(src []byte) error

func (*NullableUserDfuStateMachine) Unset

func (v *NullableUserDfuStateMachine) Unset()

type NullableUserDfuStateMachineStatus

type NullableUserDfuStateMachineStatus struct {
	// contains filtered or unexported fields
}

func (NullableUserDfuStateMachineStatus) Get

func (NullableUserDfuStateMachineStatus) IsSet

func (NullableUserDfuStateMachineStatus) MarshalJSON

func (v NullableUserDfuStateMachineStatus) MarshalJSON() ([]byte, error)

func (*NullableUserDfuStateMachineStatus) Set

func (*NullableUserDfuStateMachineStatus) UnmarshalJSON

func (v *NullableUserDfuStateMachineStatus) UnmarshalJSON(src []byte) error

func (*NullableUserDfuStateMachineStatus) Unset

type NullableUserFirmwareInfo

type NullableUserFirmwareInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUserFirmwareInfo

func NewNullableUserFirmwareInfo(val *UserFirmwareInfo) *NullableUserFirmwareInfo

func (NullableUserFirmwareInfo) Get

func (NullableUserFirmwareInfo) IsSet

func (v NullableUserFirmwareInfo) IsSet() bool

func (NullableUserFirmwareInfo) MarshalJSON

func (v NullableUserFirmwareInfo) MarshalJSON() ([]byte, error)

func (*NullableUserFirmwareInfo) Set

func (*NullableUserFirmwareInfo) UnmarshalJSON

func (v *NullableUserFirmwareInfo) UnmarshalJSON(src []byte) error

func (*NullableUserFirmwareInfo) Unset

func (v *NullableUserFirmwareInfo) Unset()

type NullableWebhookSettings

type NullableWebhookSettings struct {
	// contains filtered or unexported fields
}

func NewNullableWebhookSettings

func NewNullableWebhookSettings(val *WebhookSettings) *NullableWebhookSettings

func (NullableWebhookSettings) Get

func (NullableWebhookSettings) IsSet

func (v NullableWebhookSettings) IsSet() bool

func (NullableWebhookSettings) MarshalJSON

func (v NullableWebhookSettings) MarshalJSON() ([]byte, error)

func (*NullableWebhookSettings) Set

func (*NullableWebhookSettings) UnmarshalJSON

func (v *NullableWebhookSettings) UnmarshalJSON(src []byte) error

func (*NullableWebhookSettings) Unset

func (v *NullableWebhookSettings) Unset()

type OAuth2Error

type OAuth2Error struct {
	// RFC 6749 error code.
	Error string `json:"error"`
	// Human-readable explanation of the error.
	ErrorDescription *string `json:"error_description,omitempty"`
}

OAuth2Error struct for OAuth2Error

func NewOAuth2Error

func NewOAuth2Error(error_ string) *OAuth2Error

NewOAuth2Error instantiates a new OAuth2Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOAuth2ErrorWithDefaults

func NewOAuth2ErrorWithDefaults() *OAuth2Error

NewOAuth2ErrorWithDefaults instantiates a new OAuth2Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OAuth2Error) GetError

func (o *OAuth2Error) GetError() string

GetError returns the Error field value

func (*OAuth2Error) GetErrorDescription

func (o *OAuth2Error) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*OAuth2Error) GetErrorDescriptionOk

func (o *OAuth2Error) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Error) GetErrorOk

func (o *OAuth2Error) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (*OAuth2Error) HasErrorDescription

func (o *OAuth2Error) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (OAuth2Error) MarshalJSON

func (o OAuth2Error) MarshalJSON() ([]byte, error)

func (*OAuth2Error) SetError

func (o *OAuth2Error) SetError(v string)

SetError sets field value

func (*OAuth2Error) SetErrorDescription

func (o *OAuth2Error) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (OAuth2Error) ToMap

func (o OAuth2Error) ToMap() (map[string]interface{}, error)

func (*OAuth2Error) UnmarshalJSON

func (o *OAuth2Error) UnmarshalJSON(data []byte) (err error)

type OAuth2TokenResponse

type OAuth2TokenResponse struct {
	// The issued access token
	AccessToken string `json:"access_token"`
	// Lifetime in seconds of the access token.
	ExpiresIn int32 `json:"expires_in"`
	// Granted scopes (space-delimited).
	Scope *string `json:"scope,omitempty"`
	// Usually 'bearer'
	TokenType string `json:"token_type"`
}

OAuth2TokenResponse struct for OAuth2TokenResponse

func NewOAuth2TokenResponse

func NewOAuth2TokenResponse(accessToken string, expiresIn int32, tokenType string) *OAuth2TokenResponse

NewOAuth2TokenResponse instantiates a new OAuth2TokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOAuth2TokenResponseWithDefaults

func NewOAuth2TokenResponseWithDefaults() *OAuth2TokenResponse

NewOAuth2TokenResponseWithDefaults instantiates a new OAuth2TokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OAuth2TokenResponse) GetAccessToken

func (o *OAuth2TokenResponse) GetAccessToken() string

GetAccessToken returns the AccessToken field value

func (*OAuth2TokenResponse) GetAccessTokenOk

func (o *OAuth2TokenResponse) GetAccessTokenOk() (*string, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value and a boolean to check if the value has been set.

func (*OAuth2TokenResponse) GetExpiresIn

func (o *OAuth2TokenResponse) GetExpiresIn() int32

GetExpiresIn returns the ExpiresIn field value

func (*OAuth2TokenResponse) GetExpiresInOk

func (o *OAuth2TokenResponse) GetExpiresInOk() (*int32, bool)

GetExpiresInOk returns a tuple with the ExpiresIn field value and a boolean to check if the value has been set.

func (*OAuth2TokenResponse) GetScope

func (o *OAuth2TokenResponse) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*OAuth2TokenResponse) GetScopeOk

func (o *OAuth2TokenResponse) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2TokenResponse) GetTokenType

func (o *OAuth2TokenResponse) GetTokenType() string

GetTokenType returns the TokenType field value

func (*OAuth2TokenResponse) GetTokenTypeOk

func (o *OAuth2TokenResponse) GetTokenTypeOk() (*string, bool)

GetTokenTypeOk returns a tuple with the TokenType field value and a boolean to check if the value has been set.

func (*OAuth2TokenResponse) HasScope

func (o *OAuth2TokenResponse) HasScope() bool

HasScope returns a boolean if a field has been set.

func (OAuth2TokenResponse) MarshalJSON

func (o OAuth2TokenResponse) MarshalJSON() ([]byte, error)

func (*OAuth2TokenResponse) SetAccessToken

func (o *OAuth2TokenResponse) SetAccessToken(v string)

SetAccessToken sets field value

func (*OAuth2TokenResponse) SetExpiresIn

func (o *OAuth2TokenResponse) SetExpiresIn(v int32)

SetExpiresIn sets field value

func (*OAuth2TokenResponse) SetScope

func (o *OAuth2TokenResponse) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*OAuth2TokenResponse) SetTokenType

func (o *OAuth2TokenResponse) SetTokenType(v string)

SetTokenType sets field value

func (OAuth2TokenResponse) ToMap

func (o OAuth2TokenResponse) ToMap() (map[string]interface{}, error)

func (*OAuth2TokenResponse) UnmarshalJSON

func (o *OAuth2TokenResponse) UnmarshalJSON(data []byte) (err error)

type PersonalAccessToken

type PersonalAccessToken struct {
	// When the key was created
	CreatedAt *time.Time                    `json:"created_at,omitempty"`
	CreatedBy *PersonalAccessTokenCreatedBy `json:"created_by,omitempty"`
	// Optional description for this API Key
	Description *string `json:"description,omitempty"`
	// When the key expires
	ExpiresAt NullableTime `json:"expires_at,omitempty"`
	// When it was last used, if ever
	LastUsed NullableTime `json:"last_used,omitempty"`
	// Name for this API Key
	Name *string `json:"name,omitempty"`
	// if true, this token cannot be used
	Suspended *bool `json:"suspended,omitempty"`
	// Unique and public identifier
	Uid *string `json:"uid,omitempty"`
}

PersonalAccessToken struct for PersonalAccessToken

func NewPersonalAccessToken

func NewPersonalAccessToken() *PersonalAccessToken

NewPersonalAccessToken instantiates a new PersonalAccessToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPersonalAccessTokenWithDefaults

func NewPersonalAccessTokenWithDefaults() *PersonalAccessToken

NewPersonalAccessTokenWithDefaults instantiates a new PersonalAccessToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PersonalAccessToken) GetCreatedAt

func (o *PersonalAccessToken) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*PersonalAccessToken) GetCreatedAtOk

func (o *PersonalAccessToken) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessToken) GetCreatedBy

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*PersonalAccessToken) GetCreatedByOk

func (o *PersonalAccessToken) GetCreatedByOk() (*PersonalAccessTokenCreatedBy, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessToken) GetDescription

func (o *PersonalAccessToken) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*PersonalAccessToken) GetDescriptionOk

func (o *PersonalAccessToken) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessToken) GetExpiresAt

func (o *PersonalAccessToken) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PersonalAccessToken) GetExpiresAtOk

func (o *PersonalAccessToken) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PersonalAccessToken) GetLastUsed

func (o *PersonalAccessToken) GetLastUsed() time.Time

GetLastUsed returns the LastUsed field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PersonalAccessToken) GetLastUsedOk

func (o *PersonalAccessToken) GetLastUsedOk() (*time.Time, bool)

GetLastUsedOk returns a tuple with the LastUsed field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PersonalAccessToken) GetName

func (o *PersonalAccessToken) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PersonalAccessToken) GetNameOk

func (o *PersonalAccessToken) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessToken) GetSuspended

func (o *PersonalAccessToken) GetSuspended() bool

GetSuspended returns the Suspended field value if set, zero value otherwise.

func (*PersonalAccessToken) GetSuspendedOk

func (o *PersonalAccessToken) GetSuspendedOk() (*bool, bool)

GetSuspendedOk returns a tuple with the Suspended field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessToken) GetUid

func (o *PersonalAccessToken) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*PersonalAccessToken) GetUidOk

func (o *PersonalAccessToken) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessToken) HasCreatedAt

func (o *PersonalAccessToken) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*PersonalAccessToken) HasCreatedBy

func (o *PersonalAccessToken) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*PersonalAccessToken) HasDescription

func (o *PersonalAccessToken) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PersonalAccessToken) HasExpiresAt

func (o *PersonalAccessToken) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*PersonalAccessToken) HasLastUsed

func (o *PersonalAccessToken) HasLastUsed() bool

HasLastUsed returns a boolean if a field has been set.

func (*PersonalAccessToken) HasName

func (o *PersonalAccessToken) HasName() bool

HasName returns a boolean if a field has been set.

func (*PersonalAccessToken) HasSuspended

func (o *PersonalAccessToken) HasSuspended() bool

HasSuspended returns a boolean if a field has been set.

func (*PersonalAccessToken) HasUid

func (o *PersonalAccessToken) HasUid() bool

HasUid returns a boolean if a field has been set.

func (PersonalAccessToken) MarshalJSON

func (o PersonalAccessToken) MarshalJSON() ([]byte, error)

func (*PersonalAccessToken) SetCreatedAt

func (o *PersonalAccessToken) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*PersonalAccessToken) SetCreatedBy

SetCreatedBy gets a reference to the given PersonalAccessTokenCreatedBy and assigns it to the CreatedBy field.

func (*PersonalAccessToken) SetDescription

func (o *PersonalAccessToken) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*PersonalAccessToken) SetExpiresAt

func (o *PersonalAccessToken) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given NullableTime and assigns it to the ExpiresAt field.

func (*PersonalAccessToken) SetExpiresAtNil

func (o *PersonalAccessToken) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*PersonalAccessToken) SetLastUsed

func (o *PersonalAccessToken) SetLastUsed(v time.Time)

SetLastUsed gets a reference to the given NullableTime and assigns it to the LastUsed field.

func (*PersonalAccessToken) SetLastUsedNil

func (o *PersonalAccessToken) SetLastUsedNil()

SetLastUsedNil sets the value for LastUsed to be an explicit nil

func (*PersonalAccessToken) SetName

func (o *PersonalAccessToken) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PersonalAccessToken) SetSuspended

func (o *PersonalAccessToken) SetSuspended(v bool)

SetSuspended gets a reference to the given bool and assigns it to the Suspended field.

func (*PersonalAccessToken) SetUid

func (o *PersonalAccessToken) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (PersonalAccessToken) ToMap

func (o PersonalAccessToken) ToMap() (map[string]interface{}, error)

func (*PersonalAccessToken) UnsetExpiresAt

func (o *PersonalAccessToken) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

func (*PersonalAccessToken) UnsetLastUsed

func (o *PersonalAccessToken) UnsetLastUsed()

UnsetLastUsed ensures that no value is present for LastUsed, not even an explicit nil

type PersonalAccessTokenCreatedBy

type PersonalAccessTokenCreatedBy struct {
	Email *string `json:"email,omitempty"`
	Name  *string `json:"name,omitempty"`
	Uid   *string `json:"uid,omitempty"`
}

PersonalAccessTokenCreatedBy The user that created this key

func NewPersonalAccessTokenCreatedBy

func NewPersonalAccessTokenCreatedBy() *PersonalAccessTokenCreatedBy

NewPersonalAccessTokenCreatedBy instantiates a new PersonalAccessTokenCreatedBy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPersonalAccessTokenCreatedByWithDefaults

func NewPersonalAccessTokenCreatedByWithDefaults() *PersonalAccessTokenCreatedBy

NewPersonalAccessTokenCreatedByWithDefaults instantiates a new PersonalAccessTokenCreatedBy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PersonalAccessTokenCreatedBy) GetEmail

func (o *PersonalAccessTokenCreatedBy) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*PersonalAccessTokenCreatedBy) GetEmailOk

func (o *PersonalAccessTokenCreatedBy) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessTokenCreatedBy) GetName

func (o *PersonalAccessTokenCreatedBy) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PersonalAccessTokenCreatedBy) GetNameOk

func (o *PersonalAccessTokenCreatedBy) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessTokenCreatedBy) GetUid

GetUid returns the Uid field value if set, zero value otherwise.

func (*PersonalAccessTokenCreatedBy) GetUidOk

func (o *PersonalAccessTokenCreatedBy) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessTokenCreatedBy) HasEmail

func (o *PersonalAccessTokenCreatedBy) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*PersonalAccessTokenCreatedBy) HasName

func (o *PersonalAccessTokenCreatedBy) HasName() bool

HasName returns a boolean if a field has been set.

func (*PersonalAccessTokenCreatedBy) HasUid

func (o *PersonalAccessTokenCreatedBy) HasUid() bool

HasUid returns a boolean if a field has been set.

func (PersonalAccessTokenCreatedBy) MarshalJSON

func (o PersonalAccessTokenCreatedBy) MarshalJSON() ([]byte, error)

func (*PersonalAccessTokenCreatedBy) SetEmail

func (o *PersonalAccessTokenCreatedBy) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*PersonalAccessTokenCreatedBy) SetName

func (o *PersonalAccessTokenCreatedBy) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PersonalAccessTokenCreatedBy) SetUid

func (o *PersonalAccessTokenCreatedBy) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (PersonalAccessTokenCreatedBy) ToMap

func (o PersonalAccessTokenCreatedBy) ToMap() (map[string]interface{}, error)

type PersonalAccessTokenInfo

type PersonalAccessTokenInfo struct {
	Description *string `json:"description,omitempty"`
	// New expiration timestamp for the personal access token
	ExpiresAt NullableTime `json:"expires_at,omitempty"`
	Name      *string      `json:"name,omitempty"`
	// if true, the token is temporarily suspended
	Suspended *bool `json:"suspended,omitempty"`
}

PersonalAccessTokenInfo struct for PersonalAccessTokenInfo

func NewPersonalAccessTokenInfo

func NewPersonalAccessTokenInfo() *PersonalAccessTokenInfo

NewPersonalAccessTokenInfo instantiates a new PersonalAccessTokenInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPersonalAccessTokenInfoWithDefaults

func NewPersonalAccessTokenInfoWithDefaults() *PersonalAccessTokenInfo

NewPersonalAccessTokenInfoWithDefaults instantiates a new PersonalAccessTokenInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PersonalAccessTokenInfo) GetDescription

func (o *PersonalAccessTokenInfo) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*PersonalAccessTokenInfo) GetDescriptionOk

func (o *PersonalAccessTokenInfo) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessTokenInfo) GetExpiresAt

func (o *PersonalAccessTokenInfo) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PersonalAccessTokenInfo) GetExpiresAtOk

func (o *PersonalAccessTokenInfo) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PersonalAccessTokenInfo) GetName

func (o *PersonalAccessTokenInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PersonalAccessTokenInfo) GetNameOk

func (o *PersonalAccessTokenInfo) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessTokenInfo) GetSuspended

func (o *PersonalAccessTokenInfo) GetSuspended() bool

GetSuspended returns the Suspended field value if set, zero value otherwise.

func (*PersonalAccessTokenInfo) GetSuspendedOk

func (o *PersonalAccessTokenInfo) GetSuspendedOk() (*bool, bool)

GetSuspendedOk returns a tuple with the Suspended field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessTokenInfo) HasDescription

func (o *PersonalAccessTokenInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PersonalAccessTokenInfo) HasExpiresAt

func (o *PersonalAccessTokenInfo) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*PersonalAccessTokenInfo) HasName

func (o *PersonalAccessTokenInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*PersonalAccessTokenInfo) HasSuspended

func (o *PersonalAccessTokenInfo) HasSuspended() bool

HasSuspended returns a boolean if a field has been set.

func (PersonalAccessTokenInfo) MarshalJSON

func (o PersonalAccessTokenInfo) MarshalJSON() ([]byte, error)

func (*PersonalAccessTokenInfo) SetDescription

func (o *PersonalAccessTokenInfo) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*PersonalAccessTokenInfo) SetExpiresAt

func (o *PersonalAccessTokenInfo) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given NullableTime and assigns it to the ExpiresAt field.

func (*PersonalAccessTokenInfo) SetExpiresAtNil

func (o *PersonalAccessTokenInfo) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*PersonalAccessTokenInfo) SetName

func (o *PersonalAccessTokenInfo) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PersonalAccessTokenInfo) SetSuspended

func (o *PersonalAccessTokenInfo) SetSuspended(v bool)

SetSuspended gets a reference to the given bool and assigns it to the Suspended field.

func (PersonalAccessTokenInfo) ToMap

func (o PersonalAccessTokenInfo) ToMap() (map[string]interface{}, error)

func (*PersonalAccessTokenInfo) UnsetExpiresAt

func (o *PersonalAccessTokenInfo) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

type PersonalAccessTokenSecret

type PersonalAccessTokenSecret struct {
	// The secret
	Secret *string `json:"secret,omitempty"`
	// Unique and public identifier
	Uid *string `json:"uid,omitempty"`
}

PersonalAccessTokenSecret struct for PersonalAccessTokenSecret

func NewPersonalAccessTokenSecret

func NewPersonalAccessTokenSecret() *PersonalAccessTokenSecret

NewPersonalAccessTokenSecret instantiates a new PersonalAccessTokenSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPersonalAccessTokenSecretWithDefaults

func NewPersonalAccessTokenSecretWithDefaults() *PersonalAccessTokenSecret

NewPersonalAccessTokenSecretWithDefaults instantiates a new PersonalAccessTokenSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PersonalAccessTokenSecret) GetSecret

func (o *PersonalAccessTokenSecret) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise.

func (*PersonalAccessTokenSecret) GetSecretOk

func (o *PersonalAccessTokenSecret) GetSecretOk() (*string, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessTokenSecret) GetUid

func (o *PersonalAccessTokenSecret) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*PersonalAccessTokenSecret) GetUidOk

func (o *PersonalAccessTokenSecret) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PersonalAccessTokenSecret) HasSecret

func (o *PersonalAccessTokenSecret) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*PersonalAccessTokenSecret) HasUid

func (o *PersonalAccessTokenSecret) HasUid() bool

HasUid returns a boolean if a field has been set.

func (PersonalAccessTokenSecret) MarshalJSON

func (o PersonalAccessTokenSecret) MarshalJSON() ([]byte, error)

func (*PersonalAccessTokenSecret) SetSecret

func (o *PersonalAccessTokenSecret) SetSecret(v string)

SetSecret gets a reference to the given string and assigns it to the Secret field.

func (*PersonalAccessTokenSecret) SetUid

func (o *PersonalAccessTokenSecret) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (PersonalAccessTokenSecret) ToMap

func (o PersonalAccessTokenSecret) ToMap() (map[string]interface{}, error)

type Product

type Product struct {
	AutoProvisionFleets     []string `json:"auto_provision_fleets,omitempty"`
	DisableDevicesByDefault bool     `json:"disable_devices_by_default"`
	Label                   string   `json:"label"`
	Uid                     string   `json:"uid"`
}

Product struct for Product

func NewProduct

func NewProduct(disableDevicesByDefault bool, label string, uid string) *Product

NewProduct instantiates a new Product object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductWithDefaults

func NewProductWithDefaults() *Product

NewProductWithDefaults instantiates a new Product object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Product) GetAutoProvisionFleets

func (o *Product) GetAutoProvisionFleets() []string

GetAutoProvisionFleets returns the AutoProvisionFleets field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Product) GetAutoProvisionFleetsOk

func (o *Product) GetAutoProvisionFleetsOk() ([]string, bool)

GetAutoProvisionFleetsOk returns a tuple with the AutoProvisionFleets field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Product) GetDisableDevicesByDefault

func (o *Product) GetDisableDevicesByDefault() bool

GetDisableDevicesByDefault returns the DisableDevicesByDefault field value

func (*Product) GetDisableDevicesByDefaultOk

func (o *Product) GetDisableDevicesByDefaultOk() (*bool, bool)

GetDisableDevicesByDefaultOk returns a tuple with the DisableDevicesByDefault field value and a boolean to check if the value has been set.

func (*Product) GetLabel

func (o *Product) GetLabel() string

GetLabel returns the Label field value

func (*Product) GetLabelOk

func (o *Product) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*Product) GetUid

func (o *Product) GetUid() string

GetUid returns the Uid field value

func (*Product) GetUidOk

func (o *Product) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value and a boolean to check if the value has been set.

func (*Product) HasAutoProvisionFleets

func (o *Product) HasAutoProvisionFleets() bool

HasAutoProvisionFleets returns a boolean if a field has been set.

func (Product) MarshalJSON

func (o Product) MarshalJSON() ([]byte, error)

func (*Product) SetAutoProvisionFleets

func (o *Product) SetAutoProvisionFleets(v []string)

SetAutoProvisionFleets gets a reference to the given []string and assigns it to the AutoProvisionFleets field.

func (*Product) SetDisableDevicesByDefault

func (o *Product) SetDisableDevicesByDefault(v bool)

SetDisableDevicesByDefault sets field value

func (*Product) SetLabel

func (o *Product) SetLabel(v string)

SetLabel sets field value

func (*Product) SetUid

func (o *Product) SetUid(v string)

SetUid sets field value

func (Product) ToMap

func (o Product) ToMap() (map[string]interface{}, error)

func (*Product) UnmarshalJSON

func (o *Product) UnmarshalJSON(data []byte) (err error)

type Project

type Project struct {
	AdministrativeContact NullableContact `json:"administrative_contact,omitempty"`
	Created               time.Time       `json:"created"`
	Label                 string          `json:"label"`
	Role                  NullableRole    `json:"role,omitempty"`
	TechnicalContact      NullableContact `json:"technical_contact,omitempty"`
	Uid                   string          `json:"uid"`
}

Project struct for Project

func NewProject

func NewProject(created time.Time, label string, uid string) *Project

NewProject instantiates a new Project object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectWithDefaults

func NewProjectWithDefaults() *Project

NewProjectWithDefaults instantiates a new Project object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Project) GetAdministrativeContact

func (o *Project) GetAdministrativeContact() Contact

GetAdministrativeContact returns the AdministrativeContact field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Project) GetAdministrativeContactOk

func (o *Project) GetAdministrativeContactOk() (*Contact, bool)

GetAdministrativeContactOk returns a tuple with the AdministrativeContact field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Project) GetCreated

func (o *Project) GetCreated() time.Time

GetCreated returns the Created field value

func (*Project) GetCreatedOk

func (o *Project) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value and a boolean to check if the value has been set.

func (*Project) GetLabel

func (o *Project) GetLabel() string

GetLabel returns the Label field value

func (*Project) GetLabelOk

func (o *Project) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*Project) GetRole

func (o *Project) GetRole() Role

GetRole returns the Role field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Project) GetRoleOk

func (o *Project) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Project) GetTechnicalContact

func (o *Project) GetTechnicalContact() Contact

GetTechnicalContact returns the TechnicalContact field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Project) GetTechnicalContactOk

func (o *Project) GetTechnicalContactOk() (*Contact, bool)

GetTechnicalContactOk returns a tuple with the TechnicalContact field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Project) GetUid

func (o *Project) GetUid() string

GetUid returns the Uid field value

func (*Project) GetUidOk

func (o *Project) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value and a boolean to check if the value has been set.

func (*Project) HasAdministrativeContact

func (o *Project) HasAdministrativeContact() bool

HasAdministrativeContact returns a boolean if a field has been set.

func (*Project) HasRole

func (o *Project) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*Project) HasTechnicalContact

func (o *Project) HasTechnicalContact() bool

HasTechnicalContact returns a boolean if a field has been set.

func (Project) MarshalJSON

func (o Project) MarshalJSON() ([]byte, error)

func (*Project) SetAdministrativeContact

func (o *Project) SetAdministrativeContact(v Contact)

SetAdministrativeContact gets a reference to the given NullableContact and assigns it to the AdministrativeContact field.

func (*Project) SetAdministrativeContactNil

func (o *Project) SetAdministrativeContactNil()

SetAdministrativeContactNil sets the value for AdministrativeContact to be an explicit nil

func (*Project) SetCreated

func (o *Project) SetCreated(v time.Time)

SetCreated sets field value

func (*Project) SetLabel

func (o *Project) SetLabel(v string)

SetLabel sets field value

func (*Project) SetRole

func (o *Project) SetRole(v Role)

SetRole gets a reference to the given NullableRole and assigns it to the Role field.

func (*Project) SetRoleNil

func (o *Project) SetRoleNil()

SetRoleNil sets the value for Role to be an explicit nil

func (*Project) SetTechnicalContact

func (o *Project) SetTechnicalContact(v Contact)

SetTechnicalContact gets a reference to the given NullableContact and assigns it to the TechnicalContact field.

func (*Project) SetTechnicalContactNil

func (o *Project) SetTechnicalContactNil()

SetTechnicalContactNil sets the value for TechnicalContact to be an explicit nil

func (*Project) SetUid

func (o *Project) SetUid(v string)

SetUid sets field value

func (Project) ToMap

func (o Project) ToMap() (map[string]interface{}, error)

func (*Project) UnmarshalJSON

func (o *Project) UnmarshalJSON(data []byte) (err error)

func (*Project) UnsetAdministrativeContact

func (o *Project) UnsetAdministrativeContact()

UnsetAdministrativeContact ensures that no value is present for AdministrativeContact, not even an explicit nil

func (*Project) UnsetRole

func (o *Project) UnsetRole()

UnsetRole ensures that no value is present for Role, not even an explicit nil

func (*Project) UnsetTechnicalContact

func (o *Project) UnsetTechnicalContact()

UnsetTechnicalContact ensures that no value is present for TechnicalContact, not even an explicit nil

type ProjectAPIService

type ProjectAPIService service

ProjectAPIService ProjectAPI service

func (*ProjectAPIService) AddDeviceToFleets

func (a *ProjectAPIService) AddDeviceToFleets(ctx context.Context, projectOrProductUID string, deviceUID string) ApiAddDeviceToFleetsRequest

AddDeviceToFleets Method for AddDeviceToFleets

Add Device to Fleets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param deviceUID
@return ApiAddDeviceToFleetsRequest

func (*ProjectAPIService) AddDeviceToFleetsExecute

Execute executes the request

@return GetDeviceFleets200Response

func (*ProjectAPIService) CloneProject

func (a *ProjectAPIService) CloneProject(ctx context.Context, projectOrProductUID string) ApiCloneProjectRequest

CloneProject Method for CloneProject

Clone a Project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiCloneProjectRequest

func (*ProjectAPIService) CloneProjectExecute

func (a *ProjectAPIService) CloneProjectExecute(r ApiCloneProjectRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*ProjectAPIService) CreateFleet

func (a *ProjectAPIService) CreateFleet(ctx context.Context, projectOrProductUID string) ApiCreateFleetRequest

CreateFleet Method for CreateFleet

Create Fleet

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiCreateFleetRequest

func (*ProjectAPIService) CreateFleetExecute

func (a *ProjectAPIService) CreateFleetExecute(r ApiCreateFleetRequest) (*Fleet, *http.Response, error)

Execute executes the request

@return Fleet

func (*ProjectAPIService) CreateProduct

func (a *ProjectAPIService) CreateProduct(ctx context.Context, projectOrProductUID string) ApiCreateProductRequest

CreateProduct Method for CreateProduct

Create Product within a Project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiCreateProductRequest

func (*ProjectAPIService) CreateProductExecute

func (a *ProjectAPIService) CreateProductExecute(r ApiCreateProductRequest) (*Product, *http.Response, error)

Execute executes the request

@return Product

func (*ProjectAPIService) CreateProject

CreateProject Method for CreateProject

Create a Project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateProjectRequest

func (*ProjectAPIService) CreateProjectExecute

func (a *ProjectAPIService) CreateProjectExecute(r ApiCreateProjectRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*ProjectAPIService) DeleteDeviceFromFleets

func (a *ProjectAPIService) DeleteDeviceFromFleets(ctx context.Context, projectOrProductUID string, deviceUID string) ApiDeleteDeviceFromFleetsRequest

DeleteDeviceFromFleets Method for DeleteDeviceFromFleets

Remove Device from Fleets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param deviceUID
@return ApiDeleteDeviceFromFleetsRequest

func (*ProjectAPIService) DeleteDeviceFromFleetsExecute

Execute executes the request

@return GetDeviceFleets200Response

func (*ProjectAPIService) DeleteFleet

func (a *ProjectAPIService) DeleteFleet(ctx context.Context, projectOrProductUID string, fleetUID string) ApiDeleteFleetRequest

DeleteFleet Method for DeleteFleet

Delete Fleet

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param fleetUID
@return ApiDeleteFleetRequest

func (*ProjectAPIService) DeleteFleetEnvironmentVariable

func (a *ProjectAPIService) DeleteFleetEnvironmentVariable(ctx context.Context, projectOrProductUID string, fleetUID string, key string) ApiDeleteFleetEnvironmentVariableRequest

DeleteFleetEnvironmentVariable Method for DeleteFleetEnvironmentVariable

Delete environment variables of a fleet

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param fleetUID
@param key The environment variable key to delete.
@return ApiDeleteFleetEnvironmentVariableRequest

func (*ProjectAPIService) DeleteFleetEnvironmentVariableExecute

func (a *ProjectAPIService) DeleteFleetEnvironmentVariableExecute(r ApiDeleteFleetEnvironmentVariableRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*ProjectAPIService) DeleteFleetExecute

func (a *ProjectAPIService) DeleteFleetExecute(r ApiDeleteFleetRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DeleteProduct

func (a *ProjectAPIService) DeleteProduct(ctx context.Context, projectOrProductUID string, productUID string) ApiDeleteProductRequest

DeleteProduct Method for DeleteProduct

Delete a product

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param productUID
@return ApiDeleteProductRequest

func (*ProjectAPIService) DeleteProductExecute

func (a *ProjectAPIService) DeleteProductExecute(r ApiDeleteProductRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DeleteProject

func (a *ProjectAPIService) DeleteProject(ctx context.Context, projectOrProductUID string) ApiDeleteProjectRequest

DeleteProject Method for DeleteProject

Delete a Project by ProjectUID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiDeleteProjectRequest

func (*ProjectAPIService) DeleteProjectEnvironmentVariable

func (a *ProjectAPIService) DeleteProjectEnvironmentVariable(ctx context.Context, projectOrProductUID string, key string) ApiDeleteProjectEnvironmentVariableRequest

DeleteProjectEnvironmentVariable Method for DeleteProjectEnvironmentVariable

Delete an environment variable of a project by key

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param key The environment variable key to delete.
@return ApiDeleteProjectEnvironmentVariableRequest

func (*ProjectAPIService) DeleteProjectEnvironmentVariableExecute

func (a *ProjectAPIService) DeleteProjectEnvironmentVariableExecute(r ApiDeleteProjectEnvironmentVariableRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*ProjectAPIService) DeleteProjectExecute

func (a *ProjectAPIService) DeleteProjectExecute(r ApiDeleteProjectRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DisableGlobalEventTransformation

func (a *ProjectAPIService) DisableGlobalEventTransformation(ctx context.Context, projectOrProductUID string) ApiDisableGlobalEventTransformationRequest

DisableGlobalEventTransformation Method for DisableGlobalEventTransformation

Disable the project-level event JSONata transformation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiDisableGlobalEventTransformationRequest

func (*ProjectAPIService) DisableGlobalEventTransformationExecute

func (a *ProjectAPIService) DisableGlobalEventTransformationExecute(r ApiDisableGlobalEventTransformationRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) EnableGlobalEventTransformation

func (a *ProjectAPIService) EnableGlobalEventTransformation(ctx context.Context, projectOrProductUID string) ApiEnableGlobalEventTransformationRequest

EnableGlobalEventTransformation Method for EnableGlobalEventTransformation

Enable the project-level event JSONata transformation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiEnableGlobalEventTransformationRequest

func (*ProjectAPIService) EnableGlobalEventTransformationExecute

func (a *ProjectAPIService) EnableGlobalEventTransformationExecute(r ApiEnableGlobalEventTransformationRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) GetDeviceDfuHistory

func (a *ProjectAPIService) GetDeviceDfuHistory(ctx context.Context, projectOrProductUID string, deviceUID string, firmwareType string) ApiGetDeviceDfuHistoryRequest

GetDeviceDfuHistory Method for GetDeviceDfuHistory

Get device DFU history for host or Notecard firmware

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param deviceUID
@param firmwareType
@return ApiGetDeviceDfuHistoryRequest

func (*ProjectAPIService) GetDeviceDfuHistoryExecute

func (a *ProjectAPIService) GetDeviceDfuHistoryExecute(r ApiGetDeviceDfuHistoryRequest) (*DeviceDfuHistory, *http.Response, error)

Execute executes the request

@return DeviceDfuHistory

func (*ProjectAPIService) GetDeviceDfuStatus

func (a *ProjectAPIService) GetDeviceDfuStatus(ctx context.Context, projectOrProductUID string, deviceUID string, firmwareType string) ApiGetDeviceDfuStatusRequest

GetDeviceDfuStatus Method for GetDeviceDfuStatus

Get device DFU history for host or Notecard firmware

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param deviceUID
@param firmwareType
@return ApiGetDeviceDfuStatusRequest

func (*ProjectAPIService) GetDeviceDfuStatusExecute

func (a *ProjectAPIService) GetDeviceDfuStatusExecute(r ApiGetDeviceDfuStatusRequest) (*DeviceDfuStatus, *http.Response, error)

Execute executes the request

@return DeviceDfuStatus

func (*ProjectAPIService) GetDeviceFleets

func (a *ProjectAPIService) GetDeviceFleets(ctx context.Context, projectOrProductUID string, deviceUID string) ApiGetDeviceFleetsRequest

GetDeviceFleets Method for GetDeviceFleets

Get Device Fleets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param deviceUID
@return ApiGetDeviceFleetsRequest

func (*ProjectAPIService) GetDeviceFleetsExecute

Execute executes the request

@return GetDeviceFleets200Response

func (*ProjectAPIService) GetDevicesDfuHistory

func (a *ProjectAPIService) GetDevicesDfuHistory(ctx context.Context, projectOrProductUID string, firmwareType string) ApiGetDevicesDfuHistoryRequest

GetDevicesDfuHistory Method for GetDevicesDfuHistory

Get host or Notecard DFU history for all devices that match the filter criteria

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param firmwareType
@return ApiGetDevicesDfuHistoryRequest

func (*ProjectAPIService) GetDevicesDfuHistoryExecute

Execute executes the request

@return DeviceDfuHistoryPage

func (*ProjectAPIService) GetDevicesDfuStatus

func (a *ProjectAPIService) GetDevicesDfuStatus(ctx context.Context, projectOrProductUID string, firmwareType string) ApiGetDevicesDfuStatusRequest

GetDevicesDfuStatus Method for GetDevicesDfuStatus

Get host or Notecard DFU history for all devices that match the filter criteria

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param firmwareType
@return ApiGetDevicesDfuStatusRequest

func (*ProjectAPIService) GetDevicesDfuStatusExecute

Execute executes the request

@return DeviceDfuStatusPage

func (*ProjectAPIService) GetFirmwareInfo

func (a *ProjectAPIService) GetFirmwareInfo(ctx context.Context, projectOrProductUID string) ApiGetFirmwareInfoRequest

GetFirmwareInfo Method for GetFirmwareInfo

Get Available Firmware Information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetFirmwareInfoRequest

func (*ProjectAPIService) GetFirmwareInfoExecute

func (a *ProjectAPIService) GetFirmwareInfoExecute(r ApiGetFirmwareInfoRequest) ([]FirmwareInfo, *http.Response, error)

Execute executes the request

@return []FirmwareInfo

func (*ProjectAPIService) GetFleet

func (a *ProjectAPIService) GetFleet(ctx context.Context, projectOrProductUID string, fleetUID string) ApiGetFleetRequest

GetFleet Method for GetFleet

Get Fleet

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param fleetUID
@return ApiGetFleetRequest

func (*ProjectAPIService) GetFleetEnvironmentHierarchy

func (a *ProjectAPIService) GetFleetEnvironmentHierarchy(ctx context.Context, projectOrProductUID string, fleetUID string) ApiGetFleetEnvironmentHierarchyRequest

GetFleetEnvironmentHierarchy Get environment variable hierarchy for a device

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param fleetUID
@return ApiGetFleetEnvironmentHierarchyRequest

func (*ProjectAPIService) GetFleetEnvironmentHierarchyExecute

func (a *ProjectAPIService) GetFleetEnvironmentHierarchyExecute(r ApiGetFleetEnvironmentHierarchyRequest) (*EnvTreeJsonNode, *http.Response, error)

Execute executes the request

@return EnvTreeJsonNode

func (*ProjectAPIService) GetFleetEnvironmentVariables

func (a *ProjectAPIService) GetFleetEnvironmentVariables(ctx context.Context, projectOrProductUID string, fleetUID string) ApiGetFleetEnvironmentVariablesRequest

GetFleetEnvironmentVariables Method for GetFleetEnvironmentVariables

Get environment variables of a fleet

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param fleetUID
@return ApiGetFleetEnvironmentVariablesRequest

func (*ProjectAPIService) GetFleetEnvironmentVariablesExecute

func (a *ProjectAPIService) GetFleetEnvironmentVariablesExecute(r ApiGetFleetEnvironmentVariablesRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*ProjectAPIService) GetFleetExecute

func (a *ProjectAPIService) GetFleetExecute(r ApiGetFleetRequest) (*Fleet, *http.Response, error)

Execute executes the request

@return Fleet

func (*ProjectAPIService) GetFleets

func (a *ProjectAPIService) GetFleets(ctx context.Context, projectOrProductUID string) ApiGetFleetsRequest

GetFleets Method for GetFleets

Get Project Fleets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetFleetsRequest

func (*ProjectAPIService) GetFleetsExecute

Execute executes the request

@return GetDeviceFleets200Response

func (*ProjectAPIService) GetNotefileSchemas

func (a *ProjectAPIService) GetNotefileSchemas(ctx context.Context, projectOrProductUID string) ApiGetNotefileSchemasRequest

GetNotefileSchemas Get variable format for a notefile

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetNotefileSchemasRequest

func (*ProjectAPIService) GetNotefileSchemasExecute

func (a *ProjectAPIService) GetNotefileSchemasExecute(r ApiGetNotefileSchemasRequest) ([]NotefileSchema, *http.Response, error)

Execute executes the request

@return []NotefileSchema

func (*ProjectAPIService) GetProducts

func (a *ProjectAPIService) GetProducts(ctx context.Context, projectOrProductUID string) ApiGetProductsRequest

GetProducts Method for GetProducts

Get Products within a Project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetProductsRequest

func (*ProjectAPIService) GetProductsExecute

Execute executes the request

@return GetProducts200Response

func (*ProjectAPIService) GetProject

func (a *ProjectAPIService) GetProject(ctx context.Context, projectOrProductUID string) ApiGetProjectRequest

GetProject Method for GetProject

Get a Project by ProjectUID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetProjectRequest

func (*ProjectAPIService) GetProjectByProduct

func (a *ProjectAPIService) GetProjectByProduct(ctx context.Context, productUID string) ApiGetProjectByProductRequest

GetProjectByProduct Method for GetProjectByProduct

Get a Project by ProductUID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param productUID
@return ApiGetProjectByProductRequest

func (*ProjectAPIService) GetProjectByProductExecute

func (a *ProjectAPIService) GetProjectByProductExecute(r ApiGetProjectByProductRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*ProjectAPIService) GetProjectEnvironmentHierarchy

func (a *ProjectAPIService) GetProjectEnvironmentHierarchy(ctx context.Context, projectOrProductUID string) ApiGetProjectEnvironmentHierarchyRequest

GetProjectEnvironmentHierarchy Get environment variable hierarchy for a device

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetProjectEnvironmentHierarchyRequest

func (*ProjectAPIService) GetProjectEnvironmentHierarchyExecute

func (a *ProjectAPIService) GetProjectEnvironmentHierarchyExecute(r ApiGetProjectEnvironmentHierarchyRequest) (*EnvTreeJsonNode, *http.Response, error)

Execute executes the request

@return EnvTreeJsonNode

func (*ProjectAPIService) GetProjectEnvironmentVariables

func (a *ProjectAPIService) GetProjectEnvironmentVariables(ctx context.Context, projectOrProductUID string) ApiGetProjectEnvironmentVariablesRequest

GetProjectEnvironmentVariables Method for GetProjectEnvironmentVariables

Get environment variables of a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetProjectEnvironmentVariablesRequest

func (*ProjectAPIService) GetProjectEnvironmentVariablesExecute

func (a *ProjectAPIService) GetProjectEnvironmentVariablesExecute(r ApiGetProjectEnvironmentVariablesRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*ProjectAPIService) GetProjectExecute

func (a *ProjectAPIService) GetProjectExecute(r ApiGetProjectRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*ProjectAPIService) GetProjectMembers

func (a *ProjectAPIService) GetProjectMembers(ctx context.Context, projectOrProductUID string) ApiGetProjectMembersRequest

GetProjectMembers Method for GetProjectMembers

Get Project Members

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetProjectMembersRequest

func (*ProjectAPIService) GetProjectMembersExecute

Execute executes the request

@return GetProjectMembers200Response

func (*ProjectAPIService) GetProjects

GetProjects Method for GetProjects

Get Projects accessible by the api_key

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetProjectsRequest

func (*ProjectAPIService) GetProjectsExecute

Execute executes the request

@return GetProjects200Response

func (*ProjectAPIService) PerformDfuAction

func (a *ProjectAPIService) PerformDfuAction(ctx context.Context, projectOrProductUID string, firmwareType string, action string) ApiPerformDfuActionRequest

PerformDfuAction Method for PerformDfuAction

Update/cancel host or notecard firmware updates

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param firmwareType
@param action
@return ApiPerformDfuActionRequest

func (*ProjectAPIService) PerformDfuActionExecute

func (a *ProjectAPIService) PerformDfuActionExecute(r ApiPerformDfuActionRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SetFleetEnvironmentVariables

func (a *ProjectAPIService) SetFleetEnvironmentVariables(ctx context.Context, projectOrProductUID string, fleetUID string) ApiSetFleetEnvironmentVariablesRequest

SetFleetEnvironmentVariables Method for SetFleetEnvironmentVariables

Set environment variables of a fleet

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param fleetUID
@return ApiSetFleetEnvironmentVariablesRequest

func (*ProjectAPIService) SetFleetEnvironmentVariablesExecute

func (a *ProjectAPIService) SetFleetEnvironmentVariablesExecute(r ApiSetFleetEnvironmentVariablesRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*ProjectAPIService) SetGlobalEventTransformation

func (a *ProjectAPIService) SetGlobalEventTransformation(ctx context.Context, projectOrProductUID string) ApiSetGlobalEventTransformationRequest

SetGlobalEventTransformation Method for SetGlobalEventTransformation

Set the project-level event JSONata transformation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiSetGlobalEventTransformationRequest

func (*ProjectAPIService) SetGlobalEventTransformationExecute

func (a *ProjectAPIService) SetGlobalEventTransformationExecute(r ApiSetGlobalEventTransformationRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SetProjectEnvironmentVariables

func (a *ProjectAPIService) SetProjectEnvironmentVariables(ctx context.Context, projectOrProductUID string) ApiSetProjectEnvironmentVariablesRequest

SetProjectEnvironmentVariables Method for SetProjectEnvironmentVariables

Set environment variables of a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiSetProjectEnvironmentVariablesRequest

func (*ProjectAPIService) SetProjectEnvironmentVariablesExecute

func (a *ProjectAPIService) SetProjectEnvironmentVariablesExecute(r ApiSetProjectEnvironmentVariablesRequest) (*EnvironmentVariables, *http.Response, error)

Execute executes the request

@return EnvironmentVariables

func (*ProjectAPIService) UpdateFleet

func (a *ProjectAPIService) UpdateFleet(ctx context.Context, projectOrProductUID string, fleetUID string) ApiUpdateFleetRequest

UpdateFleet Method for UpdateFleet

Update Fleet

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param fleetUID
@return ApiUpdateFleetRequest

func (*ProjectAPIService) UpdateFleetExecute

func (a *ProjectAPIService) UpdateFleetExecute(r ApiUpdateFleetRequest) (*Fleet, *http.Response, error)

Execute executes the request

@return Fleet

func (*ProjectAPIService) UploadFirmware

func (a *ProjectAPIService) UploadFirmware(ctx context.Context, projectOrProductUID string, firmwareType string, filename string) ApiUploadFirmwareRequest

UploadFirmware Method for UploadFirmware

Upload firmware binary

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param firmwareType
@param filename
@return ApiUploadFirmwareRequest

func (*ProjectAPIService) UploadFirmwareExecute

func (a *ProjectAPIService) UploadFirmwareExecute(r ApiUploadFirmwareRequest) (*FirmwareInfo, *http.Response, error)

Execute executes the request

@return FirmwareInfo

type ProjectMember

type ProjectMember struct {
	// The email address of the project member. This property will only be populated if the viewer is an owner of the project.
	Email string       `json:"email"`
	Name  string       `json:"name"`
	Role  NullableRole `json:"role"`
}

ProjectMember struct for ProjectMember

func NewProjectMember

func NewProjectMember(email string, name string, role NullableRole) *ProjectMember

NewProjectMember instantiates a new ProjectMember object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectMemberWithDefaults

func NewProjectMemberWithDefaults() *ProjectMember

NewProjectMemberWithDefaults instantiates a new ProjectMember object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectMember) GetEmail

func (o *ProjectMember) GetEmail() string

GetEmail returns the Email field value

func (*ProjectMember) GetEmailOk

func (o *ProjectMember) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*ProjectMember) GetName

func (o *ProjectMember) GetName() string

GetName returns the Name field value

func (*ProjectMember) GetNameOk

func (o *ProjectMember) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProjectMember) GetRole

func (o *ProjectMember) GetRole() Role

GetRole returns the Role field value If the value is explicit nil, the zero value for Role will be returned

func (*ProjectMember) GetRoleOk

func (o *ProjectMember) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (ProjectMember) MarshalJSON

func (o ProjectMember) MarshalJSON() ([]byte, error)

func (*ProjectMember) SetEmail

func (o *ProjectMember) SetEmail(v string)

SetEmail sets field value

func (*ProjectMember) SetName

func (o *ProjectMember) SetName(v string)

SetName sets field value

func (*ProjectMember) SetRole

func (o *ProjectMember) SetRole(v Role)

SetRole sets field value

func (ProjectMember) ToMap

func (o ProjectMember) ToMap() (map[string]interface{}, error)

func (*ProjectMember) UnmarshalJSON

func (o *ProjectMember) UnmarshalJSON(data []byte) (err error)

type ProvisionDeviceRequest

type ProvisionDeviceRequest struct {
	// The serial number to assign to the device.
	DeviceSn *string `json:"device_sn,omitempty"`
	// The fleetUIDs to provision the device to.
	FleetUids []string `json:"fleet_uids,omitempty"`
	// The ProductUID that the device should use.
	ProductUid string `json:"product_uid"`
}

ProvisionDeviceRequest struct for ProvisionDeviceRequest

func NewProvisionDeviceRequest

func NewProvisionDeviceRequest(productUid string) *ProvisionDeviceRequest

NewProvisionDeviceRequest instantiates a new ProvisionDeviceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProvisionDeviceRequestWithDefaults

func NewProvisionDeviceRequestWithDefaults() *ProvisionDeviceRequest

NewProvisionDeviceRequestWithDefaults instantiates a new ProvisionDeviceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProvisionDeviceRequest) GetDeviceSn

func (o *ProvisionDeviceRequest) GetDeviceSn() string

GetDeviceSn returns the DeviceSn field value if set, zero value otherwise.

func (*ProvisionDeviceRequest) GetDeviceSnOk

func (o *ProvisionDeviceRequest) GetDeviceSnOk() (*string, bool)

GetDeviceSnOk returns a tuple with the DeviceSn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionDeviceRequest) GetFleetUids

func (o *ProvisionDeviceRequest) GetFleetUids() []string

GetFleetUids returns the FleetUids field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionDeviceRequest) GetFleetUidsOk

func (o *ProvisionDeviceRequest) GetFleetUidsOk() ([]string, bool)

GetFleetUidsOk returns a tuple with the FleetUids field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionDeviceRequest) GetProductUid

func (o *ProvisionDeviceRequest) GetProductUid() string

GetProductUid returns the ProductUid field value

func (*ProvisionDeviceRequest) GetProductUidOk

func (o *ProvisionDeviceRequest) GetProductUidOk() (*string, bool)

GetProductUidOk returns a tuple with the ProductUid field value and a boolean to check if the value has been set.

func (*ProvisionDeviceRequest) HasDeviceSn

func (o *ProvisionDeviceRequest) HasDeviceSn() bool

HasDeviceSn returns a boolean if a field has been set.

func (*ProvisionDeviceRequest) HasFleetUids

func (o *ProvisionDeviceRequest) HasFleetUids() bool

HasFleetUids returns a boolean if a field has been set.

func (ProvisionDeviceRequest) MarshalJSON

func (o ProvisionDeviceRequest) MarshalJSON() ([]byte, error)

func (*ProvisionDeviceRequest) SetDeviceSn

func (o *ProvisionDeviceRequest) SetDeviceSn(v string)

SetDeviceSn gets a reference to the given string and assigns it to the DeviceSn field.

func (*ProvisionDeviceRequest) SetFleetUids

func (o *ProvisionDeviceRequest) SetFleetUids(v []string)

SetFleetUids gets a reference to the given []string and assigns it to the FleetUids field.

func (*ProvisionDeviceRequest) SetProductUid

func (o *ProvisionDeviceRequest) SetProductUid(v string)

SetProductUid sets field value

func (ProvisionDeviceRequest) ToMap

func (o ProvisionDeviceRequest) ToMap() (map[string]interface{}, error)

func (*ProvisionDeviceRequest) UnmarshalJSON

func (o *ProvisionDeviceRequest) UnmarshalJSON(data []byte) (err error)

type ProxyRoute

type ProxyRoute struct {
	Alias       *string                 `json:"alias,omitempty"`
	Fleets      []string                `json:"fleets,omitempty"`
	HttpHeaders *map[string]string      `json:"http_headers,omitempty"`
	Timeout     *int32                  `json:"timeout,omitempty"`
	Transform   *RouteTransformSettings `json:"transform,omitempty"`
	Url         *string                 `json:"url,omitempty"`
}

ProxyRoute struct for ProxyRoute

func NewProxyRoute

func NewProxyRoute() *ProxyRoute

NewProxyRoute instantiates a new ProxyRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProxyRouteWithDefaults

func NewProxyRouteWithDefaults() *ProxyRoute

NewProxyRouteWithDefaults instantiates a new ProxyRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProxyRoute) GetAlias

func (o *ProxyRoute) GetAlias() string

GetAlias returns the Alias field value if set, zero value otherwise.

func (*ProxyRoute) GetAliasOk

func (o *ProxyRoute) GetAliasOk() (*string, bool)

GetAliasOk returns a tuple with the Alias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyRoute) GetFleets

func (o *ProxyRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*ProxyRoute) GetFleetsOk

func (o *ProxyRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyRoute) GetHttpHeaders

func (o *ProxyRoute) GetHttpHeaders() map[string]string

GetHttpHeaders returns the HttpHeaders field value if set, zero value otherwise.

func (*ProxyRoute) GetHttpHeadersOk

func (o *ProxyRoute) GetHttpHeadersOk() (*map[string]string, bool)

GetHttpHeadersOk returns a tuple with the HttpHeaders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyRoute) GetTimeout

func (o *ProxyRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*ProxyRoute) GetTimeoutOk

func (o *ProxyRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyRoute) GetTransform

func (o *ProxyRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*ProxyRoute) GetTransformOk

func (o *ProxyRoute) GetTransformOk() (*RouteTransformSettings, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyRoute) GetUrl

func (o *ProxyRoute) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ProxyRoute) GetUrlOk

func (o *ProxyRoute) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyRoute) HasAlias

func (o *ProxyRoute) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*ProxyRoute) HasFleets

func (o *ProxyRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*ProxyRoute) HasHttpHeaders

func (o *ProxyRoute) HasHttpHeaders() bool

HasHttpHeaders returns a boolean if a field has been set.

func (*ProxyRoute) HasTimeout

func (o *ProxyRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*ProxyRoute) HasTransform

func (o *ProxyRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*ProxyRoute) HasUrl

func (o *ProxyRoute) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ProxyRoute) MarshalJSON

func (o ProxyRoute) MarshalJSON() ([]byte, error)

func (*ProxyRoute) SetAlias

func (o *ProxyRoute) SetAlias(v string)

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*ProxyRoute) SetFleets

func (o *ProxyRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*ProxyRoute) SetHttpHeaders

func (o *ProxyRoute) SetHttpHeaders(v map[string]string)

SetHttpHeaders gets a reference to the given map[string]string and assigns it to the HttpHeaders field.

func (*ProxyRoute) SetTimeout

func (o *ProxyRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*ProxyRoute) SetTransform

func (o *ProxyRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*ProxyRoute) SetUrl

func (o *ProxyRoute) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (ProxyRoute) ToMap

func (o ProxyRoute) ToMap() (map[string]interface{}, error)

type QubitroRoute

type QubitroRoute struct {
	Filter            *Filter                 `json:"filter,omitempty"`
	Fleets            []string                `json:"fleets,omitempty"`
	ProjectId         *string                 `json:"project_id,omitempty"`
	ThrottleMs        *int32                  `json:"throttle_ms,omitempty"`
	Timeout           *int32                  `json:"timeout,omitempty"`
	Transform         *RouteTransformSettings `json:"transform,omitempty"`
	WebhookSigningKey *string                 `json:"webhook_signing_key,omitempty"`
}

QubitroRoute struct for QubitroRoute

func NewQubitroRoute

func NewQubitroRoute() *QubitroRoute

NewQubitroRoute instantiates a new QubitroRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQubitroRouteWithDefaults

func NewQubitroRouteWithDefaults() *QubitroRoute

NewQubitroRouteWithDefaults instantiates a new QubitroRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QubitroRoute) GetFilter

func (o *QubitroRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*QubitroRoute) GetFilterOk

func (o *QubitroRoute) GetFilterOk() (*Filter, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QubitroRoute) GetFleets

func (o *QubitroRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*QubitroRoute) GetFleetsOk

func (o *QubitroRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QubitroRoute) GetProjectId

func (o *QubitroRoute) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*QubitroRoute) GetProjectIdOk

func (o *QubitroRoute) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QubitroRoute) GetThrottleMs

func (o *QubitroRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*QubitroRoute) GetThrottleMsOk

func (o *QubitroRoute) GetThrottleMsOk() (*int32, bool)

GetThrottleMsOk returns a tuple with the ThrottleMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QubitroRoute) GetTimeout

func (o *QubitroRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*QubitroRoute) GetTimeoutOk

func (o *QubitroRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QubitroRoute) GetTransform

func (o *QubitroRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*QubitroRoute) GetTransformOk

func (o *QubitroRoute) GetTransformOk() (*RouteTransformSettings, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QubitroRoute) GetWebhookSigningKey

func (o *QubitroRoute) GetWebhookSigningKey() string

GetWebhookSigningKey returns the WebhookSigningKey field value if set, zero value otherwise.

func (*QubitroRoute) GetWebhookSigningKeyOk

func (o *QubitroRoute) GetWebhookSigningKeyOk() (*string, bool)

GetWebhookSigningKeyOk returns a tuple with the WebhookSigningKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QubitroRoute) HasFilter

func (o *QubitroRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*QubitroRoute) HasFleets

func (o *QubitroRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*QubitroRoute) HasProjectId

func (o *QubitroRoute) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*QubitroRoute) HasThrottleMs

func (o *QubitroRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*QubitroRoute) HasTimeout

func (o *QubitroRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*QubitroRoute) HasTransform

func (o *QubitroRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*QubitroRoute) HasWebhookSigningKey

func (o *QubitroRoute) HasWebhookSigningKey() bool

HasWebhookSigningKey returns a boolean if a field has been set.

func (QubitroRoute) MarshalJSON

func (o QubitroRoute) MarshalJSON() ([]byte, error)

func (*QubitroRoute) SetFilter

func (o *QubitroRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*QubitroRoute) SetFleets

func (o *QubitroRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*QubitroRoute) SetProjectId

func (o *QubitroRoute) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*QubitroRoute) SetThrottleMs

func (o *QubitroRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*QubitroRoute) SetTimeout

func (o *QubitroRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*QubitroRoute) SetTransform

func (o *QubitroRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*QubitroRoute) SetWebhookSigningKey

func (o *QubitroRoute) SetWebhookSigningKey(v string)

SetWebhookSigningKey gets a reference to the given string and assigns it to the WebhookSigningKey field.

func (QubitroRoute) ToMap

func (o QubitroRoute) ToMap() (map[string]interface{}, error)

type RadRoute

type RadRoute struct {
	ClientId     *string  `json:"client_id,omitempty"`
	ClientSecret *string  `json:"client_secret,omitempty"`
	DataFeedKey  *string  `json:"data_feed_key,omitempty"`
	EventId      *int32   `json:"event_id,omitempty"`
	Fleets       []string `json:"fleets,omitempty"`
	TestApi      *bool    `json:"test_api,omitempty"`
	ThrottleMs   *int32   `json:"throttle_ms,omitempty"`
}

RadRoute struct for RadRoute

func NewRadRoute

func NewRadRoute() *RadRoute

NewRadRoute instantiates a new RadRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRadRouteWithDefaults

func NewRadRouteWithDefaults() *RadRoute

NewRadRouteWithDefaults instantiates a new RadRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RadRoute) GetClientId

func (o *RadRoute) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*RadRoute) GetClientIdOk

func (o *RadRoute) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RadRoute) GetClientSecret

func (o *RadRoute) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*RadRoute) GetClientSecretOk

func (o *RadRoute) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RadRoute) GetDataFeedKey

func (o *RadRoute) GetDataFeedKey() string

GetDataFeedKey returns the DataFeedKey field value if set, zero value otherwise.

func (*RadRoute) GetDataFeedKeyOk

func (o *RadRoute) GetDataFeedKeyOk() (*string, bool)

GetDataFeedKeyOk returns a tuple with the DataFeedKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RadRoute) GetEventId

func (o *RadRoute) GetEventId() int32

GetEventId returns the EventId field value if set, zero value otherwise.

func (*RadRoute) GetEventIdOk

func (o *RadRoute) GetEventIdOk() (*int32, bool)

GetEventIdOk returns a tuple with the EventId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RadRoute) GetFleets

func (o *RadRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*RadRoute) GetFleetsOk

func (o *RadRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RadRoute) GetTestApi

func (o *RadRoute) GetTestApi() bool

GetTestApi returns the TestApi field value if set, zero value otherwise.

func (*RadRoute) GetTestApiOk

func (o *RadRoute) GetTestApiOk() (*bool, bool)

GetTestApiOk returns a tuple with the TestApi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RadRoute) GetThrottleMs

func (o *RadRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*RadRoute) GetThrottleMsOk

func (o *RadRoute) GetThrottleMsOk() (*int32, bool)

GetThrottleMsOk returns a tuple with the ThrottleMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RadRoute) HasClientId

func (o *RadRoute) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*RadRoute) HasClientSecret

func (o *RadRoute) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*RadRoute) HasDataFeedKey

func (o *RadRoute) HasDataFeedKey() bool

HasDataFeedKey returns a boolean if a field has been set.

func (*RadRoute) HasEventId

func (o *RadRoute) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*RadRoute) HasFleets

func (o *RadRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*RadRoute) HasTestApi

func (o *RadRoute) HasTestApi() bool

HasTestApi returns a boolean if a field has been set.

func (*RadRoute) HasThrottleMs

func (o *RadRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (RadRoute) MarshalJSON

func (o RadRoute) MarshalJSON() ([]byte, error)

func (*RadRoute) SetClientId

func (o *RadRoute) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*RadRoute) SetClientSecret

func (o *RadRoute) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*RadRoute) SetDataFeedKey

func (o *RadRoute) SetDataFeedKey(v string)

SetDataFeedKey gets a reference to the given string and assigns it to the DataFeedKey field.

func (*RadRoute) SetEventId

func (o *RadRoute) SetEventId(v int32)

SetEventId gets a reference to the given int32 and assigns it to the EventId field.

func (*RadRoute) SetFleets

func (o *RadRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*RadRoute) SetTestApi

func (o *RadRoute) SetTestApi(v bool)

SetTestApi gets a reference to the given bool and assigns it to the TestApi field.

func (*RadRoute) SetThrottleMs

func (o *RadRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (RadRoute) ToMap

func (o RadRoute) ToMap() (map[string]interface{}, error)

type Repository

type Repository struct {
	FleetUids []string `json:"fleet_uids,omitempty"`
	// repository name
	Name        *string  `json:"name,omitempty"`
	ProjectUids []string `json:"project_uids,omitempty"`
	// The unique identifier for the data repository
	Uid *string `json:"uid,omitempty"`
}

Repository struct for Repository

func NewRepository

func NewRepository() *Repository

NewRepository instantiates a new Repository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRepositoryWithDefaults

func NewRepositoryWithDefaults() *Repository

NewRepositoryWithDefaults instantiates a new Repository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Repository) GetFleetUids

func (o *Repository) GetFleetUids() []string

GetFleetUids returns the FleetUids field value if set, zero value otherwise.

func (*Repository) GetFleetUidsOk

func (o *Repository) GetFleetUidsOk() ([]string, bool)

GetFleetUidsOk returns a tuple with the FleetUids field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetName

func (o *Repository) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Repository) GetNameOk

func (o *Repository) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetProjectUids

func (o *Repository) GetProjectUids() []string

GetProjectUids returns the ProjectUids field value if set, zero value otherwise.

func (*Repository) GetProjectUidsOk

func (o *Repository) GetProjectUidsOk() ([]string, bool)

GetProjectUidsOk returns a tuple with the ProjectUids field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetUid

func (o *Repository) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*Repository) GetUidOk

func (o *Repository) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) HasFleetUids

func (o *Repository) HasFleetUids() bool

HasFleetUids returns a boolean if a field has been set.

func (*Repository) HasName

func (o *Repository) HasName() bool

HasName returns a boolean if a field has been set.

func (*Repository) HasProjectUids

func (o *Repository) HasProjectUids() bool

HasProjectUids returns a boolean if a field has been set.

func (*Repository) HasUid

func (o *Repository) HasUid() bool

HasUid returns a boolean if a field has been set.

func (Repository) MarshalJSON

func (o Repository) MarshalJSON() ([]byte, error)

func (*Repository) SetFleetUids

func (o *Repository) SetFleetUids(v []string)

SetFleetUids gets a reference to the given []string and assigns it to the FleetUids field.

func (*Repository) SetName

func (o *Repository) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Repository) SetProjectUids

func (o *Repository) SetProjectUids(v []string)

SetProjectUids gets a reference to the given []string and assigns it to the ProjectUids field.

func (*Repository) SetUid

func (o *Repository) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (Repository) ToMap

func (o Repository) ToMap() (map[string]interface{}, error)

type Role

type Role string

Role the model 'Role'

const (
	OWNER     Role = "owner"
	DEVELOPER Role = "developer"
	VIEWER    Role = "viewer"
	SUPPORT   Role = "support"
)

List of Role

func NewRoleFromValue

func NewRoleFromValue(v string) (*Role, error)

NewRoleFromValue returns a pointer to a valid Role for the value passed as argument, or an error if the value passed is not allowed by the enum

func (Role) IsValid

func (v Role) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (Role) Ptr

func (v Role) Ptr() *Role

Ptr returns reference to Role value

func (*Role) UnmarshalJSON

func (v *Role) UnmarshalJSON(src []byte) error

type RouteAPIService

type RouteAPIService service

RouteAPIService RouteAPI service

func (*RouteAPIService) CreateRoute

func (a *RouteAPIService) CreateRoute(ctx context.Context, projectOrProductUID string) ApiCreateRouteRequest

CreateRoute Method for CreateRoute

Create Route within a Project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiCreateRouteRequest

func (*RouteAPIService) CreateRouteExecute

func (a *RouteAPIService) CreateRouteExecute(r ApiCreateRouteRequest) (*NotehubRoute, *http.Response, error)

Execute executes the request

@return NotehubRoute

func (*RouteAPIService) DeleteRoute

func (a *RouteAPIService) DeleteRoute(ctx context.Context, projectOrProductUID string, routeUID string) ApiDeleteRouteRequest

DeleteRoute Method for DeleteRoute

Delete single route within a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param routeUID
@return ApiDeleteRouteRequest

func (*RouteAPIService) DeleteRouteExecute

func (a *RouteAPIService) DeleteRouteExecute(r ApiDeleteRouteRequest) (*http.Response, error)

Execute executes the request

func (*RouteAPIService) GetRoute

func (a *RouteAPIService) GetRoute(ctx context.Context, projectOrProductUID string, routeUID string) ApiGetRouteRequest

GetRoute Method for GetRoute

Get single route within a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param routeUID
@return ApiGetRouteRequest

func (*RouteAPIService) GetRouteExecute

func (a *RouteAPIService) GetRouteExecute(r ApiGetRouteRequest) (*NotehubRoute, *http.Response, error)

Execute executes the request

@return NotehubRoute

func (*RouteAPIService) GetRouteLogsByRoute

func (a *RouteAPIService) GetRouteLogsByRoute(ctx context.Context, projectOrProductUID string, routeUID string) ApiGetRouteLogsByRouteRequest

GetRouteLogsByRoute Method for GetRouteLogsByRoute

Get Route Logs by Route UID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param routeUID
@return ApiGetRouteLogsByRouteRequest

func (*RouteAPIService) GetRouteLogsByRouteExecute

func (a *RouteAPIService) GetRouteLogsByRouteExecute(r ApiGetRouteLogsByRouteRequest) ([]RouteLog, *http.Response, error)

Execute executes the request

@return []RouteLog

func (*RouteAPIService) GetRoutes

func (a *RouteAPIService) GetRoutes(ctx context.Context, projectOrProductUID string) ApiGetRoutesRequest

GetRoutes Method for GetRoutes

Get all Routes within a Project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetRoutesRequest

func (*RouteAPIService) GetRoutesExecute

Execute executes the request

@return []NotehubRouteSummary

func (*RouteAPIService) UpdateRoute

func (a *RouteAPIService) UpdateRoute(ctx context.Context, projectOrProductUID string, routeUID string) ApiUpdateRouteRequest

UpdateRoute Method for UpdateRoute

Update route by UID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param routeUID
@return ApiUpdateRouteRequest

func (*RouteAPIService) UpdateRouteExecute

func (a *RouteAPIService) UpdateRouteExecute(r ApiUpdateRouteRequest) (*NotehubRoute, *http.Response, error)

Execute executes the request

@return NotehubRoute

type RouteLog

type RouteLog struct {
	// If true, an error was returned when routing
	Attn *bool `json:"attn,omitempty"`
	// The date of the logs.
	Date *string `json:"date,omitempty"`
	// The duration of the route in milliseconds
	Duration *int32 `json:"duration,omitempty"`
	// The event UID.
	EventUid *string `json:"event_uid,omitempty"`
	// The route UID.
	RouteUid *string `json:"route_uid,omitempty"`
	// The status of the event.
	Status *string `json:"status,omitempty"`
	// The response body of the route.
	Text *string `json:"text,omitempty"`
	// The URL of the route.
	Url *string `json:"url,omitempty"`
}

RouteLog struct for RouteLog

func NewRouteLog

func NewRouteLog() *RouteLog

NewRouteLog instantiates a new RouteLog object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRouteLogWithDefaults

func NewRouteLogWithDefaults() *RouteLog

NewRouteLogWithDefaults instantiates a new RouteLog object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RouteLog) GetAttn

func (o *RouteLog) GetAttn() bool

GetAttn returns the Attn field value if set, zero value otherwise.

func (*RouteLog) GetAttnOk

func (o *RouteLog) GetAttnOk() (*bool, bool)

GetAttnOk returns a tuple with the Attn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteLog) GetDate

func (o *RouteLog) GetDate() string

GetDate returns the Date field value if set, zero value otherwise.

func (*RouteLog) GetDateOk

func (o *RouteLog) GetDateOk() (*string, bool)

GetDateOk returns a tuple with the Date field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteLog) GetDuration

func (o *RouteLog) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*RouteLog) GetDurationOk

func (o *RouteLog) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteLog) GetEventUid

func (o *RouteLog) GetEventUid() string

GetEventUid returns the EventUid field value if set, zero value otherwise.

func (*RouteLog) GetEventUidOk

func (o *RouteLog) GetEventUidOk() (*string, bool)

GetEventUidOk returns a tuple with the EventUid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteLog) GetRouteUid

func (o *RouteLog) GetRouteUid() string

GetRouteUid returns the RouteUid field value if set, zero value otherwise.

func (*RouteLog) GetRouteUidOk

func (o *RouteLog) GetRouteUidOk() (*string, bool)

GetRouteUidOk returns a tuple with the RouteUid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteLog) GetStatus

func (o *RouteLog) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*RouteLog) GetStatusOk

func (o *RouteLog) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteLog) GetText

func (o *RouteLog) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*RouteLog) GetTextOk

func (o *RouteLog) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteLog) GetUrl

func (o *RouteLog) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RouteLog) GetUrlOk

func (o *RouteLog) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteLog) HasAttn

func (o *RouteLog) HasAttn() bool

HasAttn returns a boolean if a field has been set.

func (*RouteLog) HasDate

func (o *RouteLog) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*RouteLog) HasDuration

func (o *RouteLog) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*RouteLog) HasEventUid

func (o *RouteLog) HasEventUid() bool

HasEventUid returns a boolean if a field has been set.

func (*RouteLog) HasRouteUid

func (o *RouteLog) HasRouteUid() bool

HasRouteUid returns a boolean if a field has been set.

func (*RouteLog) HasStatus

func (o *RouteLog) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*RouteLog) HasText

func (o *RouteLog) HasText() bool

HasText returns a boolean if a field has been set.

func (*RouteLog) HasUrl

func (o *RouteLog) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (RouteLog) MarshalJSON

func (o RouteLog) MarshalJSON() ([]byte, error)

func (*RouteLog) SetAttn

func (o *RouteLog) SetAttn(v bool)

SetAttn gets a reference to the given bool and assigns it to the Attn field.

func (*RouteLog) SetDate

func (o *RouteLog) SetDate(v string)

SetDate gets a reference to the given string and assigns it to the Date field.

func (*RouteLog) SetDuration

func (o *RouteLog) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*RouteLog) SetEventUid

func (o *RouteLog) SetEventUid(v string)

SetEventUid gets a reference to the given string and assigns it to the EventUid field.

func (*RouteLog) SetRouteUid

func (o *RouteLog) SetRouteUid(v string)

SetRouteUid gets a reference to the given string and assigns it to the RouteUid field.

func (*RouteLog) SetStatus

func (o *RouteLog) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*RouteLog) SetText

func (o *RouteLog) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*RouteLog) SetUrl

func (o *RouteLog) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (RouteLog) ToMap

func (o RouteLog) ToMap() (map[string]interface{}, error)

type RouteTransformSettings

type RouteTransformSettings struct {
	// Output format for transformed data (e.g., \"json\", \"xml\", \"text\").
	Format *string `json:"format,omitempty"`
	// JSONata expression used to transform the data payload (outgoing).
	Jsonata *string `json:"jsonata,omitempty"`
	// JSONata expression used to transform the data payload (incoming).
	JsonataIn *string `json:"jsonata_in,omitempty"`
}

RouteTransformSettings Settings for transforming route payloads before delivery. Supports format selection and JSONata-based transformations.

func NewRouteTransformSettings

func NewRouteTransformSettings() *RouteTransformSettings

NewRouteTransformSettings instantiates a new RouteTransformSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRouteTransformSettingsWithDefaults

func NewRouteTransformSettingsWithDefaults() *RouteTransformSettings

NewRouteTransformSettingsWithDefaults instantiates a new RouteTransformSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RouteTransformSettings) GetFormat

func (o *RouteTransformSettings) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*RouteTransformSettings) GetFormatOk

func (o *RouteTransformSettings) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteTransformSettings) GetJsonata

func (o *RouteTransformSettings) GetJsonata() string

GetJsonata returns the Jsonata field value if set, zero value otherwise.

func (*RouteTransformSettings) GetJsonataIn

func (o *RouteTransformSettings) GetJsonataIn() string

GetJsonataIn returns the JsonataIn field value if set, zero value otherwise.

func (*RouteTransformSettings) GetJsonataInOk

func (o *RouteTransformSettings) GetJsonataInOk() (*string, bool)

GetJsonataInOk returns a tuple with the JsonataIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteTransformSettings) GetJsonataOk

func (o *RouteTransformSettings) GetJsonataOk() (*string, bool)

GetJsonataOk returns a tuple with the Jsonata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteTransformSettings) HasFormat

func (o *RouteTransformSettings) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*RouteTransformSettings) HasJsonata

func (o *RouteTransformSettings) HasJsonata() bool

HasJsonata returns a boolean if a field has been set.

func (*RouteTransformSettings) HasJsonataIn

func (o *RouteTransformSettings) HasJsonataIn() bool

HasJsonataIn returns a boolean if a field has been set.

func (RouteTransformSettings) MarshalJSON

func (o RouteTransformSettings) MarshalJSON() ([]byte, error)

func (*RouteTransformSettings) SetFormat

func (o *RouteTransformSettings) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*RouteTransformSettings) SetJsonata

func (o *RouteTransformSettings) SetJsonata(v string)

SetJsonata gets a reference to the given string and assigns it to the Jsonata field.

func (*RouteTransformSettings) SetJsonataIn

func (o *RouteTransformSettings) SetJsonataIn(v string)

SetJsonataIn gets a reference to the given string and assigns it to the JsonataIn field.

func (RouteTransformSettings) ToMap

func (o RouteTransformSettings) ToMap() (map[string]interface{}, error)

type S3ArchiveRoute

type S3ArchiveRoute struct {
	ArchiveCountExceeds *int32                  `json:"archive_count_exceeds,omitempty"`
	ArchiveEveryMins    *int32                  `json:"archive_every_mins,omitempty"`
	ArchiveId           *string                 `json:"archive_id,omitempty"`
	BucketEndpoint      *string                 `json:"bucket_endpoint,omitempty"`
	BucketName          *string                 `json:"bucket_name,omitempty"`
	BucketRegion        *string                 `json:"bucket_region,omitempty"`
	FileAccess          *string                 `json:"file_access,omitempty"`
	FileFolder          *string                 `json:"file_folder,omitempty"`
	FileFormat          *string                 `json:"file_format,omitempty"`
	Filter              *Filter                 `json:"filter,omitempty"`
	Fleets              []string                `json:"fleets,omitempty"`
	KeyId               *string                 `json:"key_id,omitempty"`
	KeySecret           *string                 `json:"key_secret,omitempty"`
	ThrottleMs          *int32                  `json:"throttle_ms,omitempty"`
	Timeout             *int32                  `json:"timeout,omitempty"`
	Transform           *RouteTransformSettings `json:"transform,omitempty"`
	Url                 *string                 `json:"url,omitempty"`
}

S3ArchiveRoute struct for S3ArchiveRoute

func NewS3ArchiveRoute

func NewS3ArchiveRoute() *S3ArchiveRoute

NewS3ArchiveRoute instantiates a new S3ArchiveRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewS3ArchiveRouteWithDefaults

func NewS3ArchiveRouteWithDefaults() *S3ArchiveRoute

NewS3ArchiveRouteWithDefaults instantiates a new S3ArchiveRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*S3ArchiveRoute) GetArchiveCountExceeds

func (o *S3ArchiveRoute) GetArchiveCountExceeds() int32

GetArchiveCountExceeds returns the ArchiveCountExceeds field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetArchiveCountExceedsOk

func (o *S3ArchiveRoute) GetArchiveCountExceedsOk() (*int32, bool)

GetArchiveCountExceedsOk returns a tuple with the ArchiveCountExceeds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetArchiveEveryMins

func (o *S3ArchiveRoute) GetArchiveEveryMins() int32

GetArchiveEveryMins returns the ArchiveEveryMins field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetArchiveEveryMinsOk

func (o *S3ArchiveRoute) GetArchiveEveryMinsOk() (*int32, bool)

GetArchiveEveryMinsOk returns a tuple with the ArchiveEveryMins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetArchiveId

func (o *S3ArchiveRoute) GetArchiveId() string

GetArchiveId returns the ArchiveId field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetArchiveIdOk

func (o *S3ArchiveRoute) GetArchiveIdOk() (*string, bool)

GetArchiveIdOk returns a tuple with the ArchiveId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetBucketEndpoint

func (o *S3ArchiveRoute) GetBucketEndpoint() string

GetBucketEndpoint returns the BucketEndpoint field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetBucketEndpointOk

func (o *S3ArchiveRoute) GetBucketEndpointOk() (*string, bool)

GetBucketEndpointOk returns a tuple with the BucketEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetBucketName

func (o *S3ArchiveRoute) GetBucketName() string

GetBucketName returns the BucketName field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetBucketNameOk

func (o *S3ArchiveRoute) GetBucketNameOk() (*string, bool)

GetBucketNameOk returns a tuple with the BucketName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetBucketRegion

func (o *S3ArchiveRoute) GetBucketRegion() string

GetBucketRegion returns the BucketRegion field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetBucketRegionOk

func (o *S3ArchiveRoute) GetBucketRegionOk() (*string, bool)

GetBucketRegionOk returns a tuple with the BucketRegion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetFileAccess

func (o *S3ArchiveRoute) GetFileAccess() string

GetFileAccess returns the FileAccess field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetFileAccessOk

func (o *S3ArchiveRoute) GetFileAccessOk() (*string, bool)

GetFileAccessOk returns a tuple with the FileAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetFileFolder

func (o *S3ArchiveRoute) GetFileFolder() string

GetFileFolder returns the FileFolder field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetFileFolderOk

func (o *S3ArchiveRoute) GetFileFolderOk() (*string, bool)

GetFileFolderOk returns a tuple with the FileFolder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetFileFormat

func (o *S3ArchiveRoute) GetFileFormat() string

GetFileFormat returns the FileFormat field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetFileFormatOk

func (o *S3ArchiveRoute) GetFileFormatOk() (*string, bool)

GetFileFormatOk returns a tuple with the FileFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetFilter

func (o *S3ArchiveRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetFilterOk

func (o *S3ArchiveRoute) GetFilterOk() (*Filter, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetFleets

func (o *S3ArchiveRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetFleetsOk

func (o *S3ArchiveRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetKeyId

func (o *S3ArchiveRoute) GetKeyId() string

GetKeyId returns the KeyId field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetKeyIdOk

func (o *S3ArchiveRoute) GetKeyIdOk() (*string, bool)

GetKeyIdOk returns a tuple with the KeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetKeySecret

func (o *S3ArchiveRoute) GetKeySecret() string

GetKeySecret returns the KeySecret field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetKeySecretOk

func (o *S3ArchiveRoute) GetKeySecretOk() (*string, bool)

GetKeySecretOk returns a tuple with the KeySecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetThrottleMs

func (o *S3ArchiveRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetThrottleMsOk

func (o *S3ArchiveRoute) GetThrottleMsOk() (*int32, bool)

GetThrottleMsOk returns a tuple with the ThrottleMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetTimeout

func (o *S3ArchiveRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetTimeoutOk

func (o *S3ArchiveRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetTransform

func (o *S3ArchiveRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetTransformOk

func (o *S3ArchiveRoute) GetTransformOk() (*RouteTransformSettings, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) GetUrl

func (o *S3ArchiveRoute) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*S3ArchiveRoute) GetUrlOk

func (o *S3ArchiveRoute) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ArchiveRoute) HasArchiveCountExceeds

func (o *S3ArchiveRoute) HasArchiveCountExceeds() bool

HasArchiveCountExceeds returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasArchiveEveryMins

func (o *S3ArchiveRoute) HasArchiveEveryMins() bool

HasArchiveEveryMins returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasArchiveId

func (o *S3ArchiveRoute) HasArchiveId() bool

HasArchiveId returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasBucketEndpoint

func (o *S3ArchiveRoute) HasBucketEndpoint() bool

HasBucketEndpoint returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasBucketName

func (o *S3ArchiveRoute) HasBucketName() bool

HasBucketName returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasBucketRegion

func (o *S3ArchiveRoute) HasBucketRegion() bool

HasBucketRegion returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasFileAccess

func (o *S3ArchiveRoute) HasFileAccess() bool

HasFileAccess returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasFileFolder

func (o *S3ArchiveRoute) HasFileFolder() bool

HasFileFolder returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasFileFormat

func (o *S3ArchiveRoute) HasFileFormat() bool

HasFileFormat returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasFilter

func (o *S3ArchiveRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasFleets

func (o *S3ArchiveRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasKeyId

func (o *S3ArchiveRoute) HasKeyId() bool

HasKeyId returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasKeySecret

func (o *S3ArchiveRoute) HasKeySecret() bool

HasKeySecret returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasThrottleMs

func (o *S3ArchiveRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasTimeout

func (o *S3ArchiveRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasTransform

func (o *S3ArchiveRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*S3ArchiveRoute) HasUrl

func (o *S3ArchiveRoute) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (S3ArchiveRoute) MarshalJSON

func (o S3ArchiveRoute) MarshalJSON() ([]byte, error)

func (*S3ArchiveRoute) SetArchiveCountExceeds

func (o *S3ArchiveRoute) SetArchiveCountExceeds(v int32)

SetArchiveCountExceeds gets a reference to the given int32 and assigns it to the ArchiveCountExceeds field.

func (*S3ArchiveRoute) SetArchiveEveryMins

func (o *S3ArchiveRoute) SetArchiveEveryMins(v int32)

SetArchiveEveryMins gets a reference to the given int32 and assigns it to the ArchiveEveryMins field.

func (*S3ArchiveRoute) SetArchiveId

func (o *S3ArchiveRoute) SetArchiveId(v string)

SetArchiveId gets a reference to the given string and assigns it to the ArchiveId field.

func (*S3ArchiveRoute) SetBucketEndpoint

func (o *S3ArchiveRoute) SetBucketEndpoint(v string)

SetBucketEndpoint gets a reference to the given string and assigns it to the BucketEndpoint field.

func (*S3ArchiveRoute) SetBucketName

func (o *S3ArchiveRoute) SetBucketName(v string)

SetBucketName gets a reference to the given string and assigns it to the BucketName field.

func (*S3ArchiveRoute) SetBucketRegion

func (o *S3ArchiveRoute) SetBucketRegion(v string)

SetBucketRegion gets a reference to the given string and assigns it to the BucketRegion field.

func (*S3ArchiveRoute) SetFileAccess

func (o *S3ArchiveRoute) SetFileAccess(v string)

SetFileAccess gets a reference to the given string and assigns it to the FileAccess field.

func (*S3ArchiveRoute) SetFileFolder

func (o *S3ArchiveRoute) SetFileFolder(v string)

SetFileFolder gets a reference to the given string and assigns it to the FileFolder field.

func (*S3ArchiveRoute) SetFileFormat

func (o *S3ArchiveRoute) SetFileFormat(v string)

SetFileFormat gets a reference to the given string and assigns it to the FileFormat field.

func (*S3ArchiveRoute) SetFilter

func (o *S3ArchiveRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*S3ArchiveRoute) SetFleets

func (o *S3ArchiveRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*S3ArchiveRoute) SetKeyId

func (o *S3ArchiveRoute) SetKeyId(v string)

SetKeyId gets a reference to the given string and assigns it to the KeyId field.

func (*S3ArchiveRoute) SetKeySecret

func (o *S3ArchiveRoute) SetKeySecret(v string)

SetKeySecret gets a reference to the given string and assigns it to the KeySecret field.

func (*S3ArchiveRoute) SetThrottleMs

func (o *S3ArchiveRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*S3ArchiveRoute) SetTimeout

func (o *S3ArchiveRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*S3ArchiveRoute) SetTransform

func (o *S3ArchiveRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*S3ArchiveRoute) SetUrl

func (o *S3ArchiveRoute) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (S3ArchiveRoute) ToMap

func (o S3ArchiveRoute) ToMap() (map[string]interface{}, error)

type SatellitePlan

type SatellitePlan struct {
	// Activation date of the satellite plan as Unix timestamp
	Activated     int64      `json:"activated"`
	BillableBytes *DataUsage `json:"billable_bytes,omitempty"`
	// Time this plan information was last updated
	LastUpdated *int64 `json:"last_updated,omitempty"`
	// Non-Terrestrial Network provider name
	NtnProvider string `json:"ntn_provider"`
	// Provider-specific identifier for the satellite subscription
	Psid string `json:"psid"`
}

SatellitePlan struct for SatellitePlan

func NewSatellitePlan

func NewSatellitePlan(activated int64, ntnProvider string, psid string) *SatellitePlan

NewSatellitePlan instantiates a new SatellitePlan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSatellitePlanWithDefaults

func NewSatellitePlanWithDefaults() *SatellitePlan

NewSatellitePlanWithDefaults instantiates a new SatellitePlan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SatellitePlan) GetActivated

func (o *SatellitePlan) GetActivated() int64

GetActivated returns the Activated field value

func (*SatellitePlan) GetActivatedOk

func (o *SatellitePlan) GetActivatedOk() (*int64, bool)

GetActivatedOk returns a tuple with the Activated field value and a boolean to check if the value has been set.

func (*SatellitePlan) GetBillableBytes

func (o *SatellitePlan) GetBillableBytes() DataUsage

GetBillableBytes returns the BillableBytes field value if set, zero value otherwise.

func (*SatellitePlan) GetBillableBytesOk

func (o *SatellitePlan) GetBillableBytesOk() (*DataUsage, bool)

GetBillableBytesOk returns a tuple with the BillableBytes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SatellitePlan) GetLastUpdated

func (o *SatellitePlan) GetLastUpdated() int64

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*SatellitePlan) GetLastUpdatedOk

func (o *SatellitePlan) GetLastUpdatedOk() (*int64, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SatellitePlan) GetNtnProvider

func (o *SatellitePlan) GetNtnProvider() string

GetNtnProvider returns the NtnProvider field value

func (*SatellitePlan) GetNtnProviderOk

func (o *SatellitePlan) GetNtnProviderOk() (*string, bool)

GetNtnProviderOk returns a tuple with the NtnProvider field value and a boolean to check if the value has been set.

func (*SatellitePlan) GetPsid

func (o *SatellitePlan) GetPsid() string

GetPsid returns the Psid field value

func (*SatellitePlan) GetPsidOk

func (o *SatellitePlan) GetPsidOk() (*string, bool)

GetPsidOk returns a tuple with the Psid field value and a boolean to check if the value has been set.

func (*SatellitePlan) HasBillableBytes

func (o *SatellitePlan) HasBillableBytes() bool

HasBillableBytes returns a boolean if a field has been set.

func (*SatellitePlan) HasLastUpdated

func (o *SatellitePlan) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (SatellitePlan) MarshalJSON

func (o SatellitePlan) MarshalJSON() ([]byte, error)

func (*SatellitePlan) SetActivated

func (o *SatellitePlan) SetActivated(v int64)

SetActivated sets field value

func (*SatellitePlan) SetBillableBytes

func (o *SatellitePlan) SetBillableBytes(v DataUsage)

SetBillableBytes gets a reference to the given DataUsage and assigns it to the BillableBytes field.

func (*SatellitePlan) SetLastUpdated

func (o *SatellitePlan) SetLastUpdated(v int64)

SetLastUpdated gets a reference to the given int64 and assigns it to the LastUpdated field.

func (*SatellitePlan) SetNtnProvider

func (o *SatellitePlan) SetNtnProvider(v string)

SetNtnProvider sets field value

func (*SatellitePlan) SetPsid

func (o *SatellitePlan) SetPsid(v string)

SetPsid sets field value

func (SatellitePlan) ToMap

func (o SatellitePlan) ToMap() (map[string]interface{}, error)

func (*SatellitePlan) UnmarshalJSON

func (o *SatellitePlan) UnmarshalJSON(data []byte) (err error)

type SchemaProperty

type SchemaProperty struct {
	// Used if type is array
	Items []SchemaProperty `json:"items,omitempty"`
	// Name of the field (optional for array/object children)
	Name *string `json:"name,omitempty"`
	// Used if type is object
	Properties []SchemaProperty `json:"properties,omitempty"`
	Type       string           `json:"type"`
	UpdatedAt  *time.Time       `json:"updated_at,omitempty"`
}

SchemaProperty struct for SchemaProperty

func NewSchemaProperty

func NewSchemaProperty(type_ string) *SchemaProperty

NewSchemaProperty instantiates a new SchemaProperty object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSchemaPropertyWithDefaults

func NewSchemaPropertyWithDefaults() *SchemaProperty

NewSchemaPropertyWithDefaults instantiates a new SchemaProperty object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SchemaProperty) GetItems

func (o *SchemaProperty) GetItems() []SchemaProperty

GetItems returns the Items field value if set, zero value otherwise.

func (*SchemaProperty) GetItemsOk

func (o *SchemaProperty) GetItemsOk() ([]SchemaProperty, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SchemaProperty) GetName

func (o *SchemaProperty) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SchemaProperty) GetNameOk

func (o *SchemaProperty) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SchemaProperty) GetProperties

func (o *SchemaProperty) GetProperties() []SchemaProperty

GetProperties returns the Properties field value if set, zero value otherwise.

func (*SchemaProperty) GetPropertiesOk

func (o *SchemaProperty) GetPropertiesOk() ([]SchemaProperty, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SchemaProperty) GetType

func (o *SchemaProperty) GetType() string

GetType returns the Type field value

func (*SchemaProperty) GetTypeOk

func (o *SchemaProperty) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*SchemaProperty) GetUpdatedAt

func (o *SchemaProperty) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*SchemaProperty) GetUpdatedAtOk

func (o *SchemaProperty) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SchemaProperty) HasItems

func (o *SchemaProperty) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SchemaProperty) HasName

func (o *SchemaProperty) HasName() bool

HasName returns a boolean if a field has been set.

func (*SchemaProperty) HasProperties

func (o *SchemaProperty) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*SchemaProperty) HasUpdatedAt

func (o *SchemaProperty) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (SchemaProperty) MarshalJSON

func (o SchemaProperty) MarshalJSON() ([]byte, error)

func (*SchemaProperty) SetItems

func (o *SchemaProperty) SetItems(v []SchemaProperty)

SetItems gets a reference to the given []SchemaProperty and assigns it to the Items field.

func (*SchemaProperty) SetName

func (o *SchemaProperty) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*SchemaProperty) SetProperties

func (o *SchemaProperty) SetProperties(v []SchemaProperty)

SetProperties gets a reference to the given []SchemaProperty and assigns it to the Properties field.

func (*SchemaProperty) SetType

func (o *SchemaProperty) SetType(v string)

SetType sets field value

func (*SchemaProperty) SetUpdatedAt

func (o *SchemaProperty) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (SchemaProperty) ToMap

func (o SchemaProperty) ToMap() (map[string]interface{}, error)

func (*SchemaProperty) UnmarshalJSON

func (o *SchemaProperty) UnmarshalJSON(data []byte) (err error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SignalDevice200Response

type SignalDevice200Response struct {
	// true if the Notecard is connected to Notehub.
	Connected *bool `json:"connected,omitempty"`
}

SignalDevice200Response struct for SignalDevice200Response

func NewSignalDevice200Response

func NewSignalDevice200Response() *SignalDevice200Response

NewSignalDevice200Response instantiates a new SignalDevice200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSignalDevice200ResponseWithDefaults

func NewSignalDevice200ResponseWithDefaults() *SignalDevice200Response

NewSignalDevice200ResponseWithDefaults instantiates a new SignalDevice200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SignalDevice200Response) GetConnected

func (o *SignalDevice200Response) GetConnected() bool

GetConnected returns the Connected field value if set, zero value otherwise.

func (*SignalDevice200Response) GetConnectedOk

func (o *SignalDevice200Response) GetConnectedOk() (*bool, bool)

GetConnectedOk returns a tuple with the Connected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SignalDevice200Response) HasConnected

func (o *SignalDevice200Response) HasConnected() bool

HasConnected returns a boolean if a field has been set.

func (SignalDevice200Response) MarshalJSON

func (o SignalDevice200Response) MarshalJSON() ([]byte, error)

func (*SignalDevice200Response) SetConnected

func (o *SignalDevice200Response) SetConnected(v bool)

SetConnected gets a reference to the given bool and assigns it to the Connected field.

func (SignalDevice200Response) ToMap

func (o SignalDevice200Response) ToMap() (map[string]interface{}, error)

type SimUsage

type SimUsage struct {
	// ICCID of the SIM card
	Iccid *string `json:"iccid,omitempty"`
	// Time this usage information was last updated
	LastUpdated *int64 `json:"last_updated,omitempty"`
	// Total number of bytes used by SIM
	LifetimeUsed *int64 `json:"lifetime_used,omitempty"`
	// Limit in bytes of the SIMs current data plan
	Limit *int64 `json:"limit,omitempty"`
	// Bytes used on the SIMs current data plan
	Used *int64 `json:"used,omitempty"`
}

SimUsage struct for SimUsage

func NewSimUsage

func NewSimUsage() *SimUsage

NewSimUsage instantiates a new SimUsage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSimUsageWithDefaults

func NewSimUsageWithDefaults() *SimUsage

NewSimUsageWithDefaults instantiates a new SimUsage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SimUsage) GetIccid

func (o *SimUsage) GetIccid() string

GetIccid returns the Iccid field value if set, zero value otherwise.

func (*SimUsage) GetIccidOk

func (o *SimUsage) GetIccidOk() (*string, bool)

GetIccidOk returns a tuple with the Iccid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SimUsage) GetLastUpdated

func (o *SimUsage) GetLastUpdated() int64

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*SimUsage) GetLastUpdatedOk

func (o *SimUsage) GetLastUpdatedOk() (*int64, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SimUsage) GetLifetimeUsed

func (o *SimUsage) GetLifetimeUsed() int64

GetLifetimeUsed returns the LifetimeUsed field value if set, zero value otherwise.

func (*SimUsage) GetLifetimeUsedOk

func (o *SimUsage) GetLifetimeUsedOk() (*int64, bool)

GetLifetimeUsedOk returns a tuple with the LifetimeUsed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SimUsage) GetLimit

func (o *SimUsage) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*SimUsage) GetLimitOk

func (o *SimUsage) GetLimitOk() (*int64, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SimUsage) GetUsed

func (o *SimUsage) GetUsed() int64

GetUsed returns the Used field value if set, zero value otherwise.

func (*SimUsage) GetUsedOk

func (o *SimUsage) GetUsedOk() (*int64, bool)

GetUsedOk returns a tuple with the Used field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SimUsage) HasIccid

func (o *SimUsage) HasIccid() bool

HasIccid returns a boolean if a field has been set.

func (*SimUsage) HasLastUpdated

func (o *SimUsage) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*SimUsage) HasLifetimeUsed

func (o *SimUsage) HasLifetimeUsed() bool

HasLifetimeUsed returns a boolean if a field has been set.

func (*SimUsage) HasLimit

func (o *SimUsage) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*SimUsage) HasUsed

func (o *SimUsage) HasUsed() bool

HasUsed returns a boolean if a field has been set.

func (SimUsage) MarshalJSON

func (o SimUsage) MarshalJSON() ([]byte, error)

func (*SimUsage) SetIccid

func (o *SimUsage) SetIccid(v string)

SetIccid gets a reference to the given string and assigns it to the Iccid field.

func (*SimUsage) SetLastUpdated

func (o *SimUsage) SetLastUpdated(v int64)

SetLastUpdated gets a reference to the given int64 and assigns it to the LastUpdated field.

func (*SimUsage) SetLifetimeUsed

func (o *SimUsage) SetLifetimeUsed(v int64)

SetLifetimeUsed gets a reference to the given int64 and assigns it to the LifetimeUsed field.

func (*SimUsage) SetLimit

func (o *SimUsage) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*SimUsage) SetUsed

func (o *SimUsage) SetUsed(v int64)

SetUsed gets a reference to the given int64 and assigns it to the Used field.

func (SimUsage) ToMap

func (o SimUsage) ToMap() (map[string]interface{}, error)

type SlackBearerNotification

type SlackBearerNotification struct {
	// The channel to send the message to.
	Channel *string `json:"channel,omitempty"`
	// text or blocks
	MessageType *string `json:"message_type,omitempty"`
	// The text of the message, or the blocks definition
	Text *string `json:"text,omitempty"`
	// The bearer token for the Slack app.
	Token *string `json:"token,omitempty"`
}

SlackBearerNotification struct for SlackBearerNotification

func NewSlackBearerNotification

func NewSlackBearerNotification() *SlackBearerNotification

NewSlackBearerNotification instantiates a new SlackBearerNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSlackBearerNotificationWithDefaults

func NewSlackBearerNotificationWithDefaults() *SlackBearerNotification

NewSlackBearerNotificationWithDefaults instantiates a new SlackBearerNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SlackBearerNotification) GetChannel

func (o *SlackBearerNotification) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*SlackBearerNotification) GetChannelOk

func (o *SlackBearerNotification) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackBearerNotification) GetMessageType

func (o *SlackBearerNotification) GetMessageType() string

GetMessageType returns the MessageType field value if set, zero value otherwise.

func (*SlackBearerNotification) GetMessageTypeOk

func (o *SlackBearerNotification) GetMessageTypeOk() (*string, bool)

GetMessageTypeOk returns a tuple with the MessageType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackBearerNotification) GetText

func (o *SlackBearerNotification) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*SlackBearerNotification) GetTextOk

func (o *SlackBearerNotification) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackBearerNotification) GetToken

func (o *SlackBearerNotification) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*SlackBearerNotification) GetTokenOk

func (o *SlackBearerNotification) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackBearerNotification) HasChannel

func (o *SlackBearerNotification) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*SlackBearerNotification) HasMessageType

func (o *SlackBearerNotification) HasMessageType() bool

HasMessageType returns a boolean if a field has been set.

func (*SlackBearerNotification) HasText

func (o *SlackBearerNotification) HasText() bool

HasText returns a boolean if a field has been set.

func (*SlackBearerNotification) HasToken

func (o *SlackBearerNotification) HasToken() bool

HasToken returns a boolean if a field has been set.

func (SlackBearerNotification) MarshalJSON

func (o SlackBearerNotification) MarshalJSON() ([]byte, error)

func (*SlackBearerNotification) SetChannel

func (o *SlackBearerNotification) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*SlackBearerNotification) SetMessageType

func (o *SlackBearerNotification) SetMessageType(v string)

SetMessageType gets a reference to the given string and assigns it to the MessageType field.

func (*SlackBearerNotification) SetText

func (o *SlackBearerNotification) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*SlackBearerNotification) SetToken

func (o *SlackBearerNotification) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (SlackBearerNotification) ToMap

func (o SlackBearerNotification) ToMap() (map[string]interface{}, error)

type SlackRoute

type SlackRoute struct {
	Bearer     *string                 `json:"bearer,omitempty"`
	Blocks     *string                 `json:"blocks,omitempty"`
	Channel    *string                 `json:"channel,omitempty"`
	Filter     *Filter                 `json:"filter,omitempty"`
	Fleets     []string                `json:"fleets,omitempty"`
	Text       *string                 `json:"text,omitempty"`
	ThrottleMs *int32                  `json:"throttle_ms,omitempty"`
	Timeout    *int32                  `json:"timeout,omitempty"`
	Transform  *RouteTransformSettings `json:"transform,omitempty"`
	WebhookUrl *string                 `json:"webhook_url,omitempty"`
}

SlackRoute struct for SlackRoute

func NewSlackRoute

func NewSlackRoute() *SlackRoute

NewSlackRoute instantiates a new SlackRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSlackRouteWithDefaults

func NewSlackRouteWithDefaults() *SlackRoute

NewSlackRouteWithDefaults instantiates a new SlackRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SlackRoute) GetBearer

func (o *SlackRoute) GetBearer() string

GetBearer returns the Bearer field value if set, zero value otherwise.

func (*SlackRoute) GetBearerOk

func (o *SlackRoute) GetBearerOk() (*string, bool)

GetBearerOk returns a tuple with the Bearer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetBlocks

func (o *SlackRoute) GetBlocks() string

GetBlocks returns the Blocks field value if set, zero value otherwise.

func (*SlackRoute) GetBlocksOk

func (o *SlackRoute) GetBlocksOk() (*string, bool)

GetBlocksOk returns a tuple with the Blocks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetChannel

func (o *SlackRoute) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*SlackRoute) GetChannelOk

func (o *SlackRoute) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetFilter

func (o *SlackRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*SlackRoute) GetFilterOk

func (o *SlackRoute) GetFilterOk() (*Filter, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetFleets

func (o *SlackRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*SlackRoute) GetFleetsOk

func (o *SlackRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetText

func (o *SlackRoute) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*SlackRoute) GetTextOk

func (o *SlackRoute) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetThrottleMs

func (o *SlackRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*SlackRoute) GetThrottleMsOk

func (o *SlackRoute) GetThrottleMsOk() (*int32, bool)

GetThrottleMsOk returns a tuple with the ThrottleMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetTimeout

func (o *SlackRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*SlackRoute) GetTimeoutOk

func (o *SlackRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetTransform

func (o *SlackRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*SlackRoute) GetTransformOk

func (o *SlackRoute) GetTransformOk() (*RouteTransformSettings, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) GetWebhookUrl

func (o *SlackRoute) GetWebhookUrl() string

GetWebhookUrl returns the WebhookUrl field value if set, zero value otherwise.

func (*SlackRoute) GetWebhookUrlOk

func (o *SlackRoute) GetWebhookUrlOk() (*string, bool)

GetWebhookUrlOk returns a tuple with the WebhookUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackRoute) HasBearer

func (o *SlackRoute) HasBearer() bool

HasBearer returns a boolean if a field has been set.

func (*SlackRoute) HasBlocks

func (o *SlackRoute) HasBlocks() bool

HasBlocks returns a boolean if a field has been set.

func (*SlackRoute) HasChannel

func (o *SlackRoute) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*SlackRoute) HasFilter

func (o *SlackRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*SlackRoute) HasFleets

func (o *SlackRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*SlackRoute) HasText

func (o *SlackRoute) HasText() bool

HasText returns a boolean if a field has been set.

func (*SlackRoute) HasThrottleMs

func (o *SlackRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*SlackRoute) HasTimeout

func (o *SlackRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*SlackRoute) HasTransform

func (o *SlackRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*SlackRoute) HasWebhookUrl

func (o *SlackRoute) HasWebhookUrl() bool

HasWebhookUrl returns a boolean if a field has been set.

func (SlackRoute) MarshalJSON

func (o SlackRoute) MarshalJSON() ([]byte, error)

func (*SlackRoute) SetBearer

func (o *SlackRoute) SetBearer(v string)

SetBearer gets a reference to the given string and assigns it to the Bearer field.

func (*SlackRoute) SetBlocks

func (o *SlackRoute) SetBlocks(v string)

SetBlocks gets a reference to the given string and assigns it to the Blocks field.

func (*SlackRoute) SetChannel

func (o *SlackRoute) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*SlackRoute) SetFilter

func (o *SlackRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*SlackRoute) SetFleets

func (o *SlackRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*SlackRoute) SetText

func (o *SlackRoute) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*SlackRoute) SetThrottleMs

func (o *SlackRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*SlackRoute) SetTimeout

func (o *SlackRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*SlackRoute) SetTransform

func (o *SlackRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*SlackRoute) SetWebhookUrl

func (o *SlackRoute) SetWebhookUrl(v string)

SetWebhookUrl gets a reference to the given string and assigns it to the WebhookUrl field.

func (SlackRoute) ToMap

func (o SlackRoute) ToMap() (map[string]interface{}, error)

type SlackWebHookNotification

type SlackWebHookNotification struct {
	// text or blocks
	MessageType *string `json:"message_type,omitempty"`
	// The text of the message, or the blocks definition
	Text *string `json:"text,omitempty"`
	// The URL of the Slack webhook.
	Url *string `json:"url,omitempty"`
}

SlackWebHookNotification struct for SlackWebHookNotification

func NewSlackWebHookNotification

func NewSlackWebHookNotification() *SlackWebHookNotification

NewSlackWebHookNotification instantiates a new SlackWebHookNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSlackWebHookNotificationWithDefaults

func NewSlackWebHookNotificationWithDefaults() *SlackWebHookNotification

NewSlackWebHookNotificationWithDefaults instantiates a new SlackWebHookNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SlackWebHookNotification) GetMessageType

func (o *SlackWebHookNotification) GetMessageType() string

GetMessageType returns the MessageType field value if set, zero value otherwise.

func (*SlackWebHookNotification) GetMessageTypeOk

func (o *SlackWebHookNotification) GetMessageTypeOk() (*string, bool)

GetMessageTypeOk returns a tuple with the MessageType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackWebHookNotification) GetText

func (o *SlackWebHookNotification) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*SlackWebHookNotification) GetTextOk

func (o *SlackWebHookNotification) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackWebHookNotification) GetUrl

func (o *SlackWebHookNotification) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*SlackWebHookNotification) GetUrlOk

func (o *SlackWebHookNotification) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SlackWebHookNotification) HasMessageType

func (o *SlackWebHookNotification) HasMessageType() bool

HasMessageType returns a boolean if a field has been set.

func (*SlackWebHookNotification) HasText

func (o *SlackWebHookNotification) HasText() bool

HasText returns a boolean if a field has been set.

func (*SlackWebHookNotification) HasUrl

func (o *SlackWebHookNotification) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (SlackWebHookNotification) MarshalJSON

func (o SlackWebHookNotification) MarshalJSON() ([]byte, error)

func (*SlackWebHookNotification) SetMessageType

func (o *SlackWebHookNotification) SetMessageType(v string)

SetMessageType gets a reference to the given string and assigns it to the MessageType field.

func (*SlackWebHookNotification) SetText

func (o *SlackWebHookNotification) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*SlackWebHookNotification) SetUrl

func (o *SlackWebHookNotification) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (SlackWebHookNotification) ToMap

func (o SlackWebHookNotification) ToMap() (map[string]interface{}, error)

type SnowflakeRoute

type SnowflakeRoute struct {
	AccountName      *string                 `json:"account_name,omitempty"`
	Filter           *Filter                 `json:"filter,omitempty"`
	Fleets           []string                `json:"fleets,omitempty"`
	OrganizationName *string                 `json:"organization_name,omitempty"`
	Pem              *string                 `json:"pem,omitempty"`
	PrivateKeyName   *string                 `json:"private_key_name,omitempty"`
	Timeout          *int32                  `json:"timeout,omitempty"`
	Transform        *RouteTransformSettings `json:"transform,omitempty"`
	UserName         *string                 `json:"user_name,omitempty"`
}

SnowflakeRoute struct for SnowflakeRoute

func NewSnowflakeRoute

func NewSnowflakeRoute() *SnowflakeRoute

NewSnowflakeRoute instantiates a new SnowflakeRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSnowflakeRouteWithDefaults

func NewSnowflakeRouteWithDefaults() *SnowflakeRoute

NewSnowflakeRouteWithDefaults instantiates a new SnowflakeRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SnowflakeRoute) GetAccountName

func (o *SnowflakeRoute) GetAccountName() string

GetAccountName returns the AccountName field value if set, zero value otherwise.

func (*SnowflakeRoute) GetAccountNameOk

func (o *SnowflakeRoute) GetAccountNameOk() (*string, bool)

GetAccountNameOk returns a tuple with the AccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) GetFilter

func (o *SnowflakeRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*SnowflakeRoute) GetFilterOk

func (o *SnowflakeRoute) GetFilterOk() (*Filter, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) GetFleets

func (o *SnowflakeRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*SnowflakeRoute) GetFleetsOk

func (o *SnowflakeRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) GetOrganizationName

func (o *SnowflakeRoute) GetOrganizationName() string

GetOrganizationName returns the OrganizationName field value if set, zero value otherwise.

func (*SnowflakeRoute) GetOrganizationNameOk

func (o *SnowflakeRoute) GetOrganizationNameOk() (*string, bool)

GetOrganizationNameOk returns a tuple with the OrganizationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) GetPem

func (o *SnowflakeRoute) GetPem() string

GetPem returns the Pem field value if set, zero value otherwise.

func (*SnowflakeRoute) GetPemOk

func (o *SnowflakeRoute) GetPemOk() (*string, bool)

GetPemOk returns a tuple with the Pem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) GetPrivateKeyName

func (o *SnowflakeRoute) GetPrivateKeyName() string

GetPrivateKeyName returns the PrivateKeyName field value if set, zero value otherwise.

func (*SnowflakeRoute) GetPrivateKeyNameOk

func (o *SnowflakeRoute) GetPrivateKeyNameOk() (*string, bool)

GetPrivateKeyNameOk returns a tuple with the PrivateKeyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) GetTimeout

func (o *SnowflakeRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*SnowflakeRoute) GetTimeoutOk

func (o *SnowflakeRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) GetTransform

func (o *SnowflakeRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*SnowflakeRoute) GetTransformOk

func (o *SnowflakeRoute) GetTransformOk() (*RouteTransformSettings, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) GetUserName

func (o *SnowflakeRoute) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*SnowflakeRoute) GetUserNameOk

func (o *SnowflakeRoute) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeRoute) HasAccountName

func (o *SnowflakeRoute) HasAccountName() bool

HasAccountName returns a boolean if a field has been set.

func (*SnowflakeRoute) HasFilter

func (o *SnowflakeRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*SnowflakeRoute) HasFleets

func (o *SnowflakeRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*SnowflakeRoute) HasOrganizationName

func (o *SnowflakeRoute) HasOrganizationName() bool

HasOrganizationName returns a boolean if a field has been set.

func (*SnowflakeRoute) HasPem

func (o *SnowflakeRoute) HasPem() bool

HasPem returns a boolean if a field has been set.

func (*SnowflakeRoute) HasPrivateKeyName

func (o *SnowflakeRoute) HasPrivateKeyName() bool

HasPrivateKeyName returns a boolean if a field has been set.

func (*SnowflakeRoute) HasTimeout

func (o *SnowflakeRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*SnowflakeRoute) HasTransform

func (o *SnowflakeRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*SnowflakeRoute) HasUserName

func (o *SnowflakeRoute) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (SnowflakeRoute) MarshalJSON

func (o SnowflakeRoute) MarshalJSON() ([]byte, error)

func (*SnowflakeRoute) SetAccountName

func (o *SnowflakeRoute) SetAccountName(v string)

SetAccountName gets a reference to the given string and assigns it to the AccountName field.

func (*SnowflakeRoute) SetFilter

func (o *SnowflakeRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*SnowflakeRoute) SetFleets

func (o *SnowflakeRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*SnowflakeRoute) SetOrganizationName

func (o *SnowflakeRoute) SetOrganizationName(v string)

SetOrganizationName gets a reference to the given string and assigns it to the OrganizationName field.

func (*SnowflakeRoute) SetPem

func (o *SnowflakeRoute) SetPem(v string)

SetPem gets a reference to the given string and assigns it to the Pem field.

func (*SnowflakeRoute) SetPrivateKeyName

func (o *SnowflakeRoute) SetPrivateKeyName(v string)

SetPrivateKeyName gets a reference to the given string and assigns it to the PrivateKeyName field.

func (*SnowflakeRoute) SetTimeout

func (o *SnowflakeRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*SnowflakeRoute) SetTransform

func (o *SnowflakeRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*SnowflakeRoute) SetUserName

func (o *SnowflakeRoute) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (SnowflakeRoute) ToMap

func (o SnowflakeRoute) ToMap() (map[string]interface{}, error)

type SnowpipeStreamingRoute

type SnowpipeStreamingRoute struct {
	AccountName      *string                 `json:"account_name,omitempty"`
	DatabaseName     *string                 `json:"database_name,omitempty"`
	Filter           *Filter                 `json:"filter,omitempty"`
	Fleets           []string                `json:"fleets,omitempty"`
	OrganizationName *string                 `json:"organization_name,omitempty"`
	Pem              *string                 `json:"pem,omitempty"`
	PipeName         *string                 `json:"pipe_name,omitempty"`
	PrivateKeyName   *string                 `json:"private_key_name,omitempty"`
	SchemaName       *string                 `json:"schema_name,omitempty"`
	Timeout          *int32                  `json:"timeout,omitempty"`
	Transform        *RouteTransformSettings `json:"transform,omitempty"`
	UserName         *string                 `json:"user_name,omitempty"`
}

SnowpipeStreamingRoute struct for SnowpipeStreamingRoute

func NewSnowpipeStreamingRoute

func NewSnowpipeStreamingRoute() *SnowpipeStreamingRoute

NewSnowpipeStreamingRoute instantiates a new SnowpipeStreamingRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSnowpipeStreamingRouteWithDefaults

func NewSnowpipeStreamingRouteWithDefaults() *SnowpipeStreamingRoute

NewSnowpipeStreamingRouteWithDefaults instantiates a new SnowpipeStreamingRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SnowpipeStreamingRoute) GetAccountName

func (o *SnowpipeStreamingRoute) GetAccountName() string

GetAccountName returns the AccountName field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetAccountNameOk

func (o *SnowpipeStreamingRoute) GetAccountNameOk() (*string, bool)

GetAccountNameOk returns a tuple with the AccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetDatabaseName

func (o *SnowpipeStreamingRoute) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetDatabaseNameOk

func (o *SnowpipeStreamingRoute) GetDatabaseNameOk() (*string, bool)

GetDatabaseNameOk returns a tuple with the DatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetFilter

func (o *SnowpipeStreamingRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetFilterOk

func (o *SnowpipeStreamingRoute) GetFilterOk() (*Filter, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetFleets

func (o *SnowpipeStreamingRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetFleetsOk

func (o *SnowpipeStreamingRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetOrganizationName

func (o *SnowpipeStreamingRoute) GetOrganizationName() string

GetOrganizationName returns the OrganizationName field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetOrganizationNameOk

func (o *SnowpipeStreamingRoute) GetOrganizationNameOk() (*string, bool)

GetOrganizationNameOk returns a tuple with the OrganizationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetPem

func (o *SnowpipeStreamingRoute) GetPem() string

GetPem returns the Pem field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetPemOk

func (o *SnowpipeStreamingRoute) GetPemOk() (*string, bool)

GetPemOk returns a tuple with the Pem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetPipeName

func (o *SnowpipeStreamingRoute) GetPipeName() string

GetPipeName returns the PipeName field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetPipeNameOk

func (o *SnowpipeStreamingRoute) GetPipeNameOk() (*string, bool)

GetPipeNameOk returns a tuple with the PipeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetPrivateKeyName

func (o *SnowpipeStreamingRoute) GetPrivateKeyName() string

GetPrivateKeyName returns the PrivateKeyName field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetPrivateKeyNameOk

func (o *SnowpipeStreamingRoute) GetPrivateKeyNameOk() (*string, bool)

GetPrivateKeyNameOk returns a tuple with the PrivateKeyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetSchemaName

func (o *SnowpipeStreamingRoute) GetSchemaName() string

GetSchemaName returns the SchemaName field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetSchemaNameOk

func (o *SnowpipeStreamingRoute) GetSchemaNameOk() (*string, bool)

GetSchemaNameOk returns a tuple with the SchemaName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetTimeout

func (o *SnowpipeStreamingRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetTimeoutOk

func (o *SnowpipeStreamingRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetTransform

GetTransform returns the Transform field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetTransformOk

func (o *SnowpipeStreamingRoute) GetTransformOk() (*RouteTransformSettings, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) GetUserName

func (o *SnowpipeStreamingRoute) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*SnowpipeStreamingRoute) GetUserNameOk

func (o *SnowpipeStreamingRoute) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowpipeStreamingRoute) HasAccountName

func (o *SnowpipeStreamingRoute) HasAccountName() bool

HasAccountName returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasDatabaseName

func (o *SnowpipeStreamingRoute) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasFilter

func (o *SnowpipeStreamingRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasFleets

func (o *SnowpipeStreamingRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasOrganizationName

func (o *SnowpipeStreamingRoute) HasOrganizationName() bool

HasOrganizationName returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasPem

func (o *SnowpipeStreamingRoute) HasPem() bool

HasPem returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasPipeName

func (o *SnowpipeStreamingRoute) HasPipeName() bool

HasPipeName returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasPrivateKeyName

func (o *SnowpipeStreamingRoute) HasPrivateKeyName() bool

HasPrivateKeyName returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasSchemaName

func (o *SnowpipeStreamingRoute) HasSchemaName() bool

HasSchemaName returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasTimeout

func (o *SnowpipeStreamingRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasTransform

func (o *SnowpipeStreamingRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*SnowpipeStreamingRoute) HasUserName

func (o *SnowpipeStreamingRoute) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (SnowpipeStreamingRoute) MarshalJSON

func (o SnowpipeStreamingRoute) MarshalJSON() ([]byte, error)

func (*SnowpipeStreamingRoute) SetAccountName

func (o *SnowpipeStreamingRoute) SetAccountName(v string)

SetAccountName gets a reference to the given string and assigns it to the AccountName field.

func (*SnowpipeStreamingRoute) SetDatabaseName

func (o *SnowpipeStreamingRoute) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*SnowpipeStreamingRoute) SetFilter

func (o *SnowpipeStreamingRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*SnowpipeStreamingRoute) SetFleets

func (o *SnowpipeStreamingRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*SnowpipeStreamingRoute) SetOrganizationName

func (o *SnowpipeStreamingRoute) SetOrganizationName(v string)

SetOrganizationName gets a reference to the given string and assigns it to the OrganizationName field.

func (*SnowpipeStreamingRoute) SetPem

func (o *SnowpipeStreamingRoute) SetPem(v string)

SetPem gets a reference to the given string and assigns it to the Pem field.

func (*SnowpipeStreamingRoute) SetPipeName

func (o *SnowpipeStreamingRoute) SetPipeName(v string)

SetPipeName gets a reference to the given string and assigns it to the PipeName field.

func (*SnowpipeStreamingRoute) SetPrivateKeyName

func (o *SnowpipeStreamingRoute) SetPrivateKeyName(v string)

SetPrivateKeyName gets a reference to the given string and assigns it to the PrivateKeyName field.

func (*SnowpipeStreamingRoute) SetSchemaName

func (o *SnowpipeStreamingRoute) SetSchemaName(v string)

SetSchemaName gets a reference to the given string and assigns it to the SchemaName field.

func (*SnowpipeStreamingRoute) SetTimeout

func (o *SnowpipeStreamingRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*SnowpipeStreamingRoute) SetTransform

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*SnowpipeStreamingRoute) SetUserName

func (o *SnowpipeStreamingRoute) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (SnowpipeStreamingRoute) ToMap

func (o SnowpipeStreamingRoute) ToMap() (map[string]interface{}, error)

type ThingworxRoute

type ThingworxRoute struct {
	AppKey     *string                 `json:"app_key,omitempty"`
	Filter     *Filter                 `json:"filter,omitempty"`
	Fleets     []string                `json:"fleets,omitempty"`
	ThrottleMs *int32                  `json:"throttle_ms,omitempty"`
	Timeout    *int32                  `json:"timeout,omitempty"`
	Transform  *RouteTransformSettings `json:"transform,omitempty"`
	Url        *string                 `json:"url,omitempty"`
}

ThingworxRoute struct for ThingworxRoute

func NewThingworxRoute

func NewThingworxRoute() *ThingworxRoute

NewThingworxRoute instantiates a new ThingworxRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThingworxRouteWithDefaults

func NewThingworxRouteWithDefaults() *ThingworxRoute

NewThingworxRouteWithDefaults instantiates a new ThingworxRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThingworxRoute) GetAppKey

func (o *ThingworxRoute) GetAppKey() string

GetAppKey returns the AppKey field value if set, zero value otherwise.

func (*ThingworxRoute) GetAppKeyOk

func (o *ThingworxRoute) GetAppKeyOk() (*string, bool)

GetAppKeyOk returns a tuple with the AppKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThingworxRoute) GetFilter

func (o *ThingworxRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*ThingworxRoute) GetFilterOk

func (o *ThingworxRoute) GetFilterOk() (*Filter, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThingworxRoute) GetFleets

func (o *ThingworxRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*ThingworxRoute) GetFleetsOk

func (o *ThingworxRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThingworxRoute) GetThrottleMs

func (o *ThingworxRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*ThingworxRoute) GetThrottleMsOk

func (o *ThingworxRoute) GetThrottleMsOk() (*int32, bool)

GetThrottleMsOk returns a tuple with the ThrottleMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThingworxRoute) GetTimeout

func (o *ThingworxRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*ThingworxRoute) GetTimeoutOk

func (o *ThingworxRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThingworxRoute) GetTransform

func (o *ThingworxRoute) GetTransform() RouteTransformSettings

GetTransform returns the Transform field value if set, zero value otherwise.

func (*ThingworxRoute) GetTransformOk

func (o *ThingworxRoute) GetTransformOk() (*RouteTransformSettings, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThingworxRoute) GetUrl

func (o *ThingworxRoute) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ThingworxRoute) GetUrlOk

func (o *ThingworxRoute) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThingworxRoute) HasAppKey

func (o *ThingworxRoute) HasAppKey() bool

HasAppKey returns a boolean if a field has been set.

func (*ThingworxRoute) HasFilter

func (o *ThingworxRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*ThingworxRoute) HasFleets

func (o *ThingworxRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*ThingworxRoute) HasThrottleMs

func (o *ThingworxRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*ThingworxRoute) HasTimeout

func (o *ThingworxRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*ThingworxRoute) HasTransform

func (o *ThingworxRoute) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (*ThingworxRoute) HasUrl

func (o *ThingworxRoute) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ThingworxRoute) MarshalJSON

func (o ThingworxRoute) MarshalJSON() ([]byte, error)

func (*ThingworxRoute) SetAppKey

func (o *ThingworxRoute) SetAppKey(v string)

SetAppKey gets a reference to the given string and assigns it to the AppKey field.

func (*ThingworxRoute) SetFilter

func (o *ThingworxRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*ThingworxRoute) SetFleets

func (o *ThingworxRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*ThingworxRoute) SetThrottleMs

func (o *ThingworxRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*ThingworxRoute) SetTimeout

func (o *ThingworxRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*ThingworxRoute) SetTransform

func (o *ThingworxRoute) SetTransform(v RouteTransformSettings)

SetTransform gets a reference to the given RouteTransformSettings and assigns it to the Transform field.

func (*ThingworxRoute) SetUrl

func (o *ThingworxRoute) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (ThingworxRoute) ToMap

func (o ThingworxRoute) ToMap() (map[string]interface{}, error)

type TowerLocation

type TowerLocation struct {
	// Country code
	C *string `json:"c,omitempty"`
	// Cell ID
	Cid *int32 `json:"cid,omitempty"`
	// Open Location Code
	L *string `json:"l,omitempty"`
	// Location Area Code
	Lac *int32 `json:"lac,omitempty"`
	// Latitude
	Lat *float64 `json:"lat,omitempty"`
	// Longitude
	Lon *float64 `json:"lon,omitempty"`
	// Mobile Country Code
	Mcc *int32 `json:"mcc,omitempty"`
	// Mobile Network Code
	Mnc *int32 `json:"mnc,omitempty"`
	// Name of the location
	N *string `json:"n,omitempty"`
	// The source of this location
	Source *string `json:"source,omitempty"`
	// Unix timestamp when this location was ascertained
	Time *int64 `json:"time,omitempty"`
	// Number of triangulation points
	Towers *int32 `json:"towers,omitempty"`
	// Timezone ID
	Z *int32 `json:"z,omitempty"`
	// Timezone name
	Zone *string `json:"zone,omitempty"`
}

TowerLocation struct for TowerLocation

func NewTowerLocation

func NewTowerLocation() *TowerLocation

NewTowerLocation instantiates a new TowerLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTowerLocationWithDefaults

func NewTowerLocationWithDefaults() *TowerLocation

NewTowerLocationWithDefaults instantiates a new TowerLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TowerLocation) GetC

func (o *TowerLocation) GetC() string

GetC returns the C field value if set, zero value otherwise.

func (*TowerLocation) GetCOk

func (o *TowerLocation) GetCOk() (*string, bool)

GetCOk returns a tuple with the C field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetCid

func (o *TowerLocation) GetCid() int32

GetCid returns the Cid field value if set, zero value otherwise.

func (*TowerLocation) GetCidOk

func (o *TowerLocation) GetCidOk() (*int32, bool)

GetCidOk returns a tuple with the Cid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetL

func (o *TowerLocation) GetL() string

GetL returns the L field value if set, zero value otherwise.

func (*TowerLocation) GetLOk

func (o *TowerLocation) GetLOk() (*string, bool)

GetLOk returns a tuple with the L field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetLac

func (o *TowerLocation) GetLac() int32

GetLac returns the Lac field value if set, zero value otherwise.

func (*TowerLocation) GetLacOk

func (o *TowerLocation) GetLacOk() (*int32, bool)

GetLacOk returns a tuple with the Lac field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetLat

func (o *TowerLocation) GetLat() float64

GetLat returns the Lat field value if set, zero value otherwise.

func (*TowerLocation) GetLatOk

func (o *TowerLocation) GetLatOk() (*float64, bool)

GetLatOk returns a tuple with the Lat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetLon

func (o *TowerLocation) GetLon() float64

GetLon returns the Lon field value if set, zero value otherwise.

func (*TowerLocation) GetLonOk

func (o *TowerLocation) GetLonOk() (*float64, bool)

GetLonOk returns a tuple with the Lon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetMcc

func (o *TowerLocation) GetMcc() int32

GetMcc returns the Mcc field value if set, zero value otherwise.

func (*TowerLocation) GetMccOk

func (o *TowerLocation) GetMccOk() (*int32, bool)

GetMccOk returns a tuple with the Mcc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetMnc

func (o *TowerLocation) GetMnc() int32

GetMnc returns the Mnc field value if set, zero value otherwise.

func (*TowerLocation) GetMncOk

func (o *TowerLocation) GetMncOk() (*int32, bool)

GetMncOk returns a tuple with the Mnc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetN

func (o *TowerLocation) GetN() string

GetN returns the N field value if set, zero value otherwise.

func (*TowerLocation) GetNOk

func (o *TowerLocation) GetNOk() (*string, bool)

GetNOk returns a tuple with the N field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetSource

func (o *TowerLocation) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*TowerLocation) GetSourceOk

func (o *TowerLocation) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetTime

func (o *TowerLocation) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*TowerLocation) GetTimeOk

func (o *TowerLocation) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetTowers

func (o *TowerLocation) GetTowers() int32

GetTowers returns the Towers field value if set, zero value otherwise.

func (*TowerLocation) GetTowersOk

func (o *TowerLocation) GetTowersOk() (*int32, bool)

GetTowersOk returns a tuple with the Towers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetZ

func (o *TowerLocation) GetZ() int32

GetZ returns the Z field value if set, zero value otherwise.

func (*TowerLocation) GetZOk

func (o *TowerLocation) GetZOk() (*int32, bool)

GetZOk returns a tuple with the Z field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) GetZone

func (o *TowerLocation) GetZone() string

GetZone returns the Zone field value if set, zero value otherwise.

func (*TowerLocation) GetZoneOk

func (o *TowerLocation) GetZoneOk() (*string, bool)

GetZoneOk returns a tuple with the Zone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TowerLocation) HasC

func (o *TowerLocation) HasC() bool

HasC returns a boolean if a field has been set.

func (*TowerLocation) HasCid

func (o *TowerLocation) HasCid() bool

HasCid returns a boolean if a field has been set.

func (*TowerLocation) HasL

func (o *TowerLocation) HasL() bool

HasL returns a boolean if a field has been set.

func (*TowerLocation) HasLac

func (o *TowerLocation) HasLac() bool

HasLac returns a boolean if a field has been set.

func (*TowerLocation) HasLat

func (o *TowerLocation) HasLat() bool

HasLat returns a boolean if a field has been set.

func (*TowerLocation) HasLon

func (o *TowerLocation) HasLon() bool

HasLon returns a boolean if a field has been set.

func (*TowerLocation) HasMcc

func (o *TowerLocation) HasMcc() bool

HasMcc returns a boolean if a field has been set.

func (*TowerLocation) HasMnc

func (o *TowerLocation) HasMnc() bool

HasMnc returns a boolean if a field has been set.

func (*TowerLocation) HasN

func (o *TowerLocation) HasN() bool

HasN returns a boolean if a field has been set.

func (*TowerLocation) HasSource

func (o *TowerLocation) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*TowerLocation) HasTime

func (o *TowerLocation) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*TowerLocation) HasTowers

func (o *TowerLocation) HasTowers() bool

HasTowers returns a boolean if a field has been set.

func (*TowerLocation) HasZ

func (o *TowerLocation) HasZ() bool

HasZ returns a boolean if a field has been set.

func (*TowerLocation) HasZone

func (o *TowerLocation) HasZone() bool

HasZone returns a boolean if a field has been set.

func (TowerLocation) MarshalJSON

func (o TowerLocation) MarshalJSON() ([]byte, error)

func (*TowerLocation) SetC

func (o *TowerLocation) SetC(v string)

SetC gets a reference to the given string and assigns it to the C field.

func (*TowerLocation) SetCid

func (o *TowerLocation) SetCid(v int32)

SetCid gets a reference to the given int32 and assigns it to the Cid field.

func (*TowerLocation) SetL

func (o *TowerLocation) SetL(v string)

SetL gets a reference to the given string and assigns it to the L field.

func (*TowerLocation) SetLac

func (o *TowerLocation) SetLac(v int32)

SetLac gets a reference to the given int32 and assigns it to the Lac field.

func (*TowerLocation) SetLat

func (o *TowerLocation) SetLat(v float64)

SetLat gets a reference to the given float64 and assigns it to the Lat field.

func (*TowerLocation) SetLon

func (o *TowerLocation) SetLon(v float64)

SetLon gets a reference to the given float64 and assigns it to the Lon field.

func (*TowerLocation) SetMcc

func (o *TowerLocation) SetMcc(v int32)

SetMcc gets a reference to the given int32 and assigns it to the Mcc field.

func (*TowerLocation) SetMnc

func (o *TowerLocation) SetMnc(v int32)

SetMnc gets a reference to the given int32 and assigns it to the Mnc field.

func (*TowerLocation) SetN

func (o *TowerLocation) SetN(v string)

SetN gets a reference to the given string and assigns it to the N field.

func (*TowerLocation) SetSource

func (o *TowerLocation) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*TowerLocation) SetTime

func (o *TowerLocation) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*TowerLocation) SetTowers

func (o *TowerLocation) SetTowers(v int32)

SetTowers gets a reference to the given int32 and assigns it to the Towers field.

func (*TowerLocation) SetZ

func (o *TowerLocation) SetZ(v int32)

SetZ gets a reference to the given int32 and assigns it to the Z field.

func (*TowerLocation) SetZone

func (o *TowerLocation) SetZone(v string)

SetZone gets a reference to the given string and assigns it to the Zone field.

func (TowerLocation) ToMap

func (o TowerLocation) ToMap() (map[string]interface{}, error)

type TwilioRoute

type TwilioRoute struct {
	AccountSid *string  `json:"account_sid,omitempty"`
	AuthToken  *string  `json:"auth_token,omitempty"`
	Filter     *Filter  `json:"filter,omitempty"`
	Fleets     []string `json:"fleets,omitempty"`
	From       *string  `json:"from,omitempty"`
	Message    *string  `json:"message,omitempty"`
	ThrottleMs *int32   `json:"throttle_ms,omitempty"`
	Timeout    *int32   `json:"timeout,omitempty"`
	To         *string  `json:"to,omitempty"`
}

TwilioRoute struct for TwilioRoute

func NewTwilioRoute

func NewTwilioRoute() *TwilioRoute

NewTwilioRoute instantiates a new TwilioRoute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTwilioRouteWithDefaults

func NewTwilioRouteWithDefaults() *TwilioRoute

NewTwilioRouteWithDefaults instantiates a new TwilioRoute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TwilioRoute) GetAccountSid

func (o *TwilioRoute) GetAccountSid() string

GetAccountSid returns the AccountSid field value if set, zero value otherwise.

func (*TwilioRoute) GetAccountSidOk

func (o *TwilioRoute) GetAccountSidOk() (*string, bool)

GetAccountSidOk returns a tuple with the AccountSid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) GetAuthToken

func (o *TwilioRoute) GetAuthToken() string

GetAuthToken returns the AuthToken field value if set, zero value otherwise.

func (*TwilioRoute) GetAuthTokenOk

func (o *TwilioRoute) GetAuthTokenOk() (*string, bool)

GetAuthTokenOk returns a tuple with the AuthToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) GetFilter

func (o *TwilioRoute) GetFilter() Filter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*TwilioRoute) GetFilterOk

func (o *TwilioRoute) GetFilterOk() (*Filter, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) GetFleets

func (o *TwilioRoute) GetFleets() []string

GetFleets returns the Fleets field value if set, zero value otherwise.

func (*TwilioRoute) GetFleetsOk

func (o *TwilioRoute) GetFleetsOk() ([]string, bool)

GetFleetsOk returns a tuple with the Fleets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) GetFrom

func (o *TwilioRoute) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*TwilioRoute) GetFromOk

func (o *TwilioRoute) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) GetMessage

func (o *TwilioRoute) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*TwilioRoute) GetMessageOk

func (o *TwilioRoute) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) GetThrottleMs

func (o *TwilioRoute) GetThrottleMs() int32

GetThrottleMs returns the ThrottleMs field value if set, zero value otherwise.

func (*TwilioRoute) GetThrottleMsOk

func (o *TwilioRoute) GetThrottleMsOk() (*int32, bool)

GetThrottleMsOk returns a tuple with the ThrottleMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) GetTimeout

func (o *TwilioRoute) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*TwilioRoute) GetTimeoutOk

func (o *TwilioRoute) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) GetTo

func (o *TwilioRoute) GetTo() string

GetTo returns the To field value if set, zero value otherwise.

func (*TwilioRoute) GetToOk

func (o *TwilioRoute) GetToOk() (*string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwilioRoute) HasAccountSid

func (o *TwilioRoute) HasAccountSid() bool

HasAccountSid returns a boolean if a field has been set.

func (*TwilioRoute) HasAuthToken

func (o *TwilioRoute) HasAuthToken() bool

HasAuthToken returns a boolean if a field has been set.

func (*TwilioRoute) HasFilter

func (o *TwilioRoute) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*TwilioRoute) HasFleets

func (o *TwilioRoute) HasFleets() bool

HasFleets returns a boolean if a field has been set.

func (*TwilioRoute) HasFrom

func (o *TwilioRoute) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*TwilioRoute) HasMessage

func (o *TwilioRoute) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*TwilioRoute) HasThrottleMs

func (o *TwilioRoute) HasThrottleMs() bool

HasThrottleMs returns a boolean if a field has been set.

func (*TwilioRoute) HasTimeout

func (o *TwilioRoute) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*TwilioRoute) HasTo

func (o *TwilioRoute) HasTo() bool

HasTo returns a boolean if a field has been set.

func (TwilioRoute) MarshalJSON

func (o TwilioRoute) MarshalJSON() ([]byte, error)

func (*TwilioRoute) SetAccountSid

func (o *TwilioRoute) SetAccountSid(v string)

SetAccountSid gets a reference to the given string and assigns it to the AccountSid field.

func (*TwilioRoute) SetAuthToken

func (o *TwilioRoute) SetAuthToken(v string)

SetAuthToken gets a reference to the given string and assigns it to the AuthToken field.

func (*TwilioRoute) SetFilter

func (o *TwilioRoute) SetFilter(v Filter)

SetFilter gets a reference to the given Filter and assigns it to the Filter field.

func (*TwilioRoute) SetFleets

func (o *TwilioRoute) SetFleets(v []string)

SetFleets gets a reference to the given []string and assigns it to the Fleets field.

func (*TwilioRoute) SetFrom

func (o *TwilioRoute) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*TwilioRoute) SetMessage

func (o *TwilioRoute) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*TwilioRoute) SetThrottleMs

func (o *TwilioRoute) SetThrottleMs(v int32)

SetThrottleMs gets a reference to the given int32 and assigns it to the ThrottleMs field.

func (*TwilioRoute) SetTimeout

func (o *TwilioRoute) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*TwilioRoute) SetTo

func (o *TwilioRoute) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

func (TwilioRoute) ToMap

func (o TwilioRoute) ToMap() (map[string]interface{}, error)

type UpdateFleetRequest

type UpdateFleetRequest struct {
	// List of DeviceUIDs to add to fleet
	AddDevices            []string                           `json:"addDevices,omitempty"`
	ConnectivityAssurance NullableFleetConnectivityAssurance `json:"connectivity_assurance,omitempty"`
	// The label for the Fleet.
	Label *string `json:"label,omitempty"`
	// List of DeviceUIDs to remove from fleet
	RemoveDevices []string `json:"removeDevices,omitempty"`
	// JSONata expression that will be evaluated to determine device membership into this fleet, if the expression evaluates to a 1, the device will be included, if it evaluates to -1 it will be removed, and if it evaluates to 0 or errors it will be left unchanged.
	SmartRule        *string `json:"smart_rule,omitempty"`
	SmartRuleEnabled *bool   `json:"smart_rule_enabled,omitempty"`
	// A watchdog timer is used to generate an event every N minutes of inactivity. 0 means no watchdog
	WatchdogMins *int64 `json:"watchdog_mins,omitempty"`
}

UpdateFleetRequest struct for UpdateFleetRequest

func NewUpdateFleetRequest

func NewUpdateFleetRequest() *UpdateFleetRequest

NewUpdateFleetRequest instantiates a new UpdateFleetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateFleetRequestWithDefaults

func NewUpdateFleetRequestWithDefaults() *UpdateFleetRequest

NewUpdateFleetRequestWithDefaults instantiates a new UpdateFleetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateFleetRequest) GetAddDevices

func (o *UpdateFleetRequest) GetAddDevices() []string

GetAddDevices returns the AddDevices field value if set, zero value otherwise.

func (*UpdateFleetRequest) GetAddDevicesOk

func (o *UpdateFleetRequest) GetAddDevicesOk() ([]string, bool)

GetAddDevicesOk returns a tuple with the AddDevices field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateFleetRequest) GetConnectivityAssurance

func (o *UpdateFleetRequest) GetConnectivityAssurance() FleetConnectivityAssurance

GetConnectivityAssurance returns the ConnectivityAssurance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFleetRequest) GetConnectivityAssuranceOk

func (o *UpdateFleetRequest) GetConnectivityAssuranceOk() (*FleetConnectivityAssurance, bool)

GetConnectivityAssuranceOk returns a tuple with the ConnectivityAssurance field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFleetRequest) GetLabel

func (o *UpdateFleetRequest) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*UpdateFleetRequest) GetLabelOk

func (o *UpdateFleetRequest) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateFleetRequest) GetRemoveDevices

func (o *UpdateFleetRequest) GetRemoveDevices() []string

GetRemoveDevices returns the RemoveDevices field value if set, zero value otherwise.

func (*UpdateFleetRequest) GetRemoveDevicesOk

func (o *UpdateFleetRequest) GetRemoveDevicesOk() ([]string, bool)

GetRemoveDevicesOk returns a tuple with the RemoveDevices field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateFleetRequest) GetSmartRule

func (o *UpdateFleetRequest) GetSmartRule() string

GetSmartRule returns the SmartRule field value if set, zero value otherwise.

func (*UpdateFleetRequest) GetSmartRuleEnabled

func (o *UpdateFleetRequest) GetSmartRuleEnabled() bool

GetSmartRuleEnabled returns the SmartRuleEnabled field value if set, zero value otherwise.

func (*UpdateFleetRequest) GetSmartRuleEnabledOk

func (o *UpdateFleetRequest) GetSmartRuleEnabledOk() (*bool, bool)

GetSmartRuleEnabledOk returns a tuple with the SmartRuleEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateFleetRequest) GetSmartRuleOk

func (o *UpdateFleetRequest) GetSmartRuleOk() (*string, bool)

GetSmartRuleOk returns a tuple with the SmartRule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateFleetRequest) GetWatchdogMins

func (o *UpdateFleetRequest) GetWatchdogMins() int64

GetWatchdogMins returns the WatchdogMins field value if set, zero value otherwise.

func (*UpdateFleetRequest) GetWatchdogMinsOk

func (o *UpdateFleetRequest) GetWatchdogMinsOk() (*int64, bool)

GetWatchdogMinsOk returns a tuple with the WatchdogMins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateFleetRequest) HasAddDevices

func (o *UpdateFleetRequest) HasAddDevices() bool

HasAddDevices returns a boolean if a field has been set.

func (*UpdateFleetRequest) HasConnectivityAssurance

func (o *UpdateFleetRequest) HasConnectivityAssurance() bool

HasConnectivityAssurance returns a boolean if a field has been set.

func (*UpdateFleetRequest) HasLabel

func (o *UpdateFleetRequest) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*UpdateFleetRequest) HasRemoveDevices

func (o *UpdateFleetRequest) HasRemoveDevices() bool

HasRemoveDevices returns a boolean if a field has been set.

func (*UpdateFleetRequest) HasSmartRule

func (o *UpdateFleetRequest) HasSmartRule() bool

HasSmartRule returns a boolean if a field has been set.

func (*UpdateFleetRequest) HasSmartRuleEnabled

func (o *UpdateFleetRequest) HasSmartRuleEnabled() bool

HasSmartRuleEnabled returns a boolean if a field has been set.

func (*UpdateFleetRequest) HasWatchdogMins

func (o *UpdateFleetRequest) HasWatchdogMins() bool

HasWatchdogMins returns a boolean if a field has been set.

func (UpdateFleetRequest) MarshalJSON

func (o UpdateFleetRequest) MarshalJSON() ([]byte, error)

func (*UpdateFleetRequest) SetAddDevices

func (o *UpdateFleetRequest) SetAddDevices(v []string)

SetAddDevices gets a reference to the given []string and assigns it to the AddDevices field.

func (*UpdateFleetRequest) SetConnectivityAssurance

func (o *UpdateFleetRequest) SetConnectivityAssurance(v FleetConnectivityAssurance)

SetConnectivityAssurance gets a reference to the given NullableFleetConnectivityAssurance and assigns it to the ConnectivityAssurance field.

func (*UpdateFleetRequest) SetConnectivityAssuranceNil

func (o *UpdateFleetRequest) SetConnectivityAssuranceNil()

SetConnectivityAssuranceNil sets the value for ConnectivityAssurance to be an explicit nil

func (*UpdateFleetRequest) SetLabel

func (o *UpdateFleetRequest) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*UpdateFleetRequest) SetRemoveDevices

func (o *UpdateFleetRequest) SetRemoveDevices(v []string)

SetRemoveDevices gets a reference to the given []string and assigns it to the RemoveDevices field.

func (*UpdateFleetRequest) SetSmartRule

func (o *UpdateFleetRequest) SetSmartRule(v string)

SetSmartRule gets a reference to the given string and assigns it to the SmartRule field.

func (*UpdateFleetRequest) SetSmartRuleEnabled

func (o *UpdateFleetRequest) SetSmartRuleEnabled(v bool)

SetSmartRuleEnabled gets a reference to the given bool and assigns it to the SmartRuleEnabled field.

func (*UpdateFleetRequest) SetWatchdogMins

func (o *UpdateFleetRequest) SetWatchdogMins(v int64)

SetWatchdogMins gets a reference to the given int64 and assigns it to the WatchdogMins field.

func (UpdateFleetRequest) ToMap

func (o UpdateFleetRequest) ToMap() (map[string]interface{}, error)

func (*UpdateFleetRequest) UnsetConnectivityAssurance

func (o *UpdateFleetRequest) UnsetConnectivityAssurance()

UnsetConnectivityAssurance ensures that no value is present for ConnectivityAssurance, not even an explicit nil

type UploadMetadata

type UploadMetadata struct {
	Contains *string          `json:"contains,omitempty"`
	Crc32    *int32           `json:"crc32,omitempty"`
	Created  *int32           `json:"created,omitempty"`
	Firmware NullableFirmware `json:"firmware,omitempty"`
	Found    *string          `json:"found,omitempty"`
	Length   *int32           `json:"length,omitempty"`
	Md5      *string          `json:"md5,omitempty"`
	Modified *int32           `json:"modified,omitempty"`
	Name     *string          `json:"name,omitempty"`
	Notes    *string          `json:"notes,omitempty"`
	Source   *string          `json:"source,omitempty"`
	Tags     *string          `json:"tags,omitempty"`
	Type     *string          `json:"type,omitempty"`
	// User-specified version string provided at time of upload
	Version *string `json:"version,omitempty"`
}

UploadMetadata struct for UploadMetadata

func NewUploadMetadata

func NewUploadMetadata() *UploadMetadata

NewUploadMetadata instantiates a new UploadMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadMetadataWithDefaults

func NewUploadMetadataWithDefaults() *UploadMetadata

NewUploadMetadataWithDefaults instantiates a new UploadMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadMetadata) GetContains

func (o *UploadMetadata) GetContains() string

GetContains returns the Contains field value if set, zero value otherwise.

func (*UploadMetadata) GetContainsOk

func (o *UploadMetadata) GetContainsOk() (*string, bool)

GetContainsOk returns a tuple with the Contains field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetCrc32

func (o *UploadMetadata) GetCrc32() int32

GetCrc32 returns the Crc32 field value if set, zero value otherwise.

func (*UploadMetadata) GetCrc32Ok

func (o *UploadMetadata) GetCrc32Ok() (*int32, bool)

GetCrc32Ok returns a tuple with the Crc32 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetCreated

func (o *UploadMetadata) GetCreated() int32

GetCreated returns the Created field value if set, zero value otherwise.

func (*UploadMetadata) GetCreatedOk

func (o *UploadMetadata) GetCreatedOk() (*int32, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetFirmware

func (o *UploadMetadata) GetFirmware() Firmware

GetFirmware returns the Firmware field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UploadMetadata) GetFirmwareOk

func (o *UploadMetadata) GetFirmwareOk() (*Firmware, bool)

GetFirmwareOk returns a tuple with the Firmware field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UploadMetadata) GetFound

func (o *UploadMetadata) GetFound() string

GetFound returns the Found field value if set, zero value otherwise.

func (*UploadMetadata) GetFoundOk

func (o *UploadMetadata) GetFoundOk() (*string, bool)

GetFoundOk returns a tuple with the Found field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetLength

func (o *UploadMetadata) GetLength() int32

GetLength returns the Length field value if set, zero value otherwise.

func (*UploadMetadata) GetLengthOk

func (o *UploadMetadata) GetLengthOk() (*int32, bool)

GetLengthOk returns a tuple with the Length field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetMd5

func (o *UploadMetadata) GetMd5() string

GetMd5 returns the Md5 field value if set, zero value otherwise.

func (*UploadMetadata) GetMd5Ok

func (o *UploadMetadata) GetMd5Ok() (*string, bool)

GetMd5Ok returns a tuple with the Md5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetModified

func (o *UploadMetadata) GetModified() int32

GetModified returns the Modified field value if set, zero value otherwise.

func (*UploadMetadata) GetModifiedOk

func (o *UploadMetadata) GetModifiedOk() (*int32, bool)

GetModifiedOk returns a tuple with the Modified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetName

func (o *UploadMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UploadMetadata) GetNameOk

func (o *UploadMetadata) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetNotes

func (o *UploadMetadata) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*UploadMetadata) GetNotesOk

func (o *UploadMetadata) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetSource

func (o *UploadMetadata) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*UploadMetadata) GetSourceOk

func (o *UploadMetadata) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetTags

func (o *UploadMetadata) GetTags() string

GetTags returns the Tags field value if set, zero value otherwise.

func (*UploadMetadata) GetTagsOk

func (o *UploadMetadata) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetType

func (o *UploadMetadata) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*UploadMetadata) GetTypeOk

func (o *UploadMetadata) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) GetVersion

func (o *UploadMetadata) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*UploadMetadata) GetVersionOk

func (o *UploadMetadata) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadMetadata) HasContains

func (o *UploadMetadata) HasContains() bool

HasContains returns a boolean if a field has been set.

func (*UploadMetadata) HasCrc32

func (o *UploadMetadata) HasCrc32() bool

HasCrc32 returns a boolean if a field has been set.

func (*UploadMetadata) HasCreated

func (o *UploadMetadata) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*UploadMetadata) HasFirmware

func (o *UploadMetadata) HasFirmware() bool

HasFirmware returns a boolean if a field has been set.

func (*UploadMetadata) HasFound

func (o *UploadMetadata) HasFound() bool

HasFound returns a boolean if a field has been set.

func (*UploadMetadata) HasLength

func (o *UploadMetadata) HasLength() bool

HasLength returns a boolean if a field has been set.

func (*UploadMetadata) HasMd5

func (o *UploadMetadata) HasMd5() bool

HasMd5 returns a boolean if a field has been set.

func (*UploadMetadata) HasModified

func (o *UploadMetadata) HasModified() bool

HasModified returns a boolean if a field has been set.

func (*UploadMetadata) HasName

func (o *UploadMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*UploadMetadata) HasNotes

func (o *UploadMetadata) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*UploadMetadata) HasSource

func (o *UploadMetadata) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*UploadMetadata) HasTags

func (o *UploadMetadata) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*UploadMetadata) HasType

func (o *UploadMetadata) HasType() bool

HasType returns a boolean if a field has been set.

func (*UploadMetadata) HasVersion

func (o *UploadMetadata) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (UploadMetadata) MarshalJSON

func (o UploadMetadata) MarshalJSON() ([]byte, error)

func (*UploadMetadata) SetContains

func (o *UploadMetadata) SetContains(v string)

SetContains gets a reference to the given string and assigns it to the Contains field.

func (*UploadMetadata) SetCrc32

func (o *UploadMetadata) SetCrc32(v int32)

SetCrc32 gets a reference to the given int32 and assigns it to the Crc32 field.

func (*UploadMetadata) SetCreated

func (o *UploadMetadata) SetCreated(v int32)

SetCreated gets a reference to the given int32 and assigns it to the Created field.

func (*UploadMetadata) SetFirmware

func (o *UploadMetadata) SetFirmware(v Firmware)

SetFirmware gets a reference to the given NullableFirmware and assigns it to the Firmware field.

func (*UploadMetadata) SetFirmwareNil

func (o *UploadMetadata) SetFirmwareNil()

SetFirmwareNil sets the value for Firmware to be an explicit nil

func (*UploadMetadata) SetFound

func (o *UploadMetadata) SetFound(v string)

SetFound gets a reference to the given string and assigns it to the Found field.

func (*UploadMetadata) SetLength

func (o *UploadMetadata) SetLength(v int32)

SetLength gets a reference to the given int32 and assigns it to the Length field.

func (*UploadMetadata) SetMd5

func (o *UploadMetadata) SetMd5(v string)

SetMd5 gets a reference to the given string and assigns it to the Md5 field.

func (*UploadMetadata) SetModified

func (o *UploadMetadata) SetModified(v int32)

SetModified gets a reference to the given int32 and assigns it to the Modified field.

func (*UploadMetadata) SetName

func (o *UploadMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UploadMetadata) SetNotes

func (o *UploadMetadata) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*UploadMetadata) SetSource

func (o *UploadMetadata) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*UploadMetadata) SetTags

func (o *UploadMetadata) SetTags(v string)

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*UploadMetadata) SetType

func (o *UploadMetadata) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*UploadMetadata) SetVersion

func (o *UploadMetadata) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (UploadMetadata) ToMap

func (o UploadMetadata) ToMap() (map[string]interface{}, error)

func (*UploadMetadata) UnsetFirmware

func (o *UploadMetadata) UnsetFirmware()

UnsetFirmware ensures that no value is present for Firmware, not even an explicit nil

type UsageAPIService

type UsageAPIService service

UsageAPIService UsageAPI service

func (*UsageAPIService) GetDataUsage

func (a *UsageAPIService) GetDataUsage(ctx context.Context, projectOrProductUID string) ApiGetDataUsageRequest

GetDataUsage Method for GetDataUsage

Get data usage in bytes for a project with time range and period aggregation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetDataUsageRequest

func (*UsageAPIService) GetDataUsageExecute

Execute executes the request

@return GetDataUsage200Response

func (*UsageAPIService) GetEventsUsage

func (a *UsageAPIService) GetEventsUsage(ctx context.Context, projectOrProductUID string) ApiGetEventsUsageRequest

GetEventsUsage Method for GetEventsUsage

Get events usage for a project with time range and period aggregation, when endDate is 0 or unspecified the current time is implied

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetEventsUsageRequest

func (*UsageAPIService) GetEventsUsageExecute

Execute executes the request

@return UsageEventsResponse

func (*UsageAPIService) GetRouteLogsUsage

func (a *UsageAPIService) GetRouteLogsUsage(ctx context.Context, projectOrProductUID string) ApiGetRouteLogsUsageRequest

GetRouteLogsUsage Method for GetRouteLogsUsage

Get route logs usage for a project with time range and period aggregation, when endDate is 0 or unspecified the current time is implied

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetRouteLogsUsageRequest

func (*UsageAPIService) GetRouteLogsUsageExecute

Execute executes the request

@return GetRouteLogsUsage200Response

func (*UsageAPIService) GetSessionsUsage

func (a *UsageAPIService) GetSessionsUsage(ctx context.Context, projectOrProductUID string) ApiGetSessionsUsageRequest

GetSessionsUsage Method for GetSessionsUsage

Get sessions usage for a project with time range and period aggregation, when endDate is 0 or unspecified the current time is implied

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetSessionsUsageRequest

func (*UsageAPIService) GetSessionsUsageExecute

Execute executes the request

@return GetSessionsUsage200Response

type UsageData

type UsageData struct {
	BytesReceived *int64    `json:"bytes_received,omitempty"`
	BytesSent     *int64    `json:"bytes_sent,omitempty"`
	Period        time.Time `json:"period"`
	TotalBytes    int64     `json:"total_bytes"`
}

UsageData struct for UsageData

func NewUsageData

func NewUsageData(period time.Time, totalBytes int64) *UsageData

NewUsageData instantiates a new UsageData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsageDataWithDefaults

func NewUsageDataWithDefaults() *UsageData

NewUsageDataWithDefaults instantiates a new UsageData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsageData) GetBytesReceived

func (o *UsageData) GetBytesReceived() int64

GetBytesReceived returns the BytesReceived field value if set, zero value otherwise.

func (*UsageData) GetBytesReceivedOk

func (o *UsageData) GetBytesReceivedOk() (*int64, bool)

GetBytesReceivedOk returns a tuple with the BytesReceived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageData) GetBytesSent

func (o *UsageData) GetBytesSent() int64

GetBytesSent returns the BytesSent field value if set, zero value otherwise.

func (*UsageData) GetBytesSentOk

func (o *UsageData) GetBytesSentOk() (*int64, bool)

GetBytesSentOk returns a tuple with the BytesSent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageData) GetPeriod

func (o *UsageData) GetPeriod() time.Time

GetPeriod returns the Period field value

func (*UsageData) GetPeriodOk

func (o *UsageData) GetPeriodOk() (*time.Time, bool)

GetPeriodOk returns a tuple with the Period field value and a boolean to check if the value has been set.

func (*UsageData) GetTotalBytes

func (o *UsageData) GetTotalBytes() int64

GetTotalBytes returns the TotalBytes field value

func (*UsageData) GetTotalBytesOk

func (o *UsageData) GetTotalBytesOk() (*int64, bool)

GetTotalBytesOk returns a tuple with the TotalBytes field value and a boolean to check if the value has been set.

func (*UsageData) HasBytesReceived

func (o *UsageData) HasBytesReceived() bool

HasBytesReceived returns a boolean if a field has been set.

func (*UsageData) HasBytesSent

func (o *UsageData) HasBytesSent() bool

HasBytesSent returns a boolean if a field has been set.

func (UsageData) MarshalJSON

func (o UsageData) MarshalJSON() ([]byte, error)

func (*UsageData) SetBytesReceived

func (o *UsageData) SetBytesReceived(v int64)

SetBytesReceived gets a reference to the given int64 and assigns it to the BytesReceived field.

func (*UsageData) SetBytesSent

func (o *UsageData) SetBytesSent(v int64)

SetBytesSent gets a reference to the given int64 and assigns it to the BytesSent field.

func (*UsageData) SetPeriod

func (o *UsageData) SetPeriod(v time.Time)

SetPeriod sets field value

func (*UsageData) SetTotalBytes

func (o *UsageData) SetTotalBytes(v int64)

SetTotalBytes sets field value

func (UsageData) ToMap

func (o UsageData) ToMap() (map[string]interface{}, error)

func (*UsageData) UnmarshalJSON

func (o *UsageData) UnmarshalJSON(data []byte) (err error)

type UsageEventsData

type UsageEventsData struct {
	Device *string `json:"device,omitempty"`
	Fleet  *string `json:"fleet,omitempty"`
	// Count of events per notefile. Only present when includeNotefiles=true is specified.
	Notefiles *map[string]int64 `json:"notefiles,omitempty"`
	Period    time.Time         `json:"period"`
	// Total platform events. Platform events are _log, _session, _health, and _geolocate events some of which are send from the device, some generated by notehub. These events are not billed.
	PlatformEvents int64 `json:"platform_events"`
	// Total devices represented in this count
	TotalDevices int64 `json:"total_devices"`
	// Total events the device sent to notehub, including associated notehub generated events
	TotalEvents int64 `json:"total_events"`
	// Watchdog events are events generated by notehub when a watchdog timer is configured for a device to indicate is has not been online for a period of time. These events are billed but should not be used to indicate a device is active, or connected, at this time.
	WatchdogEvents int64 `json:"watchdog_events"`
}

UsageEventsData struct for UsageEventsData

func NewUsageEventsData

func NewUsageEventsData(period time.Time, platformEvents int64, totalDevices int64, totalEvents int64, watchdogEvents int64) *UsageEventsData

NewUsageEventsData instantiates a new UsageEventsData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsageEventsDataWithDefaults

func NewUsageEventsDataWithDefaults() *UsageEventsData

NewUsageEventsDataWithDefaults instantiates a new UsageEventsData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsageEventsData) GetDevice

func (o *UsageEventsData) GetDevice() string

GetDevice returns the Device field value if set, zero value otherwise.

func (*UsageEventsData) GetDeviceOk

func (o *UsageEventsData) GetDeviceOk() (*string, bool)

GetDeviceOk returns a tuple with the Device field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageEventsData) GetFleet

func (o *UsageEventsData) GetFleet() string

GetFleet returns the Fleet field value if set, zero value otherwise.

func (*UsageEventsData) GetFleetOk

func (o *UsageEventsData) GetFleetOk() (*string, bool)

GetFleetOk returns a tuple with the Fleet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageEventsData) GetNotefiles

func (o *UsageEventsData) GetNotefiles() map[string]int64

GetNotefiles returns the Notefiles field value if set, zero value otherwise.

func (*UsageEventsData) GetNotefilesOk

func (o *UsageEventsData) GetNotefilesOk() (*map[string]int64, bool)

GetNotefilesOk returns a tuple with the Notefiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageEventsData) GetPeriod

func (o *UsageEventsData) GetPeriod() time.Time

GetPeriod returns the Period field value

func (*UsageEventsData) GetPeriodOk

func (o *UsageEventsData) GetPeriodOk() (*time.Time, bool)

GetPeriodOk returns a tuple with the Period field value and a boolean to check if the value has been set.

func (*UsageEventsData) GetPlatformEvents

func (o *UsageEventsData) GetPlatformEvents() int64

GetPlatformEvents returns the PlatformEvents field value

func (*UsageEventsData) GetPlatformEventsOk

func (o *UsageEventsData) GetPlatformEventsOk() (*int64, bool)

GetPlatformEventsOk returns a tuple with the PlatformEvents field value and a boolean to check if the value has been set.

func (*UsageEventsData) GetTotalDevices

func (o *UsageEventsData) GetTotalDevices() int64

GetTotalDevices returns the TotalDevices field value

func (*UsageEventsData) GetTotalDevicesOk

func (o *UsageEventsData) GetTotalDevicesOk() (*int64, bool)

GetTotalDevicesOk returns a tuple with the TotalDevices field value and a boolean to check if the value has been set.

func (*UsageEventsData) GetTotalEvents

func (o *UsageEventsData) GetTotalEvents() int64

GetTotalEvents returns the TotalEvents field value

func (*UsageEventsData) GetTotalEventsOk

func (o *UsageEventsData) GetTotalEventsOk() (*int64, bool)

GetTotalEventsOk returns a tuple with the TotalEvents field value and a boolean to check if the value has been set.

func (*UsageEventsData) GetWatchdogEvents

func (o *UsageEventsData) GetWatchdogEvents() int64

GetWatchdogEvents returns the WatchdogEvents field value

func (*UsageEventsData) GetWatchdogEventsOk

func (o *UsageEventsData) GetWatchdogEventsOk() (*int64, bool)

GetWatchdogEventsOk returns a tuple with the WatchdogEvents field value and a boolean to check if the value has been set.

func (*UsageEventsData) HasDevice

func (o *UsageEventsData) HasDevice() bool

HasDevice returns a boolean if a field has been set.

func (*UsageEventsData) HasFleet

func (o *UsageEventsData) HasFleet() bool

HasFleet returns a boolean if a field has been set.

func (*UsageEventsData) HasNotefiles

func (o *UsageEventsData) HasNotefiles() bool

HasNotefiles returns a boolean if a field has been set.

func (UsageEventsData) MarshalJSON

func (o UsageEventsData) MarshalJSON() ([]byte, error)

func (*UsageEventsData) SetDevice

func (o *UsageEventsData) SetDevice(v string)

SetDevice gets a reference to the given string and assigns it to the Device field.

func (*UsageEventsData) SetFleet

func (o *UsageEventsData) SetFleet(v string)

SetFleet gets a reference to the given string and assigns it to the Fleet field.

func (*UsageEventsData) SetNotefiles

func (o *UsageEventsData) SetNotefiles(v map[string]int64)

SetNotefiles gets a reference to the given map[string]int64 and assigns it to the Notefiles field.

func (*UsageEventsData) SetPeriod

func (o *UsageEventsData) SetPeriod(v time.Time)

SetPeriod sets field value

func (*UsageEventsData) SetPlatformEvents

func (o *UsageEventsData) SetPlatformEvents(v int64)

SetPlatformEvents sets field value

func (*UsageEventsData) SetTotalDevices

func (o *UsageEventsData) SetTotalDevices(v int64)

SetTotalDevices sets field value

func (*UsageEventsData) SetTotalEvents

func (o *UsageEventsData) SetTotalEvents(v int64)

SetTotalEvents sets field value

func (*UsageEventsData) SetWatchdogEvents

func (o *UsageEventsData) SetWatchdogEvents(v int64)

SetWatchdogEvents sets field value

func (UsageEventsData) ToMap

func (o UsageEventsData) ToMap() (map[string]interface{}, error)

func (*UsageEventsData) UnmarshalJSON

func (o *UsageEventsData) UnmarshalJSON(data []byte) (err error)

type UsageEventsResponse

type UsageEventsResponse struct {
	Data []UsageEventsData `json:"data"`
}

UsageEventsResponse struct for UsageEventsResponse

func NewUsageEventsResponse

func NewUsageEventsResponse(data []UsageEventsData) *UsageEventsResponse

NewUsageEventsResponse instantiates a new UsageEventsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsageEventsResponseWithDefaults

func NewUsageEventsResponseWithDefaults() *UsageEventsResponse

NewUsageEventsResponseWithDefaults instantiates a new UsageEventsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsageEventsResponse) GetData

func (o *UsageEventsResponse) GetData() []UsageEventsData

GetData returns the Data field value

func (*UsageEventsResponse) GetDataOk

func (o *UsageEventsResponse) GetDataOk() ([]UsageEventsData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (UsageEventsResponse) MarshalJSON

func (o UsageEventsResponse) MarshalJSON() ([]byte, error)

func (*UsageEventsResponse) SetData

func (o *UsageEventsResponse) SetData(v []UsageEventsData)

SetData sets field value

func (UsageEventsResponse) ToMap

func (o UsageEventsResponse) ToMap() (map[string]interface{}, error)

func (*UsageEventsResponse) UnmarshalJSON

func (o *UsageEventsResponse) UnmarshalJSON(data []byte) (err error)

type UsageRouteLogsData

type UsageRouteLogsData struct {
	FailedRoutes int64     `json:"failed_routes"`
	Period       time.Time `json:"period"`
	// The route UID (only present when aggregate is 'route')
	Route            *string `json:"route,omitempty"`
	SuccessfulRoutes int64   `json:"successful_routes"`
	TotalRoutes      int64   `json:"total_routes"`
}

UsageRouteLogsData struct for UsageRouteLogsData

func NewUsageRouteLogsData

func NewUsageRouteLogsData(failedRoutes int64, period time.Time, successfulRoutes int64, totalRoutes int64) *UsageRouteLogsData

NewUsageRouteLogsData instantiates a new UsageRouteLogsData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsageRouteLogsDataWithDefaults

func NewUsageRouteLogsDataWithDefaults() *UsageRouteLogsData

NewUsageRouteLogsDataWithDefaults instantiates a new UsageRouteLogsData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsageRouteLogsData) GetFailedRoutes

func (o *UsageRouteLogsData) GetFailedRoutes() int64

GetFailedRoutes returns the FailedRoutes field value

func (*UsageRouteLogsData) GetFailedRoutesOk

func (o *UsageRouteLogsData) GetFailedRoutesOk() (*int64, bool)

GetFailedRoutesOk returns a tuple with the FailedRoutes field value and a boolean to check if the value has been set.

func (*UsageRouteLogsData) GetPeriod

func (o *UsageRouteLogsData) GetPeriod() time.Time

GetPeriod returns the Period field value

func (*UsageRouteLogsData) GetPeriodOk

func (o *UsageRouteLogsData) GetPeriodOk() (*time.Time, bool)

GetPeriodOk returns a tuple with the Period field value and a boolean to check if the value has been set.

func (*UsageRouteLogsData) GetRoute

func (o *UsageRouteLogsData) GetRoute() string

GetRoute returns the Route field value if set, zero value otherwise.

func (*UsageRouteLogsData) GetRouteOk

func (o *UsageRouteLogsData) GetRouteOk() (*string, bool)

GetRouteOk returns a tuple with the Route field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageRouteLogsData) GetSuccessfulRoutes

func (o *UsageRouteLogsData) GetSuccessfulRoutes() int64

GetSuccessfulRoutes returns the SuccessfulRoutes field value

func (*UsageRouteLogsData) GetSuccessfulRoutesOk

func (o *UsageRouteLogsData) GetSuccessfulRoutesOk() (*int64, bool)

GetSuccessfulRoutesOk returns a tuple with the SuccessfulRoutes field value and a boolean to check if the value has been set.

func (*UsageRouteLogsData) GetTotalRoutes

func (o *UsageRouteLogsData) GetTotalRoutes() int64

GetTotalRoutes returns the TotalRoutes field value

func (*UsageRouteLogsData) GetTotalRoutesOk

func (o *UsageRouteLogsData) GetTotalRoutesOk() (*int64, bool)

GetTotalRoutesOk returns a tuple with the TotalRoutes field value and a boolean to check if the value has been set.

func (*UsageRouteLogsData) HasRoute

func (o *UsageRouteLogsData) HasRoute() bool

HasRoute returns a boolean if a field has been set.

func (UsageRouteLogsData) MarshalJSON

func (o UsageRouteLogsData) MarshalJSON() ([]byte, error)

func (*UsageRouteLogsData) SetFailedRoutes

func (o *UsageRouteLogsData) SetFailedRoutes(v int64)

SetFailedRoutes sets field value

func (*UsageRouteLogsData) SetPeriod

func (o *UsageRouteLogsData) SetPeriod(v time.Time)

SetPeriod sets field value

func (*UsageRouteLogsData) SetRoute

func (o *UsageRouteLogsData) SetRoute(v string)

SetRoute gets a reference to the given string and assigns it to the Route field.

func (*UsageRouteLogsData) SetSuccessfulRoutes

func (o *UsageRouteLogsData) SetSuccessfulRoutes(v int64)

SetSuccessfulRoutes sets field value

func (*UsageRouteLogsData) SetTotalRoutes

func (o *UsageRouteLogsData) SetTotalRoutes(v int64)

SetTotalRoutes sets field value

func (UsageRouteLogsData) ToMap

func (o UsageRouteLogsData) ToMap() (map[string]interface{}, error)

func (*UsageRouteLogsData) UnmarshalJSON

func (o *UsageRouteLogsData) UnmarshalJSON(data []byte) (err error)

type UsageSessionsData

type UsageSessionsData struct {
	Device       *string   `json:"device,omitempty"`
	Fleet        *string   `json:"fleet,omitempty"`
	Period       time.Time `json:"period"`
	Sessions     int64     `json:"sessions"`
	TotalBytes   int64     `json:"total_bytes"`
	TotalDevices int64     `json:"total_devices"`
}

UsageSessionsData struct for UsageSessionsData

func NewUsageSessionsData

func NewUsageSessionsData(period time.Time, sessions int64, totalBytes int64, totalDevices int64) *UsageSessionsData

NewUsageSessionsData instantiates a new UsageSessionsData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsageSessionsDataWithDefaults

func NewUsageSessionsDataWithDefaults() *UsageSessionsData

NewUsageSessionsDataWithDefaults instantiates a new UsageSessionsData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsageSessionsData) GetDevice

func (o *UsageSessionsData) GetDevice() string

GetDevice returns the Device field value if set, zero value otherwise.

func (*UsageSessionsData) GetDeviceOk

func (o *UsageSessionsData) GetDeviceOk() (*string, bool)

GetDeviceOk returns a tuple with the Device field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageSessionsData) GetFleet

func (o *UsageSessionsData) GetFleet() string

GetFleet returns the Fleet field value if set, zero value otherwise.

func (*UsageSessionsData) GetFleetOk

func (o *UsageSessionsData) GetFleetOk() (*string, bool)

GetFleetOk returns a tuple with the Fleet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageSessionsData) GetPeriod

func (o *UsageSessionsData) GetPeriod() time.Time

GetPeriod returns the Period field value

func (*UsageSessionsData) GetPeriodOk

func (o *UsageSessionsData) GetPeriodOk() (*time.Time, bool)

GetPeriodOk returns a tuple with the Period field value and a boolean to check if the value has been set.

func (*UsageSessionsData) GetSessions

func (o *UsageSessionsData) GetSessions() int64

GetSessions returns the Sessions field value

func (*UsageSessionsData) GetSessionsOk

func (o *UsageSessionsData) GetSessionsOk() (*int64, bool)

GetSessionsOk returns a tuple with the Sessions field value and a boolean to check if the value has been set.

func (*UsageSessionsData) GetTotalBytes

func (o *UsageSessionsData) GetTotalBytes() int64

GetTotalBytes returns the TotalBytes field value

func (*UsageSessionsData) GetTotalBytesOk

func (o *UsageSessionsData) GetTotalBytesOk() (*int64, bool)

GetTotalBytesOk returns a tuple with the TotalBytes field value and a boolean to check if the value has been set.

func (*UsageSessionsData) GetTotalDevices

func (o *UsageSessionsData) GetTotalDevices() int64

GetTotalDevices returns the TotalDevices field value

func (*UsageSessionsData) GetTotalDevicesOk

func (o *UsageSessionsData) GetTotalDevicesOk() (*int64, bool)

GetTotalDevicesOk returns a tuple with the TotalDevices field value and a boolean to check if the value has been set.

func (*UsageSessionsData) HasDevice

func (o *UsageSessionsData) HasDevice() bool

HasDevice returns a boolean if a field has been set.

func (*UsageSessionsData) HasFleet

func (o *UsageSessionsData) HasFleet() bool

HasFleet returns a boolean if a field has been set.

func (UsageSessionsData) MarshalJSON

func (o UsageSessionsData) MarshalJSON() ([]byte, error)

func (*UsageSessionsData) SetDevice

func (o *UsageSessionsData) SetDevice(v string)

SetDevice gets a reference to the given string and assigns it to the Device field.

func (*UsageSessionsData) SetFleet

func (o *UsageSessionsData) SetFleet(v string)

SetFleet gets a reference to the given string and assigns it to the Fleet field.

func (*UsageSessionsData) SetPeriod

func (o *UsageSessionsData) SetPeriod(v time.Time)

SetPeriod sets field value

func (*UsageSessionsData) SetSessions

func (o *UsageSessionsData) SetSessions(v int64)

SetSessions sets field value

func (*UsageSessionsData) SetTotalBytes

func (o *UsageSessionsData) SetTotalBytes(v int64)

SetTotalBytes sets field value

func (*UsageSessionsData) SetTotalDevices

func (o *UsageSessionsData) SetTotalDevices(v int64)

SetTotalDevices sets field value

func (UsageSessionsData) ToMap

func (o UsageSessionsData) ToMap() (map[string]interface{}, error)

func (*UsageSessionsData) UnmarshalJSON

func (o *UsageSessionsData) UnmarshalJSON(data []byte) (err error)

type UserDfuStateMachine

type UserDfuStateMachine struct {
	Created     NullableTime               `json:"created,omitempty"`
	FromVersion *string                    `json:"from_version,omitempty"`
	Metadata    *UploadMetadata            `json:"metadata,omitempty"`
	Status      *UserDfuStateMachineStatus `json:"status,omitempty"`
}

UserDfuStateMachine struct for UserDfuStateMachine

func NewUserDfuStateMachine

func NewUserDfuStateMachine() *UserDfuStateMachine

NewUserDfuStateMachine instantiates a new UserDfuStateMachine object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserDfuStateMachineWithDefaults

func NewUserDfuStateMachineWithDefaults() *UserDfuStateMachine

NewUserDfuStateMachineWithDefaults instantiates a new UserDfuStateMachine object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserDfuStateMachine) GetCreated

func (o *UserDfuStateMachine) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserDfuStateMachine) GetCreatedOk

func (o *UserDfuStateMachine) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserDfuStateMachine) GetFromVersion

func (o *UserDfuStateMachine) GetFromVersion() string

GetFromVersion returns the FromVersion field value if set, zero value otherwise.

func (*UserDfuStateMachine) GetFromVersionOk

func (o *UserDfuStateMachine) GetFromVersionOk() (*string, bool)

GetFromVersionOk returns a tuple with the FromVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserDfuStateMachine) GetMetadata

func (o *UserDfuStateMachine) GetMetadata() UploadMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*UserDfuStateMachine) GetMetadataOk

func (o *UserDfuStateMachine) GetMetadataOk() (*UploadMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserDfuStateMachine) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*UserDfuStateMachine) GetStatusOk

func (o *UserDfuStateMachine) GetStatusOk() (*UserDfuStateMachineStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserDfuStateMachine) HasCreated

func (o *UserDfuStateMachine) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*UserDfuStateMachine) HasFromVersion

func (o *UserDfuStateMachine) HasFromVersion() bool

HasFromVersion returns a boolean if a field has been set.

func (*UserDfuStateMachine) HasMetadata

func (o *UserDfuStateMachine) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*UserDfuStateMachine) HasStatus

func (o *UserDfuStateMachine) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (UserDfuStateMachine) MarshalJSON

func (o UserDfuStateMachine) MarshalJSON() ([]byte, error)

func (*UserDfuStateMachine) SetCreated

func (o *UserDfuStateMachine) SetCreated(v time.Time)

SetCreated gets a reference to the given NullableTime and assigns it to the Created field.

func (*UserDfuStateMachine) SetCreatedNil

func (o *UserDfuStateMachine) SetCreatedNil()

SetCreatedNil sets the value for Created to be an explicit nil

func (*UserDfuStateMachine) SetFromVersion

func (o *UserDfuStateMachine) SetFromVersion(v string)

SetFromVersion gets a reference to the given string and assigns it to the FromVersion field.

func (*UserDfuStateMachine) SetMetadata

func (o *UserDfuStateMachine) SetMetadata(v UploadMetadata)

SetMetadata gets a reference to the given UploadMetadata and assigns it to the Metadata field.

func (*UserDfuStateMachine) SetStatus

SetStatus gets a reference to the given UserDfuStateMachineStatus and assigns it to the Status field.

func (UserDfuStateMachine) ToMap

func (o UserDfuStateMachine) ToMap() (map[string]interface{}, error)

func (*UserDfuStateMachine) UnsetCreated

func (o *UserDfuStateMachine) UnsetCreated()

UnsetCreated ensures that no value is present for Created, not even an explicit nil

type UserDfuStateMachineStatus

type UserDfuStateMachineStatus struct {
	Date             NullableTime `json:"date,omitempty"`
	Phase            *string      `json:"phase,omitempty"`
	PhaseDescription *string      `json:"phase_description,omitempty"`
	Status           *string      `json:"status,omitempty"`
}

UserDfuStateMachineStatus struct for UserDfuStateMachineStatus

func NewUserDfuStateMachineStatus

func NewUserDfuStateMachineStatus() *UserDfuStateMachineStatus

NewUserDfuStateMachineStatus instantiates a new UserDfuStateMachineStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserDfuStateMachineStatusWithDefaults

func NewUserDfuStateMachineStatusWithDefaults() *UserDfuStateMachineStatus

NewUserDfuStateMachineStatusWithDefaults instantiates a new UserDfuStateMachineStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserDfuStateMachineStatus) GetDate

func (o *UserDfuStateMachineStatus) GetDate() time.Time

GetDate returns the Date field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserDfuStateMachineStatus) GetDateOk

func (o *UserDfuStateMachineStatus) GetDateOk() (*time.Time, bool)

GetDateOk returns a tuple with the Date field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserDfuStateMachineStatus) GetPhase

func (o *UserDfuStateMachineStatus) GetPhase() string

GetPhase returns the Phase field value if set, zero value otherwise.

func (*UserDfuStateMachineStatus) GetPhaseDescription

func (o *UserDfuStateMachineStatus) GetPhaseDescription() string

GetPhaseDescription returns the PhaseDescription field value if set, zero value otherwise.

func (*UserDfuStateMachineStatus) GetPhaseDescriptionOk

func (o *UserDfuStateMachineStatus) GetPhaseDescriptionOk() (*string, bool)

GetPhaseDescriptionOk returns a tuple with the PhaseDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserDfuStateMachineStatus) GetPhaseOk

func (o *UserDfuStateMachineStatus) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserDfuStateMachineStatus) GetStatus

func (o *UserDfuStateMachineStatus) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*UserDfuStateMachineStatus) GetStatusOk

func (o *UserDfuStateMachineStatus) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserDfuStateMachineStatus) HasDate

func (o *UserDfuStateMachineStatus) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*UserDfuStateMachineStatus) HasPhase

func (o *UserDfuStateMachineStatus) HasPhase() bool

HasPhase returns a boolean if a field has been set.

func (*UserDfuStateMachineStatus) HasPhaseDescription

func (o *UserDfuStateMachineStatus) HasPhaseDescription() bool

HasPhaseDescription returns a boolean if a field has been set.

func (*UserDfuStateMachineStatus) HasStatus

func (o *UserDfuStateMachineStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (UserDfuStateMachineStatus) MarshalJSON

func (o UserDfuStateMachineStatus) MarshalJSON() ([]byte, error)

func (*UserDfuStateMachineStatus) SetDate

func (o *UserDfuStateMachineStatus) SetDate(v time.Time)

SetDate gets a reference to the given NullableTime and assigns it to the Date field.

func (*UserDfuStateMachineStatus) SetDateNil

func (o *UserDfuStateMachineStatus) SetDateNil()

SetDateNil sets the value for Date to be an explicit nil

func (*UserDfuStateMachineStatus) SetPhase

func (o *UserDfuStateMachineStatus) SetPhase(v string)

SetPhase gets a reference to the given string and assigns it to the Phase field.

func (*UserDfuStateMachineStatus) SetPhaseDescription

func (o *UserDfuStateMachineStatus) SetPhaseDescription(v string)

SetPhaseDescription gets a reference to the given string and assigns it to the PhaseDescription field.

func (*UserDfuStateMachineStatus) SetStatus

func (o *UserDfuStateMachineStatus) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (UserDfuStateMachineStatus) ToMap

func (o UserDfuStateMachineStatus) ToMap() (map[string]interface{}, error)

func (*UserDfuStateMachineStatus) UnsetDate

func (o *UserDfuStateMachineStatus) UnsetDate()

UnsetDate ensures that no value is present for Date, not even an explicit nil

type UserFirmwareInfo

type UserFirmwareInfo struct {
	CurrentFirmware *CurrentFirmware     `json:"current_firmware,omitempty"`
	FirmwareUpdate  *UserDfuStateMachine `json:"firmware_update,omitempty"`
}

UserFirmwareInfo struct for UserFirmwareInfo

func NewUserFirmwareInfo

func NewUserFirmwareInfo() *UserFirmwareInfo

NewUserFirmwareInfo instantiates a new UserFirmwareInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserFirmwareInfoWithDefaults

func NewUserFirmwareInfoWithDefaults() *UserFirmwareInfo

NewUserFirmwareInfoWithDefaults instantiates a new UserFirmwareInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserFirmwareInfo) GetCurrentFirmware

func (o *UserFirmwareInfo) GetCurrentFirmware() CurrentFirmware

GetCurrentFirmware returns the CurrentFirmware field value if set, zero value otherwise.

func (*UserFirmwareInfo) GetCurrentFirmwareOk

func (o *UserFirmwareInfo) GetCurrentFirmwareOk() (*CurrentFirmware, bool)

GetCurrentFirmwareOk returns a tuple with the CurrentFirmware field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserFirmwareInfo) GetFirmwareUpdate

func (o *UserFirmwareInfo) GetFirmwareUpdate() UserDfuStateMachine

GetFirmwareUpdate returns the FirmwareUpdate field value if set, zero value otherwise.

func (*UserFirmwareInfo) GetFirmwareUpdateOk

func (o *UserFirmwareInfo) GetFirmwareUpdateOk() (*UserDfuStateMachine, bool)

GetFirmwareUpdateOk returns a tuple with the FirmwareUpdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserFirmwareInfo) HasCurrentFirmware

func (o *UserFirmwareInfo) HasCurrentFirmware() bool

HasCurrentFirmware returns a boolean if a field has been set.

func (*UserFirmwareInfo) HasFirmwareUpdate

func (o *UserFirmwareInfo) HasFirmwareUpdate() bool

HasFirmwareUpdate returns a boolean if a field has been set.

func (UserFirmwareInfo) MarshalJSON

func (o UserFirmwareInfo) MarshalJSON() ([]byte, error)

func (*UserFirmwareInfo) SetCurrentFirmware

func (o *UserFirmwareInfo) SetCurrentFirmware(v CurrentFirmware)

SetCurrentFirmware gets a reference to the given CurrentFirmware and assigns it to the CurrentFirmware field.

func (*UserFirmwareInfo) SetFirmwareUpdate

func (o *UserFirmwareInfo) SetFirmwareUpdate(v UserDfuStateMachine)

SetFirmwareUpdate gets a reference to the given UserDfuStateMachine and assigns it to the FirmwareUpdate field.

func (UserFirmwareInfo) ToMap

func (o UserFirmwareInfo) ToMap() (map[string]interface{}, error)

type WebhookAPIService

type WebhookAPIService service

WebhookAPIService WebhookAPI service

func (*WebhookAPIService) CreateWebhook

func (a *WebhookAPIService) CreateWebhook(ctx context.Context, projectOrProductUID string, webhookUID string) ApiCreateWebhookRequest

CreateWebhook Method for CreateWebhook

Creates a webhook for the specified product with the given name. The name | must be unique within the project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param webhookUID Webhook UID
@return ApiCreateWebhookRequest

func (*WebhookAPIService) CreateWebhookExecute

func (a *WebhookAPIService) CreateWebhookExecute(r ApiCreateWebhookRequest) (*http.Response, error)

Execute executes the request

func (*WebhookAPIService) DeleteWebhook

func (a *WebhookAPIService) DeleteWebhook(ctx context.Context, projectOrProductUID string, webhookUID string) ApiDeleteWebhookRequest

DeleteWebhook Method for DeleteWebhook

Deletes the specified webhook

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param webhookUID Webhook UID
@return ApiDeleteWebhookRequest

func (*WebhookAPIService) DeleteWebhookExecute

func (a *WebhookAPIService) DeleteWebhookExecute(r ApiDeleteWebhookRequest) (*http.Response, error)

Execute executes the request

func (*WebhookAPIService) GetWebhook

func (a *WebhookAPIService) GetWebhook(ctx context.Context, projectOrProductUID string, webhookUID string) ApiGetWebhookRequest

GetWebhook Method for GetWebhook

Retrieves the configuration settings for the specified webhook

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param webhookUID Webhook UID
@return ApiGetWebhookRequest

func (*WebhookAPIService) GetWebhookExecute

Execute executes the request

@return WebhookSettings

func (*WebhookAPIService) GetWebhooks

func (a *WebhookAPIService) GetWebhooks(ctx context.Context, projectOrProductUID string) ApiGetWebhooksRequest

GetWebhooks Method for GetWebhooks

Retrieves all webhooks for the specified project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@return ApiGetWebhooksRequest

func (*WebhookAPIService) GetWebhooksExecute

Execute executes the request

@return GetWebhooks200Response

func (*WebhookAPIService) UpdateWebhook

func (a *WebhookAPIService) UpdateWebhook(ctx context.Context, projectOrProductUID string, webhookUID string) ApiUpdateWebhookRequest

UpdateWebhook Method for UpdateWebhook

Updates the configuration settings for the specified webhook. | Webhook will be created if it does not exist. Update body will completely replace the existing settings.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectOrProductUID
@param webhookUID Webhook UID
@return ApiUpdateWebhookRequest

func (*WebhookAPIService) UpdateWebhookExecute

func (a *WebhookAPIService) UpdateWebhookExecute(r ApiUpdateWebhookRequest) (*http.Response, error)

Execute executes the request

type WebhookSettings

type WebhookSettings struct {
	// Flag indicating if the webhook is disabled
	Disabled *bool `json:"disabled,omitempty"`
	// Webhook ID
	Id *string `json:"id,omitempty"`
	// Transformation to be applied to the event
	Transform *string `json:"transform,omitempty"`
}

WebhookSettings struct for WebhookSettings

func NewWebhookSettings

func NewWebhookSettings() *WebhookSettings

NewWebhookSettings instantiates a new WebhookSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebhookSettingsWithDefaults

func NewWebhookSettingsWithDefaults() *WebhookSettings

NewWebhookSettingsWithDefaults instantiates a new WebhookSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebhookSettings) GetDisabled

func (o *WebhookSettings) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*WebhookSettings) GetDisabledOk

func (o *WebhookSettings) GetDisabledOk() (*bool, bool)

GetDisabledOk returns a tuple with the Disabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookSettings) GetId

func (o *WebhookSettings) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WebhookSettings) GetIdOk

func (o *WebhookSettings) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookSettings) GetTransform

func (o *WebhookSettings) GetTransform() string

GetTransform returns the Transform field value if set, zero value otherwise.

func (*WebhookSettings) GetTransformOk

func (o *WebhookSettings) GetTransformOk() (*string, bool)

GetTransformOk returns a tuple with the Transform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookSettings) HasDisabled

func (o *WebhookSettings) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*WebhookSettings) HasId

func (o *WebhookSettings) HasId() bool

HasId returns a boolean if a field has been set.

func (*WebhookSettings) HasTransform

func (o *WebhookSettings) HasTransform() bool

HasTransform returns a boolean if a field has been set.

func (WebhookSettings) MarshalJSON

func (o WebhookSettings) MarshalJSON() ([]byte, error)

func (*WebhookSettings) SetDisabled

func (o *WebhookSettings) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*WebhookSettings) SetId

func (o *WebhookSettings) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WebhookSettings) SetTransform

func (o *WebhookSettings) SetTransform(v string)

SetTransform gets a reference to the given string and assigns it to the Transform field.

func (WebhookSettings) ToMap

func (o WebhookSettings) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL