config_api_client

package
v0.1.0-alpha.1 Latest Latest
Warning

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

Go to latest
Published: Dec 13, 2024 License: MIT Imports: 20 Imported by: 0

README

Go API client for config_api_client

This document outlines the API contracts for HPE Aruba Networking UXI.

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: 5.21.0
  • Package version: 1.0.0
  • Generator version: 7.9.0-SNAPSHOT
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://help.capenetworks.com/en/

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 config_api_client "github.com/aruba-uxi/terraform-provider-hpeuxi/pkg/config-api-client"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

ctx := context.WithValue(context.Background(), config_api_client.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 config_api_client.ContextOperationServerIndices and config_api_client.ContextOperationServerVariables context maps.

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

Documentation for API Endpoints

All URIs are relative to https://api.capenetworks.com

Class Method HTTP request Description
ConfigurationAPI AgentDelete Delete /networking-uxi/v1alpha1/agents/{agent_uid} Agent Delete
ConfigurationAPI AgentGroupAssignmentDelete Delete /networking-uxi/v1alpha1/agent-group-assignments/{uid} Agent Group Assignment Delete
ConfigurationAPI AgentGroupAssignmentPost Post /networking-uxi/v1alpha1/agent-group-assignments Agent Group Assignment Post
ConfigurationAPI AgentGroupAssignmentsGet Get /networking-uxi/v1alpha1/agent-group-assignments Agent Group Assignments Get
ConfigurationAPI AgentPatch Patch /networking-uxi/v1alpha1/agents/{agent_uid} Agent Patch
ConfigurationAPI AgentsGet Get /networking-uxi/v1alpha1/agents Agents Get
ConfigurationAPI GroupDelete Delete /networking-uxi/v1alpha1/groups/{group_uid} Group Delete
ConfigurationAPI GroupPatch Patch /networking-uxi/v1alpha1/groups/{group_uid} Group Patch
ConfigurationAPI GroupPost Post /networking-uxi/v1alpha1/groups Group Post
ConfigurationAPI GroupsGet Get /networking-uxi/v1alpha1/groups Groups Get
ConfigurationAPI NetworkGroupAssignmentDelete Delete /networking-uxi/v1alpha1/network-group-assignments/{id} Network Group Assignment Delete
ConfigurationAPI NetworkGroupAssignmentPost Post /networking-uxi/v1alpha1/network-group-assignments Network Group Assignment Post
ConfigurationAPI NetworkGroupAssignmentsGet Get /networking-uxi/v1alpha1/network-group-assignments Network Group Assignments Get
ConfigurationAPI SensorGroupAssignmentDelete Delete /networking-uxi/v1alpha1/sensor-group-assignments/{id} Sensor Group Assignment Delete
ConfigurationAPI SensorGroupAssignmentPost Post /networking-uxi/v1alpha1/sensor-group-assignments Sensor Group Assignment Post
ConfigurationAPI SensorGroupAssignmentsGet Get /networking-uxi/v1alpha1/sensor-group-assignments Sensor Group Assignments Get
ConfigurationAPI SensorPatch Patch /networking-uxi/v1alpha1/sensors/{sensor_uid} Sensor Patch
ConfigurationAPI SensorsGet Get /networking-uxi/v1alpha1/sensors Sensors Get
ConfigurationAPI ServiceTestGroupAssignmentDelete Delete /networking-uxi/v1alpha1/service-test-group-assignments/{id} Service Test Group Assignment Delete
ConfigurationAPI ServiceTestGroupAssignmentPost Post /networking-uxi/v1alpha1/service-test-group-assignments Service Test Group Assignment Post
ConfigurationAPI ServiceTestGroupAssignmentsGet Get /networking-uxi/v1alpha1/service-test-group-assignments Service Test Group Assignments Get
ConfigurationAPI ServiceTestsGet Get /networking-uxi/v1alpha1/service-tests Service Tests Get
ConfigurationAPI WiredNetworksGet Get /networking-uxi/v1alpha1/wired-networks Wired Networks Get
ConfigurationAPI WirelessNetworksGet Get /networking-uxi/v1alpha1/wireless-networks Wireless Networks Get

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

HTTPBearer
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), config_api_client.ContextAccessToken, "BEARER_TOKEN_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

support@capenetworks.com

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")

	// 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 AllowedAgentPcapModeEnumValues = []AgentPcapMode{
	"light",
	"full",
	"off",
}

All allowed values of AgentPcapMode enum

View Source
var AllowedIpVersionEnumValues = []IpVersion{
	"ipv4",
	"ipv6",
}

All allowed values of IpVersion enum

View Source
var AllowedIssueSubjectEnumValues = []IssueSubject{
	"field",
	"header",
	"query.parameter",
}

All allowed values of IssueSubject enum

View Source
var AllowedSensorPcapModeEnumValues = []SensorPcapMode{
	"light",
	"full",
	"off",
}

All allowed values of SensorPcapMode 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 {
	ConfigurationAPI *ConfigurationAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the HPE Aruba Networking UXI Configuration API v5.21.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 AgentGroupAssignmentPostAgent

type AgentGroupAssignmentPostAgent struct {
	Id string `json:"id"`
}

AgentGroupAssignmentPostAgent struct for AgentGroupAssignmentPostAgent

func NewAgentGroupAssignmentPostAgent

func NewAgentGroupAssignmentPostAgent(id string) *AgentGroupAssignmentPostAgent

NewAgentGroupAssignmentPostAgent instantiates a new AgentGroupAssignmentPostAgent object This constructor will assign default values to properties that have it defined, 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 NewAgentGroupAssignmentPostAgentWithDefaults

func NewAgentGroupAssignmentPostAgentWithDefaults() *AgentGroupAssignmentPostAgent

NewAgentGroupAssignmentPostAgentWithDefaults instantiates a new AgentGroupAssignmentPostAgent object This 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 (*AgentGroupAssignmentPostAgent) GetId

GetId returns the Id field value

func (*AgentGroupAssignmentPostAgent) GetIdOk

func (o *AgentGroupAssignmentPostAgent) GetIdOk() (*string, bool)

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

func (AgentGroupAssignmentPostAgent) MarshalJSON

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

func (*AgentGroupAssignmentPostAgent) SetId

SetId sets field value

func (AgentGroupAssignmentPostAgent) ToMap

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

func (*AgentGroupAssignmentPostAgent) UnmarshalJSON

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

type AgentGroupAssignmentPostGroup

type AgentGroupAssignmentPostGroup struct {
	Id string `json:"id"`
}

AgentGroupAssignmentPostGroup struct for AgentGroupAssignmentPostGroup

func NewAgentGroupAssignmentPostGroup

func NewAgentGroupAssignmentPostGroup(id string) *AgentGroupAssignmentPostGroup

NewAgentGroupAssignmentPostGroup instantiates a new AgentGroupAssignmentPostGroup object This constructor will assign default values to properties that have it defined, 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 NewAgentGroupAssignmentPostGroupWithDefaults

func NewAgentGroupAssignmentPostGroupWithDefaults() *AgentGroupAssignmentPostGroup

NewAgentGroupAssignmentPostGroupWithDefaults instantiates a new AgentGroupAssignmentPostGroup object This 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 (*AgentGroupAssignmentPostGroup) GetId

GetId returns the Id field value

func (*AgentGroupAssignmentPostGroup) GetIdOk

func (o *AgentGroupAssignmentPostGroup) GetIdOk() (*string, bool)

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

func (AgentGroupAssignmentPostGroup) MarshalJSON

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

func (*AgentGroupAssignmentPostGroup) SetId

SetId sets field value

func (AgentGroupAssignmentPostGroup) ToMap

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

func (*AgentGroupAssignmentPostGroup) UnmarshalJSON

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

type AgentGroupAssignmentPostRequest

type AgentGroupAssignmentPostRequest struct {
	GroupId string `json:"groupId"`
	AgentId string `json:"agentId"`
}

AgentGroupAssignmentPostRequest struct for AgentGroupAssignmentPostRequest

func NewAgentGroupAssignmentPostRequest

func NewAgentGroupAssignmentPostRequest(
	groupId string,
	agentId string,
) *AgentGroupAssignmentPostRequest

NewAgentGroupAssignmentPostRequest instantiates a new AgentGroupAssignmentPostRequest object This constructor will assign default values to properties that have it defined, 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 NewAgentGroupAssignmentPostRequestWithDefaults

func NewAgentGroupAssignmentPostRequestWithDefaults() *AgentGroupAssignmentPostRequest

NewAgentGroupAssignmentPostRequestWithDefaults instantiates a new AgentGroupAssignmentPostRequest object This 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 (*AgentGroupAssignmentPostRequest) GetAgentId

func (o *AgentGroupAssignmentPostRequest) GetAgentId() string

GetAgentId returns the AgentId field value

func (*AgentGroupAssignmentPostRequest) GetAgentIdOk

func (o *AgentGroupAssignmentPostRequest) GetAgentIdOk() (*string, bool)

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

func (*AgentGroupAssignmentPostRequest) GetGroupId

func (o *AgentGroupAssignmentPostRequest) GetGroupId() string

GetGroupId returns the GroupId field value

func (*AgentGroupAssignmentPostRequest) GetGroupIdOk

func (o *AgentGroupAssignmentPostRequest) GetGroupIdOk() (*string, bool)

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

func (AgentGroupAssignmentPostRequest) MarshalJSON

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

func (*AgentGroupAssignmentPostRequest) SetAgentId

func (o *AgentGroupAssignmentPostRequest) SetAgentId(v string)

SetAgentId sets field value

func (*AgentGroupAssignmentPostRequest) SetGroupId

func (o *AgentGroupAssignmentPostRequest) SetGroupId(v string)

SetGroupId sets field value

func (AgentGroupAssignmentPostRequest) ToMap

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

func (*AgentGroupAssignmentPostRequest) UnmarshalJSON

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

type AgentGroupAssignmentPostResponse

type AgentGroupAssignmentPostResponse struct {
	Id    string                        `json:"id"`
	Group AgentGroupAssignmentPostGroup `json:"group"`
	Agent AgentGroupAssignmentPostAgent `json:"agent"`
	Type  string                        `json:"type"`
}

AgentGroupAssignmentPostResponse struct for AgentGroupAssignmentPostResponse

func NewAgentGroupAssignmentPostResponse

func NewAgentGroupAssignmentPostResponse(
	id string,
	group AgentGroupAssignmentPostGroup,
	agent AgentGroupAssignmentPostAgent,
	type_ string,
) *AgentGroupAssignmentPostResponse

NewAgentGroupAssignmentPostResponse instantiates a new AgentGroupAssignmentPostResponse object This constructor will assign default values to properties that have it defined, 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 NewAgentGroupAssignmentPostResponseWithDefaults

func NewAgentGroupAssignmentPostResponseWithDefaults() *AgentGroupAssignmentPostResponse

NewAgentGroupAssignmentPostResponseWithDefaults instantiates a new AgentGroupAssignmentPostResponse object This 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 (*AgentGroupAssignmentPostResponse) GetAgent

GetAgent returns the Agent field value

func (*AgentGroupAssignmentPostResponse) GetAgentOk

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

func (*AgentGroupAssignmentPostResponse) GetGroup

GetGroup returns the Group field value

func (*AgentGroupAssignmentPostResponse) GetGroupOk

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

func (*AgentGroupAssignmentPostResponse) GetId

GetId returns the Id field value

func (*AgentGroupAssignmentPostResponse) GetIdOk

func (o *AgentGroupAssignmentPostResponse) GetIdOk() (*string, bool)

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

func (*AgentGroupAssignmentPostResponse) GetType

GetType returns the Type field value

func (*AgentGroupAssignmentPostResponse) GetTypeOk

func (o *AgentGroupAssignmentPostResponse) GetTypeOk() (*string, bool)

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

func (AgentGroupAssignmentPostResponse) MarshalJSON

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

func (*AgentGroupAssignmentPostResponse) SetAgent

SetAgent sets field value

func (*AgentGroupAssignmentPostResponse) SetGroup

SetGroup sets field value

func (*AgentGroupAssignmentPostResponse) SetId

SetId sets field value

func (*AgentGroupAssignmentPostResponse) SetType

SetType sets field value

func (AgentGroupAssignmentPostResponse) ToMap

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

func (*AgentGroupAssignmentPostResponse) UnmarshalJSON

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

type AgentGroupAssignmentsGetAgent

type AgentGroupAssignmentsGetAgent struct {
	Id string `json:"id"`
}

AgentGroupAssignmentsGetAgent struct for AgentGroupAssignmentsGetAgent

func NewAgentGroupAssignmentsGetAgent

func NewAgentGroupAssignmentsGetAgent(id string) *AgentGroupAssignmentsGetAgent

NewAgentGroupAssignmentsGetAgent instantiates a new AgentGroupAssignmentsGetAgent object This constructor will assign default values to properties that have it defined, 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 NewAgentGroupAssignmentsGetAgentWithDefaults

func NewAgentGroupAssignmentsGetAgentWithDefaults() *AgentGroupAssignmentsGetAgent

NewAgentGroupAssignmentsGetAgentWithDefaults instantiates a new AgentGroupAssignmentsGetAgent object This 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 (*AgentGroupAssignmentsGetAgent) GetId

GetId returns the Id field value

func (*AgentGroupAssignmentsGetAgent) GetIdOk

func (o *AgentGroupAssignmentsGetAgent) GetIdOk() (*string, bool)

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

func (AgentGroupAssignmentsGetAgent) MarshalJSON

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

func (*AgentGroupAssignmentsGetAgent) SetId

SetId sets field value

func (AgentGroupAssignmentsGetAgent) ToMap

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

func (*AgentGroupAssignmentsGetAgent) UnmarshalJSON

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

type AgentGroupAssignmentsGetGroup

type AgentGroupAssignmentsGetGroup struct {
	Id string `json:"id"`
}

AgentGroupAssignmentsGetGroup struct for AgentGroupAssignmentsGetGroup

func NewAgentGroupAssignmentsGetGroup

func NewAgentGroupAssignmentsGetGroup(id string) *AgentGroupAssignmentsGetGroup

NewAgentGroupAssignmentsGetGroup instantiates a new AgentGroupAssignmentsGetGroup object This constructor will assign default values to properties that have it defined, 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 NewAgentGroupAssignmentsGetGroupWithDefaults

func NewAgentGroupAssignmentsGetGroupWithDefaults() *AgentGroupAssignmentsGetGroup

NewAgentGroupAssignmentsGetGroupWithDefaults instantiates a new AgentGroupAssignmentsGetGroup object This 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 (*AgentGroupAssignmentsGetGroup) GetId

GetId returns the Id field value

func (*AgentGroupAssignmentsGetGroup) GetIdOk

func (o *AgentGroupAssignmentsGetGroup) GetIdOk() (*string, bool)

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

func (AgentGroupAssignmentsGetGroup) MarshalJSON

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

func (*AgentGroupAssignmentsGetGroup) SetId

SetId sets field value

func (AgentGroupAssignmentsGetGroup) ToMap

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

func (*AgentGroupAssignmentsGetGroup) UnmarshalJSON

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

type AgentGroupAssignmentsGetItem

type AgentGroupAssignmentsGetItem struct {
	Id    string                        `json:"id"`
	Group AgentGroupAssignmentsGetGroup `json:"group"`
	Agent AgentGroupAssignmentsGetAgent `json:"agent"`
	Type  string                        `json:"type"`
}

AgentGroupAssignmentsGetItem struct for AgentGroupAssignmentsGetItem

func NewAgentGroupAssignmentsGetItem

func NewAgentGroupAssignmentsGetItem(
	id string,
	group AgentGroupAssignmentsGetGroup,
	agent AgentGroupAssignmentsGetAgent,
	type_ string,
) *AgentGroupAssignmentsGetItem

NewAgentGroupAssignmentsGetItem instantiates a new AgentGroupAssignmentsGetItem object This constructor will assign default values to properties that have it defined, 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 NewAgentGroupAssignmentsGetItemWithDefaults

func NewAgentGroupAssignmentsGetItemWithDefaults() *AgentGroupAssignmentsGetItem

NewAgentGroupAssignmentsGetItemWithDefaults instantiates a new AgentGroupAssignmentsGetItem object This 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 (*AgentGroupAssignmentsGetItem) GetAgent

GetAgent returns the Agent field value

func (*AgentGroupAssignmentsGetItem) GetAgentOk

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

func (*AgentGroupAssignmentsGetItem) GetGroup

GetGroup returns the Group field value

func (*AgentGroupAssignmentsGetItem) GetGroupOk

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

func (*AgentGroupAssignmentsGetItem) GetId

GetId returns the Id field value

func (*AgentGroupAssignmentsGetItem) GetIdOk

func (o *AgentGroupAssignmentsGetItem) GetIdOk() (*string, bool)

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

func (*AgentGroupAssignmentsGetItem) GetType

func (o *AgentGroupAssignmentsGetItem) GetType() string

GetType returns the Type field value

func (*AgentGroupAssignmentsGetItem) GetTypeOk

func (o *AgentGroupAssignmentsGetItem) GetTypeOk() (*string, bool)

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

func (AgentGroupAssignmentsGetItem) MarshalJSON

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

func (*AgentGroupAssignmentsGetItem) SetAgent

SetAgent sets field value

func (*AgentGroupAssignmentsGetItem) SetGroup

SetGroup sets field value

func (*AgentGroupAssignmentsGetItem) SetId

SetId sets field value

func (*AgentGroupAssignmentsGetItem) SetType

func (o *AgentGroupAssignmentsGetItem) SetType(v string)

SetType sets field value

func (AgentGroupAssignmentsGetItem) ToMap

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

func (*AgentGroupAssignmentsGetItem) UnmarshalJSON

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

type AgentGroupAssignmentsGetResponse

type AgentGroupAssignmentsGetResponse struct {
	Items []AgentGroupAssignmentsGetItem `json:"items"`
	Count int32                          `json:"count"`
	Next  NullableString                 `json:"next"`
}

AgentGroupAssignmentsGetResponse struct for AgentGroupAssignmentsGetResponse

func NewAgentGroupAssignmentsGetResponse

func NewAgentGroupAssignmentsGetResponse(
	items []AgentGroupAssignmentsGetItem,
	count int32,
	next NullableString,
) *AgentGroupAssignmentsGetResponse

NewAgentGroupAssignmentsGetResponse instantiates a new AgentGroupAssignmentsGetResponse object This constructor will assign default values to properties that have it defined, 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 NewAgentGroupAssignmentsGetResponseWithDefaults

func NewAgentGroupAssignmentsGetResponseWithDefaults() *AgentGroupAssignmentsGetResponse

NewAgentGroupAssignmentsGetResponseWithDefaults instantiates a new AgentGroupAssignmentsGetResponse object This 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 (*AgentGroupAssignmentsGetResponse) GetCount

GetCount returns the Count field value

func (*AgentGroupAssignmentsGetResponse) GetCountOk

func (o *AgentGroupAssignmentsGetResponse) GetCountOk() (*int32, bool)

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

func (*AgentGroupAssignmentsGetResponse) GetItems

GetItems returns the Items field value

func (*AgentGroupAssignmentsGetResponse) GetItemsOk

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

func (*AgentGroupAssignmentsGetResponse) GetNext

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*AgentGroupAssignmentsGetResponse) GetNextOk

func (o *AgentGroupAssignmentsGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (AgentGroupAssignmentsGetResponse) MarshalJSON

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

func (*AgentGroupAssignmentsGetResponse) SetCount

func (o *AgentGroupAssignmentsGetResponse) SetCount(v int32)

SetCount sets field value

func (*AgentGroupAssignmentsGetResponse) SetItems

SetItems sets field value

func (*AgentGroupAssignmentsGetResponse) SetNext

SetNext sets field value

func (AgentGroupAssignmentsGetResponse) ToMap

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

func (*AgentGroupAssignmentsGetResponse) UnmarshalJSON

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

type AgentPatchRequest

type AgentPatchRequest struct {
	Name     *string        `json:"name,omitempty"`
	Notes    *string        `json:"notes,omitempty"`
	PcapMode *AgentPcapMode `json:"pcapMode,omitempty"`
}

AgentPatchRequest Request body for patching an agent.

func NewAgentPatchRequest

func NewAgentPatchRequest() *AgentPatchRequest

NewAgentPatchRequest instantiates a new AgentPatchRequest object This constructor will assign default values to properties that have it defined, 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 NewAgentPatchRequestWithDefaults

func NewAgentPatchRequestWithDefaults() *AgentPatchRequest

NewAgentPatchRequestWithDefaults instantiates a new AgentPatchRequest object This 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 (*AgentPatchRequest) GetName

func (o *AgentPatchRequest) GetName() string

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

func (*AgentPatchRequest) GetNameOk

func (o *AgentPatchRequest) 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 (*AgentPatchRequest) GetNotes

func (o *AgentPatchRequest) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*AgentPatchRequest) GetNotesOk

func (o *AgentPatchRequest) 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 (*AgentPatchRequest) GetPcapMode

func (o *AgentPatchRequest) GetPcapMode() AgentPcapMode

GetPcapMode returns the PcapMode field value if set, zero value otherwise.

func (*AgentPatchRequest) GetPcapModeOk

func (o *AgentPatchRequest) GetPcapModeOk() (*AgentPcapMode, bool)

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

func (*AgentPatchRequest) HasName

func (o *AgentPatchRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*AgentPatchRequest) HasNotes

func (o *AgentPatchRequest) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*AgentPatchRequest) HasPcapMode

func (o *AgentPatchRequest) HasPcapMode() bool

HasPcapMode returns a boolean if a field has been set.

func (AgentPatchRequest) MarshalJSON

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

func (*AgentPatchRequest) SetName

func (o *AgentPatchRequest) SetName(v string)

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

func (*AgentPatchRequest) SetNotes

func (o *AgentPatchRequest) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*AgentPatchRequest) SetPcapMode

func (o *AgentPatchRequest) SetPcapMode(v AgentPcapMode)

SetPcapMode gets a reference to the given AgentPcapMode and assigns it to the PcapMode field.

func (AgentPatchRequest) ToMap

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

type AgentPatchResponse

type AgentPatchResponse struct {
	Id                 string                `json:"id"`
	Serial             string                `json:"serial"`
	Name               string                `json:"name"`
	ModelNumber        NullableString        `json:"modelNumber"`
	WifiMacAddress     NullableString        `json:"wifiMacAddress"`
	EthernetMacAddress NullableString        `json:"ethernetMacAddress"`
	Notes              NullableString        `json:"notes"`
	PcapMode           NullableAgentPcapMode `json:"pcapMode"`
	Type               string                `json:"type"`
}

AgentPatchResponse struct for AgentPatchResponse

func NewAgentPatchResponse

func NewAgentPatchResponse(
	id string,
	serial string,
	name string,
	modelNumber NullableString,
	wifiMacAddress NullableString,
	ethernetMacAddress NullableString,
	notes NullableString,
	pcapMode NullableAgentPcapMode,
	type_ string,
) *AgentPatchResponse

NewAgentPatchResponse instantiates a new AgentPatchResponse object This constructor will assign default values to properties that have it defined, 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 NewAgentPatchResponseWithDefaults

func NewAgentPatchResponseWithDefaults() *AgentPatchResponse

NewAgentPatchResponseWithDefaults instantiates a new AgentPatchResponse object This 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 (*AgentPatchResponse) GetEthernetMacAddress

func (o *AgentPatchResponse) GetEthernetMacAddress() string

GetEthernetMacAddress returns the EthernetMacAddress field value If the value is explicit nil, the zero value for string will be returned

func (*AgentPatchResponse) GetEthernetMacAddressOk

func (o *AgentPatchResponse) GetEthernetMacAddressOk() (*string, bool)

GetEthernetMacAddressOk returns a tuple with the EthernetMacAddress 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 (*AgentPatchResponse) GetId

func (o *AgentPatchResponse) GetId() string

GetId returns the Id field value

func (*AgentPatchResponse) GetIdOk

func (o *AgentPatchResponse) GetIdOk() (*string, bool)

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

func (*AgentPatchResponse) GetModelNumber

func (o *AgentPatchResponse) GetModelNumber() string

GetModelNumber returns the ModelNumber field value If the value is explicit nil, the zero value for string will be returned

func (*AgentPatchResponse) GetModelNumberOk

func (o *AgentPatchResponse) GetModelNumberOk() (*string, bool)

GetModelNumberOk returns a tuple with the ModelNumber 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 (*AgentPatchResponse) GetName

func (o *AgentPatchResponse) GetName() string

GetName returns the Name field value

func (*AgentPatchResponse) GetNameOk

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

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

func (*AgentPatchResponse) GetNotes

func (o *AgentPatchResponse) GetNotes() string

GetNotes returns the Notes field value If the value is explicit nil, the zero value for string will be returned

func (*AgentPatchResponse) GetNotesOk

func (o *AgentPatchResponse) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes 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 (*AgentPatchResponse) GetPcapMode

func (o *AgentPatchResponse) GetPcapMode() AgentPcapMode

GetPcapMode returns the PcapMode field value If the value is explicit nil, the zero value for AgentPcapMode will be returned

func (*AgentPatchResponse) GetPcapModeOk

func (o *AgentPatchResponse) GetPcapModeOk() (*AgentPcapMode, bool)

GetPcapModeOk returns a tuple with the PcapMode 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 (*AgentPatchResponse) GetSerial

func (o *AgentPatchResponse) GetSerial() string

GetSerial returns the Serial field value

func (*AgentPatchResponse) GetSerialOk

func (o *AgentPatchResponse) GetSerialOk() (*string, bool)

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

func (*AgentPatchResponse) GetType

func (o *AgentPatchResponse) GetType() string

GetType returns the Type field value

func (*AgentPatchResponse) GetTypeOk

func (o *AgentPatchResponse) GetTypeOk() (*string, bool)

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

func (*AgentPatchResponse) GetWifiMacAddress

func (o *AgentPatchResponse) GetWifiMacAddress() string

GetWifiMacAddress returns the WifiMacAddress field value If the value is explicit nil, the zero value for string will be returned

func (*AgentPatchResponse) GetWifiMacAddressOk

func (o *AgentPatchResponse) GetWifiMacAddressOk() (*string, bool)

GetWifiMacAddressOk returns a tuple with the WifiMacAddress 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 (AgentPatchResponse) MarshalJSON

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

func (*AgentPatchResponse) SetEthernetMacAddress

func (o *AgentPatchResponse) SetEthernetMacAddress(v string)

SetEthernetMacAddress sets field value

func (*AgentPatchResponse) SetId

func (o *AgentPatchResponse) SetId(v string)

SetId sets field value

func (*AgentPatchResponse) SetModelNumber

func (o *AgentPatchResponse) SetModelNumber(v string)

SetModelNumber sets field value

func (*AgentPatchResponse) SetName

func (o *AgentPatchResponse) SetName(v string)

SetName sets field value

func (*AgentPatchResponse) SetNotes

func (o *AgentPatchResponse) SetNotes(v string)

SetNotes sets field value

func (*AgentPatchResponse) SetPcapMode

func (o *AgentPatchResponse) SetPcapMode(v AgentPcapMode)

SetPcapMode sets field value

func (*AgentPatchResponse) SetSerial

func (o *AgentPatchResponse) SetSerial(v string)

SetSerial sets field value

func (*AgentPatchResponse) SetType

func (o *AgentPatchResponse) SetType(v string)

SetType sets field value

func (*AgentPatchResponse) SetWifiMacAddress

func (o *AgentPatchResponse) SetWifiMacAddress(v string)

SetWifiMacAddress sets field value

func (AgentPatchResponse) ToMap

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

func (*AgentPatchResponse) UnmarshalJSON

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

type AgentPcapMode

type AgentPcapMode string

AgentPcapMode the model 'AgentPcapMode'

const (
	AGENTPCAPMODE_LIGHT AgentPcapMode = "light"
	AGENTPCAPMODE_FULL  AgentPcapMode = "full"
	AGENTPCAPMODE_OFF   AgentPcapMode = "off"
)

List of AgentPcapMode

func NewAgentPcapModeFromValue

func NewAgentPcapModeFromValue(v string) (*AgentPcapMode, error)

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

func (AgentPcapMode) IsValid

func (v AgentPcapMode) IsValid() bool

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

func (AgentPcapMode) Ptr

func (v AgentPcapMode) Ptr() *AgentPcapMode

Ptr returns reference to AgentPcapMode value

func (*AgentPcapMode) UnmarshalJSON

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

type AgentsGetItem

type AgentsGetItem struct {
	Id                 string                `json:"id"`
	Serial             string                `json:"serial"`
	Name               string                `json:"name"`
	ModelNumber        NullableString        `json:"modelNumber"`
	WifiMacAddress     NullableString        `json:"wifiMacAddress"`
	EthernetMacAddress NullableString        `json:"ethernetMacAddress"`
	Notes              NullableString        `json:"notes"`
	PcapMode           NullableAgentPcapMode `json:"pcapMode"`
	Type               string                `json:"type"`
}

AgentsGetItem struct for AgentsGetItem

func NewAgentsGetItem

func NewAgentsGetItem(
	id string,
	serial string,
	name string,
	modelNumber NullableString,
	wifiMacAddress NullableString,
	ethernetMacAddress NullableString,
	notes NullableString,
	pcapMode NullableAgentPcapMode,
	type_ string,
) *AgentsGetItem

NewAgentsGetItem instantiates a new AgentsGetItem object This constructor will assign default values to properties that have it defined, 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 NewAgentsGetItemWithDefaults

func NewAgentsGetItemWithDefaults() *AgentsGetItem

NewAgentsGetItemWithDefaults instantiates a new AgentsGetItem object This 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 (*AgentsGetItem) GetEthernetMacAddress

func (o *AgentsGetItem) GetEthernetMacAddress() string

GetEthernetMacAddress returns the EthernetMacAddress field value If the value is explicit nil, the zero value for string will be returned

func (*AgentsGetItem) GetEthernetMacAddressOk

func (o *AgentsGetItem) GetEthernetMacAddressOk() (*string, bool)

GetEthernetMacAddressOk returns a tuple with the EthernetMacAddress 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 (*AgentsGetItem) GetId

func (o *AgentsGetItem) GetId() string

GetId returns the Id field value

func (*AgentsGetItem) GetIdOk

func (o *AgentsGetItem) GetIdOk() (*string, bool)

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

func (*AgentsGetItem) GetModelNumber

func (o *AgentsGetItem) GetModelNumber() string

GetModelNumber returns the ModelNumber field value If the value is explicit nil, the zero value for string will be returned

func (*AgentsGetItem) GetModelNumberOk

func (o *AgentsGetItem) GetModelNumberOk() (*string, bool)

GetModelNumberOk returns a tuple with the ModelNumber 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 (*AgentsGetItem) GetName

func (o *AgentsGetItem) GetName() string

GetName returns the Name field value

func (*AgentsGetItem) GetNameOk

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

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

func (*AgentsGetItem) GetNotes

func (o *AgentsGetItem) GetNotes() string

GetNotes returns the Notes field value If the value is explicit nil, the zero value for string will be returned

func (*AgentsGetItem) GetNotesOk

func (o *AgentsGetItem) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes 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 (*AgentsGetItem) GetPcapMode

func (o *AgentsGetItem) GetPcapMode() AgentPcapMode

GetPcapMode returns the PcapMode field value If the value is explicit nil, the zero value for AgentPcapMode will be returned

func (*AgentsGetItem) GetPcapModeOk

func (o *AgentsGetItem) GetPcapModeOk() (*AgentPcapMode, bool)

GetPcapModeOk returns a tuple with the PcapMode 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 (*AgentsGetItem) GetSerial

func (o *AgentsGetItem) GetSerial() string

GetSerial returns the Serial field value

func (*AgentsGetItem) GetSerialOk

func (o *AgentsGetItem) GetSerialOk() (*string, bool)

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

func (*AgentsGetItem) GetType

func (o *AgentsGetItem) GetType() string

GetType returns the Type field value

func (*AgentsGetItem) GetTypeOk

func (o *AgentsGetItem) GetTypeOk() (*string, bool)

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

func (*AgentsGetItem) GetWifiMacAddress

func (o *AgentsGetItem) GetWifiMacAddress() string

GetWifiMacAddress returns the WifiMacAddress field value If the value is explicit nil, the zero value for string will be returned

func (*AgentsGetItem) GetWifiMacAddressOk

func (o *AgentsGetItem) GetWifiMacAddressOk() (*string, bool)

GetWifiMacAddressOk returns a tuple with the WifiMacAddress 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 (AgentsGetItem) MarshalJSON

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

func (*AgentsGetItem) SetEthernetMacAddress

func (o *AgentsGetItem) SetEthernetMacAddress(v string)

SetEthernetMacAddress sets field value

func (*AgentsGetItem) SetId

func (o *AgentsGetItem) SetId(v string)

SetId sets field value

func (*AgentsGetItem) SetModelNumber

func (o *AgentsGetItem) SetModelNumber(v string)

SetModelNumber sets field value

func (*AgentsGetItem) SetName

func (o *AgentsGetItem) SetName(v string)

SetName sets field value

func (*AgentsGetItem) SetNotes

func (o *AgentsGetItem) SetNotes(v string)

SetNotes sets field value

func (*AgentsGetItem) SetPcapMode

func (o *AgentsGetItem) SetPcapMode(v AgentPcapMode)

SetPcapMode sets field value

func (*AgentsGetItem) SetSerial

func (o *AgentsGetItem) SetSerial(v string)

SetSerial sets field value

func (*AgentsGetItem) SetType

func (o *AgentsGetItem) SetType(v string)

SetType sets field value

func (*AgentsGetItem) SetWifiMacAddress

func (o *AgentsGetItem) SetWifiMacAddress(v string)

SetWifiMacAddress sets field value

func (AgentsGetItem) ToMap

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

func (*AgentsGetItem) UnmarshalJSON

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

type AgentsGetResponse

type AgentsGetResponse struct {
	Items []AgentsGetItem `json:"items"`
	Count int32           `json:"count"`
	Next  NullableString  `json:"next"`
}

AgentsGetResponse struct for AgentsGetResponse

func NewAgentsGetResponse

func NewAgentsGetResponse(
	items []AgentsGetItem,
	count int32,
	next NullableString,
) *AgentsGetResponse

NewAgentsGetResponse instantiates a new AgentsGetResponse object This constructor will assign default values to properties that have it defined, 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 NewAgentsGetResponseWithDefaults

func NewAgentsGetResponseWithDefaults() *AgentsGetResponse

NewAgentsGetResponseWithDefaults instantiates a new AgentsGetResponse object This 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 (*AgentsGetResponse) GetCount

func (o *AgentsGetResponse) GetCount() int32

GetCount returns the Count field value

func (*AgentsGetResponse) GetCountOk

func (o *AgentsGetResponse) GetCountOk() (*int32, bool)

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

func (*AgentsGetResponse) GetItems

func (o *AgentsGetResponse) GetItems() []AgentsGetItem

GetItems returns the Items field value

func (*AgentsGetResponse) GetItemsOk

func (o *AgentsGetResponse) GetItemsOk() ([]AgentsGetItem, bool)

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

func (*AgentsGetResponse) GetNext

func (o *AgentsGetResponse) GetNext() string

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*AgentsGetResponse) GetNextOk

func (o *AgentsGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (AgentsGetResponse) MarshalJSON

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

func (*AgentsGetResponse) SetCount

func (o *AgentsGetResponse) SetCount(v int32)

SetCount sets field value

func (*AgentsGetResponse) SetItems

func (o *AgentsGetResponse) SetItems(v []AgentsGetItem)

SetItems sets field value

func (*AgentsGetResponse) SetNext

func (o *AgentsGetResponse) SetNext(v string)

SetNext sets field value

func (AgentsGetResponse) ToMap

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

func (*AgentsGetResponse) UnmarshalJSON

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

type ApiAgentDeleteRequest

type ApiAgentDeleteRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiAgentDeleteRequest) Execute

func (r ApiAgentDeleteRequest) Execute() (interface{}, *http.Response, error)

type ApiAgentGroupAssignmentDeleteRequest

type ApiAgentGroupAssignmentDeleteRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiAgentGroupAssignmentDeleteRequest) Execute

func (r ApiAgentGroupAssignmentDeleteRequest) Execute() (interface{}, *http.Response, error)

type ApiAgentGroupAssignmentPostRequest

type ApiAgentGroupAssignmentPostRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiAgentGroupAssignmentPostRequest) AgentGroupAssignmentPostRequest

func (r ApiAgentGroupAssignmentPostRequest) AgentGroupAssignmentPostRequest(
	agentGroupAssignmentPostRequest AgentGroupAssignmentPostRequest,
) ApiAgentGroupAssignmentPostRequest

func (ApiAgentGroupAssignmentPostRequest) Execute

type ApiAgentGroupAssignmentsGetRequest

type ApiAgentGroupAssignmentsGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiAgentGroupAssignmentsGetRequest) Execute

func (ApiAgentGroupAssignmentsGetRequest) Id

func (ApiAgentGroupAssignmentsGetRequest) Limit

func (ApiAgentGroupAssignmentsGetRequest) Next

type ApiAgentPatchRequest

type ApiAgentPatchRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiAgentPatchRequest) AgentPatchRequest

func (r ApiAgentPatchRequest) AgentPatchRequest(
	agentPatchRequest AgentPatchRequest,
) ApiAgentPatchRequest

func (ApiAgentPatchRequest) Execute

type ApiAgentsGetRequest

type ApiAgentsGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiAgentsGetRequest) Execute

func (ApiAgentsGetRequest) Id

func (ApiAgentsGetRequest) Limit

func (ApiAgentsGetRequest) Next

type ApiGroupDeleteRequest

type ApiGroupDeleteRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiGroupDeleteRequest) Execute

func (r ApiGroupDeleteRequest) Execute() (interface{}, *http.Response, error)

type ApiGroupPatchRequest

type ApiGroupPatchRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiGroupPatchRequest) Execute

func (ApiGroupPatchRequest) GroupPatchRequest

func (r ApiGroupPatchRequest) GroupPatchRequest(
	groupPatchRequest GroupPatchRequest,
) ApiGroupPatchRequest

type ApiGroupPostRequest

type ApiGroupPostRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiGroupPostRequest) Execute

func (ApiGroupPostRequest) GroupPostRequest

func (r ApiGroupPostRequest) GroupPostRequest(
	groupPostRequest GroupPostRequest,
) ApiGroupPostRequest

type ApiGroupsGetRequest

type ApiGroupsGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsGetRequest) Execute

func (ApiGroupsGetRequest) Id

func (ApiGroupsGetRequest) Limit

func (ApiGroupsGetRequest) Next

type ApiNetworkGroupAssignmentDeleteRequest

type ApiNetworkGroupAssignmentDeleteRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiNetworkGroupAssignmentDeleteRequest) Execute

func (r ApiNetworkGroupAssignmentDeleteRequest) Execute() (interface{}, *http.Response, error)

type ApiNetworkGroupAssignmentPostRequest

type ApiNetworkGroupAssignmentPostRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiNetworkGroupAssignmentPostRequest) Execute

func (ApiNetworkGroupAssignmentPostRequest) NetworkGroupAssignmentPostRequest

func (r ApiNetworkGroupAssignmentPostRequest) NetworkGroupAssignmentPostRequest(
	networkGroupAssignmentPostRequest NetworkGroupAssignmentPostRequest,
) ApiNetworkGroupAssignmentPostRequest

type ApiNetworkGroupAssignmentsGetRequest

type ApiNetworkGroupAssignmentsGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiNetworkGroupAssignmentsGetRequest) Execute

func (ApiNetworkGroupAssignmentsGetRequest) Id

func (ApiNetworkGroupAssignmentsGetRequest) Limit

func (ApiNetworkGroupAssignmentsGetRequest) Next

type ApiSensorGroupAssignmentDeleteRequest

type ApiSensorGroupAssignmentDeleteRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiSensorGroupAssignmentDeleteRequest) Execute

func (r ApiSensorGroupAssignmentDeleteRequest) Execute() (interface{}, *http.Response, error)

type ApiSensorGroupAssignmentPostRequest

type ApiSensorGroupAssignmentPostRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiSensorGroupAssignmentPostRequest) Execute

func (ApiSensorGroupAssignmentPostRequest) SensorGroupAssignmentPostRequest

func (r ApiSensorGroupAssignmentPostRequest) SensorGroupAssignmentPostRequest(
	sensorGroupAssignmentPostRequest SensorGroupAssignmentPostRequest,
) ApiSensorGroupAssignmentPostRequest

type ApiSensorGroupAssignmentsGetRequest

type ApiSensorGroupAssignmentsGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiSensorGroupAssignmentsGetRequest) Execute

func (ApiSensorGroupAssignmentsGetRequest) Id

func (ApiSensorGroupAssignmentsGetRequest) Limit

func (ApiSensorGroupAssignmentsGetRequest) Next

type ApiSensorPatchRequest

type ApiSensorPatchRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiSensorPatchRequest) Execute

func (ApiSensorPatchRequest) SensorPatchRequest

func (r ApiSensorPatchRequest) SensorPatchRequest(
	sensorPatchRequest SensorPatchRequest,
) ApiSensorPatchRequest

type ApiSensorsGetRequest

type ApiSensorsGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiSensorsGetRequest) Execute

func (ApiSensorsGetRequest) Id

func (ApiSensorsGetRequest) Limit

func (ApiSensorsGetRequest) Next

type ApiServiceTestGroupAssignmentDeleteRequest

type ApiServiceTestGroupAssignmentDeleteRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiServiceTestGroupAssignmentDeleteRequest) Execute

func (r ApiServiceTestGroupAssignmentDeleteRequest) Execute() (interface{}, *http.Response, error)

type ApiServiceTestGroupAssignmentPostRequest

type ApiServiceTestGroupAssignmentPostRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiServiceTestGroupAssignmentPostRequest) Execute

func (ApiServiceTestGroupAssignmentPostRequest) ServiceTestGroupAssignmentPostRequest

func (r ApiServiceTestGroupAssignmentPostRequest) ServiceTestGroupAssignmentPostRequest(
	serviceTestGroupAssignmentPostRequest ServiceTestGroupAssignmentPostRequest,
) ApiServiceTestGroupAssignmentPostRequest

type ApiServiceTestGroupAssignmentsGetRequest

type ApiServiceTestGroupAssignmentsGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiServiceTestGroupAssignmentsGetRequest) Execute

func (ApiServiceTestGroupAssignmentsGetRequest) Id

func (ApiServiceTestGroupAssignmentsGetRequest) Limit

func (ApiServiceTestGroupAssignmentsGetRequest) Next

type ApiServiceTestsGetRequest

type ApiServiceTestsGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiServiceTestsGetRequest) Execute

func (ApiServiceTestsGetRequest) Id

func (ApiServiceTestsGetRequest) Limit

func (ApiServiceTestsGetRequest) Next

type ApiWiredNetworksGetRequest

type ApiWiredNetworksGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiWiredNetworksGetRequest) Execute

func (ApiWiredNetworksGetRequest) Id

func (ApiWiredNetworksGetRequest) Limit

func (ApiWiredNetworksGetRequest) Next

type ApiWirelessNetworksGetRequest

type ApiWirelessNetworksGetRequest struct {
	ApiService *ConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiWirelessNetworksGetRequest) Execute

func (ApiWirelessNetworksGetRequest) Id

func (ApiWirelessNetworksGetRequest) Limit

func (ApiWirelessNetworksGetRequest) Next

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type ConfigurationAPIService

type ConfigurationAPIService service

ConfigurationAPIService ConfigurationAPI service

func (*ConfigurationAPIService) AgentDelete

func (a *ConfigurationAPIService) AgentDelete(
	ctx context.Context,
	agentUid string,
) ApiAgentDeleteRequest

AgentDelete Agent Delete

Delete an existing agent.

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

func (*ConfigurationAPIService) AgentDeleteExecute

func (a *ConfigurationAPIService) AgentDeleteExecute(
	r ApiAgentDeleteRequest,
) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ConfigurationAPIService) AgentGroupAssignmentDelete

func (a *ConfigurationAPIService) AgentGroupAssignmentDelete(
	ctx context.Context,
	uid string,
) ApiAgentGroupAssignmentDeleteRequest

AgentGroupAssignmentDelete Agent Group Assignment Delete

Delete an agent group assignment.

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

func (*ConfigurationAPIService) AgentGroupAssignmentDeleteExecute

func (a *ConfigurationAPIService) AgentGroupAssignmentDeleteExecute(
	r ApiAgentGroupAssignmentDeleteRequest,
) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ConfigurationAPIService) AgentGroupAssignmentPost

func (a *ConfigurationAPIService) AgentGroupAssignmentPost(
	ctx context.Context,
) ApiAgentGroupAssignmentPostRequest

AgentGroupAssignmentPost Agent Group Assignment Post

Create agent group assignment

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

func (*ConfigurationAPIService) AgentGroupAssignmentPostExecute

Execute executes the request

@return AgentGroupAssignmentPostResponse

func (*ConfigurationAPIService) AgentGroupAssignmentsGet

func (a *ConfigurationAPIService) AgentGroupAssignmentsGet(
	ctx context.Context,
) ApiAgentGroupAssignmentsGetRequest

AgentGroupAssignmentsGet Agent Group Assignments Get

Get a list of agent group assignments

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

func (*ConfigurationAPIService) AgentGroupAssignmentsGetExecute

Execute executes the request

@return AgentGroupAssignmentsGetResponse

func (*ConfigurationAPIService) AgentPatch

func (a *ConfigurationAPIService) AgentPatch(
	ctx context.Context,
	agentUid string,
) ApiAgentPatchRequest

AgentPatch Agent Patch

Update an existing agent.

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

func (*ConfigurationAPIService) AgentPatchExecute

Execute executes the request

@return AgentPatchResponse

func (*ConfigurationAPIService) AgentsGet

AgentsGet Agents Get

Get a list of agents

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

func (*ConfigurationAPIService) AgentsGetExecute

Execute executes the request

@return AgentsGetResponse

func (*ConfigurationAPIService) GroupDelete

func (a *ConfigurationAPIService) GroupDelete(
	ctx context.Context,
	groupUid string,
) ApiGroupDeleteRequest

GroupDelete Group Delete

Delete an existing group.

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

func (*ConfigurationAPIService) GroupDeleteExecute

func (a *ConfigurationAPIService) GroupDeleteExecute(
	r ApiGroupDeleteRequest,
) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ConfigurationAPIService) GroupPatch

func (a *ConfigurationAPIService) GroupPatch(
	ctx context.Context,
	groupUid string,
) ApiGroupPatchRequest

GroupPatch Group Patch

Update an existing group.

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

func (*ConfigurationAPIService) GroupPatchExecute

Execute executes the request

@return GroupPatchResponse

func (*ConfigurationAPIService) GroupPost

GroupPost Group Post

Create a new group with the group identified in `parentId` as its parent

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

func (*ConfigurationAPIService) GroupPostExecute

Execute executes the request

@return GroupPostResponse

func (*ConfigurationAPIService) GroupsGet

GroupsGet Groups Get

Lists groups matching provided criteria

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

func (*ConfigurationAPIService) GroupsGetExecute

Execute executes the request

@return GroupsGetResponse

func (*ConfigurationAPIService) NetworkGroupAssignmentDelete

func (a *ConfigurationAPIService) NetworkGroupAssignmentDelete(
	ctx context.Context,
	id string,
) ApiNetworkGroupAssignmentDeleteRequest

NetworkGroupAssignmentDelete Network Group Assignment Delete

Delete a network group assignment

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

func (*ConfigurationAPIService) NetworkGroupAssignmentDeleteExecute

func (a *ConfigurationAPIService) NetworkGroupAssignmentDeleteExecute(
	r ApiNetworkGroupAssignmentDeleteRequest,
) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ConfigurationAPIService) NetworkGroupAssignmentPost

func (a *ConfigurationAPIService) NetworkGroupAssignmentPost(
	ctx context.Context,
) ApiNetworkGroupAssignmentPostRequest

NetworkGroupAssignmentPost Network Group Assignment Post

Create a network group assignment

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

func (*ConfigurationAPIService) NetworkGroupAssignmentPostExecute

Execute executes the request

@return NetworkGroupAssignmentPostResponse

func (*ConfigurationAPIService) NetworkGroupAssignmentsGet

func (a *ConfigurationAPIService) NetworkGroupAssignmentsGet(
	ctx context.Context,
) ApiNetworkGroupAssignmentsGetRequest

NetworkGroupAssignmentsGet Network Group Assignments Get

Get a list of network group assignments

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

func (*ConfigurationAPIService) NetworkGroupAssignmentsGetExecute

Execute executes the request

@return NetworkGroupAssignmentsGetResponse

func (*ConfigurationAPIService) SensorGroupAssignmentDelete

func (a *ConfigurationAPIService) SensorGroupAssignmentDelete(
	ctx context.Context,
	id string,
) ApiSensorGroupAssignmentDeleteRequest

SensorGroupAssignmentDelete Sensor Group Assignment Delete

Delete a sensor group assignment

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

func (*ConfigurationAPIService) SensorGroupAssignmentDeleteExecute

func (a *ConfigurationAPIService) SensorGroupAssignmentDeleteExecute(
	r ApiSensorGroupAssignmentDeleteRequest,
) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ConfigurationAPIService) SensorGroupAssignmentPost

func (a *ConfigurationAPIService) SensorGroupAssignmentPost(
	ctx context.Context,
) ApiSensorGroupAssignmentPostRequest

SensorGroupAssignmentPost Sensor Group Assignment Post

Create sensor group assignment

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

func (*ConfigurationAPIService) SensorGroupAssignmentPostExecute

Execute executes the request

@return SensorGroupAssignmentPostResponse

func (*ConfigurationAPIService) SensorGroupAssignmentsGet

func (a *ConfigurationAPIService) SensorGroupAssignmentsGet(
	ctx context.Context,
) ApiSensorGroupAssignmentsGetRequest

SensorGroupAssignmentsGet Sensor Group Assignments Get

Get a list of sensor group assignments

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

func (*ConfigurationAPIService) SensorGroupAssignmentsGetExecute

Execute executes the request

@return SensorGroupAssignmentsGetResponse

func (*ConfigurationAPIService) SensorPatch

func (a *ConfigurationAPIService) SensorPatch(
	ctx context.Context,
	sensorUid string,
) ApiSensorPatchRequest

SensorPatch Sensor Patch

Update an existing sensor.

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

func (*ConfigurationAPIService) SensorPatchExecute

Execute executes the request

@return SensorPatchResponse

func (*ConfigurationAPIService) SensorsGet

SensorsGet Sensors Get

Get a list of sensors

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

func (*ConfigurationAPIService) SensorsGetExecute

Execute executes the request

@return SensorsGetResponse

func (*ConfigurationAPIService) ServiceTestGroupAssignmentDelete

func (a *ConfigurationAPIService) ServiceTestGroupAssignmentDelete(
	ctx context.Context,
	id string,
) ApiServiceTestGroupAssignmentDeleteRequest

ServiceTestGroupAssignmentDelete Service Test Group Assignment Delete

Delete a service test group assignment

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

func (*ConfigurationAPIService) ServiceTestGroupAssignmentDeleteExecute

func (a *ConfigurationAPIService) ServiceTestGroupAssignmentDeleteExecute(
	r ApiServiceTestGroupAssignmentDeleteRequest,
) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ConfigurationAPIService) ServiceTestGroupAssignmentPost

func (a *ConfigurationAPIService) ServiceTestGroupAssignmentPost(
	ctx context.Context,
) ApiServiceTestGroupAssignmentPostRequest

ServiceTestGroupAssignmentPost Service Test Group Assignment Post

Create a service-test group assignment

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

func (*ConfigurationAPIService) ServiceTestGroupAssignmentPostExecute

Execute executes the request

@return ServiceTestGroupAssignmentPostResponse

func (*ConfigurationAPIService) ServiceTestGroupAssignmentsGet

func (a *ConfigurationAPIService) ServiceTestGroupAssignmentsGet(
	ctx context.Context,
) ApiServiceTestGroupAssignmentsGetRequest

ServiceTestGroupAssignmentsGet Service Test Group Assignments Get

Get a list of service test group assignments

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

func (*ConfigurationAPIService) ServiceTestGroupAssignmentsGetExecute

Execute executes the request

@return ServiceTestGroupAssignmentsGetResponse

func (*ConfigurationAPIService) ServiceTestsGet

ServiceTestsGet Service Tests Get

Lists service-tests matching provided criteria

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

func (*ConfigurationAPIService) ServiceTestsGetExecute

Execute executes the request

@return ServiceTestsGetResponse

func (*ConfigurationAPIService) WiredNetworksGet

WiredNetworksGet Wired Networks Get

Get a list of wired networks

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

func (*ConfigurationAPIService) WiredNetworksGetExecute

Execute executes the request

@return WiredNetworksGetResponse

func (*ConfigurationAPIService) WirelessNetworksGet

WirelessNetworksGet Wireless Networks Get

Get a list of wireless networks

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

func (*ConfigurationAPIService) WirelessNetworksGetExecute

Execute executes the request

@return WirelessNetworksGetResponse

type ErrorDetail

type ErrorDetail struct {
	Issues []Issue `json:"issues"`
	Type   string  `json:"type"`
}

ErrorDetail struct for ErrorDetail

func NewErrorDetail

func NewErrorDetail(issues []Issue, type_ string) *ErrorDetail

NewErrorDetail instantiates a new ErrorDetail object This constructor will assign default values to properties that have it defined, 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 NewErrorDetailWithDefaults

func NewErrorDetailWithDefaults() *ErrorDetail

NewErrorDetailWithDefaults instantiates a new ErrorDetail object This 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 (*ErrorDetail) GetIssues

func (o *ErrorDetail) GetIssues() []Issue

GetIssues returns the Issues field value

func (*ErrorDetail) GetIssuesOk

func (o *ErrorDetail) GetIssuesOk() ([]Issue, bool)

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

func (*ErrorDetail) GetType

func (o *ErrorDetail) GetType() string

GetType returns the Type field value

func (*ErrorDetail) GetTypeOk

func (o *ErrorDetail) GetTypeOk() (*string, bool)

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

func (ErrorDetail) MarshalJSON

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

func (*ErrorDetail) SetIssues

func (o *ErrorDetail) SetIssues(v []Issue)

SetIssues sets field value

func (*ErrorDetail) SetType

func (o *ErrorDetail) SetType(v string)

SetType sets field value

func (ErrorDetail) ToMap

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

func (*ErrorDetail) UnmarshalJSON

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

type ErrorResponse

type ErrorResponse struct {
	DebugId        string        `json:"debugId"`
	ErrorCode      string        `json:"errorCode"`
	HttpStatusCode int32         `json:"httpStatusCode"`
	Message        string        `json:"message"`
	ErrorDetails   []ErrorDetail `json:"errorDetails,omitempty"`
}

ErrorResponse struct for ErrorResponse

func NewErrorResponse

func NewErrorResponse(
	debugId string,
	errorCode string,
	httpStatusCode int32,
	message string,
) *ErrorResponse

NewErrorResponse instantiates a new ErrorResponse object This constructor will assign default values to properties that have it defined, 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 NewErrorResponseWithDefaults

func NewErrorResponseWithDefaults() *ErrorResponse

NewErrorResponseWithDefaults instantiates a new ErrorResponse object This 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 (*ErrorResponse) GetDebugId

func (o *ErrorResponse) GetDebugId() string

GetDebugId returns the DebugId field value

func (*ErrorResponse) GetDebugIdOk

func (o *ErrorResponse) GetDebugIdOk() (*string, bool)

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

func (*ErrorResponse) GetErrorCode

func (o *ErrorResponse) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ErrorResponse) GetErrorCodeOk

func (o *ErrorResponse) GetErrorCodeOk() (*string, bool)

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

func (*ErrorResponse) GetErrorDetails

func (o *ErrorResponse) GetErrorDetails() []ErrorDetail

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

func (*ErrorResponse) GetErrorDetailsOk

func (o *ErrorResponse) GetErrorDetailsOk() ([]ErrorDetail, bool)

GetErrorDetailsOk returns a tuple with the ErrorDetails 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 (*ErrorResponse) GetHttpStatusCode

func (o *ErrorResponse) GetHttpStatusCode() int32

GetHttpStatusCode returns the HttpStatusCode field value

func (*ErrorResponse) GetHttpStatusCodeOk

func (o *ErrorResponse) GetHttpStatusCodeOk() (*int32, bool)

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

func (*ErrorResponse) GetMessage

func (o *ErrorResponse) GetMessage() string

GetMessage returns the Message field value

func (*ErrorResponse) GetMessageOk

func (o *ErrorResponse) GetMessageOk() (*string, bool)

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

func (*ErrorResponse) HasErrorDetails

func (o *ErrorResponse) HasErrorDetails() bool

HasErrorDetails returns a boolean if a field has been set.

func (ErrorResponse) MarshalJSON

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

func (*ErrorResponse) SetDebugId

func (o *ErrorResponse) SetDebugId(v string)

SetDebugId sets field value

func (*ErrorResponse) SetErrorCode

func (o *ErrorResponse) SetErrorCode(v string)

SetErrorCode sets field value

func (*ErrorResponse) SetErrorDetails

func (o *ErrorResponse) SetErrorDetails(v []ErrorDetail)

SetErrorDetails gets a reference to the given []ErrorDetail and assigns it to the ErrorDetails field.

func (*ErrorResponse) SetHttpStatusCode

func (o *ErrorResponse) SetHttpStatusCode(v int32)

SetHttpStatusCode sets field value

func (*ErrorResponse) SetMessage

func (o *ErrorResponse) SetMessage(v string)

SetMessage sets field value

func (ErrorResponse) ToMap

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

func (*ErrorResponse) UnmarshalJSON

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

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 GroupPatchParent

type GroupPatchParent struct {
	Id string `json:"id"`
}

GroupPatchParent struct for GroupPatchParent

func NewGroupPatchParent

func NewGroupPatchParent(id string) *GroupPatchParent

NewGroupPatchParent instantiates a new GroupPatchParent object This constructor will assign default values to properties that have it defined, 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 NewGroupPatchParentWithDefaults

func NewGroupPatchParentWithDefaults() *GroupPatchParent

NewGroupPatchParentWithDefaults instantiates a new GroupPatchParent object This 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 (*GroupPatchParent) GetId

func (o *GroupPatchParent) GetId() string

GetId returns the Id field value

func (*GroupPatchParent) GetIdOk

func (o *GroupPatchParent) GetIdOk() (*string, bool)

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

func (GroupPatchParent) MarshalJSON

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

func (*GroupPatchParent) SetId

func (o *GroupPatchParent) SetId(v string)

SetId sets field value

func (GroupPatchParent) ToMap

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

func (*GroupPatchParent) UnmarshalJSON

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

type GroupPatchRequest

type GroupPatchRequest struct {
	Name *string `json:"name,omitempty"`
}

GroupPatchRequest struct for GroupPatchRequest

func NewGroupPatchRequest

func NewGroupPatchRequest() *GroupPatchRequest

NewGroupPatchRequest instantiates a new GroupPatchRequest object This constructor will assign default values to properties that have it defined, 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 NewGroupPatchRequestWithDefaults

func NewGroupPatchRequestWithDefaults() *GroupPatchRequest

NewGroupPatchRequestWithDefaults instantiates a new GroupPatchRequest object This 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 (*GroupPatchRequest) GetName

func (o *GroupPatchRequest) GetName() string

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

func (*GroupPatchRequest) GetNameOk

func (o *GroupPatchRequest) 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 (*GroupPatchRequest) HasName

func (o *GroupPatchRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (GroupPatchRequest) MarshalJSON

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

func (*GroupPatchRequest) SetName

func (o *GroupPatchRequest) SetName(v string)

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

func (GroupPatchRequest) ToMap

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

type GroupPatchResponse

type GroupPatchResponse struct {
	Id     string           `json:"id"`
	Name   string           `json:"name"`
	Path   string           `json:"path"`
	Parent GroupPatchParent `json:"parent"`
	Type   string           `json:"type"`
}

GroupPatchResponse struct for GroupPatchResponse

func NewGroupPatchResponse

func NewGroupPatchResponse(
	id string,
	name string,
	path string,
	parent GroupPatchParent,
	type_ string,
) *GroupPatchResponse

NewGroupPatchResponse instantiates a new GroupPatchResponse object This constructor will assign default values to properties that have it defined, 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 NewGroupPatchResponseWithDefaults

func NewGroupPatchResponseWithDefaults() *GroupPatchResponse

NewGroupPatchResponseWithDefaults instantiates a new GroupPatchResponse object This 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 (*GroupPatchResponse) GetId

func (o *GroupPatchResponse) GetId() string

GetId returns the Id field value

func (*GroupPatchResponse) GetIdOk

func (o *GroupPatchResponse) GetIdOk() (*string, bool)

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

func (*GroupPatchResponse) GetName

func (o *GroupPatchResponse) GetName() string

GetName returns the Name field value

func (*GroupPatchResponse) GetNameOk

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

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

func (*GroupPatchResponse) GetParent

func (o *GroupPatchResponse) GetParent() GroupPatchParent

GetParent returns the Parent field value

func (*GroupPatchResponse) GetParentOk

func (o *GroupPatchResponse) GetParentOk() (*GroupPatchParent, bool)

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

func (*GroupPatchResponse) GetPath

func (o *GroupPatchResponse) GetPath() string

GetPath returns the Path field value

func (*GroupPatchResponse) GetPathOk

func (o *GroupPatchResponse) GetPathOk() (*string, bool)

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

func (*GroupPatchResponse) GetType

func (o *GroupPatchResponse) GetType() string

GetType returns the Type field value

func (*GroupPatchResponse) GetTypeOk

func (o *GroupPatchResponse) GetTypeOk() (*string, bool)

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

func (GroupPatchResponse) MarshalJSON

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

func (*GroupPatchResponse) SetId

func (o *GroupPatchResponse) SetId(v string)

SetId sets field value

func (*GroupPatchResponse) SetName

func (o *GroupPatchResponse) SetName(v string)

SetName sets field value

func (*GroupPatchResponse) SetParent

func (o *GroupPatchResponse) SetParent(v GroupPatchParent)

SetParent sets field value

func (*GroupPatchResponse) SetPath

func (o *GroupPatchResponse) SetPath(v string)

SetPath sets field value

func (*GroupPatchResponse) SetType

func (o *GroupPatchResponse) SetType(v string)

SetType sets field value

func (GroupPatchResponse) ToMap

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

func (*GroupPatchResponse) UnmarshalJSON

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

type GroupPostParent

type GroupPostParent struct {
	Id string `json:"id"`
}

GroupPostParent struct for GroupPostParent

func NewGroupPostParent

func NewGroupPostParent(id string) *GroupPostParent

NewGroupPostParent instantiates a new GroupPostParent object This constructor will assign default values to properties that have it defined, 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 NewGroupPostParentWithDefaults

func NewGroupPostParentWithDefaults() *GroupPostParent

NewGroupPostParentWithDefaults instantiates a new GroupPostParent object This 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 (*GroupPostParent) GetId

func (o *GroupPostParent) GetId() string

GetId returns the Id field value

func (*GroupPostParent) GetIdOk

func (o *GroupPostParent) GetIdOk() (*string, bool)

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

func (GroupPostParent) MarshalJSON

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

func (*GroupPostParent) SetId

func (o *GroupPostParent) SetId(v string)

SetId sets field value

func (GroupPostParent) ToMap

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

func (*GroupPostParent) UnmarshalJSON

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

type GroupPostRequest

type GroupPostRequest struct {
	ParentId NullableString `json:"parentId,omitempty"`
	Name     string         `json:"name"`
}

GroupPostRequest struct for GroupPostRequest

func NewGroupPostRequest

func NewGroupPostRequest(name string) *GroupPostRequest

NewGroupPostRequest instantiates a new GroupPostRequest object This constructor will assign default values to properties that have it defined, 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 NewGroupPostRequestWithDefaults

func NewGroupPostRequestWithDefaults() *GroupPostRequest

NewGroupPostRequestWithDefaults instantiates a new GroupPostRequest object This 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 (*GroupPostRequest) GetName

func (o *GroupPostRequest) GetName() string

GetName returns the Name field value

func (*GroupPostRequest) GetNameOk

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

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

func (*GroupPostRequest) GetParentId

func (o *GroupPostRequest) GetParentId() string

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

func (*GroupPostRequest) GetParentIdOk

func (o *GroupPostRequest) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId 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 (*GroupPostRequest) HasParentId

func (o *GroupPostRequest) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (GroupPostRequest) MarshalJSON

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

func (*GroupPostRequest) SetName

func (o *GroupPostRequest) SetName(v string)

SetName sets field value

func (*GroupPostRequest) SetParentId

func (o *GroupPostRequest) SetParentId(v string)

SetParentId gets a reference to the given NullableString and assigns it to the ParentId field.

func (*GroupPostRequest) SetParentIdNil

func (o *GroupPostRequest) SetParentIdNil()

SetParentIdNil sets the value for ParentId to be an explicit nil

func (GroupPostRequest) ToMap

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

func (*GroupPostRequest) UnmarshalJSON

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

func (*GroupPostRequest) UnsetParentId

func (o *GroupPostRequest) UnsetParentId()

UnsetParentId ensures that no value is present for ParentId, not even an explicit nil

type GroupPostResponse

type GroupPostResponse struct {
	Id     string          `json:"id"`
	Name   string          `json:"name"`
	Path   string          `json:"path"`
	Parent GroupPostParent `json:"parent"`
	Type   string          `json:"type"`
}

GroupPostResponse struct for GroupPostResponse

func NewGroupPostResponse

func NewGroupPostResponse(
	id string,
	name string,
	path string,
	parent GroupPostParent,
	type_ string,
) *GroupPostResponse

NewGroupPostResponse instantiates a new GroupPostResponse object This constructor will assign default values to properties that have it defined, 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 NewGroupPostResponseWithDefaults

func NewGroupPostResponseWithDefaults() *GroupPostResponse

NewGroupPostResponseWithDefaults instantiates a new GroupPostResponse object This 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 (*GroupPostResponse) GetId

func (o *GroupPostResponse) GetId() string

GetId returns the Id field value

func (*GroupPostResponse) GetIdOk

func (o *GroupPostResponse) GetIdOk() (*string, bool)

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

func (*GroupPostResponse) GetName

func (o *GroupPostResponse) GetName() string

GetName returns the Name field value

func (*GroupPostResponse) GetNameOk

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

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

func (*GroupPostResponse) GetParent

func (o *GroupPostResponse) GetParent() GroupPostParent

GetParent returns the Parent field value

func (*GroupPostResponse) GetParentOk

func (o *GroupPostResponse) GetParentOk() (*GroupPostParent, bool)

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

func (*GroupPostResponse) GetPath

func (o *GroupPostResponse) GetPath() string

GetPath returns the Path field value

func (*GroupPostResponse) GetPathOk

func (o *GroupPostResponse) GetPathOk() (*string, bool)

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

func (*GroupPostResponse) GetType

func (o *GroupPostResponse) GetType() string

GetType returns the Type field value

func (*GroupPostResponse) GetTypeOk

func (o *GroupPostResponse) GetTypeOk() (*string, bool)

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

func (GroupPostResponse) MarshalJSON

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

func (*GroupPostResponse) SetId

func (o *GroupPostResponse) SetId(v string)

SetId sets field value

func (*GroupPostResponse) SetName

func (o *GroupPostResponse) SetName(v string)

SetName sets field value

func (*GroupPostResponse) SetParent

func (o *GroupPostResponse) SetParent(v GroupPostParent)

SetParent sets field value

func (*GroupPostResponse) SetPath

func (o *GroupPostResponse) SetPath(v string)

SetPath sets field value

func (*GroupPostResponse) SetType

func (o *GroupPostResponse) SetType(v string)

SetType sets field value

func (GroupPostResponse) ToMap

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

func (*GroupPostResponse) UnmarshalJSON

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

type GroupsGetItem

type GroupsGetItem struct {
	Id     string                  `json:"id"`
	Name   string                  `json:"name"`
	Parent NullableGroupsGetParent `json:"parent"`
	Path   string                  `json:"path"`
	Type   string                  `json:"type"`
}

GroupsGetItem struct for GroupsGetItem

func NewGroupsGetItem

func NewGroupsGetItem(
	id string,
	name string,
	parent NullableGroupsGetParent,
	path string,
	type_ string,
) *GroupsGetItem

NewGroupsGetItem instantiates a new GroupsGetItem object This constructor will assign default values to properties that have it defined, 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 NewGroupsGetItemWithDefaults

func NewGroupsGetItemWithDefaults() *GroupsGetItem

NewGroupsGetItemWithDefaults instantiates a new GroupsGetItem object This 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 (*GroupsGetItem) GetId

func (o *GroupsGetItem) GetId() string

GetId returns the Id field value

func (*GroupsGetItem) GetIdOk

func (o *GroupsGetItem) GetIdOk() (*string, bool)

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

func (*GroupsGetItem) GetName

func (o *GroupsGetItem) GetName() string

GetName returns the Name field value

func (*GroupsGetItem) GetNameOk

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

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

func (*GroupsGetItem) GetParent

func (o *GroupsGetItem) GetParent() GroupsGetParent

GetParent returns the Parent field value If the value is explicit nil, the zero value for GroupsGetParent will be returned

func (*GroupsGetItem) GetParentOk

func (o *GroupsGetItem) GetParentOk() (*GroupsGetParent, bool)

GetParentOk returns a tuple with the Parent 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 (*GroupsGetItem) GetPath

func (o *GroupsGetItem) GetPath() string

GetPath returns the Path field value

func (*GroupsGetItem) GetPathOk

func (o *GroupsGetItem) GetPathOk() (*string, bool)

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

func (*GroupsGetItem) GetType

func (o *GroupsGetItem) GetType() string

GetType returns the Type field value

func (*GroupsGetItem) GetTypeOk

func (o *GroupsGetItem) GetTypeOk() (*string, bool)

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

func (GroupsGetItem) MarshalJSON

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

func (*GroupsGetItem) SetId

func (o *GroupsGetItem) SetId(v string)

SetId sets field value

func (*GroupsGetItem) SetName

func (o *GroupsGetItem) SetName(v string)

SetName sets field value

func (*GroupsGetItem) SetParent

func (o *GroupsGetItem) SetParent(v GroupsGetParent)

SetParent sets field value

func (*GroupsGetItem) SetPath

func (o *GroupsGetItem) SetPath(v string)

SetPath sets field value

func (*GroupsGetItem) SetType

func (o *GroupsGetItem) SetType(v string)

SetType sets field value

func (GroupsGetItem) ToMap

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

func (*GroupsGetItem) UnmarshalJSON

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

type GroupsGetParent

type GroupsGetParent struct {
	Id string `json:"id"`
}

GroupsGetParent struct for GroupsGetParent

func NewGroupsGetParent

func NewGroupsGetParent(id string) *GroupsGetParent

NewGroupsGetParent instantiates a new GroupsGetParent object This constructor will assign default values to properties that have it defined, 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 NewGroupsGetParentWithDefaults

func NewGroupsGetParentWithDefaults() *GroupsGetParent

NewGroupsGetParentWithDefaults instantiates a new GroupsGetParent object This 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 (*GroupsGetParent) GetId

func (o *GroupsGetParent) GetId() string

GetId returns the Id field value

func (*GroupsGetParent) GetIdOk

func (o *GroupsGetParent) GetIdOk() (*string, bool)

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

func (GroupsGetParent) MarshalJSON

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

func (*GroupsGetParent) SetId

func (o *GroupsGetParent) SetId(v string)

SetId sets field value

func (GroupsGetParent) ToMap

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

func (*GroupsGetParent) UnmarshalJSON

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

type GroupsGetResponse

type GroupsGetResponse struct {
	Items []GroupsGetItem `json:"items"`
	Count int32           `json:"count"`
	Next  NullableString  `json:"next"`
}

GroupsGetResponse struct for GroupsGetResponse

func NewGroupsGetResponse

func NewGroupsGetResponse(
	items []GroupsGetItem,
	count int32,
	next NullableString,
) *GroupsGetResponse

NewGroupsGetResponse instantiates a new GroupsGetResponse object This constructor will assign default values to properties that have it defined, 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 NewGroupsGetResponseWithDefaults

func NewGroupsGetResponseWithDefaults() *GroupsGetResponse

NewGroupsGetResponseWithDefaults instantiates a new GroupsGetResponse object This 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 (*GroupsGetResponse) GetCount

func (o *GroupsGetResponse) GetCount() int32

GetCount returns the Count field value

func (*GroupsGetResponse) GetCountOk

func (o *GroupsGetResponse) GetCountOk() (*int32, bool)

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

func (*GroupsGetResponse) GetItems

func (o *GroupsGetResponse) GetItems() []GroupsGetItem

GetItems returns the Items field value

func (*GroupsGetResponse) GetItemsOk

func (o *GroupsGetResponse) GetItemsOk() ([]GroupsGetItem, bool)

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

func (*GroupsGetResponse) GetNext

func (o *GroupsGetResponse) GetNext() string

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*GroupsGetResponse) GetNextOk

func (o *GroupsGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (GroupsGetResponse) MarshalJSON

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

func (*GroupsGetResponse) SetCount

func (o *GroupsGetResponse) SetCount(v int32)

SetCount sets field value

func (*GroupsGetResponse) SetItems

func (o *GroupsGetResponse) SetItems(v []GroupsGetItem)

SetItems sets field value

func (*GroupsGetResponse) SetNext

func (o *GroupsGetResponse) SetNext(v string)

SetNext sets field value

func (GroupsGetResponse) ToMap

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

func (*GroupsGetResponse) UnmarshalJSON

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

type IpVersion

type IpVersion string

IpVersion the model 'IpVersion'

const (
	IPVERSION_IPV4 IpVersion = "ipv4"
	IPVERSION_IPV6 IpVersion = "ipv6"
)

List of IpVersion

func NewIpVersionFromValue

func NewIpVersionFromValue(v string) (*IpVersion, error)

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

func (IpVersion) IsValid

func (v IpVersion) IsValid() bool

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

func (IpVersion) Ptr

func (v IpVersion) Ptr() *IpVersion

Ptr returns reference to IpVersion value

func (*IpVersion) UnmarshalJSON

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

type Issue

type Issue struct {
	Description string       `json:"description"`
	Subject     IssueSubject `json:"subject"`
	Source      string       `json:"source"`
}

Issue struct for Issue

func NewIssue

func NewIssue(description string, subject IssueSubject, source string) *Issue

NewIssue instantiates a new Issue object This constructor will assign default values to properties that have it defined, 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 NewIssueWithDefaults

func NewIssueWithDefaults() *Issue

NewIssueWithDefaults instantiates a new Issue object This 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 (*Issue) GetDescription

func (o *Issue) GetDescription() string

GetDescription returns the Description field value

func (*Issue) GetDescriptionOk

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

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

func (*Issue) GetSource

func (o *Issue) GetSource() string

GetSource returns the Source field value

func (*Issue) GetSourceOk

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

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

func (*Issue) GetSubject

func (o *Issue) GetSubject() IssueSubject

GetSubject returns the Subject field value

func (*Issue) GetSubjectOk

func (o *Issue) GetSubjectOk() (*IssueSubject, bool)

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

func (Issue) MarshalJSON

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

func (*Issue) SetDescription

func (o *Issue) SetDescription(v string)

SetDescription sets field value

func (*Issue) SetSource

func (o *Issue) SetSource(v string)

SetSource sets field value

func (*Issue) SetSubject

func (o *Issue) SetSubject(v IssueSubject)

SetSubject sets field value

func (Issue) ToMap

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

func (*Issue) UnmarshalJSON

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

type IssueSubject

type IssueSubject string

IssueSubject the model 'IssueSubject'

const (
	ISSUESUBJECT_FIELD           IssueSubject = "field"
	ISSUESUBJECT_HEADER          IssueSubject = "header"
	ISSUESUBJECT_QUERY_PARAMETER IssueSubject = "query.parameter"
)

List of IssueSubject

func NewIssueSubjectFromValue

func NewIssueSubjectFromValue(v string) (*IssueSubject, error)

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

func (IssueSubject) IsValid

func (v IssueSubject) IsValid() bool

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

func (IssueSubject) Ptr

func (v IssueSubject) Ptr() *IssueSubject

Ptr returns reference to IssueSubject value

func (*IssueSubject) UnmarshalJSON

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

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NetworkGroupAssignmentPostGroup

type NetworkGroupAssignmentPostGroup struct {
	Id string `json:"id"`
}

NetworkGroupAssignmentPostGroup struct for NetworkGroupAssignmentPostGroup

func NewNetworkGroupAssignmentPostGroup

func NewNetworkGroupAssignmentPostGroup(id string) *NetworkGroupAssignmentPostGroup

NewNetworkGroupAssignmentPostGroup instantiates a new NetworkGroupAssignmentPostGroup object This constructor will assign default values to properties that have it defined, 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 NewNetworkGroupAssignmentPostGroupWithDefaults

func NewNetworkGroupAssignmentPostGroupWithDefaults() *NetworkGroupAssignmentPostGroup

NewNetworkGroupAssignmentPostGroupWithDefaults instantiates a new NetworkGroupAssignmentPostGroup object This 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 (*NetworkGroupAssignmentPostGroup) GetId

GetId returns the Id field value

func (*NetworkGroupAssignmentPostGroup) GetIdOk

func (o *NetworkGroupAssignmentPostGroup) GetIdOk() (*string, bool)

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

func (NetworkGroupAssignmentPostGroup) MarshalJSON

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

func (*NetworkGroupAssignmentPostGroup) SetId

SetId sets field value

func (NetworkGroupAssignmentPostGroup) ToMap

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

func (*NetworkGroupAssignmentPostGroup) UnmarshalJSON

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

type NetworkGroupAssignmentPostNetwork

type NetworkGroupAssignmentPostNetwork struct {
	Id string `json:"id"`
}

NetworkGroupAssignmentPostNetwork struct for NetworkGroupAssignmentPostNetwork

func NewNetworkGroupAssignmentPostNetwork

func NewNetworkGroupAssignmentPostNetwork(id string) *NetworkGroupAssignmentPostNetwork

NewNetworkGroupAssignmentPostNetwork instantiates a new NetworkGroupAssignmentPostNetwork object This constructor will assign default values to properties that have it defined, 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 NewNetworkGroupAssignmentPostNetworkWithDefaults

func NewNetworkGroupAssignmentPostNetworkWithDefaults() *NetworkGroupAssignmentPostNetwork

NewNetworkGroupAssignmentPostNetworkWithDefaults instantiates a new NetworkGroupAssignmentPostNetwork object This 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 (*NetworkGroupAssignmentPostNetwork) GetId

GetId returns the Id field value

func (*NetworkGroupAssignmentPostNetwork) GetIdOk

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

func (NetworkGroupAssignmentPostNetwork) MarshalJSON

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

func (*NetworkGroupAssignmentPostNetwork) SetId

SetId sets field value

func (NetworkGroupAssignmentPostNetwork) ToMap

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

func (*NetworkGroupAssignmentPostNetwork) UnmarshalJSON

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

type NetworkGroupAssignmentPostRequest

type NetworkGroupAssignmentPostRequest struct {
	GroupId   string `json:"groupId"`
	NetworkId string `json:"networkId"`
}

NetworkGroupAssignmentPostRequest struct for NetworkGroupAssignmentPostRequest

func NewNetworkGroupAssignmentPostRequest

func NewNetworkGroupAssignmentPostRequest(
	groupId string,
	networkId string,
) *NetworkGroupAssignmentPostRequest

NewNetworkGroupAssignmentPostRequest instantiates a new NetworkGroupAssignmentPostRequest object This constructor will assign default values to properties that have it defined, 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 NewNetworkGroupAssignmentPostRequestWithDefaults

func NewNetworkGroupAssignmentPostRequestWithDefaults() *NetworkGroupAssignmentPostRequest

NewNetworkGroupAssignmentPostRequestWithDefaults instantiates a new NetworkGroupAssignmentPostRequest object This 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 (*NetworkGroupAssignmentPostRequest) GetGroupId

func (o *NetworkGroupAssignmentPostRequest) GetGroupId() string

GetGroupId returns the GroupId field value

func (*NetworkGroupAssignmentPostRequest) GetGroupIdOk

func (o *NetworkGroupAssignmentPostRequest) GetGroupIdOk() (*string, bool)

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

func (*NetworkGroupAssignmentPostRequest) GetNetworkId

func (o *NetworkGroupAssignmentPostRequest) GetNetworkId() string

GetNetworkId returns the NetworkId field value

func (*NetworkGroupAssignmentPostRequest) GetNetworkIdOk

func (o *NetworkGroupAssignmentPostRequest) GetNetworkIdOk() (*string, bool)

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

func (NetworkGroupAssignmentPostRequest) MarshalJSON

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

func (*NetworkGroupAssignmentPostRequest) SetGroupId

func (o *NetworkGroupAssignmentPostRequest) SetGroupId(v string)

SetGroupId sets field value

func (*NetworkGroupAssignmentPostRequest) SetNetworkId

func (o *NetworkGroupAssignmentPostRequest) SetNetworkId(v string)

SetNetworkId sets field value

func (NetworkGroupAssignmentPostRequest) ToMap

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

func (*NetworkGroupAssignmentPostRequest) UnmarshalJSON

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

type NetworkGroupAssignmentPostResponse

type NetworkGroupAssignmentPostResponse struct {
	Id      string                            `json:"id"`
	Group   NetworkGroupAssignmentPostGroup   `json:"group"`
	Network NetworkGroupAssignmentPostNetwork `json:"network"`
	Type    string                            `json:"type"`
}

NetworkGroupAssignmentPostResponse struct for NetworkGroupAssignmentPostResponse

func NewNetworkGroupAssignmentPostResponse

func NewNetworkGroupAssignmentPostResponse(
	id string,
	group NetworkGroupAssignmentPostGroup,
	network NetworkGroupAssignmentPostNetwork,
	type_ string,
) *NetworkGroupAssignmentPostResponse

NewNetworkGroupAssignmentPostResponse instantiates a new NetworkGroupAssignmentPostResponse object This constructor will assign default values to properties that have it defined, 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 NewNetworkGroupAssignmentPostResponseWithDefaults

func NewNetworkGroupAssignmentPostResponseWithDefaults() *NetworkGroupAssignmentPostResponse

NewNetworkGroupAssignmentPostResponseWithDefaults instantiates a new NetworkGroupAssignmentPostResponse object This 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 (*NetworkGroupAssignmentPostResponse) GetGroup

GetGroup returns the Group field value

func (*NetworkGroupAssignmentPostResponse) GetGroupOk

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

func (*NetworkGroupAssignmentPostResponse) GetId

GetId returns the Id field value

func (*NetworkGroupAssignmentPostResponse) GetIdOk

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

func (*NetworkGroupAssignmentPostResponse) GetNetwork

GetNetwork returns the Network field value

func (*NetworkGroupAssignmentPostResponse) GetNetworkOk

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

func (*NetworkGroupAssignmentPostResponse) GetType

GetType returns the Type field value

func (*NetworkGroupAssignmentPostResponse) GetTypeOk

func (o *NetworkGroupAssignmentPostResponse) GetTypeOk() (*string, bool)

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

func (NetworkGroupAssignmentPostResponse) MarshalJSON

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

func (*NetworkGroupAssignmentPostResponse) SetGroup

SetGroup sets field value

func (*NetworkGroupAssignmentPostResponse) SetId

SetId sets field value

func (*NetworkGroupAssignmentPostResponse) SetNetwork

SetNetwork sets field value

func (*NetworkGroupAssignmentPostResponse) SetType

SetType sets field value

func (NetworkGroupAssignmentPostResponse) ToMap

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

func (*NetworkGroupAssignmentPostResponse) UnmarshalJSON

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

type NetworkGroupAssignmentsGetGroup

type NetworkGroupAssignmentsGetGroup struct {
	Id string `json:"id"`
}

NetworkGroupAssignmentsGetGroup struct for NetworkGroupAssignmentsGetGroup

func NewNetworkGroupAssignmentsGetGroup

func NewNetworkGroupAssignmentsGetGroup(id string) *NetworkGroupAssignmentsGetGroup

NewNetworkGroupAssignmentsGetGroup instantiates a new NetworkGroupAssignmentsGetGroup object This constructor will assign default values to properties that have it defined, 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 NewNetworkGroupAssignmentsGetGroupWithDefaults

func NewNetworkGroupAssignmentsGetGroupWithDefaults() *NetworkGroupAssignmentsGetGroup

NewNetworkGroupAssignmentsGetGroupWithDefaults instantiates a new NetworkGroupAssignmentsGetGroup object This 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 (*NetworkGroupAssignmentsGetGroup) GetId

GetId returns the Id field value

func (*NetworkGroupAssignmentsGetGroup) GetIdOk

func (o *NetworkGroupAssignmentsGetGroup) GetIdOk() (*string, bool)

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

func (NetworkGroupAssignmentsGetGroup) MarshalJSON

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

func (*NetworkGroupAssignmentsGetGroup) SetId

SetId sets field value

func (NetworkGroupAssignmentsGetGroup) ToMap

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

func (*NetworkGroupAssignmentsGetGroup) UnmarshalJSON

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

type NetworkGroupAssignmentsGetItem

type NetworkGroupAssignmentsGetItem struct {
	Id      string                            `json:"id"`
	Group   NetworkGroupAssignmentsGetGroup   `json:"group"`
	Network NetworkGroupAssignmentsGetNetwork `json:"network"`
	Type    string                            `json:"type"`
}

NetworkGroupAssignmentsGetItem struct for NetworkGroupAssignmentsGetItem

func NewNetworkGroupAssignmentsGetItem

func NewNetworkGroupAssignmentsGetItem(
	id string,
	group NetworkGroupAssignmentsGetGroup,
	network NetworkGroupAssignmentsGetNetwork,
	type_ string,
) *NetworkGroupAssignmentsGetItem

NewNetworkGroupAssignmentsGetItem instantiates a new NetworkGroupAssignmentsGetItem object This constructor will assign default values to properties that have it defined, 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 NewNetworkGroupAssignmentsGetItemWithDefaults

func NewNetworkGroupAssignmentsGetItemWithDefaults() *NetworkGroupAssignmentsGetItem

NewNetworkGroupAssignmentsGetItemWithDefaults instantiates a new NetworkGroupAssignmentsGetItem object This 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 (*NetworkGroupAssignmentsGetItem) GetGroup

GetGroup returns the Group field value

func (*NetworkGroupAssignmentsGetItem) GetGroupOk

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

func (*NetworkGroupAssignmentsGetItem) GetId

GetId returns the Id field value

func (*NetworkGroupAssignmentsGetItem) GetIdOk

func (o *NetworkGroupAssignmentsGetItem) GetIdOk() (*string, bool)

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

func (*NetworkGroupAssignmentsGetItem) GetNetwork

GetNetwork returns the Network field value

func (*NetworkGroupAssignmentsGetItem) GetNetworkOk

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

func (*NetworkGroupAssignmentsGetItem) GetType

GetType returns the Type field value

func (*NetworkGroupAssignmentsGetItem) GetTypeOk

func (o *NetworkGroupAssignmentsGetItem) GetTypeOk() (*string, bool)

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

func (NetworkGroupAssignmentsGetItem) MarshalJSON

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

func (*NetworkGroupAssignmentsGetItem) SetGroup

SetGroup sets field value

func (*NetworkGroupAssignmentsGetItem) SetId

SetId sets field value

func (*NetworkGroupAssignmentsGetItem) SetNetwork

SetNetwork sets field value

func (*NetworkGroupAssignmentsGetItem) SetType

func (o *NetworkGroupAssignmentsGetItem) SetType(v string)

SetType sets field value

func (NetworkGroupAssignmentsGetItem) ToMap

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

func (*NetworkGroupAssignmentsGetItem) UnmarshalJSON

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

type NetworkGroupAssignmentsGetNetwork

type NetworkGroupAssignmentsGetNetwork struct {
	Id string `json:"id"`
}

NetworkGroupAssignmentsGetNetwork struct for NetworkGroupAssignmentsGetNetwork

func NewNetworkGroupAssignmentsGetNetwork

func NewNetworkGroupAssignmentsGetNetwork(id string) *NetworkGroupAssignmentsGetNetwork

NewNetworkGroupAssignmentsGetNetwork instantiates a new NetworkGroupAssignmentsGetNetwork object This constructor will assign default values to properties that have it defined, 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 NewNetworkGroupAssignmentsGetNetworkWithDefaults

func NewNetworkGroupAssignmentsGetNetworkWithDefaults() *NetworkGroupAssignmentsGetNetwork

NewNetworkGroupAssignmentsGetNetworkWithDefaults instantiates a new NetworkGroupAssignmentsGetNetwork object This 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 (*NetworkGroupAssignmentsGetNetwork) GetId

GetId returns the Id field value

func (*NetworkGroupAssignmentsGetNetwork) GetIdOk

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

func (NetworkGroupAssignmentsGetNetwork) MarshalJSON

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

func (*NetworkGroupAssignmentsGetNetwork) SetId

SetId sets field value

func (NetworkGroupAssignmentsGetNetwork) ToMap

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

func (*NetworkGroupAssignmentsGetNetwork) UnmarshalJSON

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

type NetworkGroupAssignmentsGetResponse

type NetworkGroupAssignmentsGetResponse struct {
	Items []NetworkGroupAssignmentsGetItem `json:"items"`
	Count int32                            `json:"count"`
	Next  NullableString                   `json:"next"`
}

NetworkGroupAssignmentsGetResponse struct for NetworkGroupAssignmentsGetResponse

func NewNetworkGroupAssignmentsGetResponse

func NewNetworkGroupAssignmentsGetResponse(
	items []NetworkGroupAssignmentsGetItem,
	count int32,
	next NullableString,
) *NetworkGroupAssignmentsGetResponse

NewNetworkGroupAssignmentsGetResponse instantiates a new NetworkGroupAssignmentsGetResponse object This constructor will assign default values to properties that have it defined, 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 NewNetworkGroupAssignmentsGetResponseWithDefaults

func NewNetworkGroupAssignmentsGetResponseWithDefaults() *NetworkGroupAssignmentsGetResponse

NewNetworkGroupAssignmentsGetResponseWithDefaults instantiates a new NetworkGroupAssignmentsGetResponse object This 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 (*NetworkGroupAssignmentsGetResponse) GetCount

GetCount returns the Count field value

func (*NetworkGroupAssignmentsGetResponse) GetCountOk

func (o *NetworkGroupAssignmentsGetResponse) GetCountOk() (*int32, bool)

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

func (*NetworkGroupAssignmentsGetResponse) GetItems

GetItems returns the Items field value

func (*NetworkGroupAssignmentsGetResponse) GetItemsOk

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

func (*NetworkGroupAssignmentsGetResponse) GetNext

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*NetworkGroupAssignmentsGetResponse) GetNextOk

func (o *NetworkGroupAssignmentsGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (NetworkGroupAssignmentsGetResponse) MarshalJSON

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

func (*NetworkGroupAssignmentsGetResponse) SetCount

SetCount sets field value

func (*NetworkGroupAssignmentsGetResponse) SetItems

SetItems sets field value

func (*NetworkGroupAssignmentsGetResponse) SetNext

SetNext sets field value

func (NetworkGroupAssignmentsGetResponse) ToMap

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

func (*NetworkGroupAssignmentsGetResponse) UnmarshalJSON

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

type NullableAgentGroupAssignmentPostAgent

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

func (NullableAgentGroupAssignmentPostAgent) Get

func (NullableAgentGroupAssignmentPostAgent) IsSet

func (NullableAgentGroupAssignmentPostAgent) MarshalJSON

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

func (*NullableAgentGroupAssignmentPostAgent) Set

func (*NullableAgentGroupAssignmentPostAgent) UnmarshalJSON

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

func (*NullableAgentGroupAssignmentPostAgent) Unset

type NullableAgentGroupAssignmentPostGroup

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

func (NullableAgentGroupAssignmentPostGroup) Get

func (NullableAgentGroupAssignmentPostGroup) IsSet

func (NullableAgentGroupAssignmentPostGroup) MarshalJSON

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

func (*NullableAgentGroupAssignmentPostGroup) Set

func (*NullableAgentGroupAssignmentPostGroup) UnmarshalJSON

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

func (*NullableAgentGroupAssignmentPostGroup) Unset

type NullableAgentGroupAssignmentPostRequest

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

func (NullableAgentGroupAssignmentPostRequest) Get

func (NullableAgentGroupAssignmentPostRequest) IsSet

func (NullableAgentGroupAssignmentPostRequest) MarshalJSON

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

func (*NullableAgentGroupAssignmentPostRequest) Set

func (*NullableAgentGroupAssignmentPostRequest) UnmarshalJSON

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

func (*NullableAgentGroupAssignmentPostRequest) Unset

type NullableAgentGroupAssignmentPostResponse

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

func (NullableAgentGroupAssignmentPostResponse) Get

func (NullableAgentGroupAssignmentPostResponse) IsSet

func (NullableAgentGroupAssignmentPostResponse) MarshalJSON

func (*NullableAgentGroupAssignmentPostResponse) Set

func (*NullableAgentGroupAssignmentPostResponse) UnmarshalJSON

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

func (*NullableAgentGroupAssignmentPostResponse) Unset

type NullableAgentGroupAssignmentsGetAgent

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

func (NullableAgentGroupAssignmentsGetAgent) Get

func (NullableAgentGroupAssignmentsGetAgent) IsSet

func (NullableAgentGroupAssignmentsGetAgent) MarshalJSON

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

func (*NullableAgentGroupAssignmentsGetAgent) Set

func (*NullableAgentGroupAssignmentsGetAgent) UnmarshalJSON

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

func (*NullableAgentGroupAssignmentsGetAgent) Unset

type NullableAgentGroupAssignmentsGetGroup

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

func (NullableAgentGroupAssignmentsGetGroup) Get

func (NullableAgentGroupAssignmentsGetGroup) IsSet

func (NullableAgentGroupAssignmentsGetGroup) MarshalJSON

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

func (*NullableAgentGroupAssignmentsGetGroup) Set

func (*NullableAgentGroupAssignmentsGetGroup) UnmarshalJSON

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

func (*NullableAgentGroupAssignmentsGetGroup) Unset

type NullableAgentGroupAssignmentsGetItem

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

func (NullableAgentGroupAssignmentsGetItem) Get

func (NullableAgentGroupAssignmentsGetItem) IsSet

func (NullableAgentGroupAssignmentsGetItem) MarshalJSON

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

func (*NullableAgentGroupAssignmentsGetItem) Set

func (*NullableAgentGroupAssignmentsGetItem) UnmarshalJSON

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

func (*NullableAgentGroupAssignmentsGetItem) Unset

type NullableAgentGroupAssignmentsGetResponse

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

func (NullableAgentGroupAssignmentsGetResponse) Get

func (NullableAgentGroupAssignmentsGetResponse) IsSet

func (NullableAgentGroupAssignmentsGetResponse) MarshalJSON

func (*NullableAgentGroupAssignmentsGetResponse) Set

func (*NullableAgentGroupAssignmentsGetResponse) UnmarshalJSON

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

func (*NullableAgentGroupAssignmentsGetResponse) Unset

type NullableAgentPatchRequest

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

func NewNullableAgentPatchRequest

func NewNullableAgentPatchRequest(val *AgentPatchRequest) *NullableAgentPatchRequest

func (NullableAgentPatchRequest) Get

func (NullableAgentPatchRequest) IsSet

func (v NullableAgentPatchRequest) IsSet() bool

func (NullableAgentPatchRequest) MarshalJSON

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

func (*NullableAgentPatchRequest) Set

func (*NullableAgentPatchRequest) UnmarshalJSON

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

func (*NullableAgentPatchRequest) Unset

func (v *NullableAgentPatchRequest) Unset()

type NullableAgentPatchResponse

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

func NewNullableAgentPatchResponse

func NewNullableAgentPatchResponse(val *AgentPatchResponse) *NullableAgentPatchResponse

func (NullableAgentPatchResponse) Get

func (NullableAgentPatchResponse) IsSet

func (v NullableAgentPatchResponse) IsSet() bool

func (NullableAgentPatchResponse) MarshalJSON

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

func (*NullableAgentPatchResponse) Set

func (*NullableAgentPatchResponse) UnmarshalJSON

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

func (*NullableAgentPatchResponse) Unset

func (v *NullableAgentPatchResponse) Unset()

type NullableAgentPcapMode

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

func NewNullableAgentPcapMode

func NewNullableAgentPcapMode(val *AgentPcapMode) *NullableAgentPcapMode

func (NullableAgentPcapMode) Get

func (NullableAgentPcapMode) IsSet

func (v NullableAgentPcapMode) IsSet() bool

func (NullableAgentPcapMode) MarshalJSON

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

func (*NullableAgentPcapMode) Set

func (v *NullableAgentPcapMode) Set(val *AgentPcapMode)

func (*NullableAgentPcapMode) UnmarshalJSON

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

func (*NullableAgentPcapMode) Unset

func (v *NullableAgentPcapMode) Unset()

type NullableAgentsGetItem

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

func NewNullableAgentsGetItem

func NewNullableAgentsGetItem(val *AgentsGetItem) *NullableAgentsGetItem

func (NullableAgentsGetItem) Get

func (NullableAgentsGetItem) IsSet

func (v NullableAgentsGetItem) IsSet() bool

func (NullableAgentsGetItem) MarshalJSON

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

func (*NullableAgentsGetItem) Set

func (v *NullableAgentsGetItem) Set(val *AgentsGetItem)

func (*NullableAgentsGetItem) UnmarshalJSON

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

func (*NullableAgentsGetItem) Unset

func (v *NullableAgentsGetItem) Unset()

type NullableAgentsGetResponse

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

func NewNullableAgentsGetResponse

func NewNullableAgentsGetResponse(val *AgentsGetResponse) *NullableAgentsGetResponse

func (NullableAgentsGetResponse) Get

func (NullableAgentsGetResponse) IsSet

func (v NullableAgentsGetResponse) IsSet() bool

func (NullableAgentsGetResponse) MarshalJSON

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

func (*NullableAgentsGetResponse) Set

func (*NullableAgentsGetResponse) UnmarshalJSON

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

func (*NullableAgentsGetResponse) Unset

func (v *NullableAgentsGetResponse) 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 NullableErrorDetail

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

func NewNullableErrorDetail

func NewNullableErrorDetail(val *ErrorDetail) *NullableErrorDetail

func (NullableErrorDetail) Get

func (NullableErrorDetail) IsSet

func (v NullableErrorDetail) IsSet() bool

func (NullableErrorDetail) MarshalJSON

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

func (*NullableErrorDetail) Set

func (v *NullableErrorDetail) Set(val *ErrorDetail)

func (*NullableErrorDetail) UnmarshalJSON

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

func (*NullableErrorDetail) Unset

func (v *NullableErrorDetail) Unset()

type NullableErrorResponse

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

func NewNullableErrorResponse

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get

func (NullableErrorResponse) IsSet

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON

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

func (*NullableErrorResponse) Set

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON

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

func (*NullableErrorResponse) Unset

func (v *NullableErrorResponse) 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 NullableGroupPatchParent

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

func NewNullableGroupPatchParent

func NewNullableGroupPatchParent(val *GroupPatchParent) *NullableGroupPatchParent

func (NullableGroupPatchParent) Get

func (NullableGroupPatchParent) IsSet

func (v NullableGroupPatchParent) IsSet() bool

func (NullableGroupPatchParent) MarshalJSON

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

func (*NullableGroupPatchParent) Set

func (*NullableGroupPatchParent) UnmarshalJSON

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

func (*NullableGroupPatchParent) Unset

func (v *NullableGroupPatchParent) Unset()

type NullableGroupPatchRequest

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

func NewNullableGroupPatchRequest

func NewNullableGroupPatchRequest(val *GroupPatchRequest) *NullableGroupPatchRequest

func (NullableGroupPatchRequest) Get

func (NullableGroupPatchRequest) IsSet

func (v NullableGroupPatchRequest) IsSet() bool

func (NullableGroupPatchRequest) MarshalJSON

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

func (*NullableGroupPatchRequest) Set

func (*NullableGroupPatchRequest) UnmarshalJSON

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

func (*NullableGroupPatchRequest) Unset

func (v *NullableGroupPatchRequest) Unset()

type NullableGroupPatchResponse

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

func NewNullableGroupPatchResponse

func NewNullableGroupPatchResponse(val *GroupPatchResponse) *NullableGroupPatchResponse

func (NullableGroupPatchResponse) Get

func (NullableGroupPatchResponse) IsSet

func (v NullableGroupPatchResponse) IsSet() bool

func (NullableGroupPatchResponse) MarshalJSON

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

func (*NullableGroupPatchResponse) Set

func (*NullableGroupPatchResponse) UnmarshalJSON

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

func (*NullableGroupPatchResponse) Unset

func (v *NullableGroupPatchResponse) Unset()

type NullableGroupPostParent

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

func NewNullableGroupPostParent

func NewNullableGroupPostParent(val *GroupPostParent) *NullableGroupPostParent

func (NullableGroupPostParent) Get

func (NullableGroupPostParent) IsSet

func (v NullableGroupPostParent) IsSet() bool

func (NullableGroupPostParent) MarshalJSON

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

func (*NullableGroupPostParent) Set

func (*NullableGroupPostParent) UnmarshalJSON

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

func (*NullableGroupPostParent) Unset

func (v *NullableGroupPostParent) Unset()

type NullableGroupPostRequest

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

func NewNullableGroupPostRequest

func NewNullableGroupPostRequest(val *GroupPostRequest) *NullableGroupPostRequest

func (NullableGroupPostRequest) Get

func (NullableGroupPostRequest) IsSet

func (v NullableGroupPostRequest) IsSet() bool

func (NullableGroupPostRequest) MarshalJSON

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

func (*NullableGroupPostRequest) Set

func (*NullableGroupPostRequest) UnmarshalJSON

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

func (*NullableGroupPostRequest) Unset

func (v *NullableGroupPostRequest) Unset()

type NullableGroupPostResponse

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

func NewNullableGroupPostResponse

func NewNullableGroupPostResponse(val *GroupPostResponse) *NullableGroupPostResponse

func (NullableGroupPostResponse) Get

func (NullableGroupPostResponse) IsSet

func (v NullableGroupPostResponse) IsSet() bool

func (NullableGroupPostResponse) MarshalJSON

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

func (*NullableGroupPostResponse) Set

func (*NullableGroupPostResponse) UnmarshalJSON

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

func (*NullableGroupPostResponse) Unset

func (v *NullableGroupPostResponse) Unset()

type NullableGroupsGetItem

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

func NewNullableGroupsGetItem

func NewNullableGroupsGetItem(val *GroupsGetItem) *NullableGroupsGetItem

func (NullableGroupsGetItem) Get

func (NullableGroupsGetItem) IsSet

func (v NullableGroupsGetItem) IsSet() bool

func (NullableGroupsGetItem) MarshalJSON

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

func (*NullableGroupsGetItem) Set

func (v *NullableGroupsGetItem) Set(val *GroupsGetItem)

func (*NullableGroupsGetItem) UnmarshalJSON

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

func (*NullableGroupsGetItem) Unset

func (v *NullableGroupsGetItem) Unset()

type NullableGroupsGetParent

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

func NewNullableGroupsGetParent

func NewNullableGroupsGetParent(val *GroupsGetParent) *NullableGroupsGetParent

func (NullableGroupsGetParent) Get

func (NullableGroupsGetParent) IsSet

func (v NullableGroupsGetParent) IsSet() bool

func (NullableGroupsGetParent) MarshalJSON

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

func (*NullableGroupsGetParent) Set

func (*NullableGroupsGetParent) UnmarshalJSON

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

func (*NullableGroupsGetParent) Unset

func (v *NullableGroupsGetParent) Unset()

type NullableGroupsGetResponse

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

func NewNullableGroupsGetResponse

func NewNullableGroupsGetResponse(val *GroupsGetResponse) *NullableGroupsGetResponse

func (NullableGroupsGetResponse) Get

func (NullableGroupsGetResponse) IsSet

func (v NullableGroupsGetResponse) IsSet() bool

func (NullableGroupsGetResponse) MarshalJSON

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

func (*NullableGroupsGetResponse) Set

func (*NullableGroupsGetResponse) UnmarshalJSON

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

func (*NullableGroupsGetResponse) Unset

func (v *NullableGroupsGetResponse) 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 NullableIpVersion

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

func NewNullableIpVersion

func NewNullableIpVersion(val *IpVersion) *NullableIpVersion

func (NullableIpVersion) Get

func (v NullableIpVersion) Get() *IpVersion

func (NullableIpVersion) IsSet

func (v NullableIpVersion) IsSet() bool

func (NullableIpVersion) MarshalJSON

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

func (*NullableIpVersion) Set

func (v *NullableIpVersion) Set(val *IpVersion)

func (*NullableIpVersion) UnmarshalJSON

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

func (*NullableIpVersion) Unset

func (v *NullableIpVersion) Unset()

type NullableIssue

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

func NewNullableIssue

func NewNullableIssue(val *Issue) *NullableIssue

func (NullableIssue) Get

func (v NullableIssue) Get() *Issue

func (NullableIssue) IsSet

func (v NullableIssue) IsSet() bool

func (NullableIssue) MarshalJSON

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

func (*NullableIssue) Set

func (v *NullableIssue) Set(val *Issue)

func (*NullableIssue) UnmarshalJSON

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

func (*NullableIssue) Unset

func (v *NullableIssue) Unset()

type NullableIssueSubject

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

func NewNullableIssueSubject

func NewNullableIssueSubject(val *IssueSubject) *NullableIssueSubject

func (NullableIssueSubject) Get

func (NullableIssueSubject) IsSet

func (v NullableIssueSubject) IsSet() bool

func (NullableIssueSubject) MarshalJSON

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

func (*NullableIssueSubject) Set

func (v *NullableIssueSubject) Set(val *IssueSubject)

func (*NullableIssueSubject) UnmarshalJSON

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

func (*NullableIssueSubject) Unset

func (v *NullableIssueSubject) Unset()

type NullableNetworkGroupAssignmentPostGroup

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

func (NullableNetworkGroupAssignmentPostGroup) Get

func (NullableNetworkGroupAssignmentPostGroup) IsSet

func (NullableNetworkGroupAssignmentPostGroup) MarshalJSON

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

func (*NullableNetworkGroupAssignmentPostGroup) Set

func (*NullableNetworkGroupAssignmentPostGroup) UnmarshalJSON

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

func (*NullableNetworkGroupAssignmentPostGroup) Unset

type NullableNetworkGroupAssignmentPostNetwork

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

func (NullableNetworkGroupAssignmentPostNetwork) Get

func (NullableNetworkGroupAssignmentPostNetwork) IsSet

func (NullableNetworkGroupAssignmentPostNetwork) MarshalJSON

func (*NullableNetworkGroupAssignmentPostNetwork) Set

func (*NullableNetworkGroupAssignmentPostNetwork) UnmarshalJSON

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

func (*NullableNetworkGroupAssignmentPostNetwork) Unset

type NullableNetworkGroupAssignmentPostRequest

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

func (NullableNetworkGroupAssignmentPostRequest) Get

func (NullableNetworkGroupAssignmentPostRequest) IsSet

func (NullableNetworkGroupAssignmentPostRequest) MarshalJSON

func (*NullableNetworkGroupAssignmentPostRequest) Set

func (*NullableNetworkGroupAssignmentPostRequest) UnmarshalJSON

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

func (*NullableNetworkGroupAssignmentPostRequest) Unset

type NullableNetworkGroupAssignmentPostResponse

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

func (NullableNetworkGroupAssignmentPostResponse) Get

func (NullableNetworkGroupAssignmentPostResponse) IsSet

func (NullableNetworkGroupAssignmentPostResponse) MarshalJSON

func (*NullableNetworkGroupAssignmentPostResponse) Set

func (*NullableNetworkGroupAssignmentPostResponse) UnmarshalJSON

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

func (*NullableNetworkGroupAssignmentPostResponse) Unset

type NullableNetworkGroupAssignmentsGetGroup

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

func (NullableNetworkGroupAssignmentsGetGroup) Get

func (NullableNetworkGroupAssignmentsGetGroup) IsSet

func (NullableNetworkGroupAssignmentsGetGroup) MarshalJSON

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

func (*NullableNetworkGroupAssignmentsGetGroup) Set

func (*NullableNetworkGroupAssignmentsGetGroup) UnmarshalJSON

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

func (*NullableNetworkGroupAssignmentsGetGroup) Unset

type NullableNetworkGroupAssignmentsGetItem

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

func (NullableNetworkGroupAssignmentsGetItem) Get

func (NullableNetworkGroupAssignmentsGetItem) IsSet

func (NullableNetworkGroupAssignmentsGetItem) MarshalJSON

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

func (*NullableNetworkGroupAssignmentsGetItem) Set

func (*NullableNetworkGroupAssignmentsGetItem) UnmarshalJSON

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

func (*NullableNetworkGroupAssignmentsGetItem) Unset

type NullableNetworkGroupAssignmentsGetNetwork

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

func (NullableNetworkGroupAssignmentsGetNetwork) Get

func (NullableNetworkGroupAssignmentsGetNetwork) IsSet

func (NullableNetworkGroupAssignmentsGetNetwork) MarshalJSON

func (*NullableNetworkGroupAssignmentsGetNetwork) Set

func (*NullableNetworkGroupAssignmentsGetNetwork) UnmarshalJSON

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

func (*NullableNetworkGroupAssignmentsGetNetwork) Unset

type NullableNetworkGroupAssignmentsGetResponse

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

func (NullableNetworkGroupAssignmentsGetResponse) Get

func (NullableNetworkGroupAssignmentsGetResponse) IsSet

func (NullableNetworkGroupAssignmentsGetResponse) MarshalJSON

func (*NullableNetworkGroupAssignmentsGetResponse) Set

func (*NullableNetworkGroupAssignmentsGetResponse) UnmarshalJSON

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

func (*NullableNetworkGroupAssignmentsGetResponse) Unset

type NullableSensorGroupAssignmentPostGroup

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

func (NullableSensorGroupAssignmentPostGroup) Get

func (NullableSensorGroupAssignmentPostGroup) IsSet

func (NullableSensorGroupAssignmentPostGroup) MarshalJSON

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

func (*NullableSensorGroupAssignmentPostGroup) Set

func (*NullableSensorGroupAssignmentPostGroup) UnmarshalJSON

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

func (*NullableSensorGroupAssignmentPostGroup) Unset

type NullableSensorGroupAssignmentPostRequest

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

func (NullableSensorGroupAssignmentPostRequest) Get

func (NullableSensorGroupAssignmentPostRequest) IsSet

func (NullableSensorGroupAssignmentPostRequest) MarshalJSON

func (*NullableSensorGroupAssignmentPostRequest) Set

func (*NullableSensorGroupAssignmentPostRequest) UnmarshalJSON

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

func (*NullableSensorGroupAssignmentPostRequest) Unset

type NullableSensorGroupAssignmentPostResponse

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

func (NullableSensorGroupAssignmentPostResponse) Get

func (NullableSensorGroupAssignmentPostResponse) IsSet

func (NullableSensorGroupAssignmentPostResponse) MarshalJSON

func (*NullableSensorGroupAssignmentPostResponse) Set

func (*NullableSensorGroupAssignmentPostResponse) UnmarshalJSON

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

func (*NullableSensorGroupAssignmentPostResponse) Unset

type NullableSensorGroupAssignmentPostSensor

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

func (NullableSensorGroupAssignmentPostSensor) Get

func (NullableSensorGroupAssignmentPostSensor) IsSet

func (NullableSensorGroupAssignmentPostSensor) MarshalJSON

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

func (*NullableSensorGroupAssignmentPostSensor) Set

func (*NullableSensorGroupAssignmentPostSensor) UnmarshalJSON

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

func (*NullableSensorGroupAssignmentPostSensor) Unset

type NullableSensorGroupAssignmentsGetGroup

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

func (NullableSensorGroupAssignmentsGetGroup) Get

func (NullableSensorGroupAssignmentsGetGroup) IsSet

func (NullableSensorGroupAssignmentsGetGroup) MarshalJSON

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

func (*NullableSensorGroupAssignmentsGetGroup) Set

func (*NullableSensorGroupAssignmentsGetGroup) UnmarshalJSON

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

func (*NullableSensorGroupAssignmentsGetGroup) Unset

type NullableSensorGroupAssignmentsGetItem

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

func (NullableSensorGroupAssignmentsGetItem) Get

func (NullableSensorGroupAssignmentsGetItem) IsSet

func (NullableSensorGroupAssignmentsGetItem) MarshalJSON

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

func (*NullableSensorGroupAssignmentsGetItem) Set

func (*NullableSensorGroupAssignmentsGetItem) UnmarshalJSON

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

func (*NullableSensorGroupAssignmentsGetItem) Unset

type NullableSensorGroupAssignmentsGetResponse

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

func (NullableSensorGroupAssignmentsGetResponse) Get

func (NullableSensorGroupAssignmentsGetResponse) IsSet

func (NullableSensorGroupAssignmentsGetResponse) MarshalJSON

func (*NullableSensorGroupAssignmentsGetResponse) Set

func (*NullableSensorGroupAssignmentsGetResponse) UnmarshalJSON

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

func (*NullableSensorGroupAssignmentsGetResponse) Unset

type NullableSensorGroupAssignmentsGetSensor

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

func (NullableSensorGroupAssignmentsGetSensor) Get

func (NullableSensorGroupAssignmentsGetSensor) IsSet

func (NullableSensorGroupAssignmentsGetSensor) MarshalJSON

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

func (*NullableSensorGroupAssignmentsGetSensor) Set

func (*NullableSensorGroupAssignmentsGetSensor) UnmarshalJSON

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

func (*NullableSensorGroupAssignmentsGetSensor) Unset

type NullableSensorPatchRequest

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

func NewNullableSensorPatchRequest

func NewNullableSensorPatchRequest(val *SensorPatchRequest) *NullableSensorPatchRequest

func (NullableSensorPatchRequest) Get

func (NullableSensorPatchRequest) IsSet

func (v NullableSensorPatchRequest) IsSet() bool

func (NullableSensorPatchRequest) MarshalJSON

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

func (*NullableSensorPatchRequest) Set

func (*NullableSensorPatchRequest) UnmarshalJSON

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

func (*NullableSensorPatchRequest) Unset

func (v *NullableSensorPatchRequest) Unset()

type NullableSensorPatchResponse

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

func NewNullableSensorPatchResponse

func NewNullableSensorPatchResponse(val *SensorPatchResponse) *NullableSensorPatchResponse

func (NullableSensorPatchResponse) Get

func (NullableSensorPatchResponse) IsSet

func (NullableSensorPatchResponse) MarshalJSON

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

func (*NullableSensorPatchResponse) Set

func (*NullableSensorPatchResponse) UnmarshalJSON

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

func (*NullableSensorPatchResponse) Unset

func (v *NullableSensorPatchResponse) Unset()

type NullableSensorPcapMode

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

func NewNullableSensorPcapMode

func NewNullableSensorPcapMode(val *SensorPcapMode) *NullableSensorPcapMode

func (NullableSensorPcapMode) Get

func (NullableSensorPcapMode) IsSet

func (v NullableSensorPcapMode) IsSet() bool

func (NullableSensorPcapMode) MarshalJSON

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

func (*NullableSensorPcapMode) Set

func (*NullableSensorPcapMode) UnmarshalJSON

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

func (*NullableSensorPcapMode) Unset

func (v *NullableSensorPcapMode) Unset()

type NullableSensorsGetItem

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

func NewNullableSensorsGetItem

func NewNullableSensorsGetItem(val *SensorsGetItem) *NullableSensorsGetItem

func (NullableSensorsGetItem) Get

func (NullableSensorsGetItem) IsSet

func (v NullableSensorsGetItem) IsSet() bool

func (NullableSensorsGetItem) MarshalJSON

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

func (*NullableSensorsGetItem) Set

func (*NullableSensorsGetItem) UnmarshalJSON

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

func (*NullableSensorsGetItem) Unset

func (v *NullableSensorsGetItem) Unset()

type NullableSensorsGetResponse

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

func NewNullableSensorsGetResponse

func NewNullableSensorsGetResponse(val *SensorsGetResponse) *NullableSensorsGetResponse

func (NullableSensorsGetResponse) Get

func (NullableSensorsGetResponse) IsSet

func (v NullableSensorsGetResponse) IsSet() bool

func (NullableSensorsGetResponse) MarshalJSON

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

func (*NullableSensorsGetResponse) Set

func (*NullableSensorsGetResponse) UnmarshalJSON

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

func (*NullableSensorsGetResponse) Unset

func (v *NullableSensorsGetResponse) Unset()

type NullableServiceTestGroupAssignmentPostGroup

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

func (NullableServiceTestGroupAssignmentPostGroup) Get

func (NullableServiceTestGroupAssignmentPostGroup) IsSet

func (NullableServiceTestGroupAssignmentPostGroup) MarshalJSON

func (*NullableServiceTestGroupAssignmentPostGroup) Set

func (*NullableServiceTestGroupAssignmentPostGroup) UnmarshalJSON

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

func (*NullableServiceTestGroupAssignmentPostGroup) Unset

type NullableServiceTestGroupAssignmentPostRequest

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

func (NullableServiceTestGroupAssignmentPostRequest) Get

func (NullableServiceTestGroupAssignmentPostRequest) IsSet

func (NullableServiceTestGroupAssignmentPostRequest) MarshalJSON

func (*NullableServiceTestGroupAssignmentPostRequest) Set

func (*NullableServiceTestGroupAssignmentPostRequest) UnmarshalJSON

func (*NullableServiceTestGroupAssignmentPostRequest) Unset

type NullableServiceTestGroupAssignmentPostResponse

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

func (NullableServiceTestGroupAssignmentPostResponse) Get

func (NullableServiceTestGroupAssignmentPostResponse) IsSet

func (NullableServiceTestGroupAssignmentPostResponse) MarshalJSON

func (*NullableServiceTestGroupAssignmentPostResponse) Set

func (*NullableServiceTestGroupAssignmentPostResponse) UnmarshalJSON

func (*NullableServiceTestGroupAssignmentPostResponse) Unset

type NullableServiceTestGroupAssignmentPostServiceTest

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

func (NullableServiceTestGroupAssignmentPostServiceTest) Get

func (NullableServiceTestGroupAssignmentPostServiceTest) IsSet

func (NullableServiceTestGroupAssignmentPostServiceTest) MarshalJSON

func (*NullableServiceTestGroupAssignmentPostServiceTest) Set

func (*NullableServiceTestGroupAssignmentPostServiceTest) UnmarshalJSON

func (*NullableServiceTestGroupAssignmentPostServiceTest) Unset

type NullableServiceTestGroupAssignmentsGetGroup

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

func (NullableServiceTestGroupAssignmentsGetGroup) Get

func (NullableServiceTestGroupAssignmentsGetGroup) IsSet

func (NullableServiceTestGroupAssignmentsGetGroup) MarshalJSON

func (*NullableServiceTestGroupAssignmentsGetGroup) Set

func (*NullableServiceTestGroupAssignmentsGetGroup) UnmarshalJSON

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

func (*NullableServiceTestGroupAssignmentsGetGroup) Unset

type NullableServiceTestGroupAssignmentsGetItem

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

func (NullableServiceTestGroupAssignmentsGetItem) Get

func (NullableServiceTestGroupAssignmentsGetItem) IsSet

func (NullableServiceTestGroupAssignmentsGetItem) MarshalJSON

func (*NullableServiceTestGroupAssignmentsGetItem) Set

func (*NullableServiceTestGroupAssignmentsGetItem) UnmarshalJSON

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

func (*NullableServiceTestGroupAssignmentsGetItem) Unset

type NullableServiceTestGroupAssignmentsGetResponse

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

func (NullableServiceTestGroupAssignmentsGetResponse) Get

func (NullableServiceTestGroupAssignmentsGetResponse) IsSet

func (NullableServiceTestGroupAssignmentsGetResponse) MarshalJSON

func (*NullableServiceTestGroupAssignmentsGetResponse) Set

func (*NullableServiceTestGroupAssignmentsGetResponse) UnmarshalJSON

func (*NullableServiceTestGroupAssignmentsGetResponse) Unset

type NullableServiceTestGroupAssignmentsGetServiceTest

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

func (NullableServiceTestGroupAssignmentsGetServiceTest) Get

func (NullableServiceTestGroupAssignmentsGetServiceTest) IsSet

func (NullableServiceTestGroupAssignmentsGetServiceTest) MarshalJSON

func (*NullableServiceTestGroupAssignmentsGetServiceTest) Set

func (*NullableServiceTestGroupAssignmentsGetServiceTest) UnmarshalJSON

func (*NullableServiceTestGroupAssignmentsGetServiceTest) Unset

type NullableServiceTestsGetItem

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

func NewNullableServiceTestsGetItem

func NewNullableServiceTestsGetItem(val *ServiceTestsGetItem) *NullableServiceTestsGetItem

func (NullableServiceTestsGetItem) Get

func (NullableServiceTestsGetItem) IsSet

func (NullableServiceTestsGetItem) MarshalJSON

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

func (*NullableServiceTestsGetItem) Set

func (*NullableServiceTestsGetItem) UnmarshalJSON

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

func (*NullableServiceTestsGetItem) Unset

func (v *NullableServiceTestsGetItem) Unset()

type NullableServiceTestsGetResponse

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

func NewNullableServiceTestsGetResponse

func NewNullableServiceTestsGetResponse(
	val *ServiceTestsGetResponse,
) *NullableServiceTestsGetResponse

func (NullableServiceTestsGetResponse) Get

func (NullableServiceTestsGetResponse) IsSet

func (NullableServiceTestsGetResponse) MarshalJSON

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

func (*NullableServiceTestsGetResponse) Set

func (*NullableServiceTestsGetResponse) UnmarshalJSON

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

func (*NullableServiceTestsGetResponse) Unset

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableWiredNetworksGetItem

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

func NewNullableWiredNetworksGetItem

func NewNullableWiredNetworksGetItem(val *WiredNetworksGetItem) *NullableWiredNetworksGetItem

func (NullableWiredNetworksGetItem) Get

func (NullableWiredNetworksGetItem) IsSet

func (NullableWiredNetworksGetItem) MarshalJSON

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

func (*NullableWiredNetworksGetItem) Set

func (*NullableWiredNetworksGetItem) UnmarshalJSON

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

func (*NullableWiredNetworksGetItem) Unset

func (v *NullableWiredNetworksGetItem) Unset()

type NullableWiredNetworksGetResponse

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

func (NullableWiredNetworksGetResponse) Get

func (NullableWiredNetworksGetResponse) IsSet

func (NullableWiredNetworksGetResponse) MarshalJSON

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

func (*NullableWiredNetworksGetResponse) Set

func (*NullableWiredNetworksGetResponse) UnmarshalJSON

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

func (*NullableWiredNetworksGetResponse) Unset

type NullableWirelessNetworksGetItem

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

func NewNullableWirelessNetworksGetItem

func NewNullableWirelessNetworksGetItem(
	val *WirelessNetworksGetItem,
) *NullableWirelessNetworksGetItem

func (NullableWirelessNetworksGetItem) Get

func (NullableWirelessNetworksGetItem) IsSet

func (NullableWirelessNetworksGetItem) MarshalJSON

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

func (*NullableWirelessNetworksGetItem) Set

func (*NullableWirelessNetworksGetItem) UnmarshalJSON

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

func (*NullableWirelessNetworksGetItem) Unset

type NullableWirelessNetworksGetResponse

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

func (NullableWirelessNetworksGetResponse) Get

func (NullableWirelessNetworksGetResponse) IsSet

func (NullableWirelessNetworksGetResponse) MarshalJSON

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

func (*NullableWirelessNetworksGetResponse) Set

func (*NullableWirelessNetworksGetResponse) UnmarshalJSON

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

func (*NullableWirelessNetworksGetResponse) Unset

type SensorGroupAssignmentPostGroup

type SensorGroupAssignmentPostGroup struct {
	Id string `json:"id"`
}

SensorGroupAssignmentPostGroup struct for SensorGroupAssignmentPostGroup

func NewSensorGroupAssignmentPostGroup

func NewSensorGroupAssignmentPostGroup(id string) *SensorGroupAssignmentPostGroup

NewSensorGroupAssignmentPostGroup instantiates a new SensorGroupAssignmentPostGroup object This constructor will assign default values to properties that have it defined, 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 NewSensorGroupAssignmentPostGroupWithDefaults

func NewSensorGroupAssignmentPostGroupWithDefaults() *SensorGroupAssignmentPostGroup

NewSensorGroupAssignmentPostGroupWithDefaults instantiates a new SensorGroupAssignmentPostGroup object This 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 (*SensorGroupAssignmentPostGroup) GetId

GetId returns the Id field value

func (*SensorGroupAssignmentPostGroup) GetIdOk

func (o *SensorGroupAssignmentPostGroup) GetIdOk() (*string, bool)

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

func (SensorGroupAssignmentPostGroup) MarshalJSON

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

func (*SensorGroupAssignmentPostGroup) SetId

SetId sets field value

func (SensorGroupAssignmentPostGroup) ToMap

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

func (*SensorGroupAssignmentPostGroup) UnmarshalJSON

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

type SensorGroupAssignmentPostRequest

type SensorGroupAssignmentPostRequest struct {
	GroupId  string `json:"groupId"`
	SensorId string `json:"sensorId"`
}

SensorGroupAssignmentPostRequest struct for SensorGroupAssignmentPostRequest

func NewSensorGroupAssignmentPostRequest

func NewSensorGroupAssignmentPostRequest(
	groupId string,
	sensorId string,
) *SensorGroupAssignmentPostRequest

NewSensorGroupAssignmentPostRequest instantiates a new SensorGroupAssignmentPostRequest object This constructor will assign default values to properties that have it defined, 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 NewSensorGroupAssignmentPostRequestWithDefaults

func NewSensorGroupAssignmentPostRequestWithDefaults() *SensorGroupAssignmentPostRequest

NewSensorGroupAssignmentPostRequestWithDefaults instantiates a new SensorGroupAssignmentPostRequest object This 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 (*SensorGroupAssignmentPostRequest) GetGroupId

func (o *SensorGroupAssignmentPostRequest) GetGroupId() string

GetGroupId returns the GroupId field value

func (*SensorGroupAssignmentPostRequest) GetGroupIdOk

func (o *SensorGroupAssignmentPostRequest) GetGroupIdOk() (*string, bool)

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

func (*SensorGroupAssignmentPostRequest) GetSensorId

func (o *SensorGroupAssignmentPostRequest) GetSensorId() string

GetSensorId returns the SensorId field value

func (*SensorGroupAssignmentPostRequest) GetSensorIdOk

func (o *SensorGroupAssignmentPostRequest) GetSensorIdOk() (*string, bool)

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

func (SensorGroupAssignmentPostRequest) MarshalJSON

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

func (*SensorGroupAssignmentPostRequest) SetGroupId

func (o *SensorGroupAssignmentPostRequest) SetGroupId(v string)

SetGroupId sets field value

func (*SensorGroupAssignmentPostRequest) SetSensorId

func (o *SensorGroupAssignmentPostRequest) SetSensorId(v string)

SetSensorId sets field value

func (SensorGroupAssignmentPostRequest) ToMap

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

func (*SensorGroupAssignmentPostRequest) UnmarshalJSON

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

type SensorGroupAssignmentPostResponse

type SensorGroupAssignmentPostResponse struct {
	Id     string                          `json:"id"`
	Group  SensorGroupAssignmentPostGroup  `json:"group"`
	Sensor SensorGroupAssignmentPostSensor `json:"sensor"`
	Type   string                          `json:"type"`
}

SensorGroupAssignmentPostResponse struct for SensorGroupAssignmentPostResponse

func NewSensorGroupAssignmentPostResponse

func NewSensorGroupAssignmentPostResponse(
	id string,
	group SensorGroupAssignmentPostGroup,
	sensor SensorGroupAssignmentPostSensor,
	type_ string,
) *SensorGroupAssignmentPostResponse

NewSensorGroupAssignmentPostResponse instantiates a new SensorGroupAssignmentPostResponse object This constructor will assign default values to properties that have it defined, 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 NewSensorGroupAssignmentPostResponseWithDefaults

func NewSensorGroupAssignmentPostResponseWithDefaults() *SensorGroupAssignmentPostResponse

NewSensorGroupAssignmentPostResponseWithDefaults instantiates a new SensorGroupAssignmentPostResponse object This 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 (*SensorGroupAssignmentPostResponse) GetGroup

GetGroup returns the Group field value

func (*SensorGroupAssignmentPostResponse) GetGroupOk

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

func (*SensorGroupAssignmentPostResponse) GetId

GetId returns the Id field value

func (*SensorGroupAssignmentPostResponse) GetIdOk

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

func (*SensorGroupAssignmentPostResponse) GetSensor

GetSensor returns the Sensor field value

func (*SensorGroupAssignmentPostResponse) GetSensorOk

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

func (*SensorGroupAssignmentPostResponse) GetType

GetType returns the Type field value

func (*SensorGroupAssignmentPostResponse) GetTypeOk

func (o *SensorGroupAssignmentPostResponse) GetTypeOk() (*string, bool)

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

func (SensorGroupAssignmentPostResponse) MarshalJSON

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

func (*SensorGroupAssignmentPostResponse) SetGroup

SetGroup sets field value

func (*SensorGroupAssignmentPostResponse) SetId

SetId sets field value

func (*SensorGroupAssignmentPostResponse) SetSensor

SetSensor sets field value

func (*SensorGroupAssignmentPostResponse) SetType

SetType sets field value

func (SensorGroupAssignmentPostResponse) ToMap

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

func (*SensorGroupAssignmentPostResponse) UnmarshalJSON

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

type SensorGroupAssignmentPostSensor

type SensorGroupAssignmentPostSensor struct {
	Id string `json:"id"`
}

SensorGroupAssignmentPostSensor struct for SensorGroupAssignmentPostSensor

func NewSensorGroupAssignmentPostSensor

func NewSensorGroupAssignmentPostSensor(id string) *SensorGroupAssignmentPostSensor

NewSensorGroupAssignmentPostSensor instantiates a new SensorGroupAssignmentPostSensor object This constructor will assign default values to properties that have it defined, 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 NewSensorGroupAssignmentPostSensorWithDefaults

func NewSensorGroupAssignmentPostSensorWithDefaults() *SensorGroupAssignmentPostSensor

NewSensorGroupAssignmentPostSensorWithDefaults instantiates a new SensorGroupAssignmentPostSensor object This 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 (*SensorGroupAssignmentPostSensor) GetId

GetId returns the Id field value

func (*SensorGroupAssignmentPostSensor) GetIdOk

func (o *SensorGroupAssignmentPostSensor) GetIdOk() (*string, bool)

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

func (SensorGroupAssignmentPostSensor) MarshalJSON

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

func (*SensorGroupAssignmentPostSensor) SetId

SetId sets field value

func (SensorGroupAssignmentPostSensor) ToMap

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

func (*SensorGroupAssignmentPostSensor) UnmarshalJSON

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

type SensorGroupAssignmentsGetGroup

type SensorGroupAssignmentsGetGroup struct {
	Id string `json:"id"`
}

SensorGroupAssignmentsGetGroup struct for SensorGroupAssignmentsGetGroup

func NewSensorGroupAssignmentsGetGroup

func NewSensorGroupAssignmentsGetGroup(id string) *SensorGroupAssignmentsGetGroup

NewSensorGroupAssignmentsGetGroup instantiates a new SensorGroupAssignmentsGetGroup object This constructor will assign default values to properties that have it defined, 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 NewSensorGroupAssignmentsGetGroupWithDefaults

func NewSensorGroupAssignmentsGetGroupWithDefaults() *SensorGroupAssignmentsGetGroup

NewSensorGroupAssignmentsGetGroupWithDefaults instantiates a new SensorGroupAssignmentsGetGroup object This 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 (*SensorGroupAssignmentsGetGroup) GetId

GetId returns the Id field value

func (*SensorGroupAssignmentsGetGroup) GetIdOk

func (o *SensorGroupAssignmentsGetGroup) GetIdOk() (*string, bool)

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

func (SensorGroupAssignmentsGetGroup) MarshalJSON

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

func (*SensorGroupAssignmentsGetGroup) SetId

SetId sets field value

func (SensorGroupAssignmentsGetGroup) ToMap

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

func (*SensorGroupAssignmentsGetGroup) UnmarshalJSON

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

type SensorGroupAssignmentsGetItem

type SensorGroupAssignmentsGetItem struct {
	Id     string                          `json:"id"`
	Group  SensorGroupAssignmentsGetGroup  `json:"group"`
	Sensor SensorGroupAssignmentsGetSensor `json:"sensor"`
	Type   string                          `json:"type"`
}

SensorGroupAssignmentsGetItem struct for SensorGroupAssignmentsGetItem

func NewSensorGroupAssignmentsGetItem

func NewSensorGroupAssignmentsGetItem(
	id string,
	group SensorGroupAssignmentsGetGroup,
	sensor SensorGroupAssignmentsGetSensor,
	type_ string,
) *SensorGroupAssignmentsGetItem

NewSensorGroupAssignmentsGetItem instantiates a new SensorGroupAssignmentsGetItem object This constructor will assign default values to properties that have it defined, 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 NewSensorGroupAssignmentsGetItemWithDefaults

func NewSensorGroupAssignmentsGetItemWithDefaults() *SensorGroupAssignmentsGetItem

NewSensorGroupAssignmentsGetItemWithDefaults instantiates a new SensorGroupAssignmentsGetItem object This 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 (*SensorGroupAssignmentsGetItem) GetGroup

GetGroup returns the Group field value

func (*SensorGroupAssignmentsGetItem) GetGroupOk

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

func (*SensorGroupAssignmentsGetItem) GetId

GetId returns the Id field value

func (*SensorGroupAssignmentsGetItem) GetIdOk

func (o *SensorGroupAssignmentsGetItem) GetIdOk() (*string, bool)

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

func (*SensorGroupAssignmentsGetItem) GetSensor

GetSensor returns the Sensor field value

func (*SensorGroupAssignmentsGetItem) GetSensorOk

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

func (*SensorGroupAssignmentsGetItem) GetType

GetType returns the Type field value

func (*SensorGroupAssignmentsGetItem) GetTypeOk

func (o *SensorGroupAssignmentsGetItem) GetTypeOk() (*string, bool)

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

func (SensorGroupAssignmentsGetItem) MarshalJSON

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

func (*SensorGroupAssignmentsGetItem) SetGroup

SetGroup sets field value

func (*SensorGroupAssignmentsGetItem) SetId

SetId sets field value

func (*SensorGroupAssignmentsGetItem) SetSensor

SetSensor sets field value

func (*SensorGroupAssignmentsGetItem) SetType

func (o *SensorGroupAssignmentsGetItem) SetType(v string)

SetType sets field value

func (SensorGroupAssignmentsGetItem) ToMap

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

func (*SensorGroupAssignmentsGetItem) UnmarshalJSON

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

type SensorGroupAssignmentsGetResponse

type SensorGroupAssignmentsGetResponse struct {
	Items []SensorGroupAssignmentsGetItem `json:"items"`
	Count int32                           `json:"count"`
	Next  NullableString                  `json:"next"`
}

SensorGroupAssignmentsGetResponse struct for SensorGroupAssignmentsGetResponse

func NewSensorGroupAssignmentsGetResponse

func NewSensorGroupAssignmentsGetResponse(
	items []SensorGroupAssignmentsGetItem,
	count int32,
	next NullableString,
) *SensorGroupAssignmentsGetResponse

NewSensorGroupAssignmentsGetResponse instantiates a new SensorGroupAssignmentsGetResponse object This constructor will assign default values to properties that have it defined, 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 NewSensorGroupAssignmentsGetResponseWithDefaults

func NewSensorGroupAssignmentsGetResponseWithDefaults() *SensorGroupAssignmentsGetResponse

NewSensorGroupAssignmentsGetResponseWithDefaults instantiates a new SensorGroupAssignmentsGetResponse object This 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 (*SensorGroupAssignmentsGetResponse) GetCount

GetCount returns the Count field value

func (*SensorGroupAssignmentsGetResponse) GetCountOk

func (o *SensorGroupAssignmentsGetResponse) GetCountOk() (*int32, bool)

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

func (*SensorGroupAssignmentsGetResponse) GetItems

GetItems returns the Items field value

func (*SensorGroupAssignmentsGetResponse) GetItemsOk

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

func (*SensorGroupAssignmentsGetResponse) GetNext

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*SensorGroupAssignmentsGetResponse) GetNextOk

func (o *SensorGroupAssignmentsGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (SensorGroupAssignmentsGetResponse) MarshalJSON

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

func (*SensorGroupAssignmentsGetResponse) SetCount

SetCount sets field value

func (*SensorGroupAssignmentsGetResponse) SetItems

SetItems sets field value

func (*SensorGroupAssignmentsGetResponse) SetNext

SetNext sets field value

func (SensorGroupAssignmentsGetResponse) ToMap

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

func (*SensorGroupAssignmentsGetResponse) UnmarshalJSON

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

type SensorGroupAssignmentsGetSensor

type SensorGroupAssignmentsGetSensor struct {
	Id string `json:"id"`
}

SensorGroupAssignmentsGetSensor struct for SensorGroupAssignmentsGetSensor

func NewSensorGroupAssignmentsGetSensor

func NewSensorGroupAssignmentsGetSensor(id string) *SensorGroupAssignmentsGetSensor

NewSensorGroupAssignmentsGetSensor instantiates a new SensorGroupAssignmentsGetSensor object This constructor will assign default values to properties that have it defined, 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 NewSensorGroupAssignmentsGetSensorWithDefaults

func NewSensorGroupAssignmentsGetSensorWithDefaults() *SensorGroupAssignmentsGetSensor

NewSensorGroupAssignmentsGetSensorWithDefaults instantiates a new SensorGroupAssignmentsGetSensor object This 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 (*SensorGroupAssignmentsGetSensor) GetId

GetId returns the Id field value

func (*SensorGroupAssignmentsGetSensor) GetIdOk

func (o *SensorGroupAssignmentsGetSensor) GetIdOk() (*string, bool)

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

func (SensorGroupAssignmentsGetSensor) MarshalJSON

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

func (*SensorGroupAssignmentsGetSensor) SetId

SetId sets field value

func (SensorGroupAssignmentsGetSensor) ToMap

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

func (*SensorGroupAssignmentsGetSensor) UnmarshalJSON

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

type SensorPatchRequest

type SensorPatchRequest struct {
	Name        *string         `json:"name,omitempty"`
	AddressNote *string         `json:"addressNote,omitempty"`
	Notes       *string         `json:"notes,omitempty"`
	PcapMode    *SensorPcapMode `json:"pcapMode,omitempty"`
}

SensorPatchRequest Request body for patching a sensor.

func NewSensorPatchRequest

func NewSensorPatchRequest() *SensorPatchRequest

NewSensorPatchRequest instantiates a new SensorPatchRequest object This constructor will assign default values to properties that have it defined, 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 NewSensorPatchRequestWithDefaults

func NewSensorPatchRequestWithDefaults() *SensorPatchRequest

NewSensorPatchRequestWithDefaults instantiates a new SensorPatchRequest object This 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 (*SensorPatchRequest) GetAddressNote

func (o *SensorPatchRequest) GetAddressNote() string

GetAddressNote returns the AddressNote field value if set, zero value otherwise.

func (*SensorPatchRequest) GetAddressNoteOk

func (o *SensorPatchRequest) GetAddressNoteOk() (*string, bool)

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

func (*SensorPatchRequest) GetName

func (o *SensorPatchRequest) GetName() string

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

func (*SensorPatchRequest) GetNameOk

func (o *SensorPatchRequest) 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 (*SensorPatchRequest) GetNotes

func (o *SensorPatchRequest) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*SensorPatchRequest) GetNotesOk

func (o *SensorPatchRequest) 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 (*SensorPatchRequest) GetPcapMode

func (o *SensorPatchRequest) GetPcapMode() SensorPcapMode

GetPcapMode returns the PcapMode field value if set, zero value otherwise.

func (*SensorPatchRequest) GetPcapModeOk

func (o *SensorPatchRequest) GetPcapModeOk() (*SensorPcapMode, bool)

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

func (*SensorPatchRequest) HasAddressNote

func (o *SensorPatchRequest) HasAddressNote() bool

HasAddressNote returns a boolean if a field has been set.

func (*SensorPatchRequest) HasName

func (o *SensorPatchRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*SensorPatchRequest) HasNotes

func (o *SensorPatchRequest) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*SensorPatchRequest) HasPcapMode

func (o *SensorPatchRequest) HasPcapMode() bool

HasPcapMode returns a boolean if a field has been set.

func (SensorPatchRequest) MarshalJSON

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

func (*SensorPatchRequest) SetAddressNote

func (o *SensorPatchRequest) SetAddressNote(v string)

SetAddressNote gets a reference to the given string and assigns it to the AddressNote field.

func (*SensorPatchRequest) SetName

func (o *SensorPatchRequest) SetName(v string)

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

func (*SensorPatchRequest) SetNotes

func (o *SensorPatchRequest) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*SensorPatchRequest) SetPcapMode

func (o *SensorPatchRequest) SetPcapMode(v SensorPcapMode)

SetPcapMode gets a reference to the given SensorPcapMode and assigns it to the PcapMode field.

func (SensorPatchRequest) ToMap

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

type SensorPatchResponse

type SensorPatchResponse struct {
	Id                 string                 `json:"id"`
	Serial             string                 `json:"serial"`
	Name               string                 `json:"name"`
	ModelNumber        string                 `json:"modelNumber"`
	WifiMacAddress     NullableString         `json:"wifiMacAddress"`
	EthernetMacAddress NullableString         `json:"ethernetMacAddress"`
	AddressNote        NullableString         `json:"addressNote"`
	Longitude          NullableFloat32        `json:"longitude"`
	Latitude           NullableFloat32        `json:"latitude"`
	Notes              NullableString         `json:"notes"`
	PcapMode           NullableSensorPcapMode `json:"pcapMode"`
	Type               string                 `json:"type"`
}

SensorPatchResponse struct for SensorPatchResponse

func NewSensorPatchResponse

func NewSensorPatchResponse(
	id string,
	serial string,
	name string,
	modelNumber string,
	wifiMacAddress NullableString,
	ethernetMacAddress NullableString,
	addressNote NullableString,
	longitude NullableFloat32,
	latitude NullableFloat32,
	notes NullableString,
	pcapMode NullableSensorPcapMode,
	type_ string,
) *SensorPatchResponse

NewSensorPatchResponse instantiates a new SensorPatchResponse object This constructor will assign default values to properties that have it defined, 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 NewSensorPatchResponseWithDefaults

func NewSensorPatchResponseWithDefaults() *SensorPatchResponse

NewSensorPatchResponseWithDefaults instantiates a new SensorPatchResponse object This 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 (*SensorPatchResponse) GetAddressNote

func (o *SensorPatchResponse) GetAddressNote() string

GetAddressNote returns the AddressNote field value If the value is explicit nil, the zero value for string will be returned

func (*SensorPatchResponse) GetAddressNoteOk

func (o *SensorPatchResponse) GetAddressNoteOk() (*string, bool)

GetAddressNoteOk returns a tuple with the AddressNote 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 (*SensorPatchResponse) GetEthernetMacAddress

func (o *SensorPatchResponse) GetEthernetMacAddress() string

GetEthernetMacAddress returns the EthernetMacAddress field value If the value is explicit nil, the zero value for string will be returned

func (*SensorPatchResponse) GetEthernetMacAddressOk

func (o *SensorPatchResponse) GetEthernetMacAddressOk() (*string, bool)

GetEthernetMacAddressOk returns a tuple with the EthernetMacAddress 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 (*SensorPatchResponse) GetId

func (o *SensorPatchResponse) GetId() string

GetId returns the Id field value

func (*SensorPatchResponse) GetIdOk

func (o *SensorPatchResponse) GetIdOk() (*string, bool)

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

func (*SensorPatchResponse) GetLatitude

func (o *SensorPatchResponse) GetLatitude() float32

GetLatitude returns the Latitude field value If the value is explicit nil, the zero value for float32 will be returned

func (*SensorPatchResponse) GetLatitudeOk

func (o *SensorPatchResponse) GetLatitudeOk() (*float32, bool)

GetLatitudeOk returns a tuple with the Latitude 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 (*SensorPatchResponse) GetLongitude

func (o *SensorPatchResponse) GetLongitude() float32

GetLongitude returns the Longitude field value If the value is explicit nil, the zero value for float32 will be returned

func (*SensorPatchResponse) GetLongitudeOk

func (o *SensorPatchResponse) GetLongitudeOk() (*float32, bool)

GetLongitudeOk returns a tuple with the Longitude 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 (*SensorPatchResponse) GetModelNumber

func (o *SensorPatchResponse) GetModelNumber() string

GetModelNumber returns the ModelNumber field value

func (*SensorPatchResponse) GetModelNumberOk

func (o *SensorPatchResponse) GetModelNumberOk() (*string, bool)

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

func (*SensorPatchResponse) GetName

func (o *SensorPatchResponse) GetName() string

GetName returns the Name field value

func (*SensorPatchResponse) GetNameOk

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

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

func (*SensorPatchResponse) GetNotes

func (o *SensorPatchResponse) GetNotes() string

GetNotes returns the Notes field value If the value is explicit nil, the zero value for string will be returned

func (*SensorPatchResponse) GetNotesOk

func (o *SensorPatchResponse) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes 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 (*SensorPatchResponse) GetPcapMode

func (o *SensorPatchResponse) GetPcapMode() SensorPcapMode

GetPcapMode returns the PcapMode field value If the value is explicit nil, the zero value for SensorPcapMode will be returned

func (*SensorPatchResponse) GetPcapModeOk

func (o *SensorPatchResponse) GetPcapModeOk() (*SensorPcapMode, bool)

GetPcapModeOk returns a tuple with the PcapMode 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 (*SensorPatchResponse) GetSerial

func (o *SensorPatchResponse) GetSerial() string

GetSerial returns the Serial field value

func (*SensorPatchResponse) GetSerialOk

func (o *SensorPatchResponse) GetSerialOk() (*string, bool)

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

func (*SensorPatchResponse) GetType

func (o *SensorPatchResponse) GetType() string

GetType returns the Type field value

func (*SensorPatchResponse) GetTypeOk

func (o *SensorPatchResponse) GetTypeOk() (*string, bool)

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

func (*SensorPatchResponse) GetWifiMacAddress

func (o *SensorPatchResponse) GetWifiMacAddress() string

GetWifiMacAddress returns the WifiMacAddress field value If the value is explicit nil, the zero value for string will be returned

func (*SensorPatchResponse) GetWifiMacAddressOk

func (o *SensorPatchResponse) GetWifiMacAddressOk() (*string, bool)

GetWifiMacAddressOk returns a tuple with the WifiMacAddress 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 (SensorPatchResponse) MarshalJSON

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

func (*SensorPatchResponse) SetAddressNote

func (o *SensorPatchResponse) SetAddressNote(v string)

SetAddressNote sets field value

func (*SensorPatchResponse) SetEthernetMacAddress

func (o *SensorPatchResponse) SetEthernetMacAddress(v string)

SetEthernetMacAddress sets field value

func (*SensorPatchResponse) SetId

func (o *SensorPatchResponse) SetId(v string)

SetId sets field value

func (*SensorPatchResponse) SetLatitude

func (o *SensorPatchResponse) SetLatitude(v float32)

SetLatitude sets field value

func (*SensorPatchResponse) SetLongitude

func (o *SensorPatchResponse) SetLongitude(v float32)

SetLongitude sets field value

func (*SensorPatchResponse) SetModelNumber

func (o *SensorPatchResponse) SetModelNumber(v string)

SetModelNumber sets field value

func (*SensorPatchResponse) SetName

func (o *SensorPatchResponse) SetName(v string)

SetName sets field value

func (*SensorPatchResponse) SetNotes

func (o *SensorPatchResponse) SetNotes(v string)

SetNotes sets field value

func (*SensorPatchResponse) SetPcapMode

func (o *SensorPatchResponse) SetPcapMode(v SensorPcapMode)

SetPcapMode sets field value

func (*SensorPatchResponse) SetSerial

func (o *SensorPatchResponse) SetSerial(v string)

SetSerial sets field value

func (*SensorPatchResponse) SetType

func (o *SensorPatchResponse) SetType(v string)

SetType sets field value

func (*SensorPatchResponse) SetWifiMacAddress

func (o *SensorPatchResponse) SetWifiMacAddress(v string)

SetWifiMacAddress sets field value

func (SensorPatchResponse) ToMap

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

func (*SensorPatchResponse) UnmarshalJSON

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

type SensorPcapMode

type SensorPcapMode string

SensorPcapMode the model 'SensorPcapMode'

const (
	SENSORPCAPMODE_LIGHT SensorPcapMode = "light"
	SENSORPCAPMODE_FULL  SensorPcapMode = "full"
	SENSORPCAPMODE_OFF   SensorPcapMode = "off"
)

List of SensorPcapMode

func NewSensorPcapModeFromValue

func NewSensorPcapModeFromValue(v string) (*SensorPcapMode, error)

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

func (SensorPcapMode) IsValid

func (v SensorPcapMode) IsValid() bool

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

func (SensorPcapMode) Ptr

func (v SensorPcapMode) Ptr() *SensorPcapMode

Ptr returns reference to SensorPcapMode value

func (*SensorPcapMode) UnmarshalJSON

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

type SensorsGetItem

type SensorsGetItem struct {
	Id                 string                 `json:"id"`
	Serial             string                 `json:"serial"`
	Name               string                 `json:"name"`
	ModelNumber        string                 `json:"modelNumber"`
	WifiMacAddress     NullableString         `json:"wifiMacAddress"`
	EthernetMacAddress NullableString         `json:"ethernetMacAddress"`
	AddressNote        NullableString         `json:"addressNote"`
	Longitude          NullableFloat32        `json:"longitude"`
	Latitude           NullableFloat32        `json:"latitude"`
	Notes              NullableString         `json:"notes"`
	PcapMode           NullableSensorPcapMode `json:"pcapMode"`
	Type               string                 `json:"type"`
}

SensorsGetItem struct for SensorsGetItem

func NewSensorsGetItem

func NewSensorsGetItem(
	id string,
	serial string,
	name string,
	modelNumber string,
	wifiMacAddress NullableString,
	ethernetMacAddress NullableString,
	addressNote NullableString,
	longitude NullableFloat32,
	latitude NullableFloat32,
	notes NullableString,
	pcapMode NullableSensorPcapMode,
	type_ string,
) *SensorsGetItem

NewSensorsGetItem instantiates a new SensorsGetItem object This constructor will assign default values to properties that have it defined, 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 NewSensorsGetItemWithDefaults

func NewSensorsGetItemWithDefaults() *SensorsGetItem

NewSensorsGetItemWithDefaults instantiates a new SensorsGetItem object This 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 (*SensorsGetItem) GetAddressNote

func (o *SensorsGetItem) GetAddressNote() string

GetAddressNote returns the AddressNote field value If the value is explicit nil, the zero value for string will be returned

func (*SensorsGetItem) GetAddressNoteOk

func (o *SensorsGetItem) GetAddressNoteOk() (*string, bool)

GetAddressNoteOk returns a tuple with the AddressNote 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 (*SensorsGetItem) GetEthernetMacAddress

func (o *SensorsGetItem) GetEthernetMacAddress() string

GetEthernetMacAddress returns the EthernetMacAddress field value If the value is explicit nil, the zero value for string will be returned

func (*SensorsGetItem) GetEthernetMacAddressOk

func (o *SensorsGetItem) GetEthernetMacAddressOk() (*string, bool)

GetEthernetMacAddressOk returns a tuple with the EthernetMacAddress 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 (*SensorsGetItem) GetId

func (o *SensorsGetItem) GetId() string

GetId returns the Id field value

func (*SensorsGetItem) GetIdOk

func (o *SensorsGetItem) GetIdOk() (*string, bool)

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

func (*SensorsGetItem) GetLatitude

func (o *SensorsGetItem) GetLatitude() float32

GetLatitude returns the Latitude field value If the value is explicit nil, the zero value for float32 will be returned

func (*SensorsGetItem) GetLatitudeOk

func (o *SensorsGetItem) GetLatitudeOk() (*float32, bool)

GetLatitudeOk returns a tuple with the Latitude 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 (*SensorsGetItem) GetLongitude

func (o *SensorsGetItem) GetLongitude() float32

GetLongitude returns the Longitude field value If the value is explicit nil, the zero value for float32 will be returned

func (*SensorsGetItem) GetLongitudeOk

func (o *SensorsGetItem) GetLongitudeOk() (*float32, bool)

GetLongitudeOk returns a tuple with the Longitude 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 (*SensorsGetItem) GetModelNumber

func (o *SensorsGetItem) GetModelNumber() string

GetModelNumber returns the ModelNumber field value

func (*SensorsGetItem) GetModelNumberOk

func (o *SensorsGetItem) GetModelNumberOk() (*string, bool)

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

func (*SensorsGetItem) GetName

func (o *SensorsGetItem) GetName() string

GetName returns the Name field value

func (*SensorsGetItem) GetNameOk

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

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

func (*SensorsGetItem) GetNotes

func (o *SensorsGetItem) GetNotes() string

GetNotes returns the Notes field value If the value is explicit nil, the zero value for string will be returned

func (*SensorsGetItem) GetNotesOk

func (o *SensorsGetItem) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes 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 (*SensorsGetItem) GetPcapMode

func (o *SensorsGetItem) GetPcapMode() SensorPcapMode

GetPcapMode returns the PcapMode field value If the value is explicit nil, the zero value for SensorPcapMode will be returned

func (*SensorsGetItem) GetPcapModeOk

func (o *SensorsGetItem) GetPcapModeOk() (*SensorPcapMode, bool)

GetPcapModeOk returns a tuple with the PcapMode 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 (*SensorsGetItem) GetSerial

func (o *SensorsGetItem) GetSerial() string

GetSerial returns the Serial field value

func (*SensorsGetItem) GetSerialOk

func (o *SensorsGetItem) GetSerialOk() (*string, bool)

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

func (*SensorsGetItem) GetType

func (o *SensorsGetItem) GetType() string

GetType returns the Type field value

func (*SensorsGetItem) GetTypeOk

func (o *SensorsGetItem) GetTypeOk() (*string, bool)

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

func (*SensorsGetItem) GetWifiMacAddress

func (o *SensorsGetItem) GetWifiMacAddress() string

GetWifiMacAddress returns the WifiMacAddress field value If the value is explicit nil, the zero value for string will be returned

func (*SensorsGetItem) GetWifiMacAddressOk

func (o *SensorsGetItem) GetWifiMacAddressOk() (*string, bool)

GetWifiMacAddressOk returns a tuple with the WifiMacAddress 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 (SensorsGetItem) MarshalJSON

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

func (*SensorsGetItem) SetAddressNote

func (o *SensorsGetItem) SetAddressNote(v string)

SetAddressNote sets field value

func (*SensorsGetItem) SetEthernetMacAddress

func (o *SensorsGetItem) SetEthernetMacAddress(v string)

SetEthernetMacAddress sets field value

func (*SensorsGetItem) SetId

func (o *SensorsGetItem) SetId(v string)

SetId sets field value

func (*SensorsGetItem) SetLatitude

func (o *SensorsGetItem) SetLatitude(v float32)

SetLatitude sets field value

func (*SensorsGetItem) SetLongitude

func (o *SensorsGetItem) SetLongitude(v float32)

SetLongitude sets field value

func (*SensorsGetItem) SetModelNumber

func (o *SensorsGetItem) SetModelNumber(v string)

SetModelNumber sets field value

func (*SensorsGetItem) SetName

func (o *SensorsGetItem) SetName(v string)

SetName sets field value

func (*SensorsGetItem) SetNotes

func (o *SensorsGetItem) SetNotes(v string)

SetNotes sets field value

func (*SensorsGetItem) SetPcapMode

func (o *SensorsGetItem) SetPcapMode(v SensorPcapMode)

SetPcapMode sets field value

func (*SensorsGetItem) SetSerial

func (o *SensorsGetItem) SetSerial(v string)

SetSerial sets field value

func (*SensorsGetItem) SetType

func (o *SensorsGetItem) SetType(v string)

SetType sets field value

func (*SensorsGetItem) SetWifiMacAddress

func (o *SensorsGetItem) SetWifiMacAddress(v string)

SetWifiMacAddress sets field value

func (SensorsGetItem) ToMap

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

func (*SensorsGetItem) UnmarshalJSON

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

type SensorsGetResponse

type SensorsGetResponse struct {
	Items []SensorsGetItem `json:"items"`
	Count int32            `json:"count"`
	Next  NullableString   `json:"next"`
}

SensorsGetResponse struct for SensorsGetResponse

func NewSensorsGetResponse

func NewSensorsGetResponse(
	items []SensorsGetItem,
	count int32,
	next NullableString,
) *SensorsGetResponse

NewSensorsGetResponse instantiates a new SensorsGetResponse object This constructor will assign default values to properties that have it defined, 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 NewSensorsGetResponseWithDefaults

func NewSensorsGetResponseWithDefaults() *SensorsGetResponse

NewSensorsGetResponseWithDefaults instantiates a new SensorsGetResponse object This 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 (*SensorsGetResponse) GetCount

func (o *SensorsGetResponse) GetCount() int32

GetCount returns the Count field value

func (*SensorsGetResponse) GetCountOk

func (o *SensorsGetResponse) GetCountOk() (*int32, bool)

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

func (*SensorsGetResponse) GetItems

func (o *SensorsGetResponse) GetItems() []SensorsGetItem

GetItems returns the Items field value

func (*SensorsGetResponse) GetItemsOk

func (o *SensorsGetResponse) GetItemsOk() ([]SensorsGetItem, bool)

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

func (*SensorsGetResponse) GetNext

func (o *SensorsGetResponse) GetNext() string

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*SensorsGetResponse) GetNextOk

func (o *SensorsGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (SensorsGetResponse) MarshalJSON

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

func (*SensorsGetResponse) SetCount

func (o *SensorsGetResponse) SetCount(v int32)

SetCount sets field value

func (*SensorsGetResponse) SetItems

func (o *SensorsGetResponse) SetItems(v []SensorsGetItem)

SetItems sets field value

func (*SensorsGetResponse) SetNext

func (o *SensorsGetResponse) SetNext(v string)

SetNext sets field value

func (SensorsGetResponse) ToMap

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

func (*SensorsGetResponse) UnmarshalJSON

func (o *SensorsGetResponse) 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 ServiceTestGroupAssignmentPostGroup

type ServiceTestGroupAssignmentPostGroup struct {
	Id string `json:"id"`
}

ServiceTestGroupAssignmentPostGroup struct for ServiceTestGroupAssignmentPostGroup

func NewServiceTestGroupAssignmentPostGroup

func NewServiceTestGroupAssignmentPostGroup(id string) *ServiceTestGroupAssignmentPostGroup

NewServiceTestGroupAssignmentPostGroup instantiates a new ServiceTestGroupAssignmentPostGroup object This constructor will assign default values to properties that have it defined, 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 NewServiceTestGroupAssignmentPostGroupWithDefaults

func NewServiceTestGroupAssignmentPostGroupWithDefaults() *ServiceTestGroupAssignmentPostGroup

NewServiceTestGroupAssignmentPostGroupWithDefaults instantiates a new ServiceTestGroupAssignmentPostGroup object This 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 (*ServiceTestGroupAssignmentPostGroup) GetId

GetId returns the Id field value

func (*ServiceTestGroupAssignmentPostGroup) GetIdOk

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

func (ServiceTestGroupAssignmentPostGroup) MarshalJSON

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

func (*ServiceTestGroupAssignmentPostGroup) SetId

SetId sets field value

func (ServiceTestGroupAssignmentPostGroup) ToMap

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

func (*ServiceTestGroupAssignmentPostGroup) UnmarshalJSON

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

type ServiceTestGroupAssignmentPostRequest

type ServiceTestGroupAssignmentPostRequest struct {
	GroupId       string `json:"groupId"`
	ServiceTestId string `json:"serviceTestId"`
}

ServiceTestGroupAssignmentPostRequest struct for ServiceTestGroupAssignmentPostRequest

func NewServiceTestGroupAssignmentPostRequest

func NewServiceTestGroupAssignmentPostRequest(
	groupId string,
	serviceTestId string,
) *ServiceTestGroupAssignmentPostRequest

NewServiceTestGroupAssignmentPostRequest instantiates a new ServiceTestGroupAssignmentPostRequest object This constructor will assign default values to properties that have it defined, 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 NewServiceTestGroupAssignmentPostRequestWithDefaults

func NewServiceTestGroupAssignmentPostRequestWithDefaults() *ServiceTestGroupAssignmentPostRequest

NewServiceTestGroupAssignmentPostRequestWithDefaults instantiates a new ServiceTestGroupAssignmentPostRequest object This 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 (*ServiceTestGroupAssignmentPostRequest) GetGroupId

GetGroupId returns the GroupId field value

func (*ServiceTestGroupAssignmentPostRequest) GetGroupIdOk

func (o *ServiceTestGroupAssignmentPostRequest) GetGroupIdOk() (*string, bool)

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

func (*ServiceTestGroupAssignmentPostRequest) GetServiceTestId

func (o *ServiceTestGroupAssignmentPostRequest) GetServiceTestId() string

GetServiceTestId returns the ServiceTestId field value

func (*ServiceTestGroupAssignmentPostRequest) GetServiceTestIdOk

func (o *ServiceTestGroupAssignmentPostRequest) GetServiceTestIdOk() (*string, bool)

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

func (ServiceTestGroupAssignmentPostRequest) MarshalJSON

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

func (*ServiceTestGroupAssignmentPostRequest) SetGroupId

SetGroupId sets field value

func (*ServiceTestGroupAssignmentPostRequest) SetServiceTestId

func (o *ServiceTestGroupAssignmentPostRequest) SetServiceTestId(v string)

SetServiceTestId sets field value

func (ServiceTestGroupAssignmentPostRequest) ToMap

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

func (*ServiceTestGroupAssignmentPostRequest) UnmarshalJSON

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

type ServiceTestGroupAssignmentPostResponse

type ServiceTestGroupAssignmentPostResponse struct {
	Id          string                                    `json:"id"`
	Group       ServiceTestGroupAssignmentPostGroup       `json:"group"`
	ServiceTest ServiceTestGroupAssignmentPostServiceTest `json:"serviceTest"`
	Type        string                                    `json:"type"`
}

ServiceTestGroupAssignmentPostResponse struct for ServiceTestGroupAssignmentPostResponse

func NewServiceTestGroupAssignmentPostResponse

func NewServiceTestGroupAssignmentPostResponse(
	id string,
	group ServiceTestGroupAssignmentPostGroup,
	serviceTest ServiceTestGroupAssignmentPostServiceTest,
	type_ string,
) *ServiceTestGroupAssignmentPostResponse

NewServiceTestGroupAssignmentPostResponse instantiates a new ServiceTestGroupAssignmentPostResponse object This constructor will assign default values to properties that have it defined, 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 NewServiceTestGroupAssignmentPostResponseWithDefaults

func NewServiceTestGroupAssignmentPostResponseWithDefaults() *ServiceTestGroupAssignmentPostResponse

NewServiceTestGroupAssignmentPostResponseWithDefaults instantiates a new ServiceTestGroupAssignmentPostResponse object This 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 (*ServiceTestGroupAssignmentPostResponse) GetGroup

GetGroup returns the Group field value

func (*ServiceTestGroupAssignmentPostResponse) GetGroupOk

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

func (*ServiceTestGroupAssignmentPostResponse) GetId

GetId returns the Id field value

func (*ServiceTestGroupAssignmentPostResponse) GetIdOk

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

func (*ServiceTestGroupAssignmentPostResponse) GetServiceTest

GetServiceTest returns the ServiceTest field value

func (*ServiceTestGroupAssignmentPostResponse) GetServiceTestOk

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

func (*ServiceTestGroupAssignmentPostResponse) GetType

GetType returns the Type field value

func (*ServiceTestGroupAssignmentPostResponse) GetTypeOk

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

func (ServiceTestGroupAssignmentPostResponse) MarshalJSON

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

func (*ServiceTestGroupAssignmentPostResponse) SetGroup

SetGroup sets field value

func (*ServiceTestGroupAssignmentPostResponse) SetId

SetId sets field value

func (*ServiceTestGroupAssignmentPostResponse) SetServiceTest

SetServiceTest sets field value

func (*ServiceTestGroupAssignmentPostResponse) SetType

SetType sets field value

func (ServiceTestGroupAssignmentPostResponse) ToMap

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

func (*ServiceTestGroupAssignmentPostResponse) UnmarshalJSON

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

type ServiceTestGroupAssignmentPostServiceTest

type ServiceTestGroupAssignmentPostServiceTest struct {
	Id string `json:"id"`
}

ServiceTestGroupAssignmentPostServiceTest struct for ServiceTestGroupAssignmentPostServiceTest

func NewServiceTestGroupAssignmentPostServiceTest

func NewServiceTestGroupAssignmentPostServiceTest(
	id string,
) *ServiceTestGroupAssignmentPostServiceTest

NewServiceTestGroupAssignmentPostServiceTest instantiates a new ServiceTestGroupAssignmentPostServiceTest object This constructor will assign default values to properties that have it defined, 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 NewServiceTestGroupAssignmentPostServiceTestWithDefaults

func NewServiceTestGroupAssignmentPostServiceTestWithDefaults() *ServiceTestGroupAssignmentPostServiceTest

NewServiceTestGroupAssignmentPostServiceTestWithDefaults instantiates a new ServiceTestGroupAssignmentPostServiceTest object This 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 (*ServiceTestGroupAssignmentPostServiceTest) GetId

GetId returns the Id field value

func (*ServiceTestGroupAssignmentPostServiceTest) GetIdOk

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

func (ServiceTestGroupAssignmentPostServiceTest) MarshalJSON

func (*ServiceTestGroupAssignmentPostServiceTest) SetId

SetId sets field value

func (ServiceTestGroupAssignmentPostServiceTest) ToMap

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

func (*ServiceTestGroupAssignmentPostServiceTest) UnmarshalJSON

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

type ServiceTestGroupAssignmentsGetGroup

type ServiceTestGroupAssignmentsGetGroup struct {
	Id string `json:"id"`
}

ServiceTestGroupAssignmentsGetGroup struct for ServiceTestGroupAssignmentsGetGroup

func NewServiceTestGroupAssignmentsGetGroup

func NewServiceTestGroupAssignmentsGetGroup(id string) *ServiceTestGroupAssignmentsGetGroup

NewServiceTestGroupAssignmentsGetGroup instantiates a new ServiceTestGroupAssignmentsGetGroup object This constructor will assign default values to properties that have it defined, 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 NewServiceTestGroupAssignmentsGetGroupWithDefaults

func NewServiceTestGroupAssignmentsGetGroupWithDefaults() *ServiceTestGroupAssignmentsGetGroup

NewServiceTestGroupAssignmentsGetGroupWithDefaults instantiates a new ServiceTestGroupAssignmentsGetGroup object This 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 (*ServiceTestGroupAssignmentsGetGroup) GetId

GetId returns the Id field value

func (*ServiceTestGroupAssignmentsGetGroup) GetIdOk

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

func (ServiceTestGroupAssignmentsGetGroup) MarshalJSON

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

func (*ServiceTestGroupAssignmentsGetGroup) SetId

SetId sets field value

func (ServiceTestGroupAssignmentsGetGroup) ToMap

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

func (*ServiceTestGroupAssignmentsGetGroup) UnmarshalJSON

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

type ServiceTestGroupAssignmentsGetItem

type ServiceTestGroupAssignmentsGetItem struct {
	Id          string                                    `json:"id"`
	Group       ServiceTestGroupAssignmentsGetGroup       `json:"group"`
	ServiceTest ServiceTestGroupAssignmentsGetServiceTest `json:"serviceTest"`
	Type        string                                    `json:"type"`
}

ServiceTestGroupAssignmentsGetItem struct for ServiceTestGroupAssignmentsGetItem

func NewServiceTestGroupAssignmentsGetItem

func NewServiceTestGroupAssignmentsGetItem(
	id string,
	group ServiceTestGroupAssignmentsGetGroup,
	serviceTest ServiceTestGroupAssignmentsGetServiceTest,
	type_ string,
) *ServiceTestGroupAssignmentsGetItem

NewServiceTestGroupAssignmentsGetItem instantiates a new ServiceTestGroupAssignmentsGetItem object This constructor will assign default values to properties that have it defined, 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 NewServiceTestGroupAssignmentsGetItemWithDefaults

func NewServiceTestGroupAssignmentsGetItemWithDefaults() *ServiceTestGroupAssignmentsGetItem

NewServiceTestGroupAssignmentsGetItemWithDefaults instantiates a new ServiceTestGroupAssignmentsGetItem object This 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 (*ServiceTestGroupAssignmentsGetItem) GetGroup

GetGroup returns the Group field value

func (*ServiceTestGroupAssignmentsGetItem) GetGroupOk

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

func (*ServiceTestGroupAssignmentsGetItem) GetId

GetId returns the Id field value

func (*ServiceTestGroupAssignmentsGetItem) GetIdOk

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

func (*ServiceTestGroupAssignmentsGetItem) GetServiceTest

GetServiceTest returns the ServiceTest field value

func (*ServiceTestGroupAssignmentsGetItem) GetServiceTestOk

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

func (*ServiceTestGroupAssignmentsGetItem) GetType

GetType returns the Type field value

func (*ServiceTestGroupAssignmentsGetItem) GetTypeOk

func (o *ServiceTestGroupAssignmentsGetItem) GetTypeOk() (*string, bool)

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

func (ServiceTestGroupAssignmentsGetItem) MarshalJSON

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

func (*ServiceTestGroupAssignmentsGetItem) SetGroup

SetGroup sets field value

func (*ServiceTestGroupAssignmentsGetItem) SetId

SetId sets field value

func (*ServiceTestGroupAssignmentsGetItem) SetServiceTest

SetServiceTest sets field value

func (*ServiceTestGroupAssignmentsGetItem) SetType

SetType sets field value

func (ServiceTestGroupAssignmentsGetItem) ToMap

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

func (*ServiceTestGroupAssignmentsGetItem) UnmarshalJSON

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

type ServiceTestGroupAssignmentsGetResponse

type ServiceTestGroupAssignmentsGetResponse struct {
	Items []ServiceTestGroupAssignmentsGetItem `json:"items"`
	Count int32                                `json:"count"`
	Next  NullableString                       `json:"next"`
}

ServiceTestGroupAssignmentsGetResponse struct for ServiceTestGroupAssignmentsGetResponse

func NewServiceTestGroupAssignmentsGetResponse

func NewServiceTestGroupAssignmentsGetResponse(
	items []ServiceTestGroupAssignmentsGetItem,
	count int32,
	next NullableString,
) *ServiceTestGroupAssignmentsGetResponse

NewServiceTestGroupAssignmentsGetResponse instantiates a new ServiceTestGroupAssignmentsGetResponse object This constructor will assign default values to properties that have it defined, 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 NewServiceTestGroupAssignmentsGetResponseWithDefaults

func NewServiceTestGroupAssignmentsGetResponseWithDefaults() *ServiceTestGroupAssignmentsGetResponse

NewServiceTestGroupAssignmentsGetResponseWithDefaults instantiates a new ServiceTestGroupAssignmentsGetResponse object This 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 (*ServiceTestGroupAssignmentsGetResponse) GetCount

GetCount returns the Count field value

func (*ServiceTestGroupAssignmentsGetResponse) GetCountOk

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

func (*ServiceTestGroupAssignmentsGetResponse) GetItems

GetItems returns the Items field value

func (*ServiceTestGroupAssignmentsGetResponse) GetItemsOk

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

func (*ServiceTestGroupAssignmentsGetResponse) GetNext

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*ServiceTestGroupAssignmentsGetResponse) GetNextOk

GetNextOk returns a tuple with the Next 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 (ServiceTestGroupAssignmentsGetResponse) MarshalJSON

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

func (*ServiceTestGroupAssignmentsGetResponse) SetCount

SetCount sets field value

func (*ServiceTestGroupAssignmentsGetResponse) SetItems

SetItems sets field value

func (*ServiceTestGroupAssignmentsGetResponse) SetNext

SetNext sets field value

func (ServiceTestGroupAssignmentsGetResponse) ToMap

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

func (*ServiceTestGroupAssignmentsGetResponse) UnmarshalJSON

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

type ServiceTestGroupAssignmentsGetServiceTest

type ServiceTestGroupAssignmentsGetServiceTest struct {
	Id string `json:"id"`
}

ServiceTestGroupAssignmentsGetServiceTest struct for ServiceTestGroupAssignmentsGetServiceTest

func NewServiceTestGroupAssignmentsGetServiceTest

func NewServiceTestGroupAssignmentsGetServiceTest(
	id string,
) *ServiceTestGroupAssignmentsGetServiceTest

NewServiceTestGroupAssignmentsGetServiceTest instantiates a new ServiceTestGroupAssignmentsGetServiceTest object This constructor will assign default values to properties that have it defined, 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 NewServiceTestGroupAssignmentsGetServiceTestWithDefaults

func NewServiceTestGroupAssignmentsGetServiceTestWithDefaults() *ServiceTestGroupAssignmentsGetServiceTest

NewServiceTestGroupAssignmentsGetServiceTestWithDefaults instantiates a new ServiceTestGroupAssignmentsGetServiceTest object This 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 (*ServiceTestGroupAssignmentsGetServiceTest) GetId

GetId returns the Id field value

func (*ServiceTestGroupAssignmentsGetServiceTest) GetIdOk

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

func (ServiceTestGroupAssignmentsGetServiceTest) MarshalJSON

func (*ServiceTestGroupAssignmentsGetServiceTest) SetId

SetId sets field value

func (ServiceTestGroupAssignmentsGetServiceTest) ToMap

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

func (*ServiceTestGroupAssignmentsGetServiceTest) UnmarshalJSON

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

type ServiceTestsGetItem

type ServiceTestsGetItem struct {
	Id        string         `json:"id"`
	Category  string         `json:"category"`
	Name      string         `json:"name"`
	Target    NullableString `json:"target"`
	Template  string         `json:"template"`
	IsEnabled bool           `json:"isEnabled"`
	Type      string         `json:"type"`
}

ServiceTestsGetItem struct for ServiceTestsGetItem

func NewServiceTestsGetItem

func NewServiceTestsGetItem(
	id string,
	category string,
	name string,
	target NullableString,
	template string,
	isEnabled bool,
	type_ string,
) *ServiceTestsGetItem

NewServiceTestsGetItem instantiates a new ServiceTestsGetItem object This constructor will assign default values to properties that have it defined, 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 NewServiceTestsGetItemWithDefaults

func NewServiceTestsGetItemWithDefaults() *ServiceTestsGetItem

NewServiceTestsGetItemWithDefaults instantiates a new ServiceTestsGetItem object This 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 (*ServiceTestsGetItem) GetCategory

func (o *ServiceTestsGetItem) GetCategory() string

GetCategory returns the Category field value

func (*ServiceTestsGetItem) GetCategoryOk

func (o *ServiceTestsGetItem) GetCategoryOk() (*string, bool)

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

func (*ServiceTestsGetItem) GetId

func (o *ServiceTestsGetItem) GetId() string

GetId returns the Id field value

func (*ServiceTestsGetItem) GetIdOk

func (o *ServiceTestsGetItem) GetIdOk() (*string, bool)

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

func (*ServiceTestsGetItem) GetIsEnabled

func (o *ServiceTestsGetItem) GetIsEnabled() bool

GetIsEnabled returns the IsEnabled field value

func (*ServiceTestsGetItem) GetIsEnabledOk

func (o *ServiceTestsGetItem) GetIsEnabledOk() (*bool, bool)

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

func (*ServiceTestsGetItem) GetName

func (o *ServiceTestsGetItem) GetName() string

GetName returns the Name field value

func (*ServiceTestsGetItem) GetNameOk

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

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

func (*ServiceTestsGetItem) GetTarget

func (o *ServiceTestsGetItem) GetTarget() string

GetTarget returns the Target field value If the value is explicit nil, the zero value for string will be returned

func (*ServiceTestsGetItem) GetTargetOk

func (o *ServiceTestsGetItem) GetTargetOk() (*string, bool)

GetTargetOk returns a tuple with the Target 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 (*ServiceTestsGetItem) GetTemplate

func (o *ServiceTestsGetItem) GetTemplate() string

GetTemplate returns the Template field value

func (*ServiceTestsGetItem) GetTemplateOk

func (o *ServiceTestsGetItem) GetTemplateOk() (*string, bool)

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

func (*ServiceTestsGetItem) GetType

func (o *ServiceTestsGetItem) GetType() string

GetType returns the Type field value

func (*ServiceTestsGetItem) GetTypeOk

func (o *ServiceTestsGetItem) GetTypeOk() (*string, bool)

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

func (ServiceTestsGetItem) MarshalJSON

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

func (*ServiceTestsGetItem) SetCategory

func (o *ServiceTestsGetItem) SetCategory(v string)

SetCategory sets field value

func (*ServiceTestsGetItem) SetId

func (o *ServiceTestsGetItem) SetId(v string)

SetId sets field value

func (*ServiceTestsGetItem) SetIsEnabled

func (o *ServiceTestsGetItem) SetIsEnabled(v bool)

SetIsEnabled sets field value

func (*ServiceTestsGetItem) SetName

func (o *ServiceTestsGetItem) SetName(v string)

SetName sets field value

func (*ServiceTestsGetItem) SetTarget

func (o *ServiceTestsGetItem) SetTarget(v string)

SetTarget sets field value

func (*ServiceTestsGetItem) SetTemplate

func (o *ServiceTestsGetItem) SetTemplate(v string)

SetTemplate sets field value

func (*ServiceTestsGetItem) SetType

func (o *ServiceTestsGetItem) SetType(v string)

SetType sets field value

func (ServiceTestsGetItem) ToMap

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

func (*ServiceTestsGetItem) UnmarshalJSON

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

type ServiceTestsGetResponse

type ServiceTestsGetResponse struct {
	Items []ServiceTestsGetItem `json:"items"`
	Count int32                 `json:"count"`
	Next  NullableString        `json:"next"`
}

ServiceTestsGetResponse struct for ServiceTestsGetResponse

func NewServiceTestsGetResponse

func NewServiceTestsGetResponse(
	items []ServiceTestsGetItem,
	count int32,
	next NullableString,
) *ServiceTestsGetResponse

NewServiceTestsGetResponse instantiates a new ServiceTestsGetResponse object This constructor will assign default values to properties that have it defined, 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 NewServiceTestsGetResponseWithDefaults

func NewServiceTestsGetResponseWithDefaults() *ServiceTestsGetResponse

NewServiceTestsGetResponseWithDefaults instantiates a new ServiceTestsGetResponse object This 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 (*ServiceTestsGetResponse) GetCount

func (o *ServiceTestsGetResponse) GetCount() int32

GetCount returns the Count field value

func (*ServiceTestsGetResponse) GetCountOk

func (o *ServiceTestsGetResponse) GetCountOk() (*int32, bool)

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

func (*ServiceTestsGetResponse) GetItems

GetItems returns the Items field value

func (*ServiceTestsGetResponse) GetItemsOk

func (o *ServiceTestsGetResponse) GetItemsOk() ([]ServiceTestsGetItem, bool)

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

func (*ServiceTestsGetResponse) GetNext

func (o *ServiceTestsGetResponse) GetNext() string

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*ServiceTestsGetResponse) GetNextOk

func (o *ServiceTestsGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (ServiceTestsGetResponse) MarshalJSON

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

func (*ServiceTestsGetResponse) SetCount

func (o *ServiceTestsGetResponse) SetCount(v int32)

SetCount sets field value

func (*ServiceTestsGetResponse) SetItems

SetItems sets field value

func (*ServiceTestsGetResponse) SetNext

func (o *ServiceTestsGetResponse) SetNext(v string)

SetNext sets field value

func (ServiceTestsGetResponse) ToMap

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

func (*ServiceTestsGetResponse) UnmarshalJSON

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

type WiredNetworksGetItem

type WiredNetworksGetItem struct {
	Id                   string         `json:"id"`
	Name                 string         `json:"name"`
	IpVersion            IpVersion      `json:"ipVersion"`
	CreatedAt            time.Time      `json:"createdAt"`
	UpdatedAt            time.Time      `json:"updatedAt"`
	Security             NullableString `json:"security"`
	DnsLookupDomain      NullableString `json:"dnsLookupDomain"`
	DisableEdns          bool           `json:"disableEdns"`
	UseDns64             bool           `json:"useDns64"`
	ExternalConnectivity bool           `json:"externalConnectivity"`
	VLanId               NullableInt32  `json:"vLanId"`
	Type                 string         `json:"type"`
}

WiredNetworksGetItem struct for WiredNetworksGetItem

func NewWiredNetworksGetItem

func NewWiredNetworksGetItem(
	id string,
	name string,
	ipVersion IpVersion,
	createdAt time.Time,
	updatedAt time.Time,
	security NullableString,
	dnsLookupDomain NullableString,
	disableEdns bool,
	useDns64 bool,
	externalConnectivity bool,
	vLanId NullableInt32,
	type_ string,
) *WiredNetworksGetItem

NewWiredNetworksGetItem instantiates a new WiredNetworksGetItem object This constructor will assign default values to properties that have it defined, 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 NewWiredNetworksGetItemWithDefaults

func NewWiredNetworksGetItemWithDefaults() *WiredNetworksGetItem

NewWiredNetworksGetItemWithDefaults instantiates a new WiredNetworksGetItem object This 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 (*WiredNetworksGetItem) GetCreatedAt

func (o *WiredNetworksGetItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*WiredNetworksGetItem) GetCreatedAtOk

func (o *WiredNetworksGetItem) GetCreatedAtOk() (*time.Time, bool)

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

func (*WiredNetworksGetItem) GetDisableEdns

func (o *WiredNetworksGetItem) GetDisableEdns() bool

GetDisableEdns returns the DisableEdns field value

func (*WiredNetworksGetItem) GetDisableEdnsOk

func (o *WiredNetworksGetItem) GetDisableEdnsOk() (*bool, bool)

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

func (*WiredNetworksGetItem) GetDnsLookupDomain

func (o *WiredNetworksGetItem) GetDnsLookupDomain() string

GetDnsLookupDomain returns the DnsLookupDomain field value If the value is explicit nil, the zero value for string will be returned

func (*WiredNetworksGetItem) GetDnsLookupDomainOk

func (o *WiredNetworksGetItem) GetDnsLookupDomainOk() (*string, bool)

GetDnsLookupDomainOk returns a tuple with the DnsLookupDomain 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 (*WiredNetworksGetItem) GetExternalConnectivity

func (o *WiredNetworksGetItem) GetExternalConnectivity() bool

GetExternalConnectivity returns the ExternalConnectivity field value

func (*WiredNetworksGetItem) GetExternalConnectivityOk

func (o *WiredNetworksGetItem) GetExternalConnectivityOk() (*bool, bool)

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

func (*WiredNetworksGetItem) GetId

func (o *WiredNetworksGetItem) GetId() string

GetId returns the Id field value

func (*WiredNetworksGetItem) GetIdOk

func (o *WiredNetworksGetItem) GetIdOk() (*string, bool)

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

func (*WiredNetworksGetItem) GetIpVersion

func (o *WiredNetworksGetItem) GetIpVersion() IpVersion

GetIpVersion returns the IpVersion field value

func (*WiredNetworksGetItem) GetIpVersionOk

func (o *WiredNetworksGetItem) GetIpVersionOk() (*IpVersion, bool)

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

func (*WiredNetworksGetItem) GetName

func (o *WiredNetworksGetItem) GetName() string

GetName returns the Name field value

func (*WiredNetworksGetItem) GetNameOk

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

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

func (*WiredNetworksGetItem) GetSecurity

func (o *WiredNetworksGetItem) GetSecurity() string

GetSecurity returns the Security field value If the value is explicit nil, the zero value for string will be returned

func (*WiredNetworksGetItem) GetSecurityOk

func (o *WiredNetworksGetItem) GetSecurityOk() (*string, bool)

GetSecurityOk returns a tuple with the Security 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 (*WiredNetworksGetItem) GetType

func (o *WiredNetworksGetItem) GetType() string

GetType returns the Type field value

func (*WiredNetworksGetItem) GetTypeOk

func (o *WiredNetworksGetItem) GetTypeOk() (*string, bool)

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

func (*WiredNetworksGetItem) GetUpdatedAt

func (o *WiredNetworksGetItem) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*WiredNetworksGetItem) GetUpdatedAtOk

func (o *WiredNetworksGetItem) GetUpdatedAtOk() (*time.Time, bool)

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

func (*WiredNetworksGetItem) GetUseDns64

func (o *WiredNetworksGetItem) GetUseDns64() bool

GetUseDns64 returns the UseDns64 field value

func (*WiredNetworksGetItem) GetUseDns64Ok

func (o *WiredNetworksGetItem) GetUseDns64Ok() (*bool, bool)

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

func (*WiredNetworksGetItem) GetVLanId

func (o *WiredNetworksGetItem) GetVLanId() int32

GetVLanId returns the VLanId field value If the value is explicit nil, the zero value for int32 will be returned

func (*WiredNetworksGetItem) GetVLanIdOk

func (o *WiredNetworksGetItem) GetVLanIdOk() (*int32, bool)

GetVLanIdOk returns a tuple with the VLanId 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 (WiredNetworksGetItem) MarshalJSON

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

func (*WiredNetworksGetItem) SetCreatedAt

func (o *WiredNetworksGetItem) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*WiredNetworksGetItem) SetDisableEdns

func (o *WiredNetworksGetItem) SetDisableEdns(v bool)

SetDisableEdns sets field value

func (*WiredNetworksGetItem) SetDnsLookupDomain

func (o *WiredNetworksGetItem) SetDnsLookupDomain(v string)

SetDnsLookupDomain sets field value

func (*WiredNetworksGetItem) SetExternalConnectivity

func (o *WiredNetworksGetItem) SetExternalConnectivity(v bool)

SetExternalConnectivity sets field value

func (*WiredNetworksGetItem) SetId

func (o *WiredNetworksGetItem) SetId(v string)

SetId sets field value

func (*WiredNetworksGetItem) SetIpVersion

func (o *WiredNetworksGetItem) SetIpVersion(v IpVersion)

SetIpVersion sets field value

func (*WiredNetworksGetItem) SetName

func (o *WiredNetworksGetItem) SetName(v string)

SetName sets field value

func (*WiredNetworksGetItem) SetSecurity

func (o *WiredNetworksGetItem) SetSecurity(v string)

SetSecurity sets field value

func (*WiredNetworksGetItem) SetType

func (o *WiredNetworksGetItem) SetType(v string)

SetType sets field value

func (*WiredNetworksGetItem) SetUpdatedAt

func (o *WiredNetworksGetItem) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*WiredNetworksGetItem) SetUseDns64

func (o *WiredNetworksGetItem) SetUseDns64(v bool)

SetUseDns64 sets field value

func (*WiredNetworksGetItem) SetVLanId

func (o *WiredNetworksGetItem) SetVLanId(v int32)

SetVLanId sets field value

func (WiredNetworksGetItem) ToMap

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

func (*WiredNetworksGetItem) UnmarshalJSON

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

type WiredNetworksGetResponse

type WiredNetworksGetResponse struct {
	Items []WiredNetworksGetItem `json:"items"`
	Count int32                  `json:"count"`
	Next  NullableString         `json:"next"`
}

WiredNetworksGetResponse struct for WiredNetworksGetResponse

func NewWiredNetworksGetResponse

func NewWiredNetworksGetResponse(
	items []WiredNetworksGetItem,
	count int32,
	next NullableString,
) *WiredNetworksGetResponse

NewWiredNetworksGetResponse instantiates a new WiredNetworksGetResponse object This constructor will assign default values to properties that have it defined, 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 NewWiredNetworksGetResponseWithDefaults

func NewWiredNetworksGetResponseWithDefaults() *WiredNetworksGetResponse

NewWiredNetworksGetResponseWithDefaults instantiates a new WiredNetworksGetResponse object This 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 (*WiredNetworksGetResponse) GetCount

func (o *WiredNetworksGetResponse) GetCount() int32

GetCount returns the Count field value

func (*WiredNetworksGetResponse) GetCountOk

func (o *WiredNetworksGetResponse) GetCountOk() (*int32, bool)

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

func (*WiredNetworksGetResponse) GetItems

GetItems returns the Items field value

func (*WiredNetworksGetResponse) GetItemsOk

func (o *WiredNetworksGetResponse) GetItemsOk() ([]WiredNetworksGetItem, bool)

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

func (*WiredNetworksGetResponse) GetNext

func (o *WiredNetworksGetResponse) GetNext() string

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*WiredNetworksGetResponse) GetNextOk

func (o *WiredNetworksGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (WiredNetworksGetResponse) MarshalJSON

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

func (*WiredNetworksGetResponse) SetCount

func (o *WiredNetworksGetResponse) SetCount(v int32)

SetCount sets field value

func (*WiredNetworksGetResponse) SetItems

SetItems sets field value

func (*WiredNetworksGetResponse) SetNext

func (o *WiredNetworksGetResponse) SetNext(v string)

SetNext sets field value

func (WiredNetworksGetResponse) ToMap

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

func (*WiredNetworksGetResponse) UnmarshalJSON

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

type WirelessNetworksGetItem

type WirelessNetworksGetItem struct {
	Id                   string         `json:"id"`
	Name                 string         `json:"name"`
	Ssid                 string         `json:"ssid"`
	Security             NullableString `json:"security"`
	IpVersion            IpVersion      `json:"ipVersion"`
	CreatedAt            time.Time      `json:"createdAt"`
	UpdatedAt            time.Time      `json:"updatedAt"`
	Hidden               bool           `json:"hidden"`
	BandLocking          string         `json:"bandLocking"`
	DnsLookupDomain      NullableString `json:"dnsLookupDomain"`
	DisableEdns          bool           `json:"disableEdns"`
	UseDns64             bool           `json:"useDns64"`
	ExternalConnectivity bool           `json:"externalConnectivity"`
	Type                 string         `json:"type"`
}

WirelessNetworksGetItem struct for WirelessNetworksGetItem

func NewWirelessNetworksGetItem

func NewWirelessNetworksGetItem(
	id string,
	name string,
	ssid string,
	security NullableString,
	ipVersion IpVersion,
	createdAt time.Time,
	updatedAt time.Time,
	hidden bool,
	bandLocking string,
	dnsLookupDomain NullableString,
	disableEdns bool,
	useDns64 bool,
	externalConnectivity bool,
	type_ string,
) *WirelessNetworksGetItem

NewWirelessNetworksGetItem instantiates a new WirelessNetworksGetItem object This constructor will assign default values to properties that have it defined, 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 NewWirelessNetworksGetItemWithDefaults

func NewWirelessNetworksGetItemWithDefaults() *WirelessNetworksGetItem

NewWirelessNetworksGetItemWithDefaults instantiates a new WirelessNetworksGetItem object This 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 (*WirelessNetworksGetItem) GetBandLocking

func (o *WirelessNetworksGetItem) GetBandLocking() string

GetBandLocking returns the BandLocking field value

func (*WirelessNetworksGetItem) GetBandLockingOk

func (o *WirelessNetworksGetItem) GetBandLockingOk() (*string, bool)

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

func (*WirelessNetworksGetItem) GetCreatedAt

func (o *WirelessNetworksGetItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*WirelessNetworksGetItem) GetCreatedAtOk

func (o *WirelessNetworksGetItem) GetCreatedAtOk() (*time.Time, bool)

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

func (*WirelessNetworksGetItem) GetDisableEdns

func (o *WirelessNetworksGetItem) GetDisableEdns() bool

GetDisableEdns returns the DisableEdns field value

func (*WirelessNetworksGetItem) GetDisableEdnsOk

func (o *WirelessNetworksGetItem) GetDisableEdnsOk() (*bool, bool)

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

func (*WirelessNetworksGetItem) GetDnsLookupDomain

func (o *WirelessNetworksGetItem) GetDnsLookupDomain() string

GetDnsLookupDomain returns the DnsLookupDomain field value If the value is explicit nil, the zero value for string will be returned

func (*WirelessNetworksGetItem) GetDnsLookupDomainOk

func (o *WirelessNetworksGetItem) GetDnsLookupDomainOk() (*string, bool)

GetDnsLookupDomainOk returns a tuple with the DnsLookupDomain 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 (*WirelessNetworksGetItem) GetExternalConnectivity

func (o *WirelessNetworksGetItem) GetExternalConnectivity() bool

GetExternalConnectivity returns the ExternalConnectivity field value

func (*WirelessNetworksGetItem) GetExternalConnectivityOk

func (o *WirelessNetworksGetItem) GetExternalConnectivityOk() (*bool, bool)

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

func (*WirelessNetworksGetItem) GetHidden

func (o *WirelessNetworksGetItem) GetHidden() bool

GetHidden returns the Hidden field value

func (*WirelessNetworksGetItem) GetHiddenOk

func (o *WirelessNetworksGetItem) GetHiddenOk() (*bool, bool)

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

func (*WirelessNetworksGetItem) GetId

func (o *WirelessNetworksGetItem) GetId() string

GetId returns the Id field value

func (*WirelessNetworksGetItem) GetIdOk

func (o *WirelessNetworksGetItem) GetIdOk() (*string, bool)

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

func (*WirelessNetworksGetItem) GetIpVersion

func (o *WirelessNetworksGetItem) GetIpVersion() IpVersion

GetIpVersion returns the IpVersion field value

func (*WirelessNetworksGetItem) GetIpVersionOk

func (o *WirelessNetworksGetItem) GetIpVersionOk() (*IpVersion, bool)

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

func (*WirelessNetworksGetItem) GetName

func (o *WirelessNetworksGetItem) GetName() string

GetName returns the Name field value

func (*WirelessNetworksGetItem) GetNameOk

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

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

func (*WirelessNetworksGetItem) GetSecurity

func (o *WirelessNetworksGetItem) GetSecurity() string

GetSecurity returns the Security field value If the value is explicit nil, the zero value for string will be returned

func (*WirelessNetworksGetItem) GetSecurityOk

func (o *WirelessNetworksGetItem) GetSecurityOk() (*string, bool)

GetSecurityOk returns a tuple with the Security 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 (*WirelessNetworksGetItem) GetSsid

func (o *WirelessNetworksGetItem) GetSsid() string

GetSsid returns the Ssid field value

func (*WirelessNetworksGetItem) GetSsidOk

func (o *WirelessNetworksGetItem) GetSsidOk() (*string, bool)

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

func (*WirelessNetworksGetItem) GetType

func (o *WirelessNetworksGetItem) GetType() string

GetType returns the Type field value

func (*WirelessNetworksGetItem) GetTypeOk

func (o *WirelessNetworksGetItem) GetTypeOk() (*string, bool)

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

func (*WirelessNetworksGetItem) GetUpdatedAt

func (o *WirelessNetworksGetItem) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*WirelessNetworksGetItem) GetUpdatedAtOk

func (o *WirelessNetworksGetItem) GetUpdatedAtOk() (*time.Time, bool)

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

func (*WirelessNetworksGetItem) GetUseDns64

func (o *WirelessNetworksGetItem) GetUseDns64() bool

GetUseDns64 returns the UseDns64 field value

func (*WirelessNetworksGetItem) GetUseDns64Ok

func (o *WirelessNetworksGetItem) GetUseDns64Ok() (*bool, bool)

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

func (WirelessNetworksGetItem) MarshalJSON

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

func (*WirelessNetworksGetItem) SetBandLocking

func (o *WirelessNetworksGetItem) SetBandLocking(v string)

SetBandLocking sets field value

func (*WirelessNetworksGetItem) SetCreatedAt

func (o *WirelessNetworksGetItem) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*WirelessNetworksGetItem) SetDisableEdns

func (o *WirelessNetworksGetItem) SetDisableEdns(v bool)

SetDisableEdns sets field value

func (*WirelessNetworksGetItem) SetDnsLookupDomain

func (o *WirelessNetworksGetItem) SetDnsLookupDomain(v string)

SetDnsLookupDomain sets field value

func (*WirelessNetworksGetItem) SetExternalConnectivity

func (o *WirelessNetworksGetItem) SetExternalConnectivity(v bool)

SetExternalConnectivity sets field value

func (*WirelessNetworksGetItem) SetHidden

func (o *WirelessNetworksGetItem) SetHidden(v bool)

SetHidden sets field value

func (*WirelessNetworksGetItem) SetId

func (o *WirelessNetworksGetItem) SetId(v string)

SetId sets field value

func (*WirelessNetworksGetItem) SetIpVersion

func (o *WirelessNetworksGetItem) SetIpVersion(v IpVersion)

SetIpVersion sets field value

func (*WirelessNetworksGetItem) SetName

func (o *WirelessNetworksGetItem) SetName(v string)

SetName sets field value

func (*WirelessNetworksGetItem) SetSecurity

func (o *WirelessNetworksGetItem) SetSecurity(v string)

SetSecurity sets field value

func (*WirelessNetworksGetItem) SetSsid

func (o *WirelessNetworksGetItem) SetSsid(v string)

SetSsid sets field value

func (*WirelessNetworksGetItem) SetType

func (o *WirelessNetworksGetItem) SetType(v string)

SetType sets field value

func (*WirelessNetworksGetItem) SetUpdatedAt

func (o *WirelessNetworksGetItem) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*WirelessNetworksGetItem) SetUseDns64

func (o *WirelessNetworksGetItem) SetUseDns64(v bool)

SetUseDns64 sets field value

func (WirelessNetworksGetItem) ToMap

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

func (*WirelessNetworksGetItem) UnmarshalJSON

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

type WirelessNetworksGetResponse

type WirelessNetworksGetResponse struct {
	Items []WirelessNetworksGetItem `json:"items"`
	Count int32                     `json:"count"`
	Next  NullableString            `json:"next"`
}

WirelessNetworksGetResponse struct for WirelessNetworksGetResponse

func NewWirelessNetworksGetResponse

func NewWirelessNetworksGetResponse(
	items []WirelessNetworksGetItem,
	count int32,
	next NullableString,
) *WirelessNetworksGetResponse

NewWirelessNetworksGetResponse instantiates a new WirelessNetworksGetResponse object This constructor will assign default values to properties that have it defined, 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 NewWirelessNetworksGetResponseWithDefaults

func NewWirelessNetworksGetResponseWithDefaults() *WirelessNetworksGetResponse

NewWirelessNetworksGetResponseWithDefaults instantiates a new WirelessNetworksGetResponse object This 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 (*WirelessNetworksGetResponse) GetCount

func (o *WirelessNetworksGetResponse) GetCount() int32

GetCount returns the Count field value

func (*WirelessNetworksGetResponse) GetCountOk

func (o *WirelessNetworksGetResponse) GetCountOk() (*int32, bool)

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

func (*WirelessNetworksGetResponse) GetItems

GetItems returns the Items field value

func (*WirelessNetworksGetResponse) GetItemsOk

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

func (*WirelessNetworksGetResponse) GetNext

func (o *WirelessNetworksGetResponse) GetNext() string

GetNext returns the Next field value If the value is explicit nil, the zero value for string will be returned

func (*WirelessNetworksGetResponse) GetNextOk

func (o *WirelessNetworksGetResponse) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next 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 (WirelessNetworksGetResponse) MarshalJSON

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

func (*WirelessNetworksGetResponse) SetCount

func (o *WirelessNetworksGetResponse) SetCount(v int32)

SetCount sets field value

func (*WirelessNetworksGetResponse) SetItems

SetItems sets field value

func (*WirelessNetworksGetResponse) SetNext

func (o *WirelessNetworksGetResponse) SetNext(v string)

SetNext sets field value

func (WirelessNetworksGetResponse) ToMap

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

func (*WirelessNetworksGetResponse) UnmarshalJSON

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

Source Files

Jump to

Keyboard shortcuts

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