integrationsapi

package
v0.0.0-...-3922820 Latest Latest
Warning

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

Go to latest
Published: Jan 8, 2026 License: Apache-2.0 Imports: 21 Imported by: 0

README

Go API client for integrationsapi

Integrations Service REST API.

Overview

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

  • API version: 0.1.0
  • Package version: 1.0.0
  • Generator version: 7.11.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import integrationsapi "github.com/catenaclearing/catena-sdk-go/gen/integrations"

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

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

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

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

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

Documentation for API Endpoints

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

Class Method HTTP request Description
ConnectionsAPI CreateConnection Post /v2/integrations/connections Create Connection
ConnectionsAPI CreateSchedule Post /v2/integrations/connections/{connection_id}/schedules Create Schedule
ConnectionsAPI DeleteConnection Delete /v2/integrations/connections/{connection_id} Delete Connection
ConnectionsAPI DeleteSchedule Delete /v2/integrations/connections/{connection_id}/schedules/{schedule_id} Delete Schedule
ConnectionsAPI GetConnection Get /v2/integrations/connections/{connection_id} Get Connection
ConnectionsAPI GetSchedule Get /v2/integrations/connections/{connection_id}/schedules/{schedule_id} Get Schedule
ConnectionsAPI ListConnections Get /v2/integrations/connections List Connections
ConnectionsAPI ListExecutions Get /v2/integrations/connections/{connection_id}/schedules/{schedule_id}/executions List Executions
ConnectionsAPI ListSchedules Get /v2/integrations/connections/{connection_id}/schedules List Schedules
ConnectionsAPI UpdateConnection Patch /v2/integrations/connections/{connection_id} Update Connection
ConnectionsAPI UpdateSchedule Patch /v2/integrations/connections/{connection_id}/schedules/{schedule_id} Update Schedule

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

Bearer
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Example

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

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, integrationsapi.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)
Bearer

Example

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

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, integrationsapi.ContextOAuth2, tokenSource)
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

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 (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// 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 AllowedDatabaseDriverEnumEnumValues = []DatabaseDriverEnum{
	"postgresql+psycopg2",
	"cockroachdb",
	"mongodb",
	"mysql",
	"mariadb",
	"snowflake",
	"clickhouse",
}

All allowed values of DatabaseDriverEnum enum

View Source
var AllowedResourceEnumEnumValues = []ResourceEnum{
	"asset",
	"driver_event_log",
	"driver_safety_event",
	"dvir_log",
	"dvir_log_defect",
	"hos_availability",
	"hos_daily_snapshot",
	"hos_event",
	"hos_log",
	"hos_log_annotation",
	"hos_log_attachment",
	"hos_violation",
	"ifta_summary",
	"location_segment",
	"user",
	"vehicle",
	"vehicle_location",
	"vehicle_sensor",
	"trailer",
}

All allowed values of ResourceEnum enum

View Source
var AllowedStatusEnumEnumValues = []StatusEnum{
	"active",
	"inactive",
	"paused",
	"expired",
	"cancelled",
	"pending",
	"deleted",
	"stale",
	"success",
	"failed",
	"scheduled",
	"accepted",
	"declined",
}

All allowed values of StatusEnum enum

View Source
var AllowedTspEnumEnumValues = []TspEnum{
	"ada",
	"ai_eld",
	"apollo",
	"ascend",
	"azuga",
	"bigroad",
	"blueinktech",
	"bouncie",
	"budgetgps",
	"cyntrx",
	"driver_tech",
	"dsg_elogs",
	"dynamic_eld",
	"eld_mandate",
	"eroad",
	"evo_eld",
	"ezlogz",
	"factor_eld",
	"fleetcomplete",
	"fleetcompletehub",
	"fleethunt",
	"fleetsharp",
	"fleetup",
	"fm",
	"forwardthinking",
	"geotab",
	"gpsinsight",
	"gpstab",
	"gpstrackit",
	"greenlight",
	"hcss",
	"hosconnect",
	"hos247",
	"hutch",
	"intellishift",
	"isaac",
	"jjkeller",
	"knight_eld",
	"konexial",
	"linxup",
	"lucid_eld",
	"lytx",
	"mapon",
	"matrack",
	"maven",
	"mobilefleet",
	"motive",
	"my_logs_eld",
	"nero",
	"netradyne",
	"new_eld_world",
	"nextraq",
	"onestep",
	"ontime_eld",
	"optima",
	"orbcomm",
	"orient_eld",
	"payd",
	"peoplenet",
	"phoenix",
	"pop_eld",
	"randmcnally",
	"rastrac",
	"routemate",
	"samsara",
	"selectivedrive",
	"smart_elds",
	"sparkle_eld",
	"omnitracs",
	"spireon",
	"surfsight",
	"swift",
	"switchboard",
	"teletracnavman",
	"teletracnavman_director",
	"telogis",
	"tenna",
	"think",
	"tive",
	"traccar",
	"transflo",
	"trimble",
	"truckx",
	"tt",
	"us_fast_eld",
	"verizon",
	"verizon_reveal",
	"vista_eld",
	"vistracks",
	"webfleet",
	"xplore_eld",
	"zonar",
	"zubie",
}

All allowed values of TspEnum 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 {
	ConnectionsAPI ConnectionsAPI
	// contains filtered or unexported fields
}

APIClient manages communication with the Telematics Integrations Service - REST API API v0.1.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 AccessTokenCredsInput

type AccessTokenCredsInput struct {
	AccessToken  string         `json:"access_token"`
	TokenType    string         `json:"token_type"`
	ExpiresIn    NullableInt32  `json:"expires_in,omitempty"`
	RefreshToken NullableString `json:"refresh_token,omitempty"`
	Scope        NullableString `json:"scope,omitempty"`
	UserId       NullableString `json:"user_id,omitempty"`
	Host         NullableString `json:"host,omitempty"`
}

AccessTokenCredsInput Access Token Credentials

func NewAccessTokenCredsInput

func NewAccessTokenCredsInput(accessToken string, tokenType string) *AccessTokenCredsInput

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

func NewAccessTokenCredsInputWithDefaults() *AccessTokenCredsInput

NewAccessTokenCredsInputWithDefaults instantiates a new AccessTokenCredsInput object This 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 (*AccessTokenCredsInput) GetAccessToken

func (o *AccessTokenCredsInput) GetAccessToken() string

GetAccessToken returns the AccessToken field value

func (*AccessTokenCredsInput) GetAccessTokenOk

func (o *AccessTokenCredsInput) GetAccessTokenOk() (*string, bool)

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

func (*AccessTokenCredsInput) GetExpiresIn

func (o *AccessTokenCredsInput) GetExpiresIn() int32

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

func (*AccessTokenCredsInput) GetExpiresInOk

func (o *AccessTokenCredsInput) GetExpiresInOk() (*int32, bool)

GetExpiresInOk returns a tuple with the ExpiresIn 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 (*AccessTokenCredsInput) GetHost

func (o *AccessTokenCredsInput) GetHost() string

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

func (*AccessTokenCredsInput) GetHostOk

func (o *AccessTokenCredsInput) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host 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 (*AccessTokenCredsInput) GetRefreshToken

func (o *AccessTokenCredsInput) GetRefreshToken() string

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

func (*AccessTokenCredsInput) GetRefreshTokenOk

func (o *AccessTokenCredsInput) GetRefreshTokenOk() (*string, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken 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 (*AccessTokenCredsInput) GetScope

func (o *AccessTokenCredsInput) GetScope() string

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

func (*AccessTokenCredsInput) GetScopeOk

func (o *AccessTokenCredsInput) GetScopeOk() (*string, bool)

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

func (*AccessTokenCredsInput) GetTokenType

func (o *AccessTokenCredsInput) GetTokenType() string

GetTokenType returns the TokenType field value

func (*AccessTokenCredsInput) GetTokenTypeOk

func (o *AccessTokenCredsInput) GetTokenTypeOk() (*string, bool)

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

func (*AccessTokenCredsInput) GetUserId

func (o *AccessTokenCredsInput) GetUserId() string

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

func (*AccessTokenCredsInput) GetUserIdOk

func (o *AccessTokenCredsInput) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId 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 (*AccessTokenCredsInput) HasExpiresIn

func (o *AccessTokenCredsInput) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*AccessTokenCredsInput) HasHost

func (o *AccessTokenCredsInput) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*AccessTokenCredsInput) HasRefreshToken

func (o *AccessTokenCredsInput) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (*AccessTokenCredsInput) HasScope

func (o *AccessTokenCredsInput) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*AccessTokenCredsInput) HasUserId

func (o *AccessTokenCredsInput) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (AccessTokenCredsInput) MarshalJSON

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

func (*AccessTokenCredsInput) SetAccessToken

func (o *AccessTokenCredsInput) SetAccessToken(v string)

SetAccessToken sets field value

func (*AccessTokenCredsInput) SetExpiresIn

func (o *AccessTokenCredsInput) SetExpiresIn(v int32)

SetExpiresIn gets a reference to the given NullableInt32 and assigns it to the ExpiresIn field.

func (*AccessTokenCredsInput) SetExpiresInNil

func (o *AccessTokenCredsInput) SetExpiresInNil()

SetExpiresInNil sets the value for ExpiresIn to be an explicit nil

func (*AccessTokenCredsInput) SetHost

func (o *AccessTokenCredsInput) SetHost(v string)

SetHost gets a reference to the given NullableString and assigns it to the Host field.

func (*AccessTokenCredsInput) SetHostNil

func (o *AccessTokenCredsInput) SetHostNil()

SetHostNil sets the value for Host to be an explicit nil

func (*AccessTokenCredsInput) SetRefreshToken

func (o *AccessTokenCredsInput) SetRefreshToken(v string)

SetRefreshToken gets a reference to the given NullableString and assigns it to the RefreshToken field.

func (*AccessTokenCredsInput) SetRefreshTokenNil

func (o *AccessTokenCredsInput) SetRefreshTokenNil()

SetRefreshTokenNil sets the value for RefreshToken to be an explicit nil

func (*AccessTokenCredsInput) SetScope

func (o *AccessTokenCredsInput) SetScope(v string)

SetScope gets a reference to the given NullableString and assigns it to the Scope field.

func (*AccessTokenCredsInput) SetScopeNil

func (o *AccessTokenCredsInput) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (*AccessTokenCredsInput) SetTokenType

func (o *AccessTokenCredsInput) SetTokenType(v string)

SetTokenType sets field value

func (*AccessTokenCredsInput) SetUserId

func (o *AccessTokenCredsInput) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*AccessTokenCredsInput) SetUserIdNil

func (o *AccessTokenCredsInput) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (AccessTokenCredsInput) ToMap

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

func (*AccessTokenCredsInput) UnmarshalJSON

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

func (*AccessTokenCredsInput) UnsetExpiresIn

func (o *AccessTokenCredsInput) UnsetExpiresIn()

UnsetExpiresIn ensures that no value is present for ExpiresIn, not even an explicit nil

func (*AccessTokenCredsInput) UnsetHost

func (o *AccessTokenCredsInput) UnsetHost()

UnsetHost ensures that no value is present for Host, not even an explicit nil

func (*AccessTokenCredsInput) UnsetRefreshToken

func (o *AccessTokenCredsInput) UnsetRefreshToken()

UnsetRefreshToken ensures that no value is present for RefreshToken, not even an explicit nil

func (*AccessTokenCredsInput) UnsetScope

func (o *AccessTokenCredsInput) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

func (*AccessTokenCredsInput) UnsetUserId

func (o *AccessTokenCredsInput) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type AccessTokenCredsOutput

type AccessTokenCredsOutput struct {
	AccessToken  interface{}    `json:"access_token"`
	TokenType    string         `json:"token_type"`
	ExpiresIn    NullableInt32  `json:"expires_in,omitempty"`
	RefreshToken interface{}    `json:"refresh_token,omitempty"`
	Scope        NullableString `json:"scope,omitempty"`
	UserId       NullableString `json:"user_id,omitempty"`
	Host         interface{}    `json:"host,omitempty"`
}

AccessTokenCredsOutput Access Token Credentials

func NewAccessTokenCredsOutput

func NewAccessTokenCredsOutput(accessToken interface{}, tokenType string) *AccessTokenCredsOutput

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

func NewAccessTokenCredsOutputWithDefaults() *AccessTokenCredsOutput

NewAccessTokenCredsOutputWithDefaults instantiates a new AccessTokenCredsOutput object This 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 (*AccessTokenCredsOutput) GetAccessToken

func (o *AccessTokenCredsOutput) GetAccessToken() interface{}

GetAccessToken returns the AccessToken field value If the value is explicit nil, the zero value for interface{} will be returned

func (*AccessTokenCredsOutput) GetAccessTokenOk

func (o *AccessTokenCredsOutput) GetAccessTokenOk() (*interface{}, bool)

GetAccessTokenOk returns a tuple with the AccessToken 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 (*AccessTokenCredsOutput) GetExpiresIn

func (o *AccessTokenCredsOutput) GetExpiresIn() int32

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

func (*AccessTokenCredsOutput) GetExpiresInOk

func (o *AccessTokenCredsOutput) GetExpiresInOk() (*int32, bool)

GetExpiresInOk returns a tuple with the ExpiresIn 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 (*AccessTokenCredsOutput) GetHost

func (o *AccessTokenCredsOutput) GetHost() interface{}

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

func (*AccessTokenCredsOutput) GetHostOk

func (o *AccessTokenCredsOutput) GetHostOk() (*interface{}, bool)

GetHostOk returns a tuple with the Host 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 (*AccessTokenCredsOutput) GetRefreshToken

func (o *AccessTokenCredsOutput) GetRefreshToken() interface{}

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

func (*AccessTokenCredsOutput) GetRefreshTokenOk

func (o *AccessTokenCredsOutput) GetRefreshTokenOk() (*interface{}, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken 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 (*AccessTokenCredsOutput) GetScope

func (o *AccessTokenCredsOutput) GetScope() string

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

func (*AccessTokenCredsOutput) GetScopeOk

func (o *AccessTokenCredsOutput) GetScopeOk() (*string, bool)

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

func (*AccessTokenCredsOutput) GetTokenType

func (o *AccessTokenCredsOutput) GetTokenType() string

GetTokenType returns the TokenType field value

func (*AccessTokenCredsOutput) GetTokenTypeOk

func (o *AccessTokenCredsOutput) GetTokenTypeOk() (*string, bool)

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

func (*AccessTokenCredsOutput) GetUserId

func (o *AccessTokenCredsOutput) GetUserId() string

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

func (*AccessTokenCredsOutput) GetUserIdOk

func (o *AccessTokenCredsOutput) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId 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 (*AccessTokenCredsOutput) HasExpiresIn

func (o *AccessTokenCredsOutput) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*AccessTokenCredsOutput) HasHost

func (o *AccessTokenCredsOutput) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*AccessTokenCredsOutput) HasRefreshToken

func (o *AccessTokenCredsOutput) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (*AccessTokenCredsOutput) HasScope

func (o *AccessTokenCredsOutput) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*AccessTokenCredsOutput) HasUserId

func (o *AccessTokenCredsOutput) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (AccessTokenCredsOutput) MarshalJSON

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

func (*AccessTokenCredsOutput) SetAccessToken

func (o *AccessTokenCredsOutput) SetAccessToken(v interface{})

SetAccessToken sets field value

func (*AccessTokenCredsOutput) SetExpiresIn

func (o *AccessTokenCredsOutput) SetExpiresIn(v int32)

SetExpiresIn gets a reference to the given NullableInt32 and assigns it to the ExpiresIn field.

func (*AccessTokenCredsOutput) SetExpiresInNil

func (o *AccessTokenCredsOutput) SetExpiresInNil()

SetExpiresInNil sets the value for ExpiresIn to be an explicit nil

func (*AccessTokenCredsOutput) SetHost

func (o *AccessTokenCredsOutput) SetHost(v interface{})

SetHost gets a reference to the given interface{} and assigns it to the Host field.

func (*AccessTokenCredsOutput) SetRefreshToken

func (o *AccessTokenCredsOutput) SetRefreshToken(v interface{})

SetRefreshToken gets a reference to the given interface{} and assigns it to the RefreshToken field.

func (*AccessTokenCredsOutput) SetScope

func (o *AccessTokenCredsOutput) SetScope(v string)

SetScope gets a reference to the given NullableString and assigns it to the Scope field.

func (*AccessTokenCredsOutput) SetScopeNil

func (o *AccessTokenCredsOutput) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (*AccessTokenCredsOutput) SetTokenType

func (o *AccessTokenCredsOutput) SetTokenType(v string)

SetTokenType sets field value

func (*AccessTokenCredsOutput) SetUserId

func (o *AccessTokenCredsOutput) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*AccessTokenCredsOutput) SetUserIdNil

func (o *AccessTokenCredsOutput) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (AccessTokenCredsOutput) ToMap

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

func (*AccessTokenCredsOutput) UnmarshalJSON

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

func (*AccessTokenCredsOutput) UnsetExpiresIn

func (o *AccessTokenCredsOutput) UnsetExpiresIn()

UnsetExpiresIn ensures that no value is present for ExpiresIn, not even an explicit nil

func (*AccessTokenCredsOutput) UnsetScope

func (o *AccessTokenCredsOutput) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

func (*AccessTokenCredsOutput) UnsetUserId

func (o *AccessTokenCredsOutput) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type ApiBasicCredsInput

type ApiBasicCredsInput struct {
	Username string         `json:"username"`
	Password string         `json:"password"`
	Url      NullableString `json:"url,omitempty"`
	AuthCode NullableString `json:"auth_code,omitempty"`
	Host     NullableString `json:"host,omitempty"`
}

ApiBasicCredsInput API Basic Connection model

func NewApiBasicCredsInput

func NewApiBasicCredsInput(username string, password string) *ApiBasicCredsInput

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

func NewApiBasicCredsInputWithDefaults() *ApiBasicCredsInput

NewApiBasicCredsInputWithDefaults instantiates a new ApiBasicCredsInput object This 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 (*ApiBasicCredsInput) GetAuthCode

func (o *ApiBasicCredsInput) GetAuthCode() string

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

func (*ApiBasicCredsInput) GetAuthCodeOk

func (o *ApiBasicCredsInput) GetAuthCodeOk() (*string, bool)

GetAuthCodeOk returns a tuple with the AuthCode 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 (*ApiBasicCredsInput) GetHost

func (o *ApiBasicCredsInput) GetHost() string

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

func (*ApiBasicCredsInput) GetHostOk

func (o *ApiBasicCredsInput) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host 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 (*ApiBasicCredsInput) GetPassword

func (o *ApiBasicCredsInput) GetPassword() string

GetPassword returns the Password field value

func (*ApiBasicCredsInput) GetPasswordOk

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

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

func (*ApiBasicCredsInput) GetUrl

func (o *ApiBasicCredsInput) GetUrl() string

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

func (*ApiBasicCredsInput) GetUrlOk

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

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

func (*ApiBasicCredsInput) GetUsername

func (o *ApiBasicCredsInput) GetUsername() string

GetUsername returns the Username field value

func (*ApiBasicCredsInput) GetUsernameOk

func (o *ApiBasicCredsInput) GetUsernameOk() (*string, bool)

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

func (*ApiBasicCredsInput) HasAuthCode

func (o *ApiBasicCredsInput) HasAuthCode() bool

HasAuthCode returns a boolean if a field has been set.

func (*ApiBasicCredsInput) HasHost

func (o *ApiBasicCredsInput) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*ApiBasicCredsInput) HasUrl

func (o *ApiBasicCredsInput) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ApiBasicCredsInput) MarshalJSON

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

func (*ApiBasicCredsInput) SetAuthCode

func (o *ApiBasicCredsInput) SetAuthCode(v string)

SetAuthCode gets a reference to the given NullableString and assigns it to the AuthCode field.

func (*ApiBasicCredsInput) SetAuthCodeNil

func (o *ApiBasicCredsInput) SetAuthCodeNil()

SetAuthCodeNil sets the value for AuthCode to be an explicit nil

func (*ApiBasicCredsInput) SetHost

func (o *ApiBasicCredsInput) SetHost(v string)

SetHost gets a reference to the given NullableString and assigns it to the Host field.

func (*ApiBasicCredsInput) SetHostNil

func (o *ApiBasicCredsInput) SetHostNil()

SetHostNil sets the value for Host to be an explicit nil

func (*ApiBasicCredsInput) SetPassword

func (o *ApiBasicCredsInput) SetPassword(v string)

SetPassword sets field value

func (*ApiBasicCredsInput) SetUrl

func (o *ApiBasicCredsInput) SetUrl(v string)

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

func (*ApiBasicCredsInput) SetUrlNil

func (o *ApiBasicCredsInput) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*ApiBasicCredsInput) SetUsername

func (o *ApiBasicCredsInput) SetUsername(v string)

SetUsername sets field value

func (ApiBasicCredsInput) ToMap

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

func (*ApiBasicCredsInput) UnmarshalJSON

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

func (*ApiBasicCredsInput) UnsetAuthCode

func (o *ApiBasicCredsInput) UnsetAuthCode()

UnsetAuthCode ensures that no value is present for AuthCode, not even an explicit nil

func (*ApiBasicCredsInput) UnsetHost

func (o *ApiBasicCredsInput) UnsetHost()

UnsetHost ensures that no value is present for Host, not even an explicit nil

func (*ApiBasicCredsInput) UnsetUrl

func (o *ApiBasicCredsInput) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type ApiBasicCredsOutput

type ApiBasicCredsOutput struct {
	Username interface{}    `json:"username"`
	Password interface{}    `json:"password"`
	Url      NullableString `json:"url,omitempty"`
	AuthCode interface{}    `json:"auth_code,omitempty"`
	Host     interface{}    `json:"host,omitempty"`
}

ApiBasicCredsOutput API Basic Connection model

func NewApiBasicCredsOutput

func NewApiBasicCredsOutput(username interface{}, password interface{}) *ApiBasicCredsOutput

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

func NewApiBasicCredsOutputWithDefaults() *ApiBasicCredsOutput

NewApiBasicCredsOutputWithDefaults instantiates a new ApiBasicCredsOutput object This 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 (*ApiBasicCredsOutput) GetAuthCode

func (o *ApiBasicCredsOutput) GetAuthCode() interface{}

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

func (*ApiBasicCredsOutput) GetAuthCodeOk

func (o *ApiBasicCredsOutput) GetAuthCodeOk() (*interface{}, bool)

GetAuthCodeOk returns a tuple with the AuthCode 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 (*ApiBasicCredsOutput) GetHost

func (o *ApiBasicCredsOutput) GetHost() interface{}

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

func (*ApiBasicCredsOutput) GetHostOk

func (o *ApiBasicCredsOutput) GetHostOk() (*interface{}, bool)

GetHostOk returns a tuple with the Host 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 (*ApiBasicCredsOutput) GetPassword

func (o *ApiBasicCredsOutput) GetPassword() interface{}

GetPassword returns the Password field value If the value is explicit nil, the zero value for interface{} will be returned

func (*ApiBasicCredsOutput) GetPasswordOk

func (o *ApiBasicCredsOutput) GetPasswordOk() (*interface{}, bool)

GetPasswordOk returns a tuple with the Password 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 (*ApiBasicCredsOutput) GetUrl

func (o *ApiBasicCredsOutput) GetUrl() string

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

func (*ApiBasicCredsOutput) GetUrlOk

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

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

func (*ApiBasicCredsOutput) GetUsername

func (o *ApiBasicCredsOutput) GetUsername() interface{}

GetUsername returns the Username field value If the value is explicit nil, the zero value for interface{} will be returned

func (*ApiBasicCredsOutput) GetUsernameOk

func (o *ApiBasicCredsOutput) GetUsernameOk() (*interface{}, bool)

GetUsernameOk returns a tuple with the Username 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 (*ApiBasicCredsOutput) HasAuthCode

func (o *ApiBasicCredsOutput) HasAuthCode() bool

HasAuthCode returns a boolean if a field has been set.

func (*ApiBasicCredsOutput) HasHost

func (o *ApiBasicCredsOutput) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*ApiBasicCredsOutput) HasUrl

func (o *ApiBasicCredsOutput) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ApiBasicCredsOutput) MarshalJSON

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

func (*ApiBasicCredsOutput) SetAuthCode

func (o *ApiBasicCredsOutput) SetAuthCode(v interface{})

SetAuthCode gets a reference to the given interface{} and assigns it to the AuthCode field.

func (*ApiBasicCredsOutput) SetHost

func (o *ApiBasicCredsOutput) SetHost(v interface{})

SetHost gets a reference to the given interface{} and assigns it to the Host field.

func (*ApiBasicCredsOutput) SetPassword

func (o *ApiBasicCredsOutput) SetPassword(v interface{})

SetPassword sets field value

func (*ApiBasicCredsOutput) SetUrl

func (o *ApiBasicCredsOutput) SetUrl(v string)

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

func (*ApiBasicCredsOutput) SetUrlNil

func (o *ApiBasicCredsOutput) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*ApiBasicCredsOutput) SetUsername

func (o *ApiBasicCredsOutput) SetUsername(v interface{})

SetUsername sets field value

func (ApiBasicCredsOutput) ToMap

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

func (*ApiBasicCredsOutput) UnmarshalJSON

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

func (*ApiBasicCredsOutput) UnsetUrl

func (o *ApiBasicCredsOutput) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type ApiCreateConnectionRequest

type ApiCreateConnectionRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiCreateConnectionRequest) ConnectionCreate

func (r ApiCreateConnectionRequest) ConnectionCreate(connectionCreate ConnectionCreate) ApiCreateConnectionRequest

func (ApiCreateConnectionRequest) Execute

type ApiCreateScheduleRequest

type ApiCreateScheduleRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiCreateScheduleRequest) Execute

func (ApiCreateScheduleRequest) ScheduleCreate

func (r ApiCreateScheduleRequest) ScheduleCreate(scheduleCreate ScheduleCreate) ApiCreateScheduleRequest

type ApiDeleteConnectionRequest

type ApiDeleteConnectionRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiDeleteConnectionRequest) Execute

type ApiDeleteScheduleRequest

type ApiDeleteScheduleRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiDeleteScheduleRequest) Execute

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

type ApiGetConnectionRequest

type ApiGetConnectionRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiGetConnectionRequest) Execute

type ApiGetScheduleRequest

type ApiGetScheduleRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiGetScheduleRequest) Execute

type ApiKeyCredsInput

type ApiKeyCredsInput struct {
	ApiKey string         `json:"api_key"`
	Url    NullableString `json:"url,omitempty"`
	UserId NullableString `json:"user_id,omitempty"`
}

ApiKeyCredsInput API Key Connection model

func NewApiKeyCredsInput

func NewApiKeyCredsInput(apiKey string) *ApiKeyCredsInput

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

func NewApiKeyCredsInputWithDefaults() *ApiKeyCredsInput

NewApiKeyCredsInputWithDefaults instantiates a new ApiKeyCredsInput object This 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 (*ApiKeyCredsInput) GetApiKey

func (o *ApiKeyCredsInput) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*ApiKeyCredsInput) GetApiKeyOk

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

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

func (*ApiKeyCredsInput) GetUrl

func (o *ApiKeyCredsInput) GetUrl() string

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

func (*ApiKeyCredsInput) GetUrlOk

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

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

func (*ApiKeyCredsInput) GetUserId

func (o *ApiKeyCredsInput) GetUserId() string

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

func (*ApiKeyCredsInput) GetUserIdOk

func (o *ApiKeyCredsInput) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId 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 (*ApiKeyCredsInput) HasUrl

func (o *ApiKeyCredsInput) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*ApiKeyCredsInput) HasUserId

func (o *ApiKeyCredsInput) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ApiKeyCredsInput) MarshalJSON

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

func (*ApiKeyCredsInput) SetApiKey

func (o *ApiKeyCredsInput) SetApiKey(v string)

SetApiKey sets field value

func (*ApiKeyCredsInput) SetUrl

func (o *ApiKeyCredsInput) SetUrl(v string)

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

func (*ApiKeyCredsInput) SetUrlNil

func (o *ApiKeyCredsInput) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*ApiKeyCredsInput) SetUserId

func (o *ApiKeyCredsInput) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*ApiKeyCredsInput) SetUserIdNil

func (o *ApiKeyCredsInput) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (ApiKeyCredsInput) ToMap

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

func (*ApiKeyCredsInput) UnmarshalJSON

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

func (*ApiKeyCredsInput) UnsetUrl

func (o *ApiKeyCredsInput) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

func (*ApiKeyCredsInput) UnsetUserId

func (o *ApiKeyCredsInput) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type ApiKeyCredsOutput

type ApiKeyCredsOutput struct {
	ApiKey interface{}    `json:"api_key"`
	Url    NullableString `json:"url,omitempty"`
	UserId NullableString `json:"user_id,omitempty"`
}

ApiKeyCredsOutput API Key Connection model

func NewApiKeyCredsOutput

func NewApiKeyCredsOutput(apiKey interface{}) *ApiKeyCredsOutput

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

func NewApiKeyCredsOutputWithDefaults() *ApiKeyCredsOutput

NewApiKeyCredsOutputWithDefaults instantiates a new ApiKeyCredsOutput object This 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 (*ApiKeyCredsOutput) GetApiKey

func (o *ApiKeyCredsOutput) GetApiKey() interface{}

GetApiKey returns the ApiKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*ApiKeyCredsOutput) GetApiKeyOk

func (o *ApiKeyCredsOutput) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*ApiKeyCredsOutput) GetUrl

func (o *ApiKeyCredsOutput) GetUrl() string

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

func (*ApiKeyCredsOutput) GetUrlOk

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

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

func (*ApiKeyCredsOutput) GetUserId

func (o *ApiKeyCredsOutput) GetUserId() string

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

func (*ApiKeyCredsOutput) GetUserIdOk

func (o *ApiKeyCredsOutput) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId 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 (*ApiKeyCredsOutput) HasUrl

func (o *ApiKeyCredsOutput) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*ApiKeyCredsOutput) HasUserId

func (o *ApiKeyCredsOutput) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ApiKeyCredsOutput) MarshalJSON

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

func (*ApiKeyCredsOutput) SetApiKey

func (o *ApiKeyCredsOutput) SetApiKey(v interface{})

SetApiKey sets field value

func (*ApiKeyCredsOutput) SetUrl

func (o *ApiKeyCredsOutput) SetUrl(v string)

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

func (*ApiKeyCredsOutput) SetUrlNil

func (o *ApiKeyCredsOutput) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*ApiKeyCredsOutput) SetUserId

func (o *ApiKeyCredsOutput) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*ApiKeyCredsOutput) SetUserIdNil

func (o *ApiKeyCredsOutput) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (ApiKeyCredsOutput) ToMap

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

func (*ApiKeyCredsOutput) UnmarshalJSON

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

func (*ApiKeyCredsOutput) UnsetUrl

func (o *ApiKeyCredsOutput) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

func (*ApiKeyCredsOutput) UnsetUserId

func (o *ApiKeyCredsOutput) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type ApiListConnectionsRequest

type ApiListConnectionsRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiListConnectionsRequest) Cursor

Cursor for the next page

func (ApiListConnectionsRequest) Execute

func (ApiListConnectionsRequest) Size

Page size

func (ApiListConnectionsRequest) TspId

type ApiListExecutionsRequest

type ApiListExecutionsRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiListExecutionsRequest) Cursor

Cursor for the next page

func (ApiListExecutionsRequest) Execute

func (ApiListExecutionsRequest) Size

Page size

type ApiListSchedulesRequest

type ApiListSchedulesRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiListSchedulesRequest) Cursor

Cursor for the next page

func (ApiListSchedulesRequest) Execute

func (ApiListSchedulesRequest) Resource

func (ApiListSchedulesRequest) Size

Page size

type ApiUpdateConnectionRequest

type ApiUpdateConnectionRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiUpdateConnectionRequest) ConnectionUpdate

func (r ApiUpdateConnectionRequest) ConnectionUpdate(connectionUpdate ConnectionUpdate) ApiUpdateConnectionRequest

func (ApiUpdateConnectionRequest) Execute

type ApiUpdateScheduleRequest

type ApiUpdateScheduleRequest struct {
	ApiService ConnectionsAPI
	// contains filtered or unexported fields
}

func (ApiUpdateScheduleRequest) Execute

func (ApiUpdateScheduleRequest) ScheduleUpdate

func (r ApiUpdateScheduleRequest) ScheduleUpdate(scheduleUpdate ScheduleUpdate) ApiUpdateScheduleRequest

type AzugaSLCInput

type AzugaSLCInput struct {
	ApiKey string `json:"api_key"`
	Token  string `json:"token"`
}

AzugaSLCInput Azuga Short-lived Credentials model

func NewAzugaSLCInput

func NewAzugaSLCInput(apiKey string, token string) *AzugaSLCInput

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

func NewAzugaSLCInputWithDefaults() *AzugaSLCInput

NewAzugaSLCInputWithDefaults instantiates a new AzugaSLCInput object This 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 (*AzugaSLCInput) GetApiKey

func (o *AzugaSLCInput) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*AzugaSLCInput) GetApiKeyOk

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

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

func (*AzugaSLCInput) GetToken

func (o *AzugaSLCInput) GetToken() string

GetToken returns the Token field value

func (*AzugaSLCInput) GetTokenOk

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

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

func (AzugaSLCInput) MarshalJSON

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

func (*AzugaSLCInput) SetApiKey

func (o *AzugaSLCInput) SetApiKey(v string)

SetApiKey sets field value

func (*AzugaSLCInput) SetToken

func (o *AzugaSLCInput) SetToken(v string)

SetToken sets field value

func (AzugaSLCInput) ToMap

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

func (*AzugaSLCInput) UnmarshalJSON

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

type AzugaSLCOutput

type AzugaSLCOutput struct {
	ApiKey interface{} `json:"api_key"`
	Token  interface{} `json:"token"`
}

AzugaSLCOutput Azuga Short-lived Credentials model

func NewAzugaSLCOutput

func NewAzugaSLCOutput(apiKey interface{}, token interface{}) *AzugaSLCOutput

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

func NewAzugaSLCOutputWithDefaults() *AzugaSLCOutput

NewAzugaSLCOutputWithDefaults instantiates a new AzugaSLCOutput object This 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 (*AzugaSLCOutput) GetApiKey

func (o *AzugaSLCOutput) GetApiKey() interface{}

GetApiKey returns the ApiKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*AzugaSLCOutput) GetApiKeyOk

func (o *AzugaSLCOutput) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*AzugaSLCOutput) GetToken

func (o *AzugaSLCOutput) GetToken() interface{}

GetToken returns the Token field value If the value is explicit nil, the zero value for interface{} will be returned

func (*AzugaSLCOutput) GetTokenOk

func (o *AzugaSLCOutput) GetTokenOk() (*interface{}, bool)

GetTokenOk returns a tuple with the Token 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 (AzugaSLCOutput) MarshalJSON

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

func (*AzugaSLCOutput) SetApiKey

func (o *AzugaSLCOutput) SetApiKey(v interface{})

SetApiKey sets field value

func (*AzugaSLCOutput) SetToken

func (o *AzugaSLCOutput) SetToken(v interface{})

SetToken sets field value

func (AzugaSLCOutput) ToMap

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

func (*AzugaSLCOutput) UnmarshalJSON

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

type BadRequest

type BadRequest struct {
	Code    *int32         `json:"code,omitempty"`
	Message *string        `json:"message,omitempty"`
	Detail  NullableString `json:"detail,omitempty"`
}

BadRequest struct for BadRequest

func NewBadRequest

func NewBadRequest() *BadRequest

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

func NewBadRequestWithDefaults() *BadRequest

NewBadRequestWithDefaults instantiates a new BadRequest object This 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 (*BadRequest) GetCode

func (o *BadRequest) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*BadRequest) GetCodeOk

func (o *BadRequest) GetCodeOk() (*int32, bool)

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

func (*BadRequest) GetDetail

func (o *BadRequest) GetDetail() string

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

func (*BadRequest) GetDetailOk

func (o *BadRequest) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail 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 (*BadRequest) GetMessage

func (o *BadRequest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*BadRequest) GetMessageOk

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

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

func (*BadRequest) HasCode

func (o *BadRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*BadRequest) HasDetail

func (o *BadRequest) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*BadRequest) HasMessage

func (o *BadRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (BadRequest) MarshalJSON

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

func (*BadRequest) SetCode

func (o *BadRequest) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*BadRequest) SetDetail

func (o *BadRequest) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*BadRequest) SetDetailNil

func (o *BadRequest) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*BadRequest) SetMessage

func (o *BadRequest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (BadRequest) ToMap

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

func (*BadRequest) UnsetDetail

func (o *BadRequest) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

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 BouncieCredsInput

type BouncieCredsInput struct {
	AuthCode     string         `json:"auth_code"`
	RedirectUri  string         `json:"redirect_uri"`
	ClientId     NullableString `json:"client_id,omitempty"`
	ClientSecret NullableString `json:"client_secret,omitempty"`
}

BouncieCredsInput Bouncie Credentials model

func NewBouncieCredsInput

func NewBouncieCredsInput(authCode string, redirectUri string) *BouncieCredsInput

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

func NewBouncieCredsInputWithDefaults() *BouncieCredsInput

NewBouncieCredsInputWithDefaults instantiates a new BouncieCredsInput object This 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 (*BouncieCredsInput) GetAuthCode

func (o *BouncieCredsInput) GetAuthCode() string

GetAuthCode returns the AuthCode field value

func (*BouncieCredsInput) GetAuthCodeOk

func (o *BouncieCredsInput) GetAuthCodeOk() (*string, bool)

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

func (*BouncieCredsInput) GetClientId

func (o *BouncieCredsInput) GetClientId() string

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

func (*BouncieCredsInput) GetClientIdOk

func (o *BouncieCredsInput) GetClientIdOk() (*string, bool)

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

func (*BouncieCredsInput) GetClientSecret

func (o *BouncieCredsInput) GetClientSecret() string

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

func (*BouncieCredsInput) GetClientSecretOk

func (o *BouncieCredsInput) GetClientSecretOk() (*string, bool)

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

func (*BouncieCredsInput) GetRedirectUri

func (o *BouncieCredsInput) GetRedirectUri() string

GetRedirectUri returns the RedirectUri field value

func (*BouncieCredsInput) GetRedirectUriOk

func (o *BouncieCredsInput) GetRedirectUriOk() (*string, bool)

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

func (*BouncieCredsInput) HasClientId

func (o *BouncieCredsInput) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*BouncieCredsInput) HasClientSecret

func (o *BouncieCredsInput) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (BouncieCredsInput) MarshalJSON

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

func (*BouncieCredsInput) SetAuthCode

func (o *BouncieCredsInput) SetAuthCode(v string)

SetAuthCode sets field value

func (*BouncieCredsInput) SetClientId

func (o *BouncieCredsInput) SetClientId(v string)

SetClientId gets a reference to the given NullableString and assigns it to the ClientId field.

func (*BouncieCredsInput) SetClientIdNil

func (o *BouncieCredsInput) SetClientIdNil()

SetClientIdNil sets the value for ClientId to be an explicit nil

func (*BouncieCredsInput) SetClientSecret

func (o *BouncieCredsInput) SetClientSecret(v string)

SetClientSecret gets a reference to the given NullableString and assigns it to the ClientSecret field.

func (*BouncieCredsInput) SetClientSecretNil

func (o *BouncieCredsInput) SetClientSecretNil()

SetClientSecretNil sets the value for ClientSecret to be an explicit nil

func (*BouncieCredsInput) SetRedirectUri

func (o *BouncieCredsInput) SetRedirectUri(v string)

SetRedirectUri sets field value

func (BouncieCredsInput) ToMap

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

func (*BouncieCredsInput) UnmarshalJSON

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

func (*BouncieCredsInput) UnsetClientId

func (o *BouncieCredsInput) UnsetClientId()

UnsetClientId ensures that no value is present for ClientId, not even an explicit nil

func (*BouncieCredsInput) UnsetClientSecret

func (o *BouncieCredsInput) UnsetClientSecret()

UnsetClientSecret ensures that no value is present for ClientSecret, not even an explicit nil

type BouncieCredsOutput

type BouncieCredsOutput struct {
	AuthCode     interface{}    `json:"auth_code"`
	RedirectUri  string         `json:"redirect_uri"`
	ClientId     NullableString `json:"client_id,omitempty"`
	ClientSecret interface{}    `json:"client_secret,omitempty"`
}

BouncieCredsOutput Bouncie Credentials model

func NewBouncieCredsOutput

func NewBouncieCredsOutput(authCode interface{}, redirectUri string) *BouncieCredsOutput

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

func NewBouncieCredsOutputWithDefaults() *BouncieCredsOutput

NewBouncieCredsOutputWithDefaults instantiates a new BouncieCredsOutput object This 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 (*BouncieCredsOutput) GetAuthCode

func (o *BouncieCredsOutput) GetAuthCode() interface{}

GetAuthCode returns the AuthCode field value If the value is explicit nil, the zero value for interface{} will be returned

func (*BouncieCredsOutput) GetAuthCodeOk

func (o *BouncieCredsOutput) GetAuthCodeOk() (*interface{}, bool)

GetAuthCodeOk returns a tuple with the AuthCode 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 (*BouncieCredsOutput) GetClientId

func (o *BouncieCredsOutput) GetClientId() string

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

func (*BouncieCredsOutput) GetClientIdOk

func (o *BouncieCredsOutput) GetClientIdOk() (*string, bool)

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

func (*BouncieCredsOutput) GetClientSecret

func (o *BouncieCredsOutput) GetClientSecret() interface{}

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

func (*BouncieCredsOutput) GetClientSecretOk

func (o *BouncieCredsOutput) GetClientSecretOk() (*interface{}, bool)

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

func (*BouncieCredsOutput) GetRedirectUri

func (o *BouncieCredsOutput) GetRedirectUri() string

GetRedirectUri returns the RedirectUri field value

func (*BouncieCredsOutput) GetRedirectUriOk

func (o *BouncieCredsOutput) GetRedirectUriOk() (*string, bool)

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

func (*BouncieCredsOutput) HasClientId

func (o *BouncieCredsOutput) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*BouncieCredsOutput) HasClientSecret

func (o *BouncieCredsOutput) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (BouncieCredsOutput) MarshalJSON

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

func (*BouncieCredsOutput) SetAuthCode

func (o *BouncieCredsOutput) SetAuthCode(v interface{})

SetAuthCode sets field value

func (*BouncieCredsOutput) SetClientId

func (o *BouncieCredsOutput) SetClientId(v string)

SetClientId gets a reference to the given NullableString and assigns it to the ClientId field.

func (*BouncieCredsOutput) SetClientIdNil

func (o *BouncieCredsOutput) SetClientIdNil()

SetClientIdNil sets the value for ClientId to be an explicit nil

func (*BouncieCredsOutput) SetClientSecret

func (o *BouncieCredsOutput) SetClientSecret(v interface{})

SetClientSecret gets a reference to the given interface{} and assigns it to the ClientSecret field.

func (*BouncieCredsOutput) SetRedirectUri

func (o *BouncieCredsOutput) SetRedirectUri(v string)

SetRedirectUri sets field value

func (BouncieCredsOutput) ToMap

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

func (*BouncieCredsOutput) UnmarshalJSON

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

func (*BouncieCredsOutput) UnsetClientId

func (o *BouncieCredsOutput) UnsetClientId()

UnsetClientId ensures that no value is present for ClientId, not even an explicit nil

type ClientIdSecretCredsInput

type ClientIdSecretCredsInput struct {
	ClientId     string `json:"client_id"`
	ClientSecret string `json:"client_secret"`
	Url          string `json:"url"`
}

ClientIdSecretCredsInput Client ID Secret Connection model

func NewClientIdSecretCredsInput

func NewClientIdSecretCredsInput(clientId string, clientSecret string, url string) *ClientIdSecretCredsInput

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

func NewClientIdSecretCredsInputWithDefaults() *ClientIdSecretCredsInput

NewClientIdSecretCredsInputWithDefaults instantiates a new ClientIdSecretCredsInput object This 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 (*ClientIdSecretCredsInput) GetClientId

func (o *ClientIdSecretCredsInput) GetClientId() string

GetClientId returns the ClientId field value

func (*ClientIdSecretCredsInput) GetClientIdOk

func (o *ClientIdSecretCredsInput) GetClientIdOk() (*string, bool)

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

func (*ClientIdSecretCredsInput) GetClientSecret

func (o *ClientIdSecretCredsInput) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*ClientIdSecretCredsInput) GetClientSecretOk

func (o *ClientIdSecretCredsInput) GetClientSecretOk() (*string, bool)

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

func (*ClientIdSecretCredsInput) GetUrl

func (o *ClientIdSecretCredsInput) GetUrl() string

GetUrl returns the Url field value

func (*ClientIdSecretCredsInput) GetUrlOk

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

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

func (ClientIdSecretCredsInput) MarshalJSON

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

func (*ClientIdSecretCredsInput) SetClientId

func (o *ClientIdSecretCredsInput) SetClientId(v string)

SetClientId sets field value

func (*ClientIdSecretCredsInput) SetClientSecret

func (o *ClientIdSecretCredsInput) SetClientSecret(v string)

SetClientSecret sets field value

func (*ClientIdSecretCredsInput) SetUrl

func (o *ClientIdSecretCredsInput) SetUrl(v string)

SetUrl sets field value

func (ClientIdSecretCredsInput) ToMap

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

func (*ClientIdSecretCredsInput) UnmarshalJSON

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

type ClientIdSecretCredsOutput

type ClientIdSecretCredsOutput struct {
	ClientId     string      `json:"client_id"`
	ClientSecret interface{} `json:"client_secret"`
	Url          string      `json:"url"`
}

ClientIdSecretCredsOutput Client ID Secret Connection model

func NewClientIdSecretCredsOutput

func NewClientIdSecretCredsOutput(clientId string, clientSecret interface{}, url string) *ClientIdSecretCredsOutput

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

func NewClientIdSecretCredsOutputWithDefaults() *ClientIdSecretCredsOutput

NewClientIdSecretCredsOutputWithDefaults instantiates a new ClientIdSecretCredsOutput object This 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 (*ClientIdSecretCredsOutput) GetClientId

func (o *ClientIdSecretCredsOutput) GetClientId() string

GetClientId returns the ClientId field value

func (*ClientIdSecretCredsOutput) GetClientIdOk

func (o *ClientIdSecretCredsOutput) GetClientIdOk() (*string, bool)

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

func (*ClientIdSecretCredsOutput) GetClientSecret

func (o *ClientIdSecretCredsOutput) GetClientSecret() interface{}

GetClientSecret returns the ClientSecret field value If the value is explicit nil, the zero value for interface{} will be returned

func (*ClientIdSecretCredsOutput) GetClientSecretOk

func (o *ClientIdSecretCredsOutput) GetClientSecretOk() (*interface{}, bool)

GetClientSecretOk returns a tuple with the ClientSecret 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 (*ClientIdSecretCredsOutput) GetUrl

func (o *ClientIdSecretCredsOutput) GetUrl() string

GetUrl returns the Url field value

func (*ClientIdSecretCredsOutput) GetUrlOk

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

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

func (ClientIdSecretCredsOutput) MarshalJSON

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

func (*ClientIdSecretCredsOutput) SetClientId

func (o *ClientIdSecretCredsOutput) SetClientId(v string)

SetClientId sets field value

func (*ClientIdSecretCredsOutput) SetClientSecret

func (o *ClientIdSecretCredsOutput) SetClientSecret(v interface{})

SetClientSecret sets field value

func (*ClientIdSecretCredsOutput) SetUrl

func (o *ClientIdSecretCredsOutput) SetUrl(v string)

SetUrl sets field value

func (ClientIdSecretCredsOutput) ToMap

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

func (*ClientIdSecretCredsOutput) UnmarshalJSON

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

type CompanyAccessCredsInput

type CompanyAccessCredsInput struct {
	Username  string `json:"username"`
	Password  string `json:"password"`
	CompanyId string `json:"company_id"`
}

CompanyAccessCredsInput Company Access Credentials model

func NewCompanyAccessCredsInput

func NewCompanyAccessCredsInput(username string, password string, companyId string) *CompanyAccessCredsInput

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

func NewCompanyAccessCredsInputWithDefaults() *CompanyAccessCredsInput

NewCompanyAccessCredsInputWithDefaults instantiates a new CompanyAccessCredsInput object This 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 (*CompanyAccessCredsInput) GetCompanyId

func (o *CompanyAccessCredsInput) GetCompanyId() string

GetCompanyId returns the CompanyId field value

func (*CompanyAccessCredsInput) GetCompanyIdOk

func (o *CompanyAccessCredsInput) GetCompanyIdOk() (*string, bool)

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

func (*CompanyAccessCredsInput) GetPassword

func (o *CompanyAccessCredsInput) GetPassword() string

GetPassword returns the Password field value

func (*CompanyAccessCredsInput) GetPasswordOk

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

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

func (*CompanyAccessCredsInput) GetUsername

func (o *CompanyAccessCredsInput) GetUsername() string

GetUsername returns the Username field value

func (*CompanyAccessCredsInput) GetUsernameOk

func (o *CompanyAccessCredsInput) GetUsernameOk() (*string, bool)

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

func (CompanyAccessCredsInput) MarshalJSON

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

func (*CompanyAccessCredsInput) SetCompanyId

func (o *CompanyAccessCredsInput) SetCompanyId(v string)

SetCompanyId sets field value

func (*CompanyAccessCredsInput) SetPassword

func (o *CompanyAccessCredsInput) SetPassword(v string)

SetPassword sets field value

func (*CompanyAccessCredsInput) SetUsername

func (o *CompanyAccessCredsInput) SetUsername(v string)

SetUsername sets field value

func (CompanyAccessCredsInput) ToMap

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

func (*CompanyAccessCredsInput) UnmarshalJSON

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

type CompanyAccessCredsOutput

type CompanyAccessCredsOutput struct {
	Username  interface{} `json:"username"`
	Password  interface{} `json:"password"`
	CompanyId interface{} `json:"company_id"`
}

CompanyAccessCredsOutput Company Access Credentials model

func NewCompanyAccessCredsOutput

func NewCompanyAccessCredsOutput(username interface{}, password interface{}, companyId interface{}) *CompanyAccessCredsOutput

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

func NewCompanyAccessCredsOutputWithDefaults() *CompanyAccessCredsOutput

NewCompanyAccessCredsOutputWithDefaults instantiates a new CompanyAccessCredsOutput object This 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 (*CompanyAccessCredsOutput) GetCompanyId

func (o *CompanyAccessCredsOutput) GetCompanyId() interface{}

GetCompanyId returns the CompanyId field value If the value is explicit nil, the zero value for interface{} will be returned

func (*CompanyAccessCredsOutput) GetCompanyIdOk

func (o *CompanyAccessCredsOutput) GetCompanyIdOk() (*interface{}, bool)

GetCompanyIdOk returns a tuple with the CompanyId 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 (*CompanyAccessCredsOutput) GetPassword

func (o *CompanyAccessCredsOutput) GetPassword() interface{}

GetPassword returns the Password field value If the value is explicit nil, the zero value for interface{} will be returned

func (*CompanyAccessCredsOutput) GetPasswordOk

func (o *CompanyAccessCredsOutput) GetPasswordOk() (*interface{}, bool)

GetPasswordOk returns a tuple with the Password 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 (*CompanyAccessCredsOutput) GetUsername

func (o *CompanyAccessCredsOutput) GetUsername() interface{}

GetUsername returns the Username field value If the value is explicit nil, the zero value for interface{} will be returned

func (*CompanyAccessCredsOutput) GetUsernameOk

func (o *CompanyAccessCredsOutput) GetUsernameOk() (*interface{}, bool)

GetUsernameOk returns a tuple with the Username 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 (CompanyAccessCredsOutput) MarshalJSON

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

func (*CompanyAccessCredsOutput) SetCompanyId

func (o *CompanyAccessCredsOutput) SetCompanyId(v interface{})

SetCompanyId sets field value

func (*CompanyAccessCredsOutput) SetPassword

func (o *CompanyAccessCredsOutput) SetPassword(v interface{})

SetPassword sets field value

func (*CompanyAccessCredsOutput) SetUsername

func (o *CompanyAccessCredsOutput) SetUsername(v interface{})

SetUsername sets field value

func (CompanyAccessCredsOutput) ToMap

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

func (*CompanyAccessCredsOutput) UnmarshalJSON

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

type CompanyIdCredsInput

type CompanyIdCredsInput struct {
	CompanyId string `json:"company_id"`
}

CompanyIdCredsInput Company ID Credentials model

func NewCompanyIdCredsInput

func NewCompanyIdCredsInput(companyId string) *CompanyIdCredsInput

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

func NewCompanyIdCredsInputWithDefaults() *CompanyIdCredsInput

NewCompanyIdCredsInputWithDefaults instantiates a new CompanyIdCredsInput object This 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 (*CompanyIdCredsInput) GetCompanyId

func (o *CompanyIdCredsInput) GetCompanyId() string

GetCompanyId returns the CompanyId field value

func (*CompanyIdCredsInput) GetCompanyIdOk

func (o *CompanyIdCredsInput) GetCompanyIdOk() (*string, bool)

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

func (CompanyIdCredsInput) MarshalJSON

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

func (*CompanyIdCredsInput) SetCompanyId

func (o *CompanyIdCredsInput) SetCompanyId(v string)

SetCompanyId sets field value

func (CompanyIdCredsInput) ToMap

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

func (*CompanyIdCredsInput) UnmarshalJSON

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

type CompanyIdCredsOutput

type CompanyIdCredsOutput struct {
	CompanyId interface{} `json:"company_id"`
}

CompanyIdCredsOutput Company ID Credentials model

func NewCompanyIdCredsOutput

func NewCompanyIdCredsOutput(companyId interface{}) *CompanyIdCredsOutput

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

func NewCompanyIdCredsOutputWithDefaults() *CompanyIdCredsOutput

NewCompanyIdCredsOutputWithDefaults instantiates a new CompanyIdCredsOutput object This 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 (*CompanyIdCredsOutput) GetCompanyId

func (o *CompanyIdCredsOutput) GetCompanyId() interface{}

GetCompanyId returns the CompanyId field value If the value is explicit nil, the zero value for interface{} will be returned

func (*CompanyIdCredsOutput) GetCompanyIdOk

func (o *CompanyIdCredsOutput) GetCompanyIdOk() (*interface{}, bool)

GetCompanyIdOk returns a tuple with the CompanyId 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 (CompanyIdCredsOutput) MarshalJSON

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

func (*CompanyIdCredsOutput) SetCompanyId

func (o *CompanyIdCredsOutput) SetCompanyId(v interface{})

SetCompanyId sets field value

func (CompanyIdCredsOutput) ToMap

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

func (*CompanyIdCredsOutput) UnmarshalJSON

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type Conflict

type Conflict struct {
	Code    *int32         `json:"code,omitempty"`
	Message *string        `json:"message,omitempty"`
	Detail  NullableString `json:"detail,omitempty"`
}

Conflict struct for Conflict

func NewConflict

func NewConflict() *Conflict

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

func NewConflictWithDefaults() *Conflict

NewConflictWithDefaults instantiates a new Conflict object This 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 (*Conflict) GetCode

func (o *Conflict) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*Conflict) GetCodeOk

func (o *Conflict) GetCodeOk() (*int32, bool)

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

func (*Conflict) GetDetail

func (o *Conflict) GetDetail() string

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

func (*Conflict) GetDetailOk

func (o *Conflict) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail 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 (*Conflict) GetMessage

func (o *Conflict) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Conflict) GetMessageOk

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

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

func (*Conflict) HasCode

func (o *Conflict) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Conflict) HasDetail

func (o *Conflict) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*Conflict) HasMessage

func (o *Conflict) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Conflict) MarshalJSON

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

func (*Conflict) SetCode

func (o *Conflict) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*Conflict) SetDetail

func (o *Conflict) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*Conflict) SetDetailNil

func (o *Conflict) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*Conflict) SetMessage

func (o *Conflict) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (Conflict) ToMap

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

func (*Conflict) UnsetDetail

func (o *Conflict) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

type ConnectionCreate

type ConnectionCreate struct {
	// The ID of the Telematics Service Provider (TSP) that the fleet uses.
	TspId       string         `json:"tsp_id"`
	Credentials Credentials    `json:"credentials"`
	Description NullableString `json:"description,omitempty"`
}

ConnectionCreate API Model for creating a connection

func NewConnectionCreate

func NewConnectionCreate(tspId string, credentials Credentials) *ConnectionCreate

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

func NewConnectionCreateWithDefaults() *ConnectionCreate

NewConnectionCreateWithDefaults instantiates a new ConnectionCreate object This 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 (*ConnectionCreate) GetCredentials

func (o *ConnectionCreate) GetCredentials() Credentials

GetCredentials returns the Credentials field value

func (*ConnectionCreate) GetCredentialsOk

func (o *ConnectionCreate) GetCredentialsOk() (*Credentials, bool)

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

func (*ConnectionCreate) GetDescription

func (o *ConnectionCreate) GetDescription() string

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

func (*ConnectionCreate) GetDescriptionOk

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

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

func (*ConnectionCreate) GetTspId

func (o *ConnectionCreate) GetTspId() string

GetTspId returns the TspId field value

func (*ConnectionCreate) GetTspIdOk

func (o *ConnectionCreate) GetTspIdOk() (*string, bool)

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

func (*ConnectionCreate) HasDescription

func (o *ConnectionCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (ConnectionCreate) MarshalJSON

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

func (*ConnectionCreate) SetCredentials

func (o *ConnectionCreate) SetCredentials(v Credentials)

SetCredentials sets field value

func (*ConnectionCreate) SetDescription

func (o *ConnectionCreate) SetDescription(v string)

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

func (*ConnectionCreate) SetDescriptionNil

func (o *ConnectionCreate) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ConnectionCreate) SetTspId

func (o *ConnectionCreate) SetTspId(v string)

SetTspId sets field value

func (ConnectionCreate) ToMap

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

func (*ConnectionCreate) UnmarshalJSON

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

func (*ConnectionCreate) UnsetDescription

func (o *ConnectionCreate) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type ConnectionRead

type ConnectionRead struct {
	// Unique identifier for the connection.
	Id string `json:"id"`
	// Timestamp when the connection was created.
	CreatedAt time.Time `json:"created_at"`
	// Timestamp when the connection was last updated.
	UpdatedAt time.Time `json:"updated_at"`
	// The Catena ID of the fleet that owns this connection.
	FleetId string `json:"fleet_id"`
	// The ID of the Telematics Service Provider (TSP).
	TspId string `json:"tsp_id"`
	// The name of the TSP integration used for this connection.
	SourceName  TspEnum      `json:"source_name"`
	Credentials Credentials1 `json:"credentials"`
	// The current status of the connection.
	Status      StatusEnum     `json:"status"`
	Description NullableString `json:"description"`
}

ConnectionRead API Model for reading a connection

func NewConnectionRead

func NewConnectionRead(id string, createdAt time.Time, updatedAt time.Time, fleetId string, tspId string, sourceName TspEnum, credentials Credentials1, status StatusEnum, description NullableString) *ConnectionRead

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

func NewConnectionReadWithDefaults() *ConnectionRead

NewConnectionReadWithDefaults instantiates a new ConnectionRead object This 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 (*ConnectionRead) GetCreatedAt

func (o *ConnectionRead) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*ConnectionRead) GetCreatedAtOk

func (o *ConnectionRead) 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 (*ConnectionRead) GetCredentials

func (o *ConnectionRead) GetCredentials() Credentials1

GetCredentials returns the Credentials field value

func (*ConnectionRead) GetCredentialsOk

func (o *ConnectionRead) GetCredentialsOk() (*Credentials1, bool)

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

func (*ConnectionRead) GetDescription

func (o *ConnectionRead) GetDescription() string

GetDescription returns the Description field value If the value is explicit nil, the zero value for string will be returned

func (*ConnectionRead) GetDescriptionOk

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

GetDescriptionOk returns a tuple with the Description 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 (*ConnectionRead) GetFleetId

func (o *ConnectionRead) GetFleetId() string

GetFleetId returns the FleetId field value

func (*ConnectionRead) GetFleetIdOk

func (o *ConnectionRead) GetFleetIdOk() (*string, bool)

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

func (*ConnectionRead) GetId

func (o *ConnectionRead) GetId() string

GetId returns the Id field value

func (*ConnectionRead) GetIdOk

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

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

func (*ConnectionRead) GetSourceName

func (o *ConnectionRead) GetSourceName() TspEnum

GetSourceName returns the SourceName field value

func (*ConnectionRead) GetSourceNameOk

func (o *ConnectionRead) GetSourceNameOk() (*TspEnum, bool)

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

func (*ConnectionRead) GetStatus

func (o *ConnectionRead) GetStatus() StatusEnum

GetStatus returns the Status field value

func (*ConnectionRead) GetStatusOk

func (o *ConnectionRead) GetStatusOk() (*StatusEnum, bool)

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

func (*ConnectionRead) GetTspId

func (o *ConnectionRead) GetTspId() string

GetTspId returns the TspId field value

func (*ConnectionRead) GetTspIdOk

func (o *ConnectionRead) GetTspIdOk() (*string, bool)

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

func (*ConnectionRead) GetUpdatedAt

func (o *ConnectionRead) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ConnectionRead) GetUpdatedAtOk

func (o *ConnectionRead) 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 (ConnectionRead) MarshalJSON

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

func (*ConnectionRead) SetCreatedAt

func (o *ConnectionRead) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ConnectionRead) SetCredentials

func (o *ConnectionRead) SetCredentials(v Credentials1)

SetCredentials sets field value

func (*ConnectionRead) SetDescription

func (o *ConnectionRead) SetDescription(v string)

SetDescription sets field value

func (*ConnectionRead) SetFleetId

func (o *ConnectionRead) SetFleetId(v string)

SetFleetId sets field value

func (*ConnectionRead) SetId

func (o *ConnectionRead) SetId(v string)

SetId sets field value

func (*ConnectionRead) SetSourceName

func (o *ConnectionRead) SetSourceName(v TspEnum)

SetSourceName sets field value

func (*ConnectionRead) SetStatus

func (o *ConnectionRead) SetStatus(v StatusEnum)

SetStatus sets field value

func (*ConnectionRead) SetTspId

func (o *ConnectionRead) SetTspId(v string)

SetTspId sets field value

func (*ConnectionRead) SetUpdatedAt

func (o *ConnectionRead) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (ConnectionRead) ToMap

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

func (*ConnectionRead) UnmarshalJSON

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

type ConnectionUpdate

type ConnectionUpdate struct {
	Credentials NullableCredentials2 `json:"credentials,omitempty"`
	Description NullableString       `json:"description,omitempty"`
	Status      NullableStatusEnum   `json:"status,omitempty"`
}

ConnectionUpdate API Model for updating a connection

func NewConnectionUpdate

func NewConnectionUpdate() *ConnectionUpdate

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

func NewConnectionUpdateWithDefaults() *ConnectionUpdate

NewConnectionUpdateWithDefaults instantiates a new ConnectionUpdate object This 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 (*ConnectionUpdate) GetCredentials

func (o *ConnectionUpdate) GetCredentials() Credentials2

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

func (*ConnectionUpdate) GetCredentialsOk

func (o *ConnectionUpdate) GetCredentialsOk() (*Credentials2, bool)

GetCredentialsOk returns a tuple with the Credentials 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 (*ConnectionUpdate) GetDescription

func (o *ConnectionUpdate) GetDescription() string

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

func (*ConnectionUpdate) GetDescriptionOk

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

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

func (*ConnectionUpdate) GetStatus

func (o *ConnectionUpdate) GetStatus() StatusEnum

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

func (*ConnectionUpdate) GetStatusOk

func (o *ConnectionUpdate) GetStatusOk() (*StatusEnum, bool)

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

func (*ConnectionUpdate) HasCredentials

func (o *ConnectionUpdate) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*ConnectionUpdate) HasDescription

func (o *ConnectionUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ConnectionUpdate) HasStatus

func (o *ConnectionUpdate) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectionUpdate) MarshalJSON

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

func (*ConnectionUpdate) SetCredentials

func (o *ConnectionUpdate) SetCredentials(v Credentials2)

SetCredentials gets a reference to the given NullableCredentials2 and assigns it to the Credentials field.

func (*ConnectionUpdate) SetCredentialsNil

func (o *ConnectionUpdate) SetCredentialsNil()

SetCredentialsNil sets the value for Credentials to be an explicit nil

func (*ConnectionUpdate) SetDescription

func (o *ConnectionUpdate) SetDescription(v string)

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

func (*ConnectionUpdate) SetDescriptionNil

func (o *ConnectionUpdate) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ConnectionUpdate) SetStatus

func (o *ConnectionUpdate) SetStatus(v StatusEnum)

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

func (*ConnectionUpdate) SetStatusNil

func (o *ConnectionUpdate) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (ConnectionUpdate) ToMap

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

func (*ConnectionUpdate) UnsetCredentials

func (o *ConnectionUpdate) UnsetCredentials()

UnsetCredentials ensures that no value is present for Credentials, not even an explicit nil

func (*ConnectionUpdate) UnsetDescription

func (o *ConnectionUpdate) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*ConnectionUpdate) UnsetStatus

func (o *ConnectionUpdate) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

type ConnectionsAPI

type ConnectionsAPI interface {

	/*
			CreateConnection Create Connection

			Create a new connection.

		This will validate the credentials with the TSP before creating the connection.
		If the credentials are invalid, the connection will not be created and an error will be returned.

		It also creates a schedule to refresh or exchanged the coneection details
		for a short lived credential, shuch as an access token.

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

	// CreateConnectionExecute executes the request
	//  @return ConnectionRead
	CreateConnectionExecute(r ApiCreateConnectionRequest) (*ConnectionRead, *http.Response, error)

	/*
			CreateSchedule Create Schedule

			Create a new schedule.

		This will create a schedule to fetch data from the TSP.

		It also creates a schedule to refresh or exchange the connection details
		for a short lived credential, such as an access token.

		For now only Catena admins can create schedules.

			@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			@param connectionId
			@return ApiCreateScheduleRequest
	*/
	CreateSchedule(ctx context.Context, connectionId string) ApiCreateScheduleRequest

	// CreateScheduleExecute executes the request
	//  @return ScheduleRead
	CreateScheduleExecute(r ApiCreateScheduleRequest) (*ScheduleRead, *http.Response, error)

	/*
		DeleteConnection Delete Connection

		Delete a connection by its ID.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param connectionId
		@return ApiDeleteConnectionRequest
	*/
	DeleteConnection(ctx context.Context, connectionId string) ApiDeleteConnectionRequest

	// DeleteConnectionExecute executes the request
	DeleteConnectionExecute(r ApiDeleteConnectionRequest) (*http.Response, error)

	/*
		DeleteSchedule Delete Schedule

		Delete a schedule by its ID.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param connectionId
		@param scheduleId
		@return ApiDeleteScheduleRequest
	*/
	DeleteSchedule(ctx context.Context, connectionId string, scheduleId string) ApiDeleteScheduleRequest

	// DeleteScheduleExecute executes the request
	DeleteScheduleExecute(r ApiDeleteScheduleRequest) (*http.Response, error)

	/*
		GetConnection Get Connection

		Get detailed information about a specific connection.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param connectionId
		@return ApiGetConnectionRequest
	*/
	GetConnection(ctx context.Context, connectionId string) ApiGetConnectionRequest

	// GetConnectionExecute executes the request
	//  @return ConnectionRead
	GetConnectionExecute(r ApiGetConnectionRequest) (*ConnectionRead, *http.Response, error)

	/*
		GetSchedule Get Schedule

		Get detailed information about a specific schedule.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param connectionId
		@param scheduleId
		@return ApiGetScheduleRequest
	*/
	GetSchedule(ctx context.Context, connectionId string, scheduleId string) ApiGetScheduleRequest

	// GetScheduleExecute executes the request
	//  @return ScheduleRead
	GetScheduleExecute(r ApiGetScheduleRequest) (*ScheduleRead, *http.Response, error)

	/*
		ListConnections List Connections

		Get a paginated list of all connections accessible to your organization.

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

	// ListConnectionsExecute executes the request
	//  @return CursorPageTypeVarCustomizedConnectionRead
	ListConnectionsExecute(r ApiListConnectionsRequest) (*CursorPageTypeVarCustomizedConnectionRead, *http.Response, error)

	/*
		ListExecutions List Executions

		Get a paginated list of all executions for a given schedule.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param connectionId
		@param scheduleId
		@return ApiListExecutionsRequest
	*/
	ListExecutions(ctx context.Context, connectionId string, scheduleId string) ApiListExecutionsRequest

	// ListExecutionsExecute executes the request
	//  @return CursorPageTypeVarCustomizedExecutionRead
	ListExecutionsExecute(r ApiListExecutionsRequest) (*CursorPageTypeVarCustomizedExecutionRead, *http.Response, error)

	/*
		ListSchedules List Schedules

		Get a paginated list of all schedules for a given connection.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param connectionId
		@return ApiListSchedulesRequest
	*/
	ListSchedules(ctx context.Context, connectionId string) ApiListSchedulesRequest

	// ListSchedulesExecute executes the request
	//  @return CursorPageTypeVarCustomizedScheduleRead
	ListSchedulesExecute(r ApiListSchedulesRequest) (*CursorPageTypeVarCustomizedScheduleRead, *http.Response, error)

	/*
			UpdateConnection Update Connection

			Update a connection by its ID.

		The repository handles validation, authentication, and SLC creation when credentials are updated.

			@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			@param connectionId
			@return ApiUpdateConnectionRequest
	*/
	UpdateConnection(ctx context.Context, connectionId string) ApiUpdateConnectionRequest

	// UpdateConnectionExecute executes the request
	//  @return ConnectionRead
	UpdateConnectionExecute(r ApiUpdateConnectionRequest) (*ConnectionRead, *http.Response, error)

	/*
		UpdateSchedule Update Schedule

		Update a schedule by its ID.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param connectionId
		@param scheduleId
		@return ApiUpdateScheduleRequest
	*/
	UpdateSchedule(ctx context.Context, connectionId string, scheduleId string) ApiUpdateScheduleRequest

	// UpdateScheduleExecute executes the request
	//  @return ScheduleRead
	UpdateScheduleExecute(r ApiUpdateScheduleRequest) (*ScheduleRead, *http.Response, error)
}

type ConnectionsAPIService

type ConnectionsAPIService service

ConnectionsAPIService ConnectionsAPI service

func (*ConnectionsAPIService) CreateConnection

CreateConnection Create Connection

Create a new connection.

This will validate the credentials with the TSP before creating the connection. If the credentials are invalid, the connection will not be created and an error will be returned.

It also creates a schedule to refresh or exchanged the coneection details for a short lived credential, shuch as an access token.

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

func (*ConnectionsAPIService) CreateConnectionExecute

Execute executes the request

@return ConnectionRead

func (*ConnectionsAPIService) CreateSchedule

func (a *ConnectionsAPIService) CreateSchedule(ctx context.Context, connectionId string) ApiCreateScheduleRequest

CreateSchedule Create Schedule

Create a new schedule.

This will create a schedule to fetch data from the TSP.

It also creates a schedule to refresh or exchange the connection details for a short lived credential, such as an access token.

For now only Catena admins can create schedules.

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

func (*ConnectionsAPIService) CreateScheduleExecute

Execute executes the request

@return ScheduleRead

func (*ConnectionsAPIService) DeleteConnection

func (a *ConnectionsAPIService) DeleteConnection(ctx context.Context, connectionId string) ApiDeleteConnectionRequest

DeleteConnection Delete Connection

Delete a connection by its ID.

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

func (*ConnectionsAPIService) DeleteConnectionExecute

func (a *ConnectionsAPIService) DeleteConnectionExecute(r ApiDeleteConnectionRequest) (*http.Response, error)

Execute executes the request

func (*ConnectionsAPIService) DeleteSchedule

func (a *ConnectionsAPIService) DeleteSchedule(ctx context.Context, connectionId string, scheduleId string) ApiDeleteScheduleRequest

DeleteSchedule Delete Schedule

Delete a schedule by its ID.

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

func (*ConnectionsAPIService) DeleteScheduleExecute

func (a *ConnectionsAPIService) DeleteScheduleExecute(r ApiDeleteScheduleRequest) (*http.Response, error)

Execute executes the request

func (*ConnectionsAPIService) GetConnection

func (a *ConnectionsAPIService) GetConnection(ctx context.Context, connectionId string) ApiGetConnectionRequest

GetConnection Get Connection

Get detailed information about a specific connection.

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

func (*ConnectionsAPIService) GetConnectionExecute

Execute executes the request

@return ConnectionRead

func (*ConnectionsAPIService) GetSchedule

func (a *ConnectionsAPIService) GetSchedule(ctx context.Context, connectionId string, scheduleId string) ApiGetScheduleRequest

GetSchedule Get Schedule

Get detailed information about a specific schedule.

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

func (*ConnectionsAPIService) GetScheduleExecute

Execute executes the request

@return ScheduleRead

func (*ConnectionsAPIService) ListConnections

ListConnections List Connections

Get a paginated list of all connections accessible to your organization.

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

func (*ConnectionsAPIService) ListConnectionsExecute

Execute executes the request

@return CursorPageTypeVarCustomizedConnectionRead

func (*ConnectionsAPIService) ListExecutions

func (a *ConnectionsAPIService) ListExecutions(ctx context.Context, connectionId string, scheduleId string) ApiListExecutionsRequest

ListExecutions List Executions

Get a paginated list of all executions for a given schedule.

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

func (*ConnectionsAPIService) ListExecutionsExecute

Execute executes the request

@return CursorPageTypeVarCustomizedExecutionRead

func (*ConnectionsAPIService) ListSchedules

func (a *ConnectionsAPIService) ListSchedules(ctx context.Context, connectionId string) ApiListSchedulesRequest

ListSchedules List Schedules

Get a paginated list of all schedules for a given connection.

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

func (*ConnectionsAPIService) ListSchedulesExecute

Execute executes the request

@return CursorPageTypeVarCustomizedScheduleRead

func (*ConnectionsAPIService) UpdateConnection

func (a *ConnectionsAPIService) UpdateConnection(ctx context.Context, connectionId string) ApiUpdateConnectionRequest

UpdateConnection Update Connection

Update a connection by its ID.

The repository handles validation, authentication, and SLC creation when credentials are updated.

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

func (*ConnectionsAPIService) UpdateConnectionExecute

Execute executes the request

@return ConnectionRead

func (*ConnectionsAPIService) UpdateSchedule

func (a *ConnectionsAPIService) UpdateSchedule(ctx context.Context, connectionId string, scheduleId string) ApiUpdateScheduleRequest

UpdateSchedule Update Schedule

Update a schedule by its ID.

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

func (*ConnectionsAPIService) UpdateScheduleExecute

Execute executes the request

@return ScheduleRead

type Credentials

type Credentials struct {
	AccessTokenCredsInput      *AccessTokenCredsInput
	ApiBasicCredsInput         *ApiBasicCredsInput
	ApiKeyCredsInput           *ApiKeyCredsInput
	AzugaSLCInput              *AzugaSLCInput
	BouncieCredsInput          *BouncieCredsInput
	ClientIdSecretCredsInput   *ClientIdSecretCredsInput
	CompanyAccessCredsInput    *CompanyAccessCredsInput
	CompanyIdCredsInput        *CompanyIdCredsInput
	DatabaseCredsInput         *DatabaseCredsInput
	EzlogzCreds                *EzlogzCreds
	FactorEldCredsInput        *FactorEldCredsInput
	FleetupCredsInput          *FleetupCredsInput
	FleetupSLCInput            *FleetupSLCInput
	GeotabCredsInput           *GeotabCredsInput
	IsaacCredsInput            *IsaacCredsInput
	MotiveCredsInput           *MotiveCredsInput
	OAuth1CredsInput           *OAuth1CredsInput
	OAuth2CredsInput           *OAuth2CredsInput
	OAuth2InitiateCredsInput   *OAuth2InitiateCredsInput
	OAuth2PrivateKeyCredsInput *OAuth2PrivateKeyCredsInput
	OntimeEldCredsInput        *OntimeEldCredsInput
	PrivateKeyCredsInput       *PrivateKeyCredsInput
	S3CredsInput               *S3CredsInput
	SamsaraCredsInput          *SamsaraCredsInput
	SftpCredsInput             *SftpCredsInput
	SpireonSLCInput            *SpireonSLCInput
	TTCredsInput               *TTCredsInput
	TokenCredsInput            *TokenCredsInput
	TruckXCredsInput           *TruckXCredsInput
	TruckXSLCInput             *TruckXSLCInput
	ZubieCredsInput            *ZubieCredsInput
}

Credentials The connection credentials required to authenticate with the TSP on behalf of the fleet.

func (Credentials) MarshalJSON

func (src Credentials) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Credentials) UnmarshalJSON

func (dst *Credentials) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type Credentials1

type Credentials1 struct {
	AccessTokenCredsOutput      *AccessTokenCredsOutput
	ApiBasicCredsOutput         *ApiBasicCredsOutput
	ApiKeyCredsOutput           *ApiKeyCredsOutput
	AzugaSLCOutput              *AzugaSLCOutput
	BouncieCredsOutput          *BouncieCredsOutput
	ClientIdSecretCredsOutput   *ClientIdSecretCredsOutput
	CompanyAccessCredsOutput    *CompanyAccessCredsOutput
	CompanyIdCredsOutput        *CompanyIdCredsOutput
	DatabaseCredsOutput         *DatabaseCredsOutput
	EzlogzCreds                 *EzlogzCreds
	FactorEldCredsOutput        *FactorEldCredsOutput
	FleetupCredsOutput          *FleetupCredsOutput
	FleetupSLCOutput            *FleetupSLCOutput
	GeotabCredsOutput           *GeotabCredsOutput
	IsaacCredsOutput            *IsaacCredsOutput
	MotiveCredsOutput           *MotiveCredsOutput
	OAuth1CredsOutput           *OAuth1CredsOutput
	OAuth2CredsOutput           *OAuth2CredsOutput
	OAuth2InitiateCredsOutput   *OAuth2InitiateCredsOutput
	OAuth2PrivateKeyCredsOutput *OAuth2PrivateKeyCredsOutput
	OntimeEldCredsOutput        *OntimeEldCredsOutput
	PrivateKeyCredsOutput       *PrivateKeyCredsOutput
	S3CredsOutput               *S3CredsOutput
	SamsaraCredsOutput          *SamsaraCredsOutput
	SftpCredsOutput             *SftpCredsOutput
	SpireonSLCOutput            *SpireonSLCOutput
	TTCredsOutput               *TTCredsOutput
	TokenCredsOutput            *TokenCredsOutput
	TruckXCredsOutput           *TruckXCredsOutput
	TruckXSLCOutput             *TruckXSLCOutput
	ZubieCredsOutput            *ZubieCredsOutput
}

Credentials1 The connection credentials used to authenticate with the TSP.

func (Credentials1) MarshalJSON

func (src Credentials1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Credentials1) UnmarshalJSON

func (dst *Credentials1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type Credentials2

type Credentials2 struct {
	AccessTokenCredsInput      *AccessTokenCredsInput
	ApiBasicCredsInput         *ApiBasicCredsInput
	ApiKeyCredsInput           *ApiKeyCredsInput
	AzugaSLCInput              *AzugaSLCInput
	BouncieCredsInput          *BouncieCredsInput
	ClientIdSecretCredsInput   *ClientIdSecretCredsInput
	CompanyAccessCredsInput    *CompanyAccessCredsInput
	CompanyIdCredsInput        *CompanyIdCredsInput
	DatabaseCredsInput         *DatabaseCredsInput
	EzlogzCreds                *EzlogzCreds
	FactorEldCredsInput        *FactorEldCredsInput
	FleetupCredsInput          *FleetupCredsInput
	FleetupSLCInput            *FleetupSLCInput
	GeotabCredsInput           *GeotabCredsInput
	IsaacCredsInput            *IsaacCredsInput
	MotiveCredsInput           *MotiveCredsInput
	OAuth1CredsInput           *OAuth1CredsInput
	OAuth2CredsInput           *OAuth2CredsInput
	OAuth2InitiateCredsInput   *OAuth2InitiateCredsInput
	OAuth2PrivateKeyCredsInput *OAuth2PrivateKeyCredsInput
	OntimeEldCredsInput        *OntimeEldCredsInput
	PrivateKeyCredsInput       *PrivateKeyCredsInput
	S3CredsInput               *S3CredsInput
	SamsaraCredsInput          *SamsaraCredsInput
	SftpCredsInput             *SftpCredsInput
	SpireonSLCInput            *SpireonSLCInput
	TTCredsInput               *TTCredsInput
	TokenCredsInput            *TokenCredsInput
	TruckXCredsInput           *TruckXCredsInput
	TruckXSLCInput             *TruckXSLCInput
	ZubieCredsInput            *ZubieCredsInput
}

Credentials2 The connection credentials to authenticate with the TSP. Update these if the fleet's TSP account credentials have changed.

func (Credentials2) MarshalJSON

func (src Credentials2) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Credentials2) UnmarshalJSON

func (dst *Credentials2) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type CursorPageTypeVarCustomizedConnectionRead

type CursorPageTypeVarCustomizedConnectionRead struct {
	Items                []ConnectionRead `json:"items"`
	CurrentPage          NullableString   `json:"current_page,omitempty"`
	CurrentPageBackwards NullableString   `json:"current_page_backwards,omitempty"`
	PreviousPage         NullableString   `json:"previous_page,omitempty"`
	NextPage             NullableString   `json:"next_page,omitempty"`
}

CursorPageTypeVarCustomizedConnectionRead struct for CursorPageTypeVarCustomizedConnectionRead

func NewCursorPageTypeVarCustomizedConnectionRead

func NewCursorPageTypeVarCustomizedConnectionRead(items []ConnectionRead) *CursorPageTypeVarCustomizedConnectionRead

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

func NewCursorPageTypeVarCustomizedConnectionReadWithDefaults() *CursorPageTypeVarCustomizedConnectionRead

NewCursorPageTypeVarCustomizedConnectionReadWithDefaults instantiates a new CursorPageTypeVarCustomizedConnectionRead object This 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 (*CursorPageTypeVarCustomizedConnectionRead) GetCurrentPage

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

func (*CursorPageTypeVarCustomizedConnectionRead) GetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedConnectionRead) GetCurrentPageBackwards() string

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

func (*CursorPageTypeVarCustomizedConnectionRead) GetCurrentPageBackwardsOk

func (o *CursorPageTypeVarCustomizedConnectionRead) GetCurrentPageBackwardsOk() (*string, bool)

GetCurrentPageBackwardsOk returns a tuple with the CurrentPageBackwards 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 (*CursorPageTypeVarCustomizedConnectionRead) GetCurrentPageOk

func (o *CursorPageTypeVarCustomizedConnectionRead) GetCurrentPageOk() (*string, bool)

GetCurrentPageOk returns a tuple with the CurrentPage 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 (*CursorPageTypeVarCustomizedConnectionRead) GetItems

GetItems returns the Items field value

func (*CursorPageTypeVarCustomizedConnectionRead) GetItemsOk

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

func (*CursorPageTypeVarCustomizedConnectionRead) GetNextPage

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

func (*CursorPageTypeVarCustomizedConnectionRead) GetNextPageOk

func (o *CursorPageTypeVarCustomizedConnectionRead) GetNextPageOk() (*string, bool)

GetNextPageOk returns a tuple with the NextPage 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 (*CursorPageTypeVarCustomizedConnectionRead) GetPreviousPage

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

func (*CursorPageTypeVarCustomizedConnectionRead) GetPreviousPageOk

func (o *CursorPageTypeVarCustomizedConnectionRead) GetPreviousPageOk() (*string, bool)

GetPreviousPageOk returns a tuple with the PreviousPage 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 (*CursorPageTypeVarCustomizedConnectionRead) HasCurrentPage

func (o *CursorPageTypeVarCustomizedConnectionRead) HasCurrentPage() bool

HasCurrentPage returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedConnectionRead) HasCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedConnectionRead) HasCurrentPageBackwards() bool

HasCurrentPageBackwards returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedConnectionRead) HasNextPage

HasNextPage returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedConnectionRead) HasPreviousPage

func (o *CursorPageTypeVarCustomizedConnectionRead) HasPreviousPage() bool

HasPreviousPage returns a boolean if a field has been set.

func (CursorPageTypeVarCustomizedConnectionRead) MarshalJSON

func (*CursorPageTypeVarCustomizedConnectionRead) SetCurrentPage

SetCurrentPage gets a reference to the given NullableString and assigns it to the CurrentPage field.

func (*CursorPageTypeVarCustomizedConnectionRead) SetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedConnectionRead) SetCurrentPageBackwards(v string)

SetCurrentPageBackwards gets a reference to the given NullableString and assigns it to the CurrentPageBackwards field.

func (*CursorPageTypeVarCustomizedConnectionRead) SetCurrentPageBackwardsNil

func (o *CursorPageTypeVarCustomizedConnectionRead) SetCurrentPageBackwardsNil()

SetCurrentPageBackwardsNil sets the value for CurrentPageBackwards to be an explicit nil

func (*CursorPageTypeVarCustomizedConnectionRead) SetCurrentPageNil

func (o *CursorPageTypeVarCustomizedConnectionRead) SetCurrentPageNil()

SetCurrentPageNil sets the value for CurrentPage to be an explicit nil

func (*CursorPageTypeVarCustomizedConnectionRead) SetItems

SetItems sets field value

func (*CursorPageTypeVarCustomizedConnectionRead) SetNextPage

SetNextPage gets a reference to the given NullableString and assigns it to the NextPage field.

func (*CursorPageTypeVarCustomizedConnectionRead) SetNextPageNil

func (o *CursorPageTypeVarCustomizedConnectionRead) SetNextPageNil()

SetNextPageNil sets the value for NextPage to be an explicit nil

func (*CursorPageTypeVarCustomizedConnectionRead) SetPreviousPage

func (o *CursorPageTypeVarCustomizedConnectionRead) SetPreviousPage(v string)

SetPreviousPage gets a reference to the given NullableString and assigns it to the PreviousPage field.

func (*CursorPageTypeVarCustomizedConnectionRead) SetPreviousPageNil

func (o *CursorPageTypeVarCustomizedConnectionRead) SetPreviousPageNil()

SetPreviousPageNil sets the value for PreviousPage to be an explicit nil

func (CursorPageTypeVarCustomizedConnectionRead) ToMap

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

func (*CursorPageTypeVarCustomizedConnectionRead) UnmarshalJSON

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

func (*CursorPageTypeVarCustomizedConnectionRead) UnsetCurrentPage

func (o *CursorPageTypeVarCustomizedConnectionRead) UnsetCurrentPage()

UnsetCurrentPage ensures that no value is present for CurrentPage, not even an explicit nil

func (*CursorPageTypeVarCustomizedConnectionRead) UnsetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedConnectionRead) UnsetCurrentPageBackwards()

UnsetCurrentPageBackwards ensures that no value is present for CurrentPageBackwards, not even an explicit nil

func (*CursorPageTypeVarCustomizedConnectionRead) UnsetNextPage

func (o *CursorPageTypeVarCustomizedConnectionRead) UnsetNextPage()

UnsetNextPage ensures that no value is present for NextPage, not even an explicit nil

func (*CursorPageTypeVarCustomizedConnectionRead) UnsetPreviousPage

func (o *CursorPageTypeVarCustomizedConnectionRead) UnsetPreviousPage()

UnsetPreviousPage ensures that no value is present for PreviousPage, not even an explicit nil

type CursorPageTypeVarCustomizedExecutionRead

type CursorPageTypeVarCustomizedExecutionRead struct {
	Items                []ExecutionRead `json:"items"`
	CurrentPage          NullableString  `json:"current_page,omitempty"`
	CurrentPageBackwards NullableString  `json:"current_page_backwards,omitempty"`
	PreviousPage         NullableString  `json:"previous_page,omitempty"`
	NextPage             NullableString  `json:"next_page,omitempty"`
}

CursorPageTypeVarCustomizedExecutionRead struct for CursorPageTypeVarCustomizedExecutionRead

func NewCursorPageTypeVarCustomizedExecutionRead

func NewCursorPageTypeVarCustomizedExecutionRead(items []ExecutionRead) *CursorPageTypeVarCustomizedExecutionRead

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

func NewCursorPageTypeVarCustomizedExecutionReadWithDefaults() *CursorPageTypeVarCustomizedExecutionRead

NewCursorPageTypeVarCustomizedExecutionReadWithDefaults instantiates a new CursorPageTypeVarCustomizedExecutionRead object This 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 (*CursorPageTypeVarCustomizedExecutionRead) GetCurrentPage

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

func (*CursorPageTypeVarCustomizedExecutionRead) GetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedExecutionRead) GetCurrentPageBackwards() string

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

func (*CursorPageTypeVarCustomizedExecutionRead) GetCurrentPageBackwardsOk

func (o *CursorPageTypeVarCustomizedExecutionRead) GetCurrentPageBackwardsOk() (*string, bool)

GetCurrentPageBackwardsOk returns a tuple with the CurrentPageBackwards 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 (*CursorPageTypeVarCustomizedExecutionRead) GetCurrentPageOk

func (o *CursorPageTypeVarCustomizedExecutionRead) GetCurrentPageOk() (*string, bool)

GetCurrentPageOk returns a tuple with the CurrentPage 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 (*CursorPageTypeVarCustomizedExecutionRead) GetItems

GetItems returns the Items field value

func (*CursorPageTypeVarCustomizedExecutionRead) GetItemsOk

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

func (*CursorPageTypeVarCustomizedExecutionRead) GetNextPage

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

func (*CursorPageTypeVarCustomizedExecutionRead) GetNextPageOk

func (o *CursorPageTypeVarCustomizedExecutionRead) GetNextPageOk() (*string, bool)

GetNextPageOk returns a tuple with the NextPage 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 (*CursorPageTypeVarCustomizedExecutionRead) GetPreviousPage

func (o *CursorPageTypeVarCustomizedExecutionRead) GetPreviousPage() string

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

func (*CursorPageTypeVarCustomizedExecutionRead) GetPreviousPageOk

func (o *CursorPageTypeVarCustomizedExecutionRead) GetPreviousPageOk() (*string, bool)

GetPreviousPageOk returns a tuple with the PreviousPage 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 (*CursorPageTypeVarCustomizedExecutionRead) HasCurrentPage

func (o *CursorPageTypeVarCustomizedExecutionRead) HasCurrentPage() bool

HasCurrentPage returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedExecutionRead) HasCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedExecutionRead) HasCurrentPageBackwards() bool

HasCurrentPageBackwards returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedExecutionRead) HasNextPage

HasNextPage returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedExecutionRead) HasPreviousPage

func (o *CursorPageTypeVarCustomizedExecutionRead) HasPreviousPage() bool

HasPreviousPage returns a boolean if a field has been set.

func (CursorPageTypeVarCustomizedExecutionRead) MarshalJSON

func (*CursorPageTypeVarCustomizedExecutionRead) SetCurrentPage

func (o *CursorPageTypeVarCustomizedExecutionRead) SetCurrentPage(v string)

SetCurrentPage gets a reference to the given NullableString and assigns it to the CurrentPage field.

func (*CursorPageTypeVarCustomizedExecutionRead) SetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedExecutionRead) SetCurrentPageBackwards(v string)

SetCurrentPageBackwards gets a reference to the given NullableString and assigns it to the CurrentPageBackwards field.

func (*CursorPageTypeVarCustomizedExecutionRead) SetCurrentPageBackwardsNil

func (o *CursorPageTypeVarCustomizedExecutionRead) SetCurrentPageBackwardsNil()

SetCurrentPageBackwardsNil sets the value for CurrentPageBackwards to be an explicit nil

func (*CursorPageTypeVarCustomizedExecutionRead) SetCurrentPageNil

func (o *CursorPageTypeVarCustomizedExecutionRead) SetCurrentPageNil()

SetCurrentPageNil sets the value for CurrentPage to be an explicit nil

func (*CursorPageTypeVarCustomizedExecutionRead) SetItems

SetItems sets field value

func (*CursorPageTypeVarCustomizedExecutionRead) SetNextPage

SetNextPage gets a reference to the given NullableString and assigns it to the NextPage field.

func (*CursorPageTypeVarCustomizedExecutionRead) SetNextPageNil

func (o *CursorPageTypeVarCustomizedExecutionRead) SetNextPageNil()

SetNextPageNil sets the value for NextPage to be an explicit nil

func (*CursorPageTypeVarCustomizedExecutionRead) SetPreviousPage

func (o *CursorPageTypeVarCustomizedExecutionRead) SetPreviousPage(v string)

SetPreviousPage gets a reference to the given NullableString and assigns it to the PreviousPage field.

func (*CursorPageTypeVarCustomizedExecutionRead) SetPreviousPageNil

func (o *CursorPageTypeVarCustomizedExecutionRead) SetPreviousPageNil()

SetPreviousPageNil sets the value for PreviousPage to be an explicit nil

func (CursorPageTypeVarCustomizedExecutionRead) ToMap

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

func (*CursorPageTypeVarCustomizedExecutionRead) UnmarshalJSON

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

func (*CursorPageTypeVarCustomizedExecutionRead) UnsetCurrentPage

func (o *CursorPageTypeVarCustomizedExecutionRead) UnsetCurrentPage()

UnsetCurrentPage ensures that no value is present for CurrentPage, not even an explicit nil

func (*CursorPageTypeVarCustomizedExecutionRead) UnsetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedExecutionRead) UnsetCurrentPageBackwards()

UnsetCurrentPageBackwards ensures that no value is present for CurrentPageBackwards, not even an explicit nil

func (*CursorPageTypeVarCustomizedExecutionRead) UnsetNextPage

func (o *CursorPageTypeVarCustomizedExecutionRead) UnsetNextPage()

UnsetNextPage ensures that no value is present for NextPage, not even an explicit nil

func (*CursorPageTypeVarCustomizedExecutionRead) UnsetPreviousPage

func (o *CursorPageTypeVarCustomizedExecutionRead) UnsetPreviousPage()

UnsetPreviousPage ensures that no value is present for PreviousPage, not even an explicit nil

type CursorPageTypeVarCustomizedScheduleRead

type CursorPageTypeVarCustomizedScheduleRead struct {
	Items                []ScheduleRead `json:"items"`
	CurrentPage          NullableString `json:"current_page,omitempty"`
	CurrentPageBackwards NullableString `json:"current_page_backwards,omitempty"`
	PreviousPage         NullableString `json:"previous_page,omitempty"`
	NextPage             NullableString `json:"next_page,omitempty"`
}

CursorPageTypeVarCustomizedScheduleRead struct for CursorPageTypeVarCustomizedScheduleRead

func NewCursorPageTypeVarCustomizedScheduleRead

func NewCursorPageTypeVarCustomizedScheduleRead(items []ScheduleRead) *CursorPageTypeVarCustomizedScheduleRead

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

func NewCursorPageTypeVarCustomizedScheduleReadWithDefaults() *CursorPageTypeVarCustomizedScheduleRead

NewCursorPageTypeVarCustomizedScheduleReadWithDefaults instantiates a new CursorPageTypeVarCustomizedScheduleRead object This 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 (*CursorPageTypeVarCustomizedScheduleRead) GetCurrentPage

func (o *CursorPageTypeVarCustomizedScheduleRead) GetCurrentPage() string

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

func (*CursorPageTypeVarCustomizedScheduleRead) GetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedScheduleRead) GetCurrentPageBackwards() string

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

func (*CursorPageTypeVarCustomizedScheduleRead) GetCurrentPageBackwardsOk

func (o *CursorPageTypeVarCustomizedScheduleRead) GetCurrentPageBackwardsOk() (*string, bool)

GetCurrentPageBackwardsOk returns a tuple with the CurrentPageBackwards 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 (*CursorPageTypeVarCustomizedScheduleRead) GetCurrentPageOk

func (o *CursorPageTypeVarCustomizedScheduleRead) GetCurrentPageOk() (*string, bool)

GetCurrentPageOk returns a tuple with the CurrentPage 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 (*CursorPageTypeVarCustomizedScheduleRead) GetItems

GetItems returns the Items field value

func (*CursorPageTypeVarCustomizedScheduleRead) GetItemsOk

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

func (*CursorPageTypeVarCustomizedScheduleRead) GetNextPage

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

func (*CursorPageTypeVarCustomizedScheduleRead) GetNextPageOk

func (o *CursorPageTypeVarCustomizedScheduleRead) GetNextPageOk() (*string, bool)

GetNextPageOk returns a tuple with the NextPage 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 (*CursorPageTypeVarCustomizedScheduleRead) GetPreviousPage

func (o *CursorPageTypeVarCustomizedScheduleRead) GetPreviousPage() string

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

func (*CursorPageTypeVarCustomizedScheduleRead) GetPreviousPageOk

func (o *CursorPageTypeVarCustomizedScheduleRead) GetPreviousPageOk() (*string, bool)

GetPreviousPageOk returns a tuple with the PreviousPage 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 (*CursorPageTypeVarCustomizedScheduleRead) HasCurrentPage

func (o *CursorPageTypeVarCustomizedScheduleRead) HasCurrentPage() bool

HasCurrentPage returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedScheduleRead) HasCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedScheduleRead) HasCurrentPageBackwards() bool

HasCurrentPageBackwards returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedScheduleRead) HasNextPage

HasNextPage returns a boolean if a field has been set.

func (*CursorPageTypeVarCustomizedScheduleRead) HasPreviousPage

func (o *CursorPageTypeVarCustomizedScheduleRead) HasPreviousPage() bool

HasPreviousPage returns a boolean if a field has been set.

func (CursorPageTypeVarCustomizedScheduleRead) MarshalJSON

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

func (*CursorPageTypeVarCustomizedScheduleRead) SetCurrentPage

func (o *CursorPageTypeVarCustomizedScheduleRead) SetCurrentPage(v string)

SetCurrentPage gets a reference to the given NullableString and assigns it to the CurrentPage field.

func (*CursorPageTypeVarCustomizedScheduleRead) SetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedScheduleRead) SetCurrentPageBackwards(v string)

SetCurrentPageBackwards gets a reference to the given NullableString and assigns it to the CurrentPageBackwards field.

func (*CursorPageTypeVarCustomizedScheduleRead) SetCurrentPageBackwardsNil

func (o *CursorPageTypeVarCustomizedScheduleRead) SetCurrentPageBackwardsNil()

SetCurrentPageBackwardsNil sets the value for CurrentPageBackwards to be an explicit nil

func (*CursorPageTypeVarCustomizedScheduleRead) SetCurrentPageNil

func (o *CursorPageTypeVarCustomizedScheduleRead) SetCurrentPageNil()

SetCurrentPageNil sets the value for CurrentPage to be an explicit nil

func (*CursorPageTypeVarCustomizedScheduleRead) SetItems

SetItems sets field value

func (*CursorPageTypeVarCustomizedScheduleRead) SetNextPage

SetNextPage gets a reference to the given NullableString and assigns it to the NextPage field.

func (*CursorPageTypeVarCustomizedScheduleRead) SetNextPageNil

func (o *CursorPageTypeVarCustomizedScheduleRead) SetNextPageNil()

SetNextPageNil sets the value for NextPage to be an explicit nil

func (*CursorPageTypeVarCustomizedScheduleRead) SetPreviousPage

func (o *CursorPageTypeVarCustomizedScheduleRead) SetPreviousPage(v string)

SetPreviousPage gets a reference to the given NullableString and assigns it to the PreviousPage field.

func (*CursorPageTypeVarCustomizedScheduleRead) SetPreviousPageNil

func (o *CursorPageTypeVarCustomizedScheduleRead) SetPreviousPageNil()

SetPreviousPageNil sets the value for PreviousPage to be an explicit nil

func (CursorPageTypeVarCustomizedScheduleRead) ToMap

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

func (*CursorPageTypeVarCustomizedScheduleRead) UnmarshalJSON

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

func (*CursorPageTypeVarCustomizedScheduleRead) UnsetCurrentPage

func (o *CursorPageTypeVarCustomizedScheduleRead) UnsetCurrentPage()

UnsetCurrentPage ensures that no value is present for CurrentPage, not even an explicit nil

func (*CursorPageTypeVarCustomizedScheduleRead) UnsetCurrentPageBackwards

func (o *CursorPageTypeVarCustomizedScheduleRead) UnsetCurrentPageBackwards()

UnsetCurrentPageBackwards ensures that no value is present for CurrentPageBackwards, not even an explicit nil

func (*CursorPageTypeVarCustomizedScheduleRead) UnsetNextPage

func (o *CursorPageTypeVarCustomizedScheduleRead) UnsetNextPage()

UnsetNextPage ensures that no value is present for NextPage, not even an explicit nil

func (*CursorPageTypeVarCustomizedScheduleRead) UnsetPreviousPage

func (o *CursorPageTypeVarCustomizedScheduleRead) UnsetPreviousPage()

UnsetPreviousPage ensures that no value is present for PreviousPage, not even an explicit nil

type DatabaseCredsInput

type DatabaseCredsInput struct {
	Drivername DatabaseDriverEnum `json:"drivername"`
	Host       string             `json:"host"`
	Port       int32              `json:"port"`
	Username   string             `json:"username"`
	Password   string             `json:"password"`
	Database   string             `json:"database"`
}

DatabaseCredsInput Database Connection model

func NewDatabaseCredsInput

func NewDatabaseCredsInput(drivername DatabaseDriverEnum, host string, port int32, username string, password string, database string) *DatabaseCredsInput

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

func NewDatabaseCredsInputWithDefaults() *DatabaseCredsInput

NewDatabaseCredsInputWithDefaults instantiates a new DatabaseCredsInput object This 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 (*DatabaseCredsInput) GetDatabase

func (o *DatabaseCredsInput) GetDatabase() string

GetDatabase returns the Database field value

func (*DatabaseCredsInput) GetDatabaseOk

func (o *DatabaseCredsInput) GetDatabaseOk() (*string, bool)

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

func (*DatabaseCredsInput) GetDrivername

func (o *DatabaseCredsInput) GetDrivername() DatabaseDriverEnum

GetDrivername returns the Drivername field value

func (*DatabaseCredsInput) GetDrivernameOk

func (o *DatabaseCredsInput) GetDrivernameOk() (*DatabaseDriverEnum, bool)

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

func (*DatabaseCredsInput) GetHost

func (o *DatabaseCredsInput) GetHost() string

GetHost returns the Host field value

func (*DatabaseCredsInput) GetHostOk

func (o *DatabaseCredsInput) GetHostOk() (*string, bool)

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

func (*DatabaseCredsInput) GetPassword

func (o *DatabaseCredsInput) GetPassword() string

GetPassword returns the Password field value

func (*DatabaseCredsInput) GetPasswordOk

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

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

func (*DatabaseCredsInput) GetPort

func (o *DatabaseCredsInput) GetPort() int32

GetPort returns the Port field value

func (*DatabaseCredsInput) GetPortOk

func (o *DatabaseCredsInput) GetPortOk() (*int32, bool)

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

func (*DatabaseCredsInput) GetUsername

func (o *DatabaseCredsInput) GetUsername() string

GetUsername returns the Username field value

func (*DatabaseCredsInput) GetUsernameOk

func (o *DatabaseCredsInput) GetUsernameOk() (*string, bool)

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

func (DatabaseCredsInput) MarshalJSON

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

func (*DatabaseCredsInput) SetDatabase

func (o *DatabaseCredsInput) SetDatabase(v string)

SetDatabase sets field value

func (*DatabaseCredsInput) SetDrivername

func (o *DatabaseCredsInput) SetDrivername(v DatabaseDriverEnum)

SetDrivername sets field value

func (*DatabaseCredsInput) SetHost

func (o *DatabaseCredsInput) SetHost(v string)

SetHost sets field value

func (*DatabaseCredsInput) SetPassword

func (o *DatabaseCredsInput) SetPassword(v string)

SetPassword sets field value

func (*DatabaseCredsInput) SetPort

func (o *DatabaseCredsInput) SetPort(v int32)

SetPort sets field value

func (*DatabaseCredsInput) SetUsername

func (o *DatabaseCredsInput) SetUsername(v string)

SetUsername sets field value

func (DatabaseCredsInput) ToMap

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

func (*DatabaseCredsInput) UnmarshalJSON

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

type DatabaseCredsOutput

type DatabaseCredsOutput struct {
	Drivername DatabaseDriverEnum `json:"drivername"`
	Host       interface{}        `json:"host"`
	Port       int32              `json:"port"`
	Username   interface{}        `json:"username"`
	Password   interface{}        `json:"password"`
	Database   string             `json:"database"`
}

DatabaseCredsOutput Database Connection model

func NewDatabaseCredsOutput

func NewDatabaseCredsOutput(drivername DatabaseDriverEnum, host interface{}, port int32, username interface{}, password interface{}, database string) *DatabaseCredsOutput

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

func NewDatabaseCredsOutputWithDefaults() *DatabaseCredsOutput

NewDatabaseCredsOutputWithDefaults instantiates a new DatabaseCredsOutput object This 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 (*DatabaseCredsOutput) GetDatabase

func (o *DatabaseCredsOutput) GetDatabase() string

GetDatabase returns the Database field value

func (*DatabaseCredsOutput) GetDatabaseOk

func (o *DatabaseCredsOutput) GetDatabaseOk() (*string, bool)

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

func (*DatabaseCredsOutput) GetDrivername

func (o *DatabaseCredsOutput) GetDrivername() DatabaseDriverEnum

GetDrivername returns the Drivername field value

func (*DatabaseCredsOutput) GetDrivernameOk

func (o *DatabaseCredsOutput) GetDrivernameOk() (*DatabaseDriverEnum, bool)

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

func (*DatabaseCredsOutput) GetHost

func (o *DatabaseCredsOutput) GetHost() interface{}

GetHost returns the Host field value If the value is explicit nil, the zero value for interface{} will be returned

func (*DatabaseCredsOutput) GetHostOk

func (o *DatabaseCredsOutput) GetHostOk() (*interface{}, bool)

GetHostOk returns a tuple with the Host 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 (*DatabaseCredsOutput) GetPassword

func (o *DatabaseCredsOutput) GetPassword() interface{}

GetPassword returns the Password field value If the value is explicit nil, the zero value for interface{} will be returned

func (*DatabaseCredsOutput) GetPasswordOk

func (o *DatabaseCredsOutput) GetPasswordOk() (*interface{}, bool)

GetPasswordOk returns a tuple with the Password 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 (*DatabaseCredsOutput) GetPort

func (o *DatabaseCredsOutput) GetPort() int32

GetPort returns the Port field value

func (*DatabaseCredsOutput) GetPortOk

func (o *DatabaseCredsOutput) GetPortOk() (*int32, bool)

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

func (*DatabaseCredsOutput) GetUsername

func (o *DatabaseCredsOutput) GetUsername() interface{}

GetUsername returns the Username field value If the value is explicit nil, the zero value for interface{} will be returned

func (*DatabaseCredsOutput) GetUsernameOk

func (o *DatabaseCredsOutput) GetUsernameOk() (*interface{}, bool)

GetUsernameOk returns a tuple with the Username 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 (DatabaseCredsOutput) MarshalJSON

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

func (*DatabaseCredsOutput) SetDatabase

func (o *DatabaseCredsOutput) SetDatabase(v string)

SetDatabase sets field value

func (*DatabaseCredsOutput) SetDrivername

func (o *DatabaseCredsOutput) SetDrivername(v DatabaseDriverEnum)

SetDrivername sets field value

func (*DatabaseCredsOutput) SetHost

func (o *DatabaseCredsOutput) SetHost(v interface{})

SetHost sets field value

func (*DatabaseCredsOutput) SetPassword

func (o *DatabaseCredsOutput) SetPassword(v interface{})

SetPassword sets field value

func (*DatabaseCredsOutput) SetPort

func (o *DatabaseCredsOutput) SetPort(v int32)

SetPort sets field value

func (*DatabaseCredsOutput) SetUsername

func (o *DatabaseCredsOutput) SetUsername(v interface{})

SetUsername sets field value

func (DatabaseCredsOutput) ToMap

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

func (*DatabaseCredsOutput) UnmarshalJSON

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

type DatabaseDriverEnum

type DatabaseDriverEnum string

DatabaseDriverEnum Database Driver

const (
	DATABASEDRIVERENUM_POSTGRESQLPSYCOPG2 DatabaseDriverEnum = "postgresql+psycopg2"
	DATABASEDRIVERENUM_COCKROACHDB        DatabaseDriverEnum = "cockroachdb"
	DATABASEDRIVERENUM_MONGODB            DatabaseDriverEnum = "mongodb"
	DATABASEDRIVERENUM_MYSQL              DatabaseDriverEnum = "mysql"
	DATABASEDRIVERENUM_MARIADB            DatabaseDriverEnum = "mariadb"
	DATABASEDRIVERENUM_SNOWFLAKE          DatabaseDriverEnum = "snowflake"
	DATABASEDRIVERENUM_CLICKHOUSE         DatabaseDriverEnum = "clickhouse"
)

List of DatabaseDriverEnum

func NewDatabaseDriverEnumFromValue

func NewDatabaseDriverEnumFromValue(v string) (*DatabaseDriverEnum, error)

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

func (DatabaseDriverEnum) IsValid

func (v DatabaseDriverEnum) IsValid() bool

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

func (DatabaseDriverEnum) Ptr

Ptr returns reference to DatabaseDriverEnum value

func (*DatabaseDriverEnum) UnmarshalJSON

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

type ExecutionRead

type ExecutionRead struct {
	// Unique identifier for the execution. Use this ID to trace which execution ingested specific data.
	Id string `json:"id"`
	// Timestamp when the execution was created.
	CreatedAt time.Time `json:"created_at"`
	// Timestamp when the execution was last updated.
	UpdatedAt time.Time `json:"updated_at"`
	// The ID of the schedule that this execution belongs to.
	ScheduleId string `json:"schedule_id"`
	// The ID of the connection used for this execution.
	ConnectionId string `json:"connection_id"`
	// The ID of the fleet that owns this execution.
	FleetId string `json:"fleet_id"`
	// The current status of the execution.
	Status StatusEnum `json:"status"`
	// The name of the TSP integration used for this execution.
	SourceName TspEnum `json:"source_name"`
	// The type of resource being fetched (e.g., VEHICLE, DRIVER, HOS, IFTA).
	Resource ResourceEnum `json:"resource"`
}

ExecutionRead API Model for reading an execution

func NewExecutionRead

func NewExecutionRead(id string, createdAt time.Time, updatedAt time.Time, scheduleId string, connectionId string, fleetId string, status StatusEnum, sourceName TspEnum, resource ResourceEnum) *ExecutionRead

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

func NewExecutionReadWithDefaults() *ExecutionRead

NewExecutionReadWithDefaults instantiates a new ExecutionRead object This 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 (*ExecutionRead) GetConnectionId

func (o *ExecutionRead) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*ExecutionRead) GetConnectionIdOk

func (o *ExecutionRead) GetConnectionIdOk() (*string, bool)

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

func (*ExecutionRead) GetCreatedAt

func (o *ExecutionRead) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*ExecutionRead) GetCreatedAtOk

func (o *ExecutionRead) 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 (*ExecutionRead) GetFleetId

func (o *ExecutionRead) GetFleetId() string

GetFleetId returns the FleetId field value

func (*ExecutionRead) GetFleetIdOk

func (o *ExecutionRead) GetFleetIdOk() (*string, bool)

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

func (*ExecutionRead) GetId

func (o *ExecutionRead) GetId() string

GetId returns the Id field value

func (*ExecutionRead) GetIdOk

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

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

func (*ExecutionRead) GetResource

func (o *ExecutionRead) GetResource() ResourceEnum

GetResource returns the Resource field value

func (*ExecutionRead) GetResourceOk

func (o *ExecutionRead) GetResourceOk() (*ResourceEnum, bool)

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

func (*ExecutionRead) GetScheduleId

func (o *ExecutionRead) GetScheduleId() string

GetScheduleId returns the ScheduleId field value

func (*ExecutionRead) GetScheduleIdOk

func (o *ExecutionRead) GetScheduleIdOk() (*string, bool)

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

func (*ExecutionRead) GetSourceName

func (o *ExecutionRead) GetSourceName() TspEnum

GetSourceName returns the SourceName field value

func (*ExecutionRead) GetSourceNameOk

func (o *ExecutionRead) GetSourceNameOk() (*TspEnum, bool)

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

func (*ExecutionRead) GetStatus

func (o *ExecutionRead) GetStatus() StatusEnum

GetStatus returns the Status field value

func (*ExecutionRead) GetStatusOk

func (o *ExecutionRead) GetStatusOk() (*StatusEnum, bool)

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

func (*ExecutionRead) GetUpdatedAt

func (o *ExecutionRead) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ExecutionRead) GetUpdatedAtOk

func (o *ExecutionRead) 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 (ExecutionRead) MarshalJSON

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

func (*ExecutionRead) SetConnectionId

func (o *ExecutionRead) SetConnectionId(v string)

SetConnectionId sets field value

func (*ExecutionRead) SetCreatedAt

func (o *ExecutionRead) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ExecutionRead) SetFleetId

func (o *ExecutionRead) SetFleetId(v string)

SetFleetId sets field value

func (*ExecutionRead) SetId

func (o *ExecutionRead) SetId(v string)

SetId sets field value

func (*ExecutionRead) SetResource

func (o *ExecutionRead) SetResource(v ResourceEnum)

SetResource sets field value

func (*ExecutionRead) SetScheduleId

func (o *ExecutionRead) SetScheduleId(v string)

SetScheduleId sets field value

func (*ExecutionRead) SetSourceName

func (o *ExecutionRead) SetSourceName(v TspEnum)

SetSourceName sets field value

func (*ExecutionRead) SetStatus

func (o *ExecutionRead) SetStatus(v StatusEnum)

SetStatus sets field value

func (*ExecutionRead) SetUpdatedAt

func (o *ExecutionRead) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (ExecutionRead) ToMap

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

func (*ExecutionRead) UnmarshalJSON

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

type EzlogzCreds

type EzlogzCreds struct {
	AppId     string `json:"app_id"`
	AppKey    string `json:"app_key"`
	ClientKey string `json:"client_key"`
}

EzlogzCreds Ezlogz Connection model

func NewEzlogzCreds

func NewEzlogzCreds(appId string, appKey string, clientKey string) *EzlogzCreds

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

func NewEzlogzCredsWithDefaults() *EzlogzCreds

NewEzlogzCredsWithDefaults instantiates a new EzlogzCreds object This 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 (*EzlogzCreds) GetAppId

func (o *EzlogzCreds) GetAppId() string

GetAppId returns the AppId field value

func (*EzlogzCreds) GetAppIdOk

func (o *EzlogzCreds) GetAppIdOk() (*string, bool)

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

func (*EzlogzCreds) GetAppKey

func (o *EzlogzCreds) GetAppKey() string

GetAppKey returns the AppKey field value

func (*EzlogzCreds) GetAppKeyOk

func (o *EzlogzCreds) GetAppKeyOk() (*string, bool)

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

func (*EzlogzCreds) GetClientKey

func (o *EzlogzCreds) GetClientKey() string

GetClientKey returns the ClientKey field value

func (*EzlogzCreds) GetClientKeyOk

func (o *EzlogzCreds) GetClientKeyOk() (*string, bool)

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

func (EzlogzCreds) MarshalJSON

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

func (*EzlogzCreds) SetAppId

func (o *EzlogzCreds) SetAppId(v string)

SetAppId sets field value

func (*EzlogzCreds) SetAppKey

func (o *EzlogzCreds) SetAppKey(v string)

SetAppKey sets field value

func (*EzlogzCreds) SetClientKey

func (o *EzlogzCreds) SetClientKey(v string)

SetClientKey sets field value

func (EzlogzCreds) ToMap

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

func (*EzlogzCreds) UnmarshalJSON

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

type FactorEldCredsInput

type FactorEldCredsInput struct {
	Username string `json:"username"`
	Password string `json:"password"`
	ApiKey   string `json:"api_key"`
}

FactorEldCredsInput Factor ELD Connection model

func NewFactorEldCredsInput

func NewFactorEldCredsInput(username string, password string, apiKey string) *FactorEldCredsInput

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

func NewFactorEldCredsInputWithDefaults() *FactorEldCredsInput

NewFactorEldCredsInputWithDefaults instantiates a new FactorEldCredsInput object This 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 (*FactorEldCredsInput) GetApiKey

func (o *FactorEldCredsInput) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*FactorEldCredsInput) GetApiKeyOk

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

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

func (*FactorEldCredsInput) GetPassword

func (o *FactorEldCredsInput) GetPassword() string

GetPassword returns the Password field value

func (*FactorEldCredsInput) GetPasswordOk

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

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

func (*FactorEldCredsInput) GetUsername

func (o *FactorEldCredsInput) GetUsername() string

GetUsername returns the Username field value

func (*FactorEldCredsInput) GetUsernameOk

func (o *FactorEldCredsInput) GetUsernameOk() (*string, bool)

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

func (FactorEldCredsInput) MarshalJSON

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

func (*FactorEldCredsInput) SetApiKey

func (o *FactorEldCredsInput) SetApiKey(v string)

SetApiKey sets field value

func (*FactorEldCredsInput) SetPassword

func (o *FactorEldCredsInput) SetPassword(v string)

SetPassword sets field value

func (*FactorEldCredsInput) SetUsername

func (o *FactorEldCredsInput) SetUsername(v string)

SetUsername sets field value

func (FactorEldCredsInput) ToMap

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

func (*FactorEldCredsInput) UnmarshalJSON

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

type FactorEldCredsOutput

type FactorEldCredsOutput struct {
	Username interface{} `json:"username"`
	Password interface{} `json:"password"`
	ApiKey   interface{} `json:"api_key"`
}

FactorEldCredsOutput Factor ELD Connection model

func NewFactorEldCredsOutput

func NewFactorEldCredsOutput(username interface{}, password interface{}, apiKey interface{}) *FactorEldCredsOutput

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

func NewFactorEldCredsOutputWithDefaults() *FactorEldCredsOutput

NewFactorEldCredsOutputWithDefaults instantiates a new FactorEldCredsOutput object This 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 (*FactorEldCredsOutput) GetApiKey

func (o *FactorEldCredsOutput) GetApiKey() interface{}

GetApiKey returns the ApiKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*FactorEldCredsOutput) GetApiKeyOk

func (o *FactorEldCredsOutput) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*FactorEldCredsOutput) GetPassword

func (o *FactorEldCredsOutput) GetPassword() interface{}

GetPassword returns the Password field value If the value is explicit nil, the zero value for interface{} will be returned

func (*FactorEldCredsOutput) GetPasswordOk

func (o *FactorEldCredsOutput) GetPasswordOk() (*interface{}, bool)

GetPasswordOk returns a tuple with the Password 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 (*FactorEldCredsOutput) GetUsername

func (o *FactorEldCredsOutput) GetUsername() interface{}

GetUsername returns the Username field value If the value is explicit nil, the zero value for interface{} will be returned

func (*FactorEldCredsOutput) GetUsernameOk

func (o *FactorEldCredsOutput) GetUsernameOk() (*interface{}, bool)

GetUsernameOk returns a tuple with the Username 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 (FactorEldCredsOutput) MarshalJSON

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

func (*FactorEldCredsOutput) SetApiKey

func (o *FactorEldCredsOutput) SetApiKey(v interface{})

SetApiKey sets field value

func (*FactorEldCredsOutput) SetPassword

func (o *FactorEldCredsOutput) SetPassword(v interface{})

SetPassword sets field value

func (*FactorEldCredsOutput) SetUsername

func (o *FactorEldCredsOutput) SetUsername(v interface{})

SetUsername sets field value

func (FactorEldCredsOutput) ToMap

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

func (*FactorEldCredsOutput) UnmarshalJSON

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

type FleetupCredsInput

type FleetupCredsInput struct {
	AccountId string `json:"account_id"`
	SecretKey string `json:"secret_key"`
	ApiKey    string `json:"api_key"`
}

FleetupCredsInput Fleetup Connection model

func NewFleetupCredsInput

func NewFleetupCredsInput(accountId string, secretKey string, apiKey string) *FleetupCredsInput

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

func NewFleetupCredsInputWithDefaults() *FleetupCredsInput

NewFleetupCredsInputWithDefaults instantiates a new FleetupCredsInput object This 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 (*FleetupCredsInput) GetAccountId

func (o *FleetupCredsInput) GetAccountId() string

GetAccountId returns the AccountId field value

func (*FleetupCredsInput) GetAccountIdOk

func (o *FleetupCredsInput) GetAccountIdOk() (*string, bool)

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

func (*FleetupCredsInput) GetApiKey

func (o *FleetupCredsInput) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*FleetupCredsInput) GetApiKeyOk

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

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

func (*FleetupCredsInput) GetSecretKey

func (o *FleetupCredsInput) GetSecretKey() string

GetSecretKey returns the SecretKey field value

func (*FleetupCredsInput) GetSecretKeyOk

func (o *FleetupCredsInput) GetSecretKeyOk() (*string, bool)

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

func (FleetupCredsInput) MarshalJSON

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

func (*FleetupCredsInput) SetAccountId

func (o *FleetupCredsInput) SetAccountId(v string)

SetAccountId sets field value

func (*FleetupCredsInput) SetApiKey

func (o *FleetupCredsInput) SetApiKey(v string)

SetApiKey sets field value

func (*FleetupCredsInput) SetSecretKey

func (o *FleetupCredsInput) SetSecretKey(v string)

SetSecretKey sets field value

func (FleetupCredsInput) ToMap

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

func (*FleetupCredsInput) UnmarshalJSON

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

type FleetupCredsOutput

type FleetupCredsOutput struct {
	AccountId string      `json:"account_id"`
	SecretKey interface{} `json:"secret_key"`
	ApiKey    interface{} `json:"api_key"`
}

FleetupCredsOutput Fleetup Connection model

func NewFleetupCredsOutput

func NewFleetupCredsOutput(accountId string, secretKey interface{}, apiKey interface{}) *FleetupCredsOutput

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

func NewFleetupCredsOutputWithDefaults() *FleetupCredsOutput

NewFleetupCredsOutputWithDefaults instantiates a new FleetupCredsOutput object This 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 (*FleetupCredsOutput) GetAccountId

func (o *FleetupCredsOutput) GetAccountId() string

GetAccountId returns the AccountId field value

func (*FleetupCredsOutput) GetAccountIdOk

func (o *FleetupCredsOutput) GetAccountIdOk() (*string, bool)

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

func (*FleetupCredsOutput) GetApiKey

func (o *FleetupCredsOutput) GetApiKey() interface{}

GetApiKey returns the ApiKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*FleetupCredsOutput) GetApiKeyOk

func (o *FleetupCredsOutput) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*FleetupCredsOutput) GetSecretKey

func (o *FleetupCredsOutput) GetSecretKey() interface{}

GetSecretKey returns the SecretKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*FleetupCredsOutput) GetSecretKeyOk

func (o *FleetupCredsOutput) GetSecretKeyOk() (*interface{}, bool)

GetSecretKeyOk returns a tuple with the SecretKey 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 (FleetupCredsOutput) MarshalJSON

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

func (*FleetupCredsOutput) SetAccountId

func (o *FleetupCredsOutput) SetAccountId(v string)

SetAccountId sets field value

func (*FleetupCredsOutput) SetApiKey

func (o *FleetupCredsOutput) SetApiKey(v interface{})

SetApiKey sets field value

func (*FleetupCredsOutput) SetSecretKey

func (o *FleetupCredsOutput) SetSecretKey(v interface{})

SetSecretKey sets field value

func (FleetupCredsOutput) ToMap

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

func (*FleetupCredsOutput) UnmarshalJSON

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

type FleetupSLCInput

type FleetupSLCInput struct {
	AccountId string `json:"account_id"`
	ApiKey    string `json:"api_key"`
	Token     string `json:"token"`
}

FleetupSLCInput Fleetup SLC Connection model

func NewFleetupSLCInput

func NewFleetupSLCInput(accountId string, apiKey string, token string) *FleetupSLCInput

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

func NewFleetupSLCInputWithDefaults() *FleetupSLCInput

NewFleetupSLCInputWithDefaults instantiates a new FleetupSLCInput object This 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 (*FleetupSLCInput) GetAccountId

func (o *FleetupSLCInput) GetAccountId() string

GetAccountId returns the AccountId field value

func (*FleetupSLCInput) GetAccountIdOk

func (o *FleetupSLCInput) GetAccountIdOk() (*string, bool)

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

func (*FleetupSLCInput) GetApiKey

func (o *FleetupSLCInput) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*FleetupSLCInput) GetApiKeyOk

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

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

func (*FleetupSLCInput) GetToken

func (o *FleetupSLCInput) GetToken() string

GetToken returns the Token field value

func (*FleetupSLCInput) GetTokenOk

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

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

func (FleetupSLCInput) MarshalJSON

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

func (*FleetupSLCInput) SetAccountId

func (o *FleetupSLCInput) SetAccountId(v string)

SetAccountId sets field value

func (*FleetupSLCInput) SetApiKey

func (o *FleetupSLCInput) SetApiKey(v string)

SetApiKey sets field value

func (*FleetupSLCInput) SetToken

func (o *FleetupSLCInput) SetToken(v string)

SetToken sets field value

func (FleetupSLCInput) ToMap

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

func (*FleetupSLCInput) UnmarshalJSON

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

type FleetupSLCOutput

type FleetupSLCOutput struct {
	AccountId string      `json:"account_id"`
	ApiKey    interface{} `json:"api_key"`
	Token     interface{} `json:"token"`
}

FleetupSLCOutput Fleetup SLC Connection model

func NewFleetupSLCOutput

func NewFleetupSLCOutput(accountId string, apiKey interface{}, token interface{}) *FleetupSLCOutput

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

func NewFleetupSLCOutputWithDefaults() *FleetupSLCOutput

NewFleetupSLCOutputWithDefaults instantiates a new FleetupSLCOutput object This 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 (*FleetupSLCOutput) GetAccountId

func (o *FleetupSLCOutput) GetAccountId() string

GetAccountId returns the AccountId field value

func (*FleetupSLCOutput) GetAccountIdOk

func (o *FleetupSLCOutput) GetAccountIdOk() (*string, bool)

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

func (*FleetupSLCOutput) GetApiKey

func (o *FleetupSLCOutput) GetApiKey() interface{}

GetApiKey returns the ApiKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*FleetupSLCOutput) GetApiKeyOk

func (o *FleetupSLCOutput) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*FleetupSLCOutput) GetToken

func (o *FleetupSLCOutput) GetToken() interface{}

GetToken returns the Token field value If the value is explicit nil, the zero value for interface{} will be returned

func (*FleetupSLCOutput) GetTokenOk

func (o *FleetupSLCOutput) GetTokenOk() (*interface{}, bool)

GetTokenOk returns a tuple with the Token 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 (FleetupSLCOutput) MarshalJSON

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

func (*FleetupSLCOutput) SetAccountId

func (o *FleetupSLCOutput) SetAccountId(v string)

SetAccountId sets field value

func (*FleetupSLCOutput) SetApiKey

func (o *FleetupSLCOutput) SetApiKey(v interface{})

SetApiKey sets field value

func (*FleetupSLCOutput) SetToken

func (o *FleetupSLCOutput) SetToken(v interface{})

SetToken sets field value

func (FleetupSLCOutput) ToMap

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

func (*FleetupSLCOutput) UnmarshalJSON

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

type Forbidden

type Forbidden struct {
	Code    *int32         `json:"code,omitempty"`
	Message *string        `json:"message,omitempty"`
	Detail  NullableString `json:"detail,omitempty"`
}

Forbidden struct for Forbidden

func NewForbidden

func NewForbidden() *Forbidden

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

func NewForbiddenWithDefaults() *Forbidden

NewForbiddenWithDefaults instantiates a new Forbidden object This 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 (*Forbidden) GetCode

func (o *Forbidden) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*Forbidden) GetCodeOk

func (o *Forbidden) GetCodeOk() (*int32, bool)

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

func (*Forbidden) GetDetail

func (o *Forbidden) GetDetail() string

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

func (*Forbidden) GetDetailOk

func (o *Forbidden) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail 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 (*Forbidden) GetMessage

func (o *Forbidden) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Forbidden) GetMessageOk

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

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

func (*Forbidden) HasCode

func (o *Forbidden) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Forbidden) HasDetail

func (o *Forbidden) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*Forbidden) HasMessage

func (o *Forbidden) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Forbidden) MarshalJSON

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

func (*Forbidden) SetCode

func (o *Forbidden) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*Forbidden) SetDetail

func (o *Forbidden) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*Forbidden) SetDetailNil

func (o *Forbidden) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*Forbidden) SetMessage

func (o *Forbidden) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (Forbidden) ToMap

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

func (*Forbidden) UnsetDetail

func (o *Forbidden) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

type GatewayTimeout

type GatewayTimeout struct {
	Code    *int32         `json:"code,omitempty"`
	Message *string        `json:"message,omitempty"`
	Detail  NullableString `json:"detail,omitempty"`
}

GatewayTimeout struct for GatewayTimeout

func NewGatewayTimeout

func NewGatewayTimeout() *GatewayTimeout

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

func NewGatewayTimeoutWithDefaults() *GatewayTimeout

NewGatewayTimeoutWithDefaults instantiates a new GatewayTimeout object This 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 (*GatewayTimeout) GetCode

func (o *GatewayTimeout) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*GatewayTimeout) GetCodeOk

func (o *GatewayTimeout) GetCodeOk() (*int32, bool)

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

func (*GatewayTimeout) GetDetail

func (o *GatewayTimeout) GetDetail() string

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

func (*GatewayTimeout) GetDetailOk

func (o *GatewayTimeout) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail 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 (*GatewayTimeout) GetMessage

func (o *GatewayTimeout) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*GatewayTimeout) GetMessageOk

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

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

func (*GatewayTimeout) HasCode

func (o *GatewayTimeout) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*GatewayTimeout) HasDetail

func (o *GatewayTimeout) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*GatewayTimeout) HasMessage

func (o *GatewayTimeout) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (GatewayTimeout) MarshalJSON

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

func (*GatewayTimeout) SetCode

func (o *GatewayTimeout) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*GatewayTimeout) SetDetail

func (o *GatewayTimeout) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*GatewayTimeout) SetDetailNil

func (o *GatewayTimeout) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*GatewayTimeout) SetMessage

func (o *GatewayTimeout) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (GatewayTimeout) ToMap

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

func (*GatewayTimeout) UnsetDetail

func (o *GatewayTimeout) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeotabCredsInput

type GeotabCredsInput struct {
	Username  string         `json:"username"`
	Password  string         `json:"password"`
	Database  string         `json:"database"`
	SessionId NullableString `json:"session_id,omitempty"`
}

GeotabCredsInput Geotab Connection model

func NewGeotabCredsInput

func NewGeotabCredsInput(username string, password string, database string) *GeotabCredsInput

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

func NewGeotabCredsInputWithDefaults() *GeotabCredsInput

NewGeotabCredsInputWithDefaults instantiates a new GeotabCredsInput object This 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 (*GeotabCredsInput) GetDatabase

func (o *GeotabCredsInput) GetDatabase() string

GetDatabase returns the Database field value

func (*GeotabCredsInput) GetDatabaseOk

func (o *GeotabCredsInput) GetDatabaseOk() (*string, bool)

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

func (*GeotabCredsInput) GetPassword

func (o *GeotabCredsInput) GetPassword() string

GetPassword returns the Password field value

func (*GeotabCredsInput) GetPasswordOk

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

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

func (*GeotabCredsInput) GetSessionId

func (o *GeotabCredsInput) GetSessionId() string

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

func (*GeotabCredsInput) GetSessionIdOk

func (o *GeotabCredsInput) GetSessionIdOk() (*string, bool)

GetSessionIdOk returns a tuple with the SessionId 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 (*GeotabCredsInput) GetUsername

func (o *GeotabCredsInput) GetUsername() string

GetUsername returns the Username field value

func (*GeotabCredsInput) GetUsernameOk

func (o *GeotabCredsInput) GetUsernameOk() (*string, bool)

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

func (*GeotabCredsInput) HasSessionId

func (o *GeotabCredsInput) HasSessionId() bool

HasSessionId returns a boolean if a field has been set.

func (GeotabCredsInput) MarshalJSON

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

func (*GeotabCredsInput) SetDatabase

func (o *GeotabCredsInput) SetDatabase(v string)

SetDatabase sets field value

func (*GeotabCredsInput) SetPassword

func (o *GeotabCredsInput) SetPassword(v string)

SetPassword sets field value

func (*GeotabCredsInput) SetSessionId

func (o *GeotabCredsInput) SetSessionId(v string)

SetSessionId gets a reference to the given NullableString and assigns it to the SessionId field.

func (*GeotabCredsInput) SetSessionIdNil

func (o *GeotabCredsInput) SetSessionIdNil()

SetSessionIdNil sets the value for SessionId to be an explicit nil

func (*GeotabCredsInput) SetUsername

func (o *GeotabCredsInput) SetUsername(v string)

SetUsername sets field value

func (GeotabCredsInput) ToMap

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

func (*GeotabCredsInput) UnmarshalJSON

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

func (*GeotabCredsInput) UnsetSessionId

func (o *GeotabCredsInput) UnsetSessionId()

UnsetSessionId ensures that no value is present for SessionId, not even an explicit nil

type GeotabCredsOutput

type GeotabCredsOutput struct {
	Username  interface{}    `json:"username"`
	Password  interface{}    `json:"password"`
	Database  string         `json:"database"`
	SessionId NullableString `json:"session_id,omitempty"`
}

GeotabCredsOutput Geotab Connection model

func NewGeotabCredsOutput

func NewGeotabCredsOutput(username interface{}, password interface{}, database string) *GeotabCredsOutput

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

func NewGeotabCredsOutputWithDefaults() *GeotabCredsOutput

NewGeotabCredsOutputWithDefaults instantiates a new GeotabCredsOutput object This 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 (*GeotabCredsOutput) GetDatabase

func (o *GeotabCredsOutput) GetDatabase() string

GetDatabase returns the Database field value

func (*GeotabCredsOutput) GetDatabaseOk

func (o *GeotabCredsOutput) GetDatabaseOk() (*string, bool)

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

func (*GeotabCredsOutput) GetPassword

func (o *GeotabCredsOutput) GetPassword() interface{}

GetPassword returns the Password field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GeotabCredsOutput) GetPasswordOk

func (o *GeotabCredsOutput) GetPasswordOk() (*interface{}, bool)

GetPasswordOk returns a tuple with the Password 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 (*GeotabCredsOutput) GetSessionId

func (o *GeotabCredsOutput) GetSessionId() string

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

func (*GeotabCredsOutput) GetSessionIdOk

func (o *GeotabCredsOutput) GetSessionIdOk() (*string, bool)

GetSessionIdOk returns a tuple with the SessionId 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 (*GeotabCredsOutput) GetUsername

func (o *GeotabCredsOutput) GetUsername() interface{}

GetUsername returns the Username field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GeotabCredsOutput) GetUsernameOk

func (o *GeotabCredsOutput) GetUsernameOk() (*interface{}, bool)

GetUsernameOk returns a tuple with the Username 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 (*GeotabCredsOutput) HasSessionId

func (o *GeotabCredsOutput) HasSessionId() bool

HasSessionId returns a boolean if a field has been set.

func (GeotabCredsOutput) MarshalJSON

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

func (*GeotabCredsOutput) SetDatabase

func (o *GeotabCredsOutput) SetDatabase(v string)

SetDatabase sets field value

func (*GeotabCredsOutput) SetPassword

func (o *GeotabCredsOutput) SetPassword(v interface{})

SetPassword sets field value

func (*GeotabCredsOutput) SetSessionId

func (o *GeotabCredsOutput) SetSessionId(v string)

SetSessionId gets a reference to the given NullableString and assigns it to the SessionId field.

func (*GeotabCredsOutput) SetSessionIdNil

func (o *GeotabCredsOutput) SetSessionIdNil()

SetSessionIdNil sets the value for SessionId to be an explicit nil

func (*GeotabCredsOutput) SetUsername

func (o *GeotabCredsOutput) SetUsername(v interface{})

SetUsername sets field value

func (GeotabCredsOutput) ToMap

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

func (*GeotabCredsOutput) UnmarshalJSON

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

func (*GeotabCredsOutput) UnsetSessionId

func (o *GeotabCredsOutput) UnsetSessionId()

UnsetSessionId ensures that no value is present for SessionId, not even an explicit nil

type InternalServerError

type InternalServerError struct {
	Message *string `json:"message,omitempty"`
}

InternalServerError struct for InternalServerError

func NewInternalServerError

func NewInternalServerError() *InternalServerError

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

func NewInternalServerErrorWithDefaults() *InternalServerError

NewInternalServerErrorWithDefaults instantiates a new InternalServerError object This 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 (*InternalServerError) GetMessage

func (o *InternalServerError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*InternalServerError) GetMessageOk

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

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

func (*InternalServerError) HasMessage

func (o *InternalServerError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (InternalServerError) MarshalJSON

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

func (*InternalServerError) SetMessage

func (o *InternalServerError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (InternalServerError) ToMap

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

type IsaacCredsInput

type IsaacCredsInput struct {
	Username string `json:"username"`
	Password string `json:"password"`
	AuthCode string `json:"auth_code"`
	Host     string `json:"host"`
}

IsaacCredsInput Isaac Connection model

func NewIsaacCredsInput

func NewIsaacCredsInput(username string, password string, authCode string, host string) *IsaacCredsInput

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

func NewIsaacCredsInputWithDefaults() *IsaacCredsInput

NewIsaacCredsInputWithDefaults instantiates a new IsaacCredsInput object This 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 (*IsaacCredsInput) GetAuthCode

func (o *IsaacCredsInput) GetAuthCode() string

GetAuthCode returns the AuthCode field value

func (*IsaacCredsInput) GetAuthCodeOk

func (o *IsaacCredsInput) GetAuthCodeOk() (*string, bool)

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

func (*IsaacCredsInput) GetHost

func (o *IsaacCredsInput) GetHost() string

GetHost returns the Host field value

func (*IsaacCredsInput) GetHostOk

func (o *IsaacCredsInput) GetHostOk() (*string, bool)

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

func (*IsaacCredsInput) GetPassword

func (o *IsaacCredsInput) GetPassword() string

GetPassword returns the Password field value

func (*IsaacCredsInput) GetPasswordOk

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

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

func (*IsaacCredsInput) GetUsername

func (o *IsaacCredsInput) GetUsername() string

GetUsername returns the Username field value

func (*IsaacCredsInput) GetUsernameOk

func (o *IsaacCredsInput) GetUsernameOk() (*string, bool)

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

func (IsaacCredsInput) MarshalJSON

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

func (*IsaacCredsInput) SetAuthCode

func (o *IsaacCredsInput) SetAuthCode(v string)

SetAuthCode sets field value

func (*IsaacCredsInput) SetHost

func (o *IsaacCredsInput) SetHost(v string)

SetHost sets field value

func (*IsaacCredsInput) SetPassword

func (o *IsaacCredsInput) SetPassword(v string)

SetPassword sets field value

func (*IsaacCredsInput) SetUsername

func (o *IsaacCredsInput) SetUsername(v string)

SetUsername sets field value

func (IsaacCredsInput) ToMap

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

func (*IsaacCredsInput) UnmarshalJSON

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

type IsaacCredsOutput

type IsaacCredsOutput struct {
	Username interface{} `json:"username"`
	Password interface{} `json:"password"`
	AuthCode interface{} `json:"auth_code"`
	Host     interface{} `json:"host"`
}

IsaacCredsOutput Isaac Connection model

func NewIsaacCredsOutput

func NewIsaacCredsOutput(username interface{}, password interface{}, authCode interface{}, host interface{}) *IsaacCredsOutput

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

func NewIsaacCredsOutputWithDefaults() *IsaacCredsOutput

NewIsaacCredsOutputWithDefaults instantiates a new IsaacCredsOutput object This 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 (*IsaacCredsOutput) GetAuthCode

func (o *IsaacCredsOutput) GetAuthCode() interface{}

GetAuthCode returns the AuthCode field value If the value is explicit nil, the zero value for interface{} will be returned

func (*IsaacCredsOutput) GetAuthCodeOk

func (o *IsaacCredsOutput) GetAuthCodeOk() (*interface{}, bool)

GetAuthCodeOk returns a tuple with the AuthCode 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 (*IsaacCredsOutput) GetHost

func (o *IsaacCredsOutput) GetHost() interface{}

GetHost returns the Host field value If the value is explicit nil, the zero value for interface{} will be returned

func (*IsaacCredsOutput) GetHostOk

func (o *IsaacCredsOutput) GetHostOk() (*interface{}, bool)

GetHostOk returns a tuple with the Host 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 (*IsaacCredsOutput) GetPassword

func (o *IsaacCredsOutput) GetPassword() interface{}

GetPassword returns the Password field value If the value is explicit nil, the zero value for interface{} will be returned

func (*IsaacCredsOutput) GetPasswordOk

func (o *IsaacCredsOutput) GetPasswordOk() (*interface{}, bool)

GetPasswordOk returns a tuple with the Password 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 (*IsaacCredsOutput) GetUsername

func (o *IsaacCredsOutput) GetUsername() interface{}

GetUsername returns the Username field value If the value is explicit nil, the zero value for interface{} will be returned

func (*IsaacCredsOutput) GetUsernameOk

func (o *IsaacCredsOutput) GetUsernameOk() (*interface{}, bool)

GetUsernameOk returns a tuple with the Username 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 (IsaacCredsOutput) MarshalJSON

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

func (*IsaacCredsOutput) SetAuthCode

func (o *IsaacCredsOutput) SetAuthCode(v interface{})

SetAuthCode sets field value

func (*IsaacCredsOutput) SetHost

func (o *IsaacCredsOutput) SetHost(v interface{})

SetHost sets field value

func (*IsaacCredsOutput) SetPassword

func (o *IsaacCredsOutput) SetPassword(v interface{})

SetPassword sets field value

func (*IsaacCredsOutput) SetUsername

func (o *IsaacCredsOutput) SetUsername(v interface{})

SetUsername sets field value

func (IsaacCredsOutput) ToMap

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

func (*IsaacCredsOutput) UnmarshalJSON

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

type MappedNullable

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

type MotiveCredsInput

type MotiveCredsInput struct {
	ClientId     string `json:"client_id"`
	ClientSecret string `json:"client_secret"`
	AuthCode     string `json:"auth_code"`
	RedirectUri  string `json:"redirect_uri"`
}

MotiveCredsInput Motive Connection model

func NewMotiveCredsInput

func NewMotiveCredsInput(clientId string, clientSecret string, authCode string, redirectUri string) *MotiveCredsInput

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

func NewMotiveCredsInputWithDefaults() *MotiveCredsInput

NewMotiveCredsInputWithDefaults instantiates a new MotiveCredsInput object This 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 (*MotiveCredsInput) GetAuthCode

func (o *MotiveCredsInput) GetAuthCode() string

GetAuthCode returns the AuthCode field value

func (*MotiveCredsInput) GetAuthCodeOk

func (o *MotiveCredsInput) GetAuthCodeOk() (*string, bool)

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

func (*MotiveCredsInput) GetClientId

func (o *MotiveCredsInput) GetClientId() string

GetClientId returns the ClientId field value

func (*MotiveCredsInput) GetClientIdOk

func (o *MotiveCredsInput) GetClientIdOk() (*string, bool)

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

func (*MotiveCredsInput) GetClientSecret

func (o *MotiveCredsInput) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*MotiveCredsInput) GetClientSecretOk

func (o *MotiveCredsInput) GetClientSecretOk() (*string, bool)

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

func (*MotiveCredsInput) GetRedirectUri

func (o *MotiveCredsInput) GetRedirectUri() string

GetRedirectUri returns the RedirectUri field value

func (*MotiveCredsInput) GetRedirectUriOk

func (o *MotiveCredsInput) GetRedirectUriOk() (*string, bool)

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

func (MotiveCredsInput) MarshalJSON

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

func (*MotiveCredsInput) SetAuthCode

func (o *MotiveCredsInput) SetAuthCode(v string)

SetAuthCode sets field value

func (*MotiveCredsInput) SetClientId

func (o *MotiveCredsInput) SetClientId(v string)

SetClientId sets field value

func (*MotiveCredsInput) SetClientSecret

func (o *MotiveCredsInput) SetClientSecret(v string)

SetClientSecret sets field value

func (*MotiveCredsInput) SetRedirectUri

func (o *MotiveCredsInput) SetRedirectUri(v string)

SetRedirectUri sets field value

func (MotiveCredsInput) ToMap

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

func (*MotiveCredsInput) UnmarshalJSON

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

type MotiveCredsOutput

type MotiveCredsOutput struct {
	ClientId     string      `json:"client_id"`
	ClientSecret interface{} `json:"client_secret"`
	AuthCode     interface{} `json:"auth_code"`
	RedirectUri  string      `json:"redirect_uri"`
}

MotiveCredsOutput Motive Connection model

func NewMotiveCredsOutput

func NewMotiveCredsOutput(clientId string, clientSecret interface{}, authCode interface{}, redirectUri string) *MotiveCredsOutput

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

func NewMotiveCredsOutputWithDefaults() *MotiveCredsOutput

NewMotiveCredsOutputWithDefaults instantiates a new MotiveCredsOutput object This 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 (*MotiveCredsOutput) GetAuthCode

func (o *MotiveCredsOutput) GetAuthCode() interface{}

GetAuthCode returns the AuthCode field value If the value is explicit nil, the zero value for interface{} will be returned

func (*MotiveCredsOutput) GetAuthCodeOk

func (o *MotiveCredsOutput) GetAuthCodeOk() (*interface{}, bool)

GetAuthCodeOk returns a tuple with the AuthCode 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 (*MotiveCredsOutput) GetClientId

func (o *MotiveCredsOutput) GetClientId() string

GetClientId returns the ClientId field value

func (*MotiveCredsOutput) GetClientIdOk

func (o *MotiveCredsOutput) GetClientIdOk() (*string, bool)

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

func (*MotiveCredsOutput) GetClientSecret

func (o *MotiveCredsOutput) GetClientSecret() interface{}

GetClientSecret returns the ClientSecret field value If the value is explicit nil, the zero value for interface{} will be returned

func (*MotiveCredsOutput) GetClientSecretOk

func (o *MotiveCredsOutput) GetClientSecretOk() (*interface{}, bool)

GetClientSecretOk returns a tuple with the ClientSecret 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 (*MotiveCredsOutput) GetRedirectUri

func (o *MotiveCredsOutput) GetRedirectUri() string

GetRedirectUri returns the RedirectUri field value

func (*MotiveCredsOutput) GetRedirectUriOk

func (o *MotiveCredsOutput) GetRedirectUriOk() (*string, bool)

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

func (MotiveCredsOutput) MarshalJSON

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

func (*MotiveCredsOutput) SetAuthCode

func (o *MotiveCredsOutput) SetAuthCode(v interface{})

SetAuthCode sets field value

func (*MotiveCredsOutput) SetClientId

func (o *MotiveCredsOutput) SetClientId(v string)

SetClientId sets field value

func (*MotiveCredsOutput) SetClientSecret

func (o *MotiveCredsOutput) SetClientSecret(v interface{})

SetClientSecret sets field value

func (*MotiveCredsOutput) SetRedirectUri

func (o *MotiveCredsOutput) SetRedirectUri(v string)

SetRedirectUri sets field value

func (MotiveCredsOutput) ToMap

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

func (*MotiveCredsOutput) UnmarshalJSON

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

type NotFound

type NotFound struct {
	Code    *int32         `json:"code,omitempty"`
	Message *string        `json:"message,omitempty"`
	Detail  NullableString `json:"detail,omitempty"`
}

NotFound struct for NotFound

func NewNotFound

func NewNotFound() *NotFound

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

func NewNotFoundWithDefaults() *NotFound

NewNotFoundWithDefaults instantiates a new NotFound object This 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 (*NotFound) GetCode

func (o *NotFound) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*NotFound) GetCodeOk

func (o *NotFound) GetCodeOk() (*int32, bool)

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

func (*NotFound) GetDetail

func (o *NotFound) GetDetail() string

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

func (*NotFound) GetDetailOk

func (o *NotFound) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail 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 (*NotFound) GetMessage

func (o *NotFound) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*NotFound) GetMessageOk

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

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

func (*NotFound) HasCode

func (o *NotFound) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*NotFound) HasDetail

func (o *NotFound) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*NotFound) HasMessage

func (o *NotFound) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (NotFound) MarshalJSON

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

func (*NotFound) SetCode

func (o *NotFound) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*NotFound) SetDetail

func (o *NotFound) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*NotFound) SetDetailNil

func (o *NotFound) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*NotFound) SetMessage

func (o *NotFound) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (NotFound) ToMap

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

func (*NotFound) UnsetDetail

func (o *NotFound) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

type NullableAccessTokenCredsInput

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

func (NullableAccessTokenCredsInput) Get

func (NullableAccessTokenCredsInput) IsSet

func (NullableAccessTokenCredsInput) MarshalJSON

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

func (*NullableAccessTokenCredsInput) Set

func (*NullableAccessTokenCredsInput) UnmarshalJSON

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

func (*NullableAccessTokenCredsInput) Unset

func (v *NullableAccessTokenCredsInput) Unset()

type NullableAccessTokenCredsOutput

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

func (NullableAccessTokenCredsOutput) Get

func (NullableAccessTokenCredsOutput) IsSet

func (NullableAccessTokenCredsOutput) MarshalJSON

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

func (*NullableAccessTokenCredsOutput) Set

func (*NullableAccessTokenCredsOutput) UnmarshalJSON

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

func (*NullableAccessTokenCredsOutput) Unset

func (v *NullableAccessTokenCredsOutput) Unset()

type NullableApiBasicCredsInput

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

func NewNullableApiBasicCredsInput

func NewNullableApiBasicCredsInput(val *ApiBasicCredsInput) *NullableApiBasicCredsInput

func (NullableApiBasicCredsInput) Get

func (NullableApiBasicCredsInput) IsSet

func (v NullableApiBasicCredsInput) IsSet() bool

func (NullableApiBasicCredsInput) MarshalJSON

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

func (*NullableApiBasicCredsInput) Set

func (*NullableApiBasicCredsInput) UnmarshalJSON

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

func (*NullableApiBasicCredsInput) Unset

func (v *NullableApiBasicCredsInput) Unset()

type NullableApiBasicCredsOutput

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

func NewNullableApiBasicCredsOutput

func NewNullableApiBasicCredsOutput(val *ApiBasicCredsOutput) *NullableApiBasicCredsOutput

func (NullableApiBasicCredsOutput) Get

func (NullableApiBasicCredsOutput) IsSet

func (NullableApiBasicCredsOutput) MarshalJSON

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

func (*NullableApiBasicCredsOutput) Set

func (*NullableApiBasicCredsOutput) UnmarshalJSON

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

func (*NullableApiBasicCredsOutput) Unset

func (v *NullableApiBasicCredsOutput) Unset()

type NullableApiKeyCredsInput

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

func NewNullableApiKeyCredsInput

func NewNullableApiKeyCredsInput(val *ApiKeyCredsInput) *NullableApiKeyCredsInput

func (NullableApiKeyCredsInput) Get

func (NullableApiKeyCredsInput) IsSet

func (v NullableApiKeyCredsInput) IsSet() bool

func (NullableApiKeyCredsInput) MarshalJSON

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

func (*NullableApiKeyCredsInput) Set

func (*NullableApiKeyCredsInput) UnmarshalJSON

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

func (*NullableApiKeyCredsInput) Unset

func (v *NullableApiKeyCredsInput) Unset()

type NullableApiKeyCredsOutput

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

func NewNullableApiKeyCredsOutput

func NewNullableApiKeyCredsOutput(val *ApiKeyCredsOutput) *NullableApiKeyCredsOutput

func (NullableApiKeyCredsOutput) Get

func (NullableApiKeyCredsOutput) IsSet

func (v NullableApiKeyCredsOutput) IsSet() bool

func (NullableApiKeyCredsOutput) MarshalJSON

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

func (*NullableApiKeyCredsOutput) Set

func (*NullableApiKeyCredsOutput) UnmarshalJSON

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

func (*NullableApiKeyCredsOutput) Unset

func (v *NullableApiKeyCredsOutput) Unset()

type NullableAzugaSLCInput

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

func NewNullableAzugaSLCInput

func NewNullableAzugaSLCInput(val *AzugaSLCInput) *NullableAzugaSLCInput

func (NullableAzugaSLCInput) Get

func (NullableAzugaSLCInput) IsSet

func (v NullableAzugaSLCInput) IsSet() bool

func (NullableAzugaSLCInput) MarshalJSON

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

func (*NullableAzugaSLCInput) Set

func (v *NullableAzugaSLCInput) Set(val *AzugaSLCInput)

func (*NullableAzugaSLCInput) UnmarshalJSON

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

func (*NullableAzugaSLCInput) Unset

func (v *NullableAzugaSLCInput) Unset()

type NullableAzugaSLCOutput

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

func NewNullableAzugaSLCOutput

func NewNullableAzugaSLCOutput(val *AzugaSLCOutput) *NullableAzugaSLCOutput

func (NullableAzugaSLCOutput) Get

func (NullableAzugaSLCOutput) IsSet

func (v NullableAzugaSLCOutput) IsSet() bool

func (NullableAzugaSLCOutput) MarshalJSON

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

func (*NullableAzugaSLCOutput) Set

func (*NullableAzugaSLCOutput) UnmarshalJSON

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

func (*NullableAzugaSLCOutput) Unset

func (v *NullableAzugaSLCOutput) Unset()

type NullableBadRequest

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

func NewNullableBadRequest

func NewNullableBadRequest(val *BadRequest) *NullableBadRequest

func (NullableBadRequest) Get

func (v NullableBadRequest) Get() *BadRequest

func (NullableBadRequest) IsSet

func (v NullableBadRequest) IsSet() bool

func (NullableBadRequest) MarshalJSON

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

func (*NullableBadRequest) Set

func (v *NullableBadRequest) Set(val *BadRequest)

func (*NullableBadRequest) UnmarshalJSON

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

func (*NullableBadRequest) Unset

func (v *NullableBadRequest) 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 NullableBouncieCredsInput

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

func NewNullableBouncieCredsInput

func NewNullableBouncieCredsInput(val *BouncieCredsInput) *NullableBouncieCredsInput

func (NullableBouncieCredsInput) Get

func (NullableBouncieCredsInput) IsSet

func (v NullableBouncieCredsInput) IsSet() bool

func (NullableBouncieCredsInput) MarshalJSON

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

func (*NullableBouncieCredsInput) Set

func (*NullableBouncieCredsInput) UnmarshalJSON

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

func (*NullableBouncieCredsInput) Unset

func (v *NullableBouncieCredsInput) Unset()

type NullableBouncieCredsOutput

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

func NewNullableBouncieCredsOutput

func NewNullableBouncieCredsOutput(val *BouncieCredsOutput) *NullableBouncieCredsOutput

func (NullableBouncieCredsOutput) Get

func (NullableBouncieCredsOutput) IsSet

func (v NullableBouncieCredsOutput) IsSet() bool

func (NullableBouncieCredsOutput) MarshalJSON

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

func (*NullableBouncieCredsOutput) Set

func (*NullableBouncieCredsOutput) UnmarshalJSON

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

func (*NullableBouncieCredsOutput) Unset

func (v *NullableBouncieCredsOutput) Unset()

type NullableClientIdSecretCredsInput

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

func (NullableClientIdSecretCredsInput) Get

func (NullableClientIdSecretCredsInput) IsSet

func (NullableClientIdSecretCredsInput) MarshalJSON

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

func (*NullableClientIdSecretCredsInput) Set

func (*NullableClientIdSecretCredsInput) UnmarshalJSON

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

func (*NullableClientIdSecretCredsInput) Unset

type NullableClientIdSecretCredsOutput

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

func (NullableClientIdSecretCredsOutput) Get

func (NullableClientIdSecretCredsOutput) IsSet

func (NullableClientIdSecretCredsOutput) MarshalJSON

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

func (*NullableClientIdSecretCredsOutput) Set

func (*NullableClientIdSecretCredsOutput) UnmarshalJSON

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

func (*NullableClientIdSecretCredsOutput) Unset

type NullableCompanyAccessCredsInput

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

func (NullableCompanyAccessCredsInput) Get

func (NullableCompanyAccessCredsInput) IsSet

func (NullableCompanyAccessCredsInput) MarshalJSON

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

func (*NullableCompanyAccessCredsInput) Set

func (*NullableCompanyAccessCredsInput) UnmarshalJSON

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

func (*NullableCompanyAccessCredsInput) Unset

type NullableCompanyAccessCredsOutput

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

func (NullableCompanyAccessCredsOutput) Get

func (NullableCompanyAccessCredsOutput) IsSet

func (NullableCompanyAccessCredsOutput) MarshalJSON

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

func (*NullableCompanyAccessCredsOutput) Set

func (*NullableCompanyAccessCredsOutput) UnmarshalJSON

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

func (*NullableCompanyAccessCredsOutput) Unset

type NullableCompanyIdCredsInput

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

func NewNullableCompanyIdCredsInput

func NewNullableCompanyIdCredsInput(val *CompanyIdCredsInput) *NullableCompanyIdCredsInput

func (NullableCompanyIdCredsInput) Get

func (NullableCompanyIdCredsInput) IsSet

func (NullableCompanyIdCredsInput) MarshalJSON

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

func (*NullableCompanyIdCredsInput) Set

func (*NullableCompanyIdCredsInput) UnmarshalJSON

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

func (*NullableCompanyIdCredsInput) Unset

func (v *NullableCompanyIdCredsInput) Unset()

type NullableCompanyIdCredsOutput

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

func NewNullableCompanyIdCredsOutput

func NewNullableCompanyIdCredsOutput(val *CompanyIdCredsOutput) *NullableCompanyIdCredsOutput

func (NullableCompanyIdCredsOutput) Get

func (NullableCompanyIdCredsOutput) IsSet

func (NullableCompanyIdCredsOutput) MarshalJSON

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

func (*NullableCompanyIdCredsOutput) Set

func (*NullableCompanyIdCredsOutput) UnmarshalJSON

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

func (*NullableCompanyIdCredsOutput) Unset

func (v *NullableCompanyIdCredsOutput) Unset()

type NullableConflict

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

func NewNullableConflict

func NewNullableConflict(val *Conflict) *NullableConflict

func (NullableConflict) Get

func (v NullableConflict) Get() *Conflict

func (NullableConflict) IsSet

func (v NullableConflict) IsSet() bool

func (NullableConflict) MarshalJSON

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

func (*NullableConflict) Set

func (v *NullableConflict) Set(val *Conflict)

func (*NullableConflict) UnmarshalJSON

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

func (*NullableConflict) Unset

func (v *NullableConflict) Unset()

type NullableConnectionCreate

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

func NewNullableConnectionCreate

func NewNullableConnectionCreate(val *ConnectionCreate) *NullableConnectionCreate

func (NullableConnectionCreate) Get

func (NullableConnectionCreate) IsSet

func (v NullableConnectionCreate) IsSet() bool

func (NullableConnectionCreate) MarshalJSON

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

func (*NullableConnectionCreate) Set

func (*NullableConnectionCreate) UnmarshalJSON

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

func (*NullableConnectionCreate) Unset

func (v *NullableConnectionCreate) Unset()

type NullableConnectionRead

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

func NewNullableConnectionRead

func NewNullableConnectionRead(val *ConnectionRead) *NullableConnectionRead

func (NullableConnectionRead) Get

func (NullableConnectionRead) IsSet

func (v NullableConnectionRead) IsSet() bool

func (NullableConnectionRead) MarshalJSON

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

func (*NullableConnectionRead) Set

func (*NullableConnectionRead) UnmarshalJSON

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

func (*NullableConnectionRead) Unset

func (v *NullableConnectionRead) Unset()

type NullableConnectionUpdate

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

func NewNullableConnectionUpdate

func NewNullableConnectionUpdate(val *ConnectionUpdate) *NullableConnectionUpdate

func (NullableConnectionUpdate) Get

func (NullableConnectionUpdate) IsSet

func (v NullableConnectionUpdate) IsSet() bool

func (NullableConnectionUpdate) MarshalJSON

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

func (*NullableConnectionUpdate) Set

func (*NullableConnectionUpdate) UnmarshalJSON

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

func (*NullableConnectionUpdate) Unset

func (v *NullableConnectionUpdate) Unset()

type NullableCredentials

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

func NewNullableCredentials

func NewNullableCredentials(val *Credentials) *NullableCredentials

func (NullableCredentials) Get

func (NullableCredentials) IsSet

func (v NullableCredentials) IsSet() bool

func (NullableCredentials) MarshalJSON

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

func (*NullableCredentials) Set

func (v *NullableCredentials) Set(val *Credentials)

func (*NullableCredentials) UnmarshalJSON

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

func (*NullableCredentials) Unset

func (v *NullableCredentials) Unset()

type NullableCredentials1

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

func NewNullableCredentials1

func NewNullableCredentials1(val *Credentials1) *NullableCredentials1

func (NullableCredentials1) Get

func (NullableCredentials1) IsSet

func (v NullableCredentials1) IsSet() bool

func (NullableCredentials1) MarshalJSON

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

func (*NullableCredentials1) Set

func (v *NullableCredentials1) Set(val *Credentials1)

func (*NullableCredentials1) UnmarshalJSON

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

func (*NullableCredentials1) Unset

func (v *NullableCredentials1) Unset()

type NullableCredentials2

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

func NewNullableCredentials2

func NewNullableCredentials2(val *Credentials2) *NullableCredentials2

func (NullableCredentials2) Get

func (NullableCredentials2) IsSet

func (v NullableCredentials2) IsSet() bool

func (NullableCredentials2) MarshalJSON

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

func (*NullableCredentials2) Set

func (v *NullableCredentials2) Set(val *Credentials2)

func (*NullableCredentials2) UnmarshalJSON

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

func (*NullableCredentials2) Unset

func (v *NullableCredentials2) Unset()

type NullableCursorPageTypeVarCustomizedConnectionRead

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

func (NullableCursorPageTypeVarCustomizedConnectionRead) Get

func (NullableCursorPageTypeVarCustomizedConnectionRead) IsSet

func (NullableCursorPageTypeVarCustomizedConnectionRead) MarshalJSON

func (*NullableCursorPageTypeVarCustomizedConnectionRead) Set

func (*NullableCursorPageTypeVarCustomizedConnectionRead) UnmarshalJSON

func (*NullableCursorPageTypeVarCustomizedConnectionRead) Unset

type NullableCursorPageTypeVarCustomizedExecutionRead

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

func (NullableCursorPageTypeVarCustomizedExecutionRead) Get

func (NullableCursorPageTypeVarCustomizedExecutionRead) IsSet

func (NullableCursorPageTypeVarCustomizedExecutionRead) MarshalJSON

func (*NullableCursorPageTypeVarCustomizedExecutionRead) Set

func (*NullableCursorPageTypeVarCustomizedExecutionRead) UnmarshalJSON

func (*NullableCursorPageTypeVarCustomizedExecutionRead) Unset

type NullableCursorPageTypeVarCustomizedScheduleRead

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

func (NullableCursorPageTypeVarCustomizedScheduleRead) Get

func (NullableCursorPageTypeVarCustomizedScheduleRead) IsSet

func (NullableCursorPageTypeVarCustomizedScheduleRead) MarshalJSON

func (*NullableCursorPageTypeVarCustomizedScheduleRead) Set

func (*NullableCursorPageTypeVarCustomizedScheduleRead) UnmarshalJSON

func (*NullableCursorPageTypeVarCustomizedScheduleRead) Unset

type NullableDatabaseCredsInput

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

func NewNullableDatabaseCredsInput

func NewNullableDatabaseCredsInput(val *DatabaseCredsInput) *NullableDatabaseCredsInput

func (NullableDatabaseCredsInput) Get

func (NullableDatabaseCredsInput) IsSet

func (v NullableDatabaseCredsInput) IsSet() bool

func (NullableDatabaseCredsInput) MarshalJSON

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

func (*NullableDatabaseCredsInput) Set

func (*NullableDatabaseCredsInput) UnmarshalJSON

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

func (*NullableDatabaseCredsInput) Unset

func (v *NullableDatabaseCredsInput) Unset()

type NullableDatabaseCredsOutput

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

func NewNullableDatabaseCredsOutput

func NewNullableDatabaseCredsOutput(val *DatabaseCredsOutput) *NullableDatabaseCredsOutput

func (NullableDatabaseCredsOutput) Get

func (NullableDatabaseCredsOutput) IsSet

func (NullableDatabaseCredsOutput) MarshalJSON

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

func (*NullableDatabaseCredsOutput) Set

func (*NullableDatabaseCredsOutput) UnmarshalJSON

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

func (*NullableDatabaseCredsOutput) Unset

func (v *NullableDatabaseCredsOutput) Unset()

type NullableDatabaseDriverEnum

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

func NewNullableDatabaseDriverEnum

func NewNullableDatabaseDriverEnum(val *DatabaseDriverEnum) *NullableDatabaseDriverEnum

func (NullableDatabaseDriverEnum) Get

func (NullableDatabaseDriverEnum) IsSet

func (v NullableDatabaseDriverEnum) IsSet() bool

func (NullableDatabaseDriverEnum) MarshalJSON

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

func (*NullableDatabaseDriverEnum) Set

func (*NullableDatabaseDriverEnum) UnmarshalJSON

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

func (*NullableDatabaseDriverEnum) Unset

func (v *NullableDatabaseDriverEnum) Unset()

type NullableExecutionRead

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

func NewNullableExecutionRead

func NewNullableExecutionRead(val *ExecutionRead) *NullableExecutionRead

func (NullableExecutionRead) Get

func (NullableExecutionRead) IsSet

func (v NullableExecutionRead) IsSet() bool

func (NullableExecutionRead) MarshalJSON

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

func (*NullableExecutionRead) Set

func (v *NullableExecutionRead) Set(val *ExecutionRead)

func (*NullableExecutionRead) UnmarshalJSON

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

func (*NullableExecutionRead) Unset

func (v *NullableExecutionRead) Unset()

type NullableEzlogzCreds

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

func NewNullableEzlogzCreds

func NewNullableEzlogzCreds(val *EzlogzCreds) *NullableEzlogzCreds

func (NullableEzlogzCreds) Get

func (NullableEzlogzCreds) IsSet

func (v NullableEzlogzCreds) IsSet() bool

func (NullableEzlogzCreds) MarshalJSON

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

func (*NullableEzlogzCreds) Set

func (v *NullableEzlogzCreds) Set(val *EzlogzCreds)

func (*NullableEzlogzCreds) UnmarshalJSON

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

func (*NullableEzlogzCreds) Unset

func (v *NullableEzlogzCreds) Unset()

type NullableFactorEldCredsInput

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

func NewNullableFactorEldCredsInput

func NewNullableFactorEldCredsInput(val *FactorEldCredsInput) *NullableFactorEldCredsInput

func (NullableFactorEldCredsInput) Get

func (NullableFactorEldCredsInput) IsSet

func (NullableFactorEldCredsInput) MarshalJSON

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

func (*NullableFactorEldCredsInput) Set

func (*NullableFactorEldCredsInput) UnmarshalJSON

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

func (*NullableFactorEldCredsInput) Unset

func (v *NullableFactorEldCredsInput) Unset()

type NullableFactorEldCredsOutput

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

func NewNullableFactorEldCredsOutput

func NewNullableFactorEldCredsOutput(val *FactorEldCredsOutput) *NullableFactorEldCredsOutput

func (NullableFactorEldCredsOutput) Get

func (NullableFactorEldCredsOutput) IsSet

func (NullableFactorEldCredsOutput) MarshalJSON

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

func (*NullableFactorEldCredsOutput) Set

func (*NullableFactorEldCredsOutput) UnmarshalJSON

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

func (*NullableFactorEldCredsOutput) Unset

func (v *NullableFactorEldCredsOutput) Unset()

type NullableFleetupCredsInput

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

func NewNullableFleetupCredsInput

func NewNullableFleetupCredsInput(val *FleetupCredsInput) *NullableFleetupCredsInput

func (NullableFleetupCredsInput) Get

func (NullableFleetupCredsInput) IsSet

func (v NullableFleetupCredsInput) IsSet() bool

func (NullableFleetupCredsInput) MarshalJSON

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

func (*NullableFleetupCredsInput) Set

func (*NullableFleetupCredsInput) UnmarshalJSON

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

func (*NullableFleetupCredsInput) Unset

func (v *NullableFleetupCredsInput) Unset()

type NullableFleetupCredsOutput

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

func NewNullableFleetupCredsOutput

func NewNullableFleetupCredsOutput(val *FleetupCredsOutput) *NullableFleetupCredsOutput

func (NullableFleetupCredsOutput) Get

func (NullableFleetupCredsOutput) IsSet

func (v NullableFleetupCredsOutput) IsSet() bool

func (NullableFleetupCredsOutput) MarshalJSON

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

func (*NullableFleetupCredsOutput) Set

func (*NullableFleetupCredsOutput) UnmarshalJSON

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

func (*NullableFleetupCredsOutput) Unset

func (v *NullableFleetupCredsOutput) Unset()

type NullableFleetupSLCInput

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

func NewNullableFleetupSLCInput

func NewNullableFleetupSLCInput(val *FleetupSLCInput) *NullableFleetupSLCInput

func (NullableFleetupSLCInput) Get

func (NullableFleetupSLCInput) IsSet

func (v NullableFleetupSLCInput) IsSet() bool

func (NullableFleetupSLCInput) MarshalJSON

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

func (*NullableFleetupSLCInput) Set

func (*NullableFleetupSLCInput) UnmarshalJSON

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

func (*NullableFleetupSLCInput) Unset

func (v *NullableFleetupSLCInput) Unset()

type NullableFleetupSLCOutput

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

func NewNullableFleetupSLCOutput

func NewNullableFleetupSLCOutput(val *FleetupSLCOutput) *NullableFleetupSLCOutput

func (NullableFleetupSLCOutput) Get

func (NullableFleetupSLCOutput) IsSet

func (v NullableFleetupSLCOutput) IsSet() bool

func (NullableFleetupSLCOutput) MarshalJSON

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

func (*NullableFleetupSLCOutput) Set

func (*NullableFleetupSLCOutput) UnmarshalJSON

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

func (*NullableFleetupSLCOutput) Unset

func (v *NullableFleetupSLCOutput) 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 NullableForbidden

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

func NewNullableForbidden

func NewNullableForbidden(val *Forbidden) *NullableForbidden

func (NullableForbidden) Get

func (v NullableForbidden) Get() *Forbidden

func (NullableForbidden) IsSet

func (v NullableForbidden) IsSet() bool

func (NullableForbidden) MarshalJSON

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

func (*NullableForbidden) Set

func (v *NullableForbidden) Set(val *Forbidden)

func (*NullableForbidden) UnmarshalJSON

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

func (*NullableForbidden) Unset

func (v *NullableForbidden) Unset()

type NullableGatewayTimeout

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

func NewNullableGatewayTimeout

func NewNullableGatewayTimeout(val *GatewayTimeout) *NullableGatewayTimeout

func (NullableGatewayTimeout) Get

func (NullableGatewayTimeout) IsSet

func (v NullableGatewayTimeout) IsSet() bool

func (NullableGatewayTimeout) MarshalJSON

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

func (*NullableGatewayTimeout) Set

func (*NullableGatewayTimeout) UnmarshalJSON

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

func (*NullableGatewayTimeout) Unset

func (v *NullableGatewayTimeout) Unset()

type NullableGeotabCredsInput

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

func NewNullableGeotabCredsInput

func NewNullableGeotabCredsInput(val *GeotabCredsInput) *NullableGeotabCredsInput

func (NullableGeotabCredsInput) Get

func (NullableGeotabCredsInput) IsSet

func (v NullableGeotabCredsInput) IsSet() bool

func (NullableGeotabCredsInput) MarshalJSON

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

func (*NullableGeotabCredsInput) Set

func (*NullableGeotabCredsInput) UnmarshalJSON

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

func (*NullableGeotabCredsInput) Unset

func (v *NullableGeotabCredsInput) Unset()

type NullableGeotabCredsOutput

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

func NewNullableGeotabCredsOutput

func NewNullableGeotabCredsOutput(val *GeotabCredsOutput) *NullableGeotabCredsOutput

func (NullableGeotabCredsOutput) Get

func (NullableGeotabCredsOutput) IsSet

func (v NullableGeotabCredsOutput) IsSet() bool

func (NullableGeotabCredsOutput) MarshalJSON

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

func (*NullableGeotabCredsOutput) Set

func (*NullableGeotabCredsOutput) UnmarshalJSON

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

func (*NullableGeotabCredsOutput) Unset

func (v *NullableGeotabCredsOutput) 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 NullableInternalServerError

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

func NewNullableInternalServerError

func NewNullableInternalServerError(val *InternalServerError) *NullableInternalServerError

func (NullableInternalServerError) Get

func (NullableInternalServerError) IsSet

func (NullableInternalServerError) MarshalJSON

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

func (*NullableInternalServerError) Set

func (*NullableInternalServerError) UnmarshalJSON

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

func (*NullableInternalServerError) Unset

func (v *NullableInternalServerError) Unset()

type NullableIsaacCredsInput

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

func NewNullableIsaacCredsInput

func NewNullableIsaacCredsInput(val *IsaacCredsInput) *NullableIsaacCredsInput

func (NullableIsaacCredsInput) Get

func (NullableIsaacCredsInput) IsSet

func (v NullableIsaacCredsInput) IsSet() bool

func (NullableIsaacCredsInput) MarshalJSON

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

func (*NullableIsaacCredsInput) Set

func (*NullableIsaacCredsInput) UnmarshalJSON

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

func (*NullableIsaacCredsInput) Unset

func (v *NullableIsaacCredsInput) Unset()

type NullableIsaacCredsOutput

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

func NewNullableIsaacCredsOutput

func NewNullableIsaacCredsOutput(val *IsaacCredsOutput) *NullableIsaacCredsOutput

func (NullableIsaacCredsOutput) Get

func (NullableIsaacCredsOutput) IsSet

func (v NullableIsaacCredsOutput) IsSet() bool

func (NullableIsaacCredsOutput) MarshalJSON

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

func (*NullableIsaacCredsOutput) Set

func (*NullableIsaacCredsOutput) UnmarshalJSON

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

func (*NullableIsaacCredsOutput) Unset

func (v *NullableIsaacCredsOutput) Unset()

type NullableMotiveCredsInput

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

func NewNullableMotiveCredsInput

func NewNullableMotiveCredsInput(val *MotiveCredsInput) *NullableMotiveCredsInput

func (NullableMotiveCredsInput) Get

func (NullableMotiveCredsInput) IsSet

func (v NullableMotiveCredsInput) IsSet() bool

func (NullableMotiveCredsInput) MarshalJSON

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

func (*NullableMotiveCredsInput) Set

func (*NullableMotiveCredsInput) UnmarshalJSON

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

func (*NullableMotiveCredsInput) Unset

func (v *NullableMotiveCredsInput) Unset()

type NullableMotiveCredsOutput

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

func NewNullableMotiveCredsOutput

func NewNullableMotiveCredsOutput(val *MotiveCredsOutput) *NullableMotiveCredsOutput

func (NullableMotiveCredsOutput) Get

func (NullableMotiveCredsOutput) IsSet

func (v NullableMotiveCredsOutput) IsSet() bool

func (NullableMotiveCredsOutput) MarshalJSON

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

func (*NullableMotiveCredsOutput) Set

func (*NullableMotiveCredsOutput) UnmarshalJSON

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

func (*NullableMotiveCredsOutput) Unset

func (v *NullableMotiveCredsOutput) Unset()

type NullableNotFound

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

func NewNullableNotFound

func NewNullableNotFound(val *NotFound) *NullableNotFound

func (NullableNotFound) Get

func (v NullableNotFound) Get() *NotFound

func (NullableNotFound) IsSet

func (v NullableNotFound) IsSet() bool

func (NullableNotFound) MarshalJSON

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

func (*NullableNotFound) Set

func (v *NullableNotFound) Set(val *NotFound)

func (*NullableNotFound) UnmarshalJSON

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

func (*NullableNotFound) Unset

func (v *NullableNotFound) Unset()

type NullableOAuth1CredsInput

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

func NewNullableOAuth1CredsInput

func NewNullableOAuth1CredsInput(val *OAuth1CredsInput) *NullableOAuth1CredsInput

func (NullableOAuth1CredsInput) Get

func (NullableOAuth1CredsInput) IsSet

func (v NullableOAuth1CredsInput) IsSet() bool

func (NullableOAuth1CredsInput) MarshalJSON

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

func (*NullableOAuth1CredsInput) Set

func (*NullableOAuth1CredsInput) UnmarshalJSON

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

func (*NullableOAuth1CredsInput) Unset

func (v *NullableOAuth1CredsInput) Unset()

type NullableOAuth1CredsOutput

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

func NewNullableOAuth1CredsOutput

func NewNullableOAuth1CredsOutput(val *OAuth1CredsOutput) *NullableOAuth1CredsOutput

func (NullableOAuth1CredsOutput) Get

func (NullableOAuth1CredsOutput) IsSet

func (v NullableOAuth1CredsOutput) IsSet() bool

func (NullableOAuth1CredsOutput) MarshalJSON

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

func (*NullableOAuth1CredsOutput) Set

func (*NullableOAuth1CredsOutput) UnmarshalJSON

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

func (*NullableOAuth1CredsOutput) Unset

func (v *NullableOAuth1CredsOutput) Unset()

type NullableOAuth2CredsInput

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

func NewNullableOAuth2CredsInput

func NewNullableOAuth2CredsInput(val *OAuth2CredsInput) *NullableOAuth2CredsInput

func (NullableOAuth2CredsInput) Get

func (NullableOAuth2CredsInput) IsSet

func (v NullableOAuth2CredsInput) IsSet() bool

func (NullableOAuth2CredsInput) MarshalJSON

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

func (*NullableOAuth2CredsInput) Set

func (*NullableOAuth2CredsInput) UnmarshalJSON

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

func (*NullableOAuth2CredsInput) Unset

func (v *NullableOAuth2CredsInput) Unset()

type NullableOAuth2CredsOutput

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

func NewNullableOAuth2CredsOutput

func NewNullableOAuth2CredsOutput(val *OAuth2CredsOutput) *NullableOAuth2CredsOutput

func (NullableOAuth2CredsOutput) Get

func (NullableOAuth2CredsOutput) IsSet

func (v NullableOAuth2CredsOutput) IsSet() bool

func (NullableOAuth2CredsOutput) MarshalJSON

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

func (*NullableOAuth2CredsOutput) Set

func (*NullableOAuth2CredsOutput) UnmarshalJSON

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

func (*NullableOAuth2CredsOutput) Unset

func (v *NullableOAuth2CredsOutput) Unset()

type NullableOAuth2InitiateCredsInput

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

func (NullableOAuth2InitiateCredsInput) Get

func (NullableOAuth2InitiateCredsInput) IsSet

func (NullableOAuth2InitiateCredsInput) MarshalJSON

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

func (*NullableOAuth2InitiateCredsInput) Set

func (*NullableOAuth2InitiateCredsInput) UnmarshalJSON

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

func (*NullableOAuth2InitiateCredsInput) Unset

type NullableOAuth2InitiateCredsOutput

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

func (NullableOAuth2InitiateCredsOutput) Get

func (NullableOAuth2InitiateCredsOutput) IsSet

func (NullableOAuth2InitiateCredsOutput) MarshalJSON

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

func (*NullableOAuth2InitiateCredsOutput) Set

func (*NullableOAuth2InitiateCredsOutput) UnmarshalJSON

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

func (*NullableOAuth2InitiateCredsOutput) Unset

type NullableOAuth2PrivateKeyCredsInput

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

func (NullableOAuth2PrivateKeyCredsInput) Get

func (NullableOAuth2PrivateKeyCredsInput) IsSet

func (NullableOAuth2PrivateKeyCredsInput) MarshalJSON

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

func (*NullableOAuth2PrivateKeyCredsInput) Set

func (*NullableOAuth2PrivateKeyCredsInput) UnmarshalJSON

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

func (*NullableOAuth2PrivateKeyCredsInput) Unset

type NullableOAuth2PrivateKeyCredsOutput

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

func (NullableOAuth2PrivateKeyCredsOutput) Get

func (NullableOAuth2PrivateKeyCredsOutput) IsSet

func (NullableOAuth2PrivateKeyCredsOutput) MarshalJSON

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

func (*NullableOAuth2PrivateKeyCredsOutput) Set

func (*NullableOAuth2PrivateKeyCredsOutput) UnmarshalJSON

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

func (*NullableOAuth2PrivateKeyCredsOutput) Unset

type NullableOntimeEldCredsInput

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

func NewNullableOntimeEldCredsInput

func NewNullableOntimeEldCredsInput(val *OntimeEldCredsInput) *NullableOntimeEldCredsInput

func (NullableOntimeEldCredsInput) Get

func (NullableOntimeEldCredsInput) IsSet

func (NullableOntimeEldCredsInput) MarshalJSON

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

func (*NullableOntimeEldCredsInput) Set

func (*NullableOntimeEldCredsInput) UnmarshalJSON

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

func (*NullableOntimeEldCredsInput) Unset

func (v *NullableOntimeEldCredsInput) Unset()

type NullableOntimeEldCredsOutput

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

func NewNullableOntimeEldCredsOutput

func NewNullableOntimeEldCredsOutput(val *OntimeEldCredsOutput) *NullableOntimeEldCredsOutput

func (NullableOntimeEldCredsOutput) Get

func (NullableOntimeEldCredsOutput) IsSet

func (NullableOntimeEldCredsOutput) MarshalJSON

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

func (*NullableOntimeEldCredsOutput) Set

func (*NullableOntimeEldCredsOutput) UnmarshalJSON

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

func (*NullableOntimeEldCredsOutput) Unset

func (v *NullableOntimeEldCredsOutput) Unset()

type NullablePrivateKeyCredsInput

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

func NewNullablePrivateKeyCredsInput

func NewNullablePrivateKeyCredsInput(val *PrivateKeyCredsInput) *NullablePrivateKeyCredsInput

func (NullablePrivateKeyCredsInput) Get

func (NullablePrivateKeyCredsInput) IsSet

func (NullablePrivateKeyCredsInput) MarshalJSON

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

func (*NullablePrivateKeyCredsInput) Set

func (*NullablePrivateKeyCredsInput) UnmarshalJSON

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

func (*NullablePrivateKeyCredsInput) Unset

func (v *NullablePrivateKeyCredsInput) Unset()

type NullablePrivateKeyCredsOutput

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

func (NullablePrivateKeyCredsOutput) Get

func (NullablePrivateKeyCredsOutput) IsSet

func (NullablePrivateKeyCredsOutput) MarshalJSON

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

func (*NullablePrivateKeyCredsOutput) Set

func (*NullablePrivateKeyCredsOutput) UnmarshalJSON

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

func (*NullablePrivateKeyCredsOutput) Unset

func (v *NullablePrivateKeyCredsOutput) Unset()

type NullableResourceEnum

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

func NewNullableResourceEnum

func NewNullableResourceEnum(val *ResourceEnum) *NullableResourceEnum

func (NullableResourceEnum) Get

func (NullableResourceEnum) IsSet

func (v NullableResourceEnum) IsSet() bool

func (NullableResourceEnum) MarshalJSON

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

func (*NullableResourceEnum) Set

func (v *NullableResourceEnum) Set(val *ResourceEnum)

func (*NullableResourceEnum) UnmarshalJSON

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

func (*NullableResourceEnum) Unset

func (v *NullableResourceEnum) Unset()

type NullableRetryAfterDetail

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

func NewNullableRetryAfterDetail

func NewNullableRetryAfterDetail(val *RetryAfterDetail) *NullableRetryAfterDetail

func (NullableRetryAfterDetail) Get

func (NullableRetryAfterDetail) IsSet

func (v NullableRetryAfterDetail) IsSet() bool

func (NullableRetryAfterDetail) MarshalJSON

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

func (*NullableRetryAfterDetail) Set

func (*NullableRetryAfterDetail) UnmarshalJSON

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

func (*NullableRetryAfterDetail) Unset

func (v *NullableRetryAfterDetail) Unset()

type NullableS3CredsInput

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

func NewNullableS3CredsInput

func NewNullableS3CredsInput(val *S3CredsInput) *NullableS3CredsInput

func (NullableS3CredsInput) Get

func (NullableS3CredsInput) IsSet

func (v NullableS3CredsInput) IsSet() bool

func (NullableS3CredsInput) MarshalJSON

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

func (*NullableS3CredsInput) Set

func (v *NullableS3CredsInput) Set(val *S3CredsInput)

func (*NullableS3CredsInput) UnmarshalJSON

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

func (*NullableS3CredsInput) Unset

func (v *NullableS3CredsInput) Unset()

type NullableS3CredsOutput

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

func NewNullableS3CredsOutput

func NewNullableS3CredsOutput(val *S3CredsOutput) *NullableS3CredsOutput

func (NullableS3CredsOutput) Get

func (NullableS3CredsOutput) IsSet

func (v NullableS3CredsOutput) IsSet() bool

func (NullableS3CredsOutput) MarshalJSON

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

func (*NullableS3CredsOutput) Set

func (v *NullableS3CredsOutput) Set(val *S3CredsOutput)

func (*NullableS3CredsOutput) UnmarshalJSON

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

func (*NullableS3CredsOutput) Unset

func (v *NullableS3CredsOutput) Unset()

type NullableSamsaraCredsInput

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

func NewNullableSamsaraCredsInput

func NewNullableSamsaraCredsInput(val *SamsaraCredsInput) *NullableSamsaraCredsInput

func (NullableSamsaraCredsInput) Get

func (NullableSamsaraCredsInput) IsSet

func (v NullableSamsaraCredsInput) IsSet() bool

func (NullableSamsaraCredsInput) MarshalJSON

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

func (*NullableSamsaraCredsInput) Set

func (*NullableSamsaraCredsInput) UnmarshalJSON

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

func (*NullableSamsaraCredsInput) Unset

func (v *NullableSamsaraCredsInput) Unset()

type NullableSamsaraCredsOutput

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

func NewNullableSamsaraCredsOutput

func NewNullableSamsaraCredsOutput(val *SamsaraCredsOutput) *NullableSamsaraCredsOutput

func (NullableSamsaraCredsOutput) Get

func (NullableSamsaraCredsOutput) IsSet

func (v NullableSamsaraCredsOutput) IsSet() bool

func (NullableSamsaraCredsOutput) MarshalJSON

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

func (*NullableSamsaraCredsOutput) Set

func (*NullableSamsaraCredsOutput) UnmarshalJSON

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

func (*NullableSamsaraCredsOutput) Unset

func (v *NullableSamsaraCredsOutput) Unset()

type NullableScheduleCreate

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

func NewNullableScheduleCreate

func NewNullableScheduleCreate(val *ScheduleCreate) *NullableScheduleCreate

func (NullableScheduleCreate) Get

func (NullableScheduleCreate) IsSet

func (v NullableScheduleCreate) IsSet() bool

func (NullableScheduleCreate) MarshalJSON

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

func (*NullableScheduleCreate) Set

func (*NullableScheduleCreate) UnmarshalJSON

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

func (*NullableScheduleCreate) Unset

func (v *NullableScheduleCreate) Unset()

type NullableScheduleRead

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

func NewNullableScheduleRead

func NewNullableScheduleRead(val *ScheduleRead) *NullableScheduleRead

func (NullableScheduleRead) Get

func (NullableScheduleRead) IsSet

func (v NullableScheduleRead) IsSet() bool

func (NullableScheduleRead) MarshalJSON

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

func (*NullableScheduleRead) Set

func (v *NullableScheduleRead) Set(val *ScheduleRead)

func (*NullableScheduleRead) UnmarshalJSON

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

func (*NullableScheduleRead) Unset

func (v *NullableScheduleRead) Unset()

type NullableScheduleUpdate

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

func NewNullableScheduleUpdate

func NewNullableScheduleUpdate(val *ScheduleUpdate) *NullableScheduleUpdate

func (NullableScheduleUpdate) Get

func (NullableScheduleUpdate) IsSet

func (v NullableScheduleUpdate) IsSet() bool

func (NullableScheduleUpdate) MarshalJSON

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

func (*NullableScheduleUpdate) Set

func (*NullableScheduleUpdate) UnmarshalJSON

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

func (*NullableScheduleUpdate) Unset

func (v *NullableScheduleUpdate) Unset()

type NullableSftpCredsInput

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

func NewNullableSftpCredsInput

func NewNullableSftpCredsInput(val *SftpCredsInput) *NullableSftpCredsInput

func (NullableSftpCredsInput) Get

func (NullableSftpCredsInput) IsSet

func (v NullableSftpCredsInput) IsSet() bool

func (NullableSftpCredsInput) MarshalJSON

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

func (*NullableSftpCredsInput) Set

func (*NullableSftpCredsInput) UnmarshalJSON

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

func (*NullableSftpCredsInput) Unset

func (v *NullableSftpCredsInput) Unset()

type NullableSftpCredsOutput

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

func NewNullableSftpCredsOutput

func NewNullableSftpCredsOutput(val *SftpCredsOutput) *NullableSftpCredsOutput

func (NullableSftpCredsOutput) Get

func (NullableSftpCredsOutput) IsSet

func (v NullableSftpCredsOutput) IsSet() bool

func (NullableSftpCredsOutput) MarshalJSON

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

func (*NullableSftpCredsOutput) Set

func (*NullableSftpCredsOutput) UnmarshalJSON

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

func (*NullableSftpCredsOutput) Unset

func (v *NullableSftpCredsOutput) Unset()

type NullableSpireonSLCInput

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

func NewNullableSpireonSLCInput

func NewNullableSpireonSLCInput(val *SpireonSLCInput) *NullableSpireonSLCInput

func (NullableSpireonSLCInput) Get

func (NullableSpireonSLCInput) IsSet

func (v NullableSpireonSLCInput) IsSet() bool

func (NullableSpireonSLCInput) MarshalJSON

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

func (*NullableSpireonSLCInput) Set

func (*NullableSpireonSLCInput) UnmarshalJSON

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

func (*NullableSpireonSLCInput) Unset

func (v *NullableSpireonSLCInput) Unset()

type NullableSpireonSLCOutput

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

func NewNullableSpireonSLCOutput

func NewNullableSpireonSLCOutput(val *SpireonSLCOutput) *NullableSpireonSLCOutput

func (NullableSpireonSLCOutput) Get

func (NullableSpireonSLCOutput) IsSet

func (v NullableSpireonSLCOutput) IsSet() bool

func (NullableSpireonSLCOutput) MarshalJSON

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

func (*NullableSpireonSLCOutput) Set

func (*NullableSpireonSLCOutput) UnmarshalJSON

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

func (*NullableSpireonSLCOutput) Unset

func (v *NullableSpireonSLCOutput) Unset()

type NullableStatusEnum

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

func NewNullableStatusEnum

func NewNullableStatusEnum(val *StatusEnum) *NullableStatusEnum

func (NullableStatusEnum) Get

func (v NullableStatusEnum) Get() *StatusEnum

func (NullableStatusEnum) IsSet

func (v NullableStatusEnum) IsSet() bool

func (NullableStatusEnum) MarshalJSON

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

func (*NullableStatusEnum) Set

func (v *NullableStatusEnum) Set(val *StatusEnum)

func (*NullableStatusEnum) UnmarshalJSON

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

func (*NullableStatusEnum) Unset

func (v *NullableStatusEnum) 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 NullableTTCredsInput

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

func NewNullableTTCredsInput

func NewNullableTTCredsInput(val *TTCredsInput) *NullableTTCredsInput

func (NullableTTCredsInput) Get

func (NullableTTCredsInput) IsSet

func (v NullableTTCredsInput) IsSet() bool

func (NullableTTCredsInput) MarshalJSON

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

func (*NullableTTCredsInput) Set

func (v *NullableTTCredsInput) Set(val *TTCredsInput)

func (*NullableTTCredsInput) UnmarshalJSON

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

func (*NullableTTCredsInput) Unset

func (v *NullableTTCredsInput) Unset()

type NullableTTCredsOutput

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

func NewNullableTTCredsOutput

func NewNullableTTCredsOutput(val *TTCredsOutput) *NullableTTCredsOutput

func (NullableTTCredsOutput) Get

func (NullableTTCredsOutput) IsSet

func (v NullableTTCredsOutput) IsSet() bool

func (NullableTTCredsOutput) MarshalJSON

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

func (*NullableTTCredsOutput) Set

func (v *NullableTTCredsOutput) Set(val *TTCredsOutput)

func (*NullableTTCredsOutput) UnmarshalJSON

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

func (*NullableTTCredsOutput) Unset

func (v *NullableTTCredsOutput) 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 NullableTokenCredsInput

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

func NewNullableTokenCredsInput

func NewNullableTokenCredsInput(val *TokenCredsInput) *NullableTokenCredsInput

func (NullableTokenCredsInput) Get

func (NullableTokenCredsInput) IsSet

func (v NullableTokenCredsInput) IsSet() bool

func (NullableTokenCredsInput) MarshalJSON

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

func (*NullableTokenCredsInput) Set

func (*NullableTokenCredsInput) UnmarshalJSON

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

func (*NullableTokenCredsInput) Unset

func (v *NullableTokenCredsInput) Unset()

type NullableTokenCredsOutput

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

func NewNullableTokenCredsOutput

func NewNullableTokenCredsOutput(val *TokenCredsOutput) *NullableTokenCredsOutput

func (NullableTokenCredsOutput) Get

func (NullableTokenCredsOutput) IsSet

func (v NullableTokenCredsOutput) IsSet() bool

func (NullableTokenCredsOutput) MarshalJSON

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

func (*NullableTokenCredsOutput) Set

func (*NullableTokenCredsOutput) UnmarshalJSON

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

func (*NullableTokenCredsOutput) Unset

func (v *NullableTokenCredsOutput) Unset()

type NullableTooManyRequests

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

func NewNullableTooManyRequests

func NewNullableTooManyRequests(val *TooManyRequests) *NullableTooManyRequests

func (NullableTooManyRequests) Get

func (NullableTooManyRequests) IsSet

func (v NullableTooManyRequests) IsSet() bool

func (NullableTooManyRequests) MarshalJSON

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

func (*NullableTooManyRequests) Set

func (*NullableTooManyRequests) UnmarshalJSON

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

func (*NullableTooManyRequests) Unset

func (v *NullableTooManyRequests) Unset()

type NullableTruckXCredsInput

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

func NewNullableTruckXCredsInput

func NewNullableTruckXCredsInput(val *TruckXCredsInput) *NullableTruckXCredsInput

func (NullableTruckXCredsInput) Get

func (NullableTruckXCredsInput) IsSet

func (v NullableTruckXCredsInput) IsSet() bool

func (NullableTruckXCredsInput) MarshalJSON

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

func (*NullableTruckXCredsInput) Set

func (*NullableTruckXCredsInput) UnmarshalJSON

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

func (*NullableTruckXCredsInput) Unset

func (v *NullableTruckXCredsInput) Unset()

type NullableTruckXCredsOutput

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

func NewNullableTruckXCredsOutput

func NewNullableTruckXCredsOutput(val *TruckXCredsOutput) *NullableTruckXCredsOutput

func (NullableTruckXCredsOutput) Get

func (NullableTruckXCredsOutput) IsSet

func (v NullableTruckXCredsOutput) IsSet() bool

func (NullableTruckXCredsOutput) MarshalJSON

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

func (*NullableTruckXCredsOutput) Set

func (*NullableTruckXCredsOutput) UnmarshalJSON

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

func (*NullableTruckXCredsOutput) Unset

func (v *NullableTruckXCredsOutput) Unset()

type NullableTruckXSLCInput

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

func NewNullableTruckXSLCInput

func NewNullableTruckXSLCInput(val *TruckXSLCInput) *NullableTruckXSLCInput

func (NullableTruckXSLCInput) Get

func (NullableTruckXSLCInput) IsSet

func (v NullableTruckXSLCInput) IsSet() bool

func (NullableTruckXSLCInput) MarshalJSON

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

func (*NullableTruckXSLCInput) Set

func (*NullableTruckXSLCInput) UnmarshalJSON

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

func (*NullableTruckXSLCInput) Unset

func (v *NullableTruckXSLCInput) Unset()

type NullableTruckXSLCOutput

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

func NewNullableTruckXSLCOutput

func NewNullableTruckXSLCOutput(val *TruckXSLCOutput) *NullableTruckXSLCOutput

func (NullableTruckXSLCOutput) Get

func (NullableTruckXSLCOutput) IsSet

func (v NullableTruckXSLCOutput) IsSet() bool

func (NullableTruckXSLCOutput) MarshalJSON

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

func (*NullableTruckXSLCOutput) Set

func (*NullableTruckXSLCOutput) UnmarshalJSON

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

func (*NullableTruckXSLCOutput) Unset

func (v *NullableTruckXSLCOutput) Unset()

type NullableTspEnum

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

func NewNullableTspEnum

func NewNullableTspEnum(val *TspEnum) *NullableTspEnum

func (NullableTspEnum) Get

func (v NullableTspEnum) Get() *TspEnum

func (NullableTspEnum) IsSet

func (v NullableTspEnum) IsSet() bool

func (NullableTspEnum) MarshalJSON

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

func (*NullableTspEnum) Set

func (v *NullableTspEnum) Set(val *TspEnum)

func (*NullableTspEnum) UnmarshalJSON

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

func (*NullableTspEnum) Unset

func (v *NullableTspEnum) Unset()

type NullableUnauthorized

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

func NewNullableUnauthorized

func NewNullableUnauthorized(val *Unauthorized) *NullableUnauthorized

func (NullableUnauthorized) Get

func (NullableUnauthorized) IsSet

func (v NullableUnauthorized) IsSet() bool

func (NullableUnauthorized) MarshalJSON

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

func (*NullableUnauthorized) Set

func (v *NullableUnauthorized) Set(val *Unauthorized)

func (*NullableUnauthorized) UnmarshalJSON

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

func (*NullableUnauthorized) Unset

func (v *NullableUnauthorized) Unset()

type NullableUnprocessableEntity

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

func NewNullableUnprocessableEntity

func NewNullableUnprocessableEntity(val *UnprocessableEntity) *NullableUnprocessableEntity

func (NullableUnprocessableEntity) Get

func (NullableUnprocessableEntity) IsSet

func (NullableUnprocessableEntity) MarshalJSON

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

func (*NullableUnprocessableEntity) Set

func (*NullableUnprocessableEntity) UnmarshalJSON

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

func (*NullableUnprocessableEntity) Unset

func (v *NullableUnprocessableEntity) Unset()

type NullableValidationErrorDetail

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

func (NullableValidationErrorDetail) Get

func (NullableValidationErrorDetail) IsSet

func (NullableValidationErrorDetail) MarshalJSON

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

func (*NullableValidationErrorDetail) Set

func (*NullableValidationErrorDetail) UnmarshalJSON

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

func (*NullableValidationErrorDetail) Unset

func (v *NullableValidationErrorDetail) Unset()

type NullableZubieCredsInput

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

func NewNullableZubieCredsInput

func NewNullableZubieCredsInput(val *ZubieCredsInput) *NullableZubieCredsInput

func (NullableZubieCredsInput) Get

func (NullableZubieCredsInput) IsSet

func (v NullableZubieCredsInput) IsSet() bool

func (NullableZubieCredsInput) MarshalJSON

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

func (*NullableZubieCredsInput) Set

func (*NullableZubieCredsInput) UnmarshalJSON

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

func (*NullableZubieCredsInput) Unset

func (v *NullableZubieCredsInput) Unset()

type NullableZubieCredsOutput

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

func NewNullableZubieCredsOutput

func NewNullableZubieCredsOutput(val *ZubieCredsOutput) *NullableZubieCredsOutput

func (NullableZubieCredsOutput) Get

func (NullableZubieCredsOutput) IsSet

func (v NullableZubieCredsOutput) IsSet() bool

func (NullableZubieCredsOutput) MarshalJSON

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

func (*NullableZubieCredsOutput) Set

func (*NullableZubieCredsOutput) UnmarshalJSON

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

func (*NullableZubieCredsOutput) Unset

func (v *NullableZubieCredsOutput) Unset()

type OAuth1CredsInput

type OAuth1CredsInput struct {
	ClientId            string `json:"client_id"`
	ClientSecret        string `json:"client_secret"`
	ResourceOwnerId     string `json:"resource_owner_id"`
	ResourceOwnerSecret string `json:"resource_owner_secret"`
	SignatureMethod     string `json:"signature_method"`
	Realm               string `json:"realm"`
	Url                 string `json:"url"`
}

OAuth1CredsInput OAuth1 Connection model

func NewOAuth1CredsInput

func NewOAuth1CredsInput(clientId string, clientSecret string, resourceOwnerId string, resourceOwnerSecret string, signatureMethod string, realm string, url string) *OAuth1CredsInput

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

func NewOAuth1CredsInputWithDefaults() *OAuth1CredsInput

NewOAuth1CredsInputWithDefaults instantiates a new OAuth1CredsInput object This 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 (*OAuth1CredsInput) GetClientId

func (o *OAuth1CredsInput) GetClientId() string

GetClientId returns the ClientId field value

func (*OAuth1CredsInput) GetClientIdOk

func (o *OAuth1CredsInput) GetClientIdOk() (*string, bool)

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

func (*OAuth1CredsInput) GetClientSecret

func (o *OAuth1CredsInput) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*OAuth1CredsInput) GetClientSecretOk

func (o *OAuth1CredsInput) GetClientSecretOk() (*string, bool)

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

func (*OAuth1CredsInput) GetRealm

func (o *OAuth1CredsInput) GetRealm() string

GetRealm returns the Realm field value

func (*OAuth1CredsInput) GetRealmOk

func (o *OAuth1CredsInput) GetRealmOk() (*string, bool)

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

func (*OAuth1CredsInput) GetResourceOwnerId

func (o *OAuth1CredsInput) GetResourceOwnerId() string

GetResourceOwnerId returns the ResourceOwnerId field value

func (*OAuth1CredsInput) GetResourceOwnerIdOk

func (o *OAuth1CredsInput) GetResourceOwnerIdOk() (*string, bool)

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

func (*OAuth1CredsInput) GetResourceOwnerSecret

func (o *OAuth1CredsInput) GetResourceOwnerSecret() string

GetResourceOwnerSecret returns the ResourceOwnerSecret field value

func (*OAuth1CredsInput) GetResourceOwnerSecretOk

func (o *OAuth1CredsInput) GetResourceOwnerSecretOk() (*string, bool)

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

func (*OAuth1CredsInput) GetSignatureMethod

func (o *OAuth1CredsInput) GetSignatureMethod() string

GetSignatureMethod returns the SignatureMethod field value

func (*OAuth1CredsInput) GetSignatureMethodOk

func (o *OAuth1CredsInput) GetSignatureMethodOk() (*string, bool)

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

func (*OAuth1CredsInput) GetUrl

func (o *OAuth1CredsInput) GetUrl() string

GetUrl returns the Url field value

func (*OAuth1CredsInput) GetUrlOk

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

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

func (OAuth1CredsInput) MarshalJSON

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

func (*OAuth1CredsInput) SetClientId

func (o *OAuth1CredsInput) SetClientId(v string)

SetClientId sets field value

func (*OAuth1CredsInput) SetClientSecret

func (o *OAuth1CredsInput) SetClientSecret(v string)

SetClientSecret sets field value

func (*OAuth1CredsInput) SetRealm

func (o *OAuth1CredsInput) SetRealm(v string)

SetRealm sets field value

func (*OAuth1CredsInput) SetResourceOwnerId

func (o *OAuth1CredsInput) SetResourceOwnerId(v string)

SetResourceOwnerId sets field value

func (*OAuth1CredsInput) SetResourceOwnerSecret

func (o *OAuth1CredsInput) SetResourceOwnerSecret(v string)

SetResourceOwnerSecret sets field value

func (*OAuth1CredsInput) SetSignatureMethod

func (o *OAuth1CredsInput) SetSignatureMethod(v string)

SetSignatureMethod sets field value

func (*OAuth1CredsInput) SetUrl

func (o *OAuth1CredsInput) SetUrl(v string)

SetUrl sets field value

func (OAuth1CredsInput) ToMap

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

func (*OAuth1CredsInput) UnmarshalJSON

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

type OAuth1CredsOutput

type OAuth1CredsOutput struct {
	ClientId            string      `json:"client_id"`
	ClientSecret        interface{} `json:"client_secret"`
	ResourceOwnerId     string      `json:"resource_owner_id"`
	ResourceOwnerSecret interface{} `json:"resource_owner_secret"`
	SignatureMethod     string      `json:"signature_method"`
	Realm               string      `json:"realm"`
	Url                 string      `json:"url"`
}

OAuth1CredsOutput OAuth1 Connection model

func NewOAuth1CredsOutput

func NewOAuth1CredsOutput(clientId string, clientSecret interface{}, resourceOwnerId string, resourceOwnerSecret interface{}, signatureMethod string, realm string, url string) *OAuth1CredsOutput

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

func NewOAuth1CredsOutputWithDefaults() *OAuth1CredsOutput

NewOAuth1CredsOutputWithDefaults instantiates a new OAuth1CredsOutput object This 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 (*OAuth1CredsOutput) GetClientId

func (o *OAuth1CredsOutput) GetClientId() string

GetClientId returns the ClientId field value

func (*OAuth1CredsOutput) GetClientIdOk

func (o *OAuth1CredsOutput) GetClientIdOk() (*string, bool)

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

func (*OAuth1CredsOutput) GetClientSecret

func (o *OAuth1CredsOutput) GetClientSecret() interface{}

GetClientSecret returns the ClientSecret field value If the value is explicit nil, the zero value for interface{} will be returned

func (*OAuth1CredsOutput) GetClientSecretOk

func (o *OAuth1CredsOutput) GetClientSecretOk() (*interface{}, bool)

GetClientSecretOk returns a tuple with the ClientSecret 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 (*OAuth1CredsOutput) GetRealm

func (o *OAuth1CredsOutput) GetRealm() string

GetRealm returns the Realm field value

func (*OAuth1CredsOutput) GetRealmOk

func (o *OAuth1CredsOutput) GetRealmOk() (*string, bool)

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

func (*OAuth1CredsOutput) GetResourceOwnerId

func (o *OAuth1CredsOutput) GetResourceOwnerId() string

GetResourceOwnerId returns the ResourceOwnerId field value

func (*OAuth1CredsOutput) GetResourceOwnerIdOk

func (o *OAuth1CredsOutput) GetResourceOwnerIdOk() (*string, bool)

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

func (*OAuth1CredsOutput) GetResourceOwnerSecret

func (o *OAuth1CredsOutput) GetResourceOwnerSecret() interface{}

GetResourceOwnerSecret returns the ResourceOwnerSecret field value If the value is explicit nil, the zero value for interface{} will be returned

func (*OAuth1CredsOutput) GetResourceOwnerSecretOk

func (o *OAuth1CredsOutput) GetResourceOwnerSecretOk() (*interface{}, bool)

GetResourceOwnerSecretOk returns a tuple with the ResourceOwnerSecret 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 (*OAuth1CredsOutput) GetSignatureMethod

func (o *OAuth1CredsOutput) GetSignatureMethod() string

GetSignatureMethod returns the SignatureMethod field value

func (*OAuth1CredsOutput) GetSignatureMethodOk

func (o *OAuth1CredsOutput) GetSignatureMethodOk() (*string, bool)

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

func (*OAuth1CredsOutput) GetUrl

func (o *OAuth1CredsOutput) GetUrl() string

GetUrl returns the Url field value

func (*OAuth1CredsOutput) GetUrlOk

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

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

func (OAuth1CredsOutput) MarshalJSON

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

func (*OAuth1CredsOutput) SetClientId

func (o *OAuth1CredsOutput) SetClientId(v string)

SetClientId sets field value

func (*OAuth1CredsOutput) SetClientSecret

func (o *OAuth1CredsOutput) SetClientSecret(v interface{})

SetClientSecret sets field value

func (*OAuth1CredsOutput) SetRealm

func (o *OAuth1CredsOutput) SetRealm(v string)

SetRealm sets field value

func (*OAuth1CredsOutput) SetResourceOwnerId

func (o *OAuth1CredsOutput) SetResourceOwnerId(v string)

SetResourceOwnerId sets field value

func (*OAuth1CredsOutput) SetResourceOwnerSecret

func (o *OAuth1CredsOutput) SetResourceOwnerSecret(v interface{})

SetResourceOwnerSecret sets field value

func (*OAuth1CredsOutput) SetSignatureMethod

func (o *OAuth1CredsOutput) SetSignatureMethod(v string)

SetSignatureMethod sets field value

func (*OAuth1CredsOutput) SetUrl

func (o *OAuth1CredsOutput) SetUrl(v string)

SetUrl sets field value

func (OAuth1CredsOutput) ToMap

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

func (*OAuth1CredsOutput) UnmarshalJSON

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

type OAuth2CredsInput

type OAuth2CredsInput struct {
	ClientId     string         `json:"client_id"`
	ClientSecret string         `json:"client_secret"`
	Scope        NullableString `json:"scope,omitempty"`
	RefreshToken NullableString `json:"refresh_token,omitempty"`
	TokenUrl     string         `json:"token_url"`
	Url          string         `json:"url"`
}

OAuth2CredsInput OAuth2 Connection model

func NewOAuth2CredsInput

func NewOAuth2CredsInput(clientId string, clientSecret string, tokenUrl string, url string) *OAuth2CredsInput

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

func NewOAuth2CredsInputWithDefaults() *OAuth2CredsInput

NewOAuth2CredsInputWithDefaults instantiates a new OAuth2CredsInput object This 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 (*OAuth2CredsInput) GetClientId

func (o *OAuth2CredsInput) GetClientId() string

GetClientId returns the ClientId field value

func (*OAuth2CredsInput) GetClientIdOk

func (o *OAuth2CredsInput) GetClientIdOk() (*string, bool)

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

func (*OAuth2CredsInput) GetClientSecret

func (o *OAuth2CredsInput) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*OAuth2CredsInput) GetClientSecretOk

func (o *OAuth2CredsInput) GetClientSecretOk() (*string, bool)

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

func (*OAuth2CredsInput) GetRefreshToken

func (o *OAuth2CredsInput) GetRefreshToken() string

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

func (*OAuth2CredsInput) GetRefreshTokenOk

func (o *OAuth2CredsInput) GetRefreshTokenOk() (*string, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken 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 (*OAuth2CredsInput) GetScope

func (o *OAuth2CredsInput) GetScope() string

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

func (*OAuth2CredsInput) GetScopeOk

func (o *OAuth2CredsInput) GetScopeOk() (*string, bool)

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

func (*OAuth2CredsInput) GetTokenUrl

func (o *OAuth2CredsInput) GetTokenUrl() string

GetTokenUrl returns the TokenUrl field value

func (*OAuth2CredsInput) GetTokenUrlOk

func (o *OAuth2CredsInput) GetTokenUrlOk() (*string, bool)

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

func (*OAuth2CredsInput) GetUrl

func (o *OAuth2CredsInput) GetUrl() string

GetUrl returns the Url field value

func (*OAuth2CredsInput) GetUrlOk

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

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

func (*OAuth2CredsInput) HasRefreshToken

func (o *OAuth2CredsInput) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (*OAuth2CredsInput) HasScope

func (o *OAuth2CredsInput) HasScope() bool

HasScope returns a boolean if a field has been set.

func (OAuth2CredsInput) MarshalJSON

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

func (*OAuth2CredsInput) SetClientId

func (o *OAuth2CredsInput) SetClientId(v string)

SetClientId sets field value

func (*OAuth2CredsInput) SetClientSecret

func (o *OAuth2CredsInput) SetClientSecret(v string)

SetClientSecret sets field value

func (*OAuth2CredsInput) SetRefreshToken

func (o *OAuth2CredsInput) SetRefreshToken(v string)

SetRefreshToken gets a reference to the given NullableString and assigns it to the RefreshToken field.

func (*OAuth2CredsInput) SetRefreshTokenNil

func (o *OAuth2CredsInput) SetRefreshTokenNil()

SetRefreshTokenNil sets the value for RefreshToken to be an explicit nil

func (*OAuth2CredsInput) SetScope

func (o *OAuth2CredsInput) SetScope(v string)

SetScope gets a reference to the given NullableString and assigns it to the Scope field.

func (*OAuth2CredsInput) SetScopeNil

func (o *OAuth2CredsInput) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (*OAuth2CredsInput) SetTokenUrl

func (o *OAuth2CredsInput) SetTokenUrl(v string)

SetTokenUrl sets field value

func (*OAuth2CredsInput) SetUrl

func (o *OAuth2CredsInput) SetUrl(v string)

SetUrl sets field value

func (OAuth2CredsInput) ToMap

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

func (*OAuth2CredsInput) UnmarshalJSON

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

func (*OAuth2CredsInput) UnsetRefreshToken

func (o *OAuth2CredsInput) UnsetRefreshToken()

UnsetRefreshToken ensures that no value is present for RefreshToken, not even an explicit nil

func (*OAuth2CredsInput) UnsetScope

func (o *OAuth2CredsInput) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

type OAuth2CredsOutput

type OAuth2CredsOutput struct {
	ClientId     string         `json:"client_id"`
	ClientSecret interface{}    `json:"client_secret"`
	Scope        NullableString `json:"scope,omitempty"`
	RefreshToken interface{}    `json:"refresh_token,omitempty"`
	TokenUrl     string         `json:"token_url"`
	Url          string         `json:"url"`
}

OAuth2CredsOutput OAuth2 Connection model

func NewOAuth2CredsOutput

func NewOAuth2CredsOutput(clientId string, clientSecret interface{}, tokenUrl string, url string) *OAuth2CredsOutput

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

func NewOAuth2CredsOutputWithDefaults() *OAuth2CredsOutput

NewOAuth2CredsOutputWithDefaults instantiates a new OAuth2CredsOutput object This 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 (*OAuth2CredsOutput) GetClientId

func (o *OAuth2CredsOutput) GetClientId() string

GetClientId returns the ClientId field value

func (*OAuth2CredsOutput) GetClientIdOk

func (o *OAuth2CredsOutput) GetClientIdOk() (*string, bool)

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

func (*OAuth2CredsOutput) GetClientSecret

func (o *OAuth2CredsOutput) GetClientSecret() interface{}

GetClientSecret returns the ClientSecret field value If the value is explicit nil, the zero value for interface{} will be returned

func (*OAuth2CredsOutput) GetClientSecretOk

func (o *OAuth2CredsOutput) GetClientSecretOk() (*interface{}, bool)

GetClientSecretOk returns a tuple with the ClientSecret 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 (*OAuth2CredsOutput) GetRefreshToken

func (o *OAuth2CredsOutput) GetRefreshToken() interface{}

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

func (*OAuth2CredsOutput) GetRefreshTokenOk

func (o *OAuth2CredsOutput) GetRefreshTokenOk() (*interface{}, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken 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 (*OAuth2CredsOutput) GetScope

func (o *OAuth2CredsOutput) GetScope() string

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

func (*OAuth2CredsOutput) GetScopeOk

func (o *OAuth2CredsOutput) GetScopeOk() (*string, bool)

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

func (*OAuth2CredsOutput) GetTokenUrl

func (o *OAuth2CredsOutput) GetTokenUrl() string

GetTokenUrl returns the TokenUrl field value

func (*OAuth2CredsOutput) GetTokenUrlOk

func (o *OAuth2CredsOutput) GetTokenUrlOk() (*string, bool)

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

func (*OAuth2CredsOutput) GetUrl

func (o *OAuth2CredsOutput) GetUrl() string

GetUrl returns the Url field value

func (*OAuth2CredsOutput) GetUrlOk

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

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

func (*OAuth2CredsOutput) HasRefreshToken

func (o *OAuth2CredsOutput) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (*OAuth2CredsOutput) HasScope

func (o *OAuth2CredsOutput) HasScope() bool

HasScope returns a boolean if a field has been set.

func (OAuth2CredsOutput) MarshalJSON

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

func (*OAuth2CredsOutput) SetClientId

func (o *OAuth2CredsOutput) SetClientId(v string)

SetClientId sets field value

func (*OAuth2CredsOutput) SetClientSecret

func (o *OAuth2CredsOutput) SetClientSecret(v interface{})

SetClientSecret sets field value

func (*OAuth2CredsOutput) SetRefreshToken

func (o *OAuth2CredsOutput) SetRefreshToken(v interface{})

SetRefreshToken gets a reference to the given interface{} and assigns it to the RefreshToken field.

func (*OAuth2CredsOutput) SetScope

func (o *OAuth2CredsOutput) SetScope(v string)

SetScope gets a reference to the given NullableString and assigns it to the Scope field.

func (*OAuth2CredsOutput) SetScopeNil

func (o *OAuth2CredsOutput) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (*OAuth2CredsOutput) SetTokenUrl

func (o *OAuth2CredsOutput) SetTokenUrl(v string)

SetTokenUrl sets field value

func (*OAuth2CredsOutput) SetUrl

func (o *OAuth2CredsOutput) SetUrl(v string)

SetUrl sets field value

func (OAuth2CredsOutput) ToMap

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

func (*OAuth2CredsOutput) UnmarshalJSON

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

func (*OAuth2CredsOutput) UnsetScope

func (o *OAuth2CredsOutput) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

type OAuth2InitiateCredsInput

type OAuth2InitiateCredsInput struct {
	Code        string         `json:"code"`
	GrantType   NullableString `json:"grant_type,omitempty"`
	TokenUrl    NullableString `json:"token_url,omitempty"`
	RedirectUri NullableString `json:"redirect_uri,omitempty"`
}

OAuth2InitiateCredsInput OAuth2 Initiate Connection model

func NewOAuth2InitiateCredsInput

func NewOAuth2InitiateCredsInput(code string) *OAuth2InitiateCredsInput

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

func NewOAuth2InitiateCredsInputWithDefaults() *OAuth2InitiateCredsInput

NewOAuth2InitiateCredsInputWithDefaults instantiates a new OAuth2InitiateCredsInput object This 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 (*OAuth2InitiateCredsInput) GetCode

func (o *OAuth2InitiateCredsInput) GetCode() string

GetCode returns the Code field value

func (*OAuth2InitiateCredsInput) GetCodeOk

func (o *OAuth2InitiateCredsInput) GetCodeOk() (*string, bool)

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

func (*OAuth2InitiateCredsInput) GetGrantType

func (o *OAuth2InitiateCredsInput) GetGrantType() string

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

func (*OAuth2InitiateCredsInput) GetGrantTypeOk

func (o *OAuth2InitiateCredsInput) GetGrantTypeOk() (*string, bool)

GetGrantTypeOk returns a tuple with the GrantType 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 (*OAuth2InitiateCredsInput) GetRedirectUri

func (o *OAuth2InitiateCredsInput) GetRedirectUri() string

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

func (*OAuth2InitiateCredsInput) GetRedirectUriOk

func (o *OAuth2InitiateCredsInput) GetRedirectUriOk() (*string, bool)

GetRedirectUriOk returns a tuple with the RedirectUri 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 (*OAuth2InitiateCredsInput) GetTokenUrl

func (o *OAuth2InitiateCredsInput) GetTokenUrl() string

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

func (*OAuth2InitiateCredsInput) GetTokenUrlOk

func (o *OAuth2InitiateCredsInput) GetTokenUrlOk() (*string, bool)

GetTokenUrlOk returns a tuple with the TokenUrl 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 (*OAuth2InitiateCredsInput) HasGrantType

func (o *OAuth2InitiateCredsInput) HasGrantType() bool

HasGrantType returns a boolean if a field has been set.

func (*OAuth2InitiateCredsInput) HasRedirectUri

func (o *OAuth2InitiateCredsInput) HasRedirectUri() bool

HasRedirectUri returns a boolean if a field has been set.

func (*OAuth2InitiateCredsInput) HasTokenUrl

func (o *OAuth2InitiateCredsInput) HasTokenUrl() bool

HasTokenUrl returns a boolean if a field has been set.

func (OAuth2InitiateCredsInput) MarshalJSON

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

func (*OAuth2InitiateCredsInput) SetCode

func (o *OAuth2InitiateCredsInput) SetCode(v string)

SetCode sets field value

func (*OAuth2InitiateCredsInput) SetGrantType

func (o *OAuth2InitiateCredsInput) SetGrantType(v string)

SetGrantType gets a reference to the given NullableString and assigns it to the GrantType field.

func (*OAuth2InitiateCredsInput) SetGrantTypeNil

func (o *OAuth2InitiateCredsInput) SetGrantTypeNil()

SetGrantTypeNil sets the value for GrantType to be an explicit nil

func (*OAuth2InitiateCredsInput) SetRedirectUri

func (o *OAuth2InitiateCredsInput) SetRedirectUri(v string)

SetRedirectUri gets a reference to the given NullableString and assigns it to the RedirectUri field.

func (*OAuth2InitiateCredsInput) SetRedirectUriNil

func (o *OAuth2InitiateCredsInput) SetRedirectUriNil()

SetRedirectUriNil sets the value for RedirectUri to be an explicit nil

func (*OAuth2InitiateCredsInput) SetTokenUrl

func (o *OAuth2InitiateCredsInput) SetTokenUrl(v string)

SetTokenUrl gets a reference to the given NullableString and assigns it to the TokenUrl field.

func (*OAuth2InitiateCredsInput) SetTokenUrlNil

func (o *OAuth2InitiateCredsInput) SetTokenUrlNil()

SetTokenUrlNil sets the value for TokenUrl to be an explicit nil

func (OAuth2InitiateCredsInput) ToMap

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

func (*OAuth2InitiateCredsInput) UnmarshalJSON

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

func (*OAuth2InitiateCredsInput) UnsetGrantType

func (o *OAuth2InitiateCredsInput) UnsetGrantType()

UnsetGrantType ensures that no value is present for GrantType, not even an explicit nil

func (*OAuth2InitiateCredsInput) UnsetRedirectUri

func (o *OAuth2InitiateCredsInput) UnsetRedirectUri()

UnsetRedirectUri ensures that no value is present for RedirectUri, not even an explicit nil

func (*OAuth2InitiateCredsInput) UnsetTokenUrl

func (o *OAuth2InitiateCredsInput) UnsetTokenUrl()

UnsetTokenUrl ensures that no value is present for TokenUrl, not even an explicit nil

type OAuth2InitiateCredsOutput

type OAuth2InitiateCredsOutput struct {
	Code        interface{}    `json:"code"`
	GrantType   NullableString `json:"grant_type,omitempty"`
	TokenUrl    NullableString `json:"token_url,omitempty"`
	RedirectUri NullableString `json:"redirect_uri,omitempty"`
}

OAuth2InitiateCredsOutput OAuth2 Initiate Connection model

func NewOAuth2InitiateCredsOutput

func NewOAuth2InitiateCredsOutput(code interface{}) *OAuth2InitiateCredsOutput

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

func NewOAuth2InitiateCredsOutputWithDefaults() *OAuth2InitiateCredsOutput

NewOAuth2InitiateCredsOutputWithDefaults instantiates a new OAuth2InitiateCredsOutput object This 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 (*OAuth2InitiateCredsOutput) GetCode

func (o *OAuth2InitiateCredsOutput) GetCode() interface{}

GetCode returns the Code field value If the value is explicit nil, the zero value for interface{} will be returned

func (*OAuth2InitiateCredsOutput) GetCodeOk

func (o *OAuth2InitiateCredsOutput) GetCodeOk() (*interface{}, bool)

GetCodeOk returns a tuple with the Code 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 (*OAuth2InitiateCredsOutput) GetGrantType

func (o *OAuth2InitiateCredsOutput) GetGrantType() string

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

func (*OAuth2InitiateCredsOutput) GetGrantTypeOk

func (o *OAuth2InitiateCredsOutput) GetGrantTypeOk() (*string, bool)

GetGrantTypeOk returns a tuple with the GrantType 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 (*OAuth2InitiateCredsOutput) GetRedirectUri

func (o *OAuth2InitiateCredsOutput) GetRedirectUri() string

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

func (*OAuth2InitiateCredsOutput) GetRedirectUriOk

func (o *OAuth2InitiateCredsOutput) GetRedirectUriOk() (*string, bool)

GetRedirectUriOk returns a tuple with the RedirectUri 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 (*OAuth2InitiateCredsOutput) GetTokenUrl

func (o *OAuth2InitiateCredsOutput) GetTokenUrl() string

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

func (*OAuth2InitiateCredsOutput) GetTokenUrlOk

func (o *OAuth2InitiateCredsOutput) GetTokenUrlOk() (*string, bool)

GetTokenUrlOk returns a tuple with the TokenUrl 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 (*OAuth2InitiateCredsOutput) HasGrantType

func (o *OAuth2InitiateCredsOutput) HasGrantType() bool

HasGrantType returns a boolean if a field has been set.

func (*OAuth2InitiateCredsOutput) HasRedirectUri

func (o *OAuth2InitiateCredsOutput) HasRedirectUri() bool

HasRedirectUri returns a boolean if a field has been set.

func (*OAuth2InitiateCredsOutput) HasTokenUrl

func (o *OAuth2InitiateCredsOutput) HasTokenUrl() bool

HasTokenUrl returns a boolean if a field has been set.

func (OAuth2InitiateCredsOutput) MarshalJSON

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

func (*OAuth2InitiateCredsOutput) SetCode

func (o *OAuth2InitiateCredsOutput) SetCode(v interface{})

SetCode sets field value

func (*OAuth2InitiateCredsOutput) SetGrantType

func (o *OAuth2InitiateCredsOutput) SetGrantType(v string)

SetGrantType gets a reference to the given NullableString and assigns it to the GrantType field.

func (*OAuth2InitiateCredsOutput) SetGrantTypeNil

func (o *OAuth2InitiateCredsOutput) SetGrantTypeNil()

SetGrantTypeNil sets the value for GrantType to be an explicit nil

func (*OAuth2InitiateCredsOutput) SetRedirectUri

func (o *OAuth2InitiateCredsOutput) SetRedirectUri(v string)

SetRedirectUri gets a reference to the given NullableString and assigns it to the RedirectUri field.

func (*OAuth2InitiateCredsOutput) SetRedirectUriNil

func (o *OAuth2InitiateCredsOutput) SetRedirectUriNil()

SetRedirectUriNil sets the value for RedirectUri to be an explicit nil

func (*OAuth2InitiateCredsOutput) SetTokenUrl

func (o *OAuth2InitiateCredsOutput) SetTokenUrl(v string)

SetTokenUrl gets a reference to the given NullableString and assigns it to the TokenUrl field.

func (*OAuth2InitiateCredsOutput) SetTokenUrlNil

func (o *OAuth2InitiateCredsOutput) SetTokenUrlNil()

SetTokenUrlNil sets the value for TokenUrl to be an explicit nil

func (OAuth2InitiateCredsOutput) ToMap

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

func (*OAuth2InitiateCredsOutput) UnmarshalJSON

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

func (*OAuth2InitiateCredsOutput) UnsetGrantType

func (o *OAuth2InitiateCredsOutput) UnsetGrantType()

UnsetGrantType ensures that no value is present for GrantType, not even an explicit nil

func (*OAuth2InitiateCredsOutput) UnsetRedirectUri

func (o *OAuth2InitiateCredsOutput) UnsetRedirectUri()

UnsetRedirectUri ensures that no value is present for RedirectUri, not even an explicit nil

func (*OAuth2InitiateCredsOutput) UnsetTokenUrl

func (o *OAuth2InitiateCredsOutput) UnsetTokenUrl()

UnsetTokenUrl ensures that no value is present for TokenUrl, not even an explicit nil

type OAuth2PrivateKeyCredsInput

type OAuth2PrivateKeyCredsInput struct {
	ClientId   string         `json:"client_id"`
	PrivateKey string         `json:"private_key"`
	Scope      NullableString `json:"scope,omitempty"`
	TokenUrl   string         `json:"token_url"`
	Url        string         `json:"url"`
}

OAuth2PrivateKeyCredsInput OAuth2 Private Key Connection model

func NewOAuth2PrivateKeyCredsInput

func NewOAuth2PrivateKeyCredsInput(clientId string, privateKey string, tokenUrl string, url string) *OAuth2PrivateKeyCredsInput

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

func NewOAuth2PrivateKeyCredsInputWithDefaults() *OAuth2PrivateKeyCredsInput

NewOAuth2PrivateKeyCredsInputWithDefaults instantiates a new OAuth2PrivateKeyCredsInput object This 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 (*OAuth2PrivateKeyCredsInput) GetClientId

func (o *OAuth2PrivateKeyCredsInput) GetClientId() string

GetClientId returns the ClientId field value

func (*OAuth2PrivateKeyCredsInput) GetClientIdOk

func (o *OAuth2PrivateKeyCredsInput) GetClientIdOk() (*string, bool)

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

func (*OAuth2PrivateKeyCredsInput) GetPrivateKey

func (o *OAuth2PrivateKeyCredsInput) GetPrivateKey() string

GetPrivateKey returns the PrivateKey field value

func (*OAuth2PrivateKeyCredsInput) GetPrivateKeyOk

func (o *OAuth2PrivateKeyCredsInput) GetPrivateKeyOk() (*string, bool)

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

func (*OAuth2PrivateKeyCredsInput) GetScope

func (o *OAuth2PrivateKeyCredsInput) GetScope() string

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

func (*OAuth2PrivateKeyCredsInput) GetScopeOk

func (o *OAuth2PrivateKeyCredsInput) GetScopeOk() (*string, bool)

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

func (*OAuth2PrivateKeyCredsInput) GetTokenUrl

func (o *OAuth2PrivateKeyCredsInput) GetTokenUrl() string

GetTokenUrl returns the TokenUrl field value

func (*OAuth2PrivateKeyCredsInput) GetTokenUrlOk

func (o *OAuth2PrivateKeyCredsInput) GetTokenUrlOk() (*string, bool)

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

func (*OAuth2PrivateKeyCredsInput) GetUrl

func (o *OAuth2PrivateKeyCredsInput) GetUrl() string

GetUrl returns the Url field value

func (*OAuth2PrivateKeyCredsInput) GetUrlOk

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

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

func (*OAuth2PrivateKeyCredsInput) HasScope

func (o *OAuth2PrivateKeyCredsInput) HasScope() bool

HasScope returns a boolean if a field has been set.

func (OAuth2PrivateKeyCredsInput) MarshalJSON

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

func (*OAuth2PrivateKeyCredsInput) SetClientId

func (o *OAuth2PrivateKeyCredsInput) SetClientId(v string)

SetClientId sets field value

func (*OAuth2PrivateKeyCredsInput) SetPrivateKey

func (o *OAuth2PrivateKeyCredsInput) SetPrivateKey(v string)

SetPrivateKey sets field value

func (*OAuth2PrivateKeyCredsInput) SetScope

func (o *OAuth2PrivateKeyCredsInput) SetScope(v string)

SetScope gets a reference to the given NullableString and assigns it to the Scope field.

func (*OAuth2PrivateKeyCredsInput) SetScopeNil

func (o *OAuth2PrivateKeyCredsInput) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (*OAuth2PrivateKeyCredsInput) SetTokenUrl

func (o *OAuth2PrivateKeyCredsInput) SetTokenUrl(v string)

SetTokenUrl sets field value

func (*OAuth2PrivateKeyCredsInput) SetUrl

func (o *OAuth2PrivateKeyCredsInput) SetUrl(v string)

SetUrl sets field value

func (OAuth2PrivateKeyCredsInput) ToMap

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

func (*OAuth2PrivateKeyCredsInput) UnmarshalJSON

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

func (*OAuth2PrivateKeyCredsInput) UnsetScope

func (o *OAuth2PrivateKeyCredsInput) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

type OAuth2PrivateKeyCredsOutput

type OAuth2PrivateKeyCredsOutput struct {
	ClientId   string         `json:"client_id"`
	PrivateKey interface{}    `json:"private_key"`
	Scope      NullableString `json:"scope,omitempty"`
	TokenUrl   string         `json:"token_url"`
	Url        string         `json:"url"`
}

OAuth2PrivateKeyCredsOutput OAuth2 Private Key Connection model

func NewOAuth2PrivateKeyCredsOutput

func NewOAuth2PrivateKeyCredsOutput(clientId string, privateKey interface{}, tokenUrl string, url string) *OAuth2PrivateKeyCredsOutput

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

func NewOAuth2PrivateKeyCredsOutputWithDefaults() *OAuth2PrivateKeyCredsOutput

NewOAuth2PrivateKeyCredsOutputWithDefaults instantiates a new OAuth2PrivateKeyCredsOutput object This 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 (*OAuth2PrivateKeyCredsOutput) GetClientId

func (o *OAuth2PrivateKeyCredsOutput) GetClientId() string

GetClientId returns the ClientId field value

func (*OAuth2PrivateKeyCredsOutput) GetClientIdOk

func (o *OAuth2PrivateKeyCredsOutput) GetClientIdOk() (*string, bool)

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

func (*OAuth2PrivateKeyCredsOutput) GetPrivateKey

func (o *OAuth2PrivateKeyCredsOutput) GetPrivateKey() interface{}

GetPrivateKey returns the PrivateKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*OAuth2PrivateKeyCredsOutput) GetPrivateKeyOk

func (o *OAuth2PrivateKeyCredsOutput) GetPrivateKeyOk() (*interface{}, bool)

GetPrivateKeyOk returns a tuple with the PrivateKey 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 (*OAuth2PrivateKeyCredsOutput) GetScope

func (o *OAuth2PrivateKeyCredsOutput) GetScope() string

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

func (*OAuth2PrivateKeyCredsOutput) GetScopeOk

func (o *OAuth2PrivateKeyCredsOutput) GetScopeOk() (*string, bool)

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

func (*OAuth2PrivateKeyCredsOutput) GetTokenUrl

func (o *OAuth2PrivateKeyCredsOutput) GetTokenUrl() string

GetTokenUrl returns the TokenUrl field value

func (*OAuth2PrivateKeyCredsOutput) GetTokenUrlOk

func (o *OAuth2PrivateKeyCredsOutput) GetTokenUrlOk() (*string, bool)

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

func (*OAuth2PrivateKeyCredsOutput) GetUrl

func (o *OAuth2PrivateKeyCredsOutput) GetUrl() string

GetUrl returns the Url field value

func (*OAuth2PrivateKeyCredsOutput) GetUrlOk

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

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

func (*OAuth2PrivateKeyCredsOutput) HasScope

func (o *OAuth2PrivateKeyCredsOutput) HasScope() bool

HasScope returns a boolean if a field has been set.

func (OAuth2PrivateKeyCredsOutput) MarshalJSON

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

func (*OAuth2PrivateKeyCredsOutput) SetClientId

func (o *OAuth2PrivateKeyCredsOutput) SetClientId(v string)

SetClientId sets field value

func (*OAuth2PrivateKeyCredsOutput) SetPrivateKey

func (o *OAuth2PrivateKeyCredsOutput) SetPrivateKey(v interface{})

SetPrivateKey sets field value

func (*OAuth2PrivateKeyCredsOutput) SetScope

func (o *OAuth2PrivateKeyCredsOutput) SetScope(v string)

SetScope gets a reference to the given NullableString and assigns it to the Scope field.

func (*OAuth2PrivateKeyCredsOutput) SetScopeNil

func (o *OAuth2PrivateKeyCredsOutput) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (*OAuth2PrivateKeyCredsOutput) SetTokenUrl

func (o *OAuth2PrivateKeyCredsOutput) SetTokenUrl(v string)

SetTokenUrl sets field value

func (*OAuth2PrivateKeyCredsOutput) SetUrl

func (o *OAuth2PrivateKeyCredsOutput) SetUrl(v string)

SetUrl sets field value

func (OAuth2PrivateKeyCredsOutput) ToMap

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

func (*OAuth2PrivateKeyCredsOutput) UnmarshalJSON

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

func (*OAuth2PrivateKeyCredsOutput) UnsetScope

func (o *OAuth2PrivateKeyCredsOutput) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

type OntimeEldCredsInput

type OntimeEldCredsInput struct {
	ApiKey        string `json:"api_key"`
	ProviderToken string `json:"provider_token"`
	DotNumber     string `json:"dot_number"`
}

OntimeEldCredsInput Ontime ELD Connection model

func NewOntimeEldCredsInput

func NewOntimeEldCredsInput(apiKey string, providerToken string, dotNumber string) *OntimeEldCredsInput

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

func NewOntimeEldCredsInputWithDefaults() *OntimeEldCredsInput

NewOntimeEldCredsInputWithDefaults instantiates a new OntimeEldCredsInput object This 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 (*OntimeEldCredsInput) GetApiKey

func (o *OntimeEldCredsInput) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*OntimeEldCredsInput) GetApiKeyOk

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

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

func (*OntimeEldCredsInput) GetDotNumber

func (o *OntimeEldCredsInput) GetDotNumber() string

GetDotNumber returns the DotNumber field value

func (*OntimeEldCredsInput) GetDotNumberOk

func (o *OntimeEldCredsInput) GetDotNumberOk() (*string, bool)

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

func (*OntimeEldCredsInput) GetProviderToken

func (o *OntimeEldCredsInput) GetProviderToken() string

GetProviderToken returns the ProviderToken field value

func (*OntimeEldCredsInput) GetProviderTokenOk

func (o *OntimeEldCredsInput) GetProviderTokenOk() (*string, bool)

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

func (OntimeEldCredsInput) MarshalJSON

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

func (*OntimeEldCredsInput) SetApiKey

func (o *OntimeEldCredsInput) SetApiKey(v string)

SetApiKey sets field value

func (*OntimeEldCredsInput) SetDotNumber

func (o *OntimeEldCredsInput) SetDotNumber(v string)

SetDotNumber sets field value

func (*OntimeEldCredsInput) SetProviderToken

func (o *OntimeEldCredsInput) SetProviderToken(v string)

SetProviderToken sets field value

func (OntimeEldCredsInput) ToMap

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

func (*OntimeEldCredsInput) UnmarshalJSON

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

type OntimeEldCredsOutput

type OntimeEldCredsOutput struct {
	ApiKey        interface{} `json:"api_key"`
	ProviderToken interface{} `json:"provider_token"`
	DotNumber     string      `json:"dot_number"`
}

OntimeEldCredsOutput Ontime ELD Connection model

func NewOntimeEldCredsOutput

func NewOntimeEldCredsOutput(apiKey interface{}, providerToken interface{}, dotNumber string) *OntimeEldCredsOutput

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

func NewOntimeEldCredsOutputWithDefaults() *OntimeEldCredsOutput

NewOntimeEldCredsOutputWithDefaults instantiates a new OntimeEldCredsOutput object This 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 (*OntimeEldCredsOutput) GetApiKey

func (o *OntimeEldCredsOutput) GetApiKey() interface{}

GetApiKey returns the ApiKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*OntimeEldCredsOutput) GetApiKeyOk

func (o *OntimeEldCredsOutput) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*OntimeEldCredsOutput) GetDotNumber

func (o *OntimeEldCredsOutput) GetDotNumber() string

GetDotNumber returns the DotNumber field value

func (*OntimeEldCredsOutput) GetDotNumberOk

func (o *OntimeEldCredsOutput) GetDotNumberOk() (*string, bool)

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

func (*OntimeEldCredsOutput) GetProviderToken

func (o *OntimeEldCredsOutput) GetProviderToken() interface{}

GetProviderToken returns the ProviderToken field value If the value is explicit nil, the zero value for interface{} will be returned

func (*OntimeEldCredsOutput) GetProviderTokenOk

func (o *OntimeEldCredsOutput) GetProviderTokenOk() (*interface{}, bool)

GetProviderTokenOk returns a tuple with the ProviderToken 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 (OntimeEldCredsOutput) MarshalJSON

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

func (*OntimeEldCredsOutput) SetApiKey

func (o *OntimeEldCredsOutput) SetApiKey(v interface{})

SetApiKey sets field value

func (*OntimeEldCredsOutput) SetDotNumber

func (o *OntimeEldCredsOutput) SetDotNumber(v string)

SetDotNumber sets field value

func (*OntimeEldCredsOutput) SetProviderToken

func (o *OntimeEldCredsOutput) SetProviderToken(v interface{})

SetProviderToken sets field value

func (OntimeEldCredsOutput) ToMap

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

func (*OntimeEldCredsOutput) UnmarshalJSON

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

type PrivateKeyCredsInput

type PrivateKeyCredsInput struct {
	PrivateKey  string         `json:"private_key"`
	ConsumerKey string         `json:"consumer_key"`
	Username    string         `json:"username"`
	Url         NullableString `json:"url,omitempty"`
	TokenUrl    NullableString `json:"token_url,omitempty"`
}

PrivateKeyCredsInput Private Key Connection model

func NewPrivateKeyCredsInput

func NewPrivateKeyCredsInput(privateKey string, consumerKey string, username string) *PrivateKeyCredsInput

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

func NewPrivateKeyCredsInputWithDefaults() *PrivateKeyCredsInput

NewPrivateKeyCredsInputWithDefaults instantiates a new PrivateKeyCredsInput object This 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 (*PrivateKeyCredsInput) GetConsumerKey

func (o *PrivateKeyCredsInput) GetConsumerKey() string

GetConsumerKey returns the ConsumerKey field value

func (*PrivateKeyCredsInput) GetConsumerKeyOk

func (o *PrivateKeyCredsInput) GetConsumerKeyOk() (*string, bool)

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

func (*PrivateKeyCredsInput) GetPrivateKey

func (o *PrivateKeyCredsInput) GetPrivateKey() string

GetPrivateKey returns the PrivateKey field value

func (*PrivateKeyCredsInput) GetPrivateKeyOk

func (o *PrivateKeyCredsInput) GetPrivateKeyOk() (*string, bool)

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

func (*PrivateKeyCredsInput) GetTokenUrl

func (o *PrivateKeyCredsInput) GetTokenUrl() string

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

func (*PrivateKeyCredsInput) GetTokenUrlOk

func (o *PrivateKeyCredsInput) GetTokenUrlOk() (*string, bool)

GetTokenUrlOk returns a tuple with the TokenUrl 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 (*PrivateKeyCredsInput) GetUrl

func (o *PrivateKeyCredsInput) GetUrl() string

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

func (*PrivateKeyCredsInput) GetUrlOk

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

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

func (*PrivateKeyCredsInput) GetUsername

func (o *PrivateKeyCredsInput) GetUsername() string

GetUsername returns the Username field value

func (*PrivateKeyCredsInput) GetUsernameOk

func (o *PrivateKeyCredsInput) GetUsernameOk() (*string, bool)

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

func (*PrivateKeyCredsInput) HasTokenUrl

func (o *PrivateKeyCredsInput) HasTokenUrl() bool

HasTokenUrl returns a boolean if a field has been set.

func (*PrivateKeyCredsInput) HasUrl

func (o *PrivateKeyCredsInput) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (PrivateKeyCredsInput) MarshalJSON

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

func (*PrivateKeyCredsInput) SetConsumerKey

func (o *PrivateKeyCredsInput) SetConsumerKey(v string)

SetConsumerKey sets field value

func (*PrivateKeyCredsInput) SetPrivateKey

func (o *PrivateKeyCredsInput) SetPrivateKey(v string)

SetPrivateKey sets field value

func (*PrivateKeyCredsInput) SetTokenUrl

func (o *PrivateKeyCredsInput) SetTokenUrl(v string)

SetTokenUrl gets a reference to the given NullableString and assigns it to the TokenUrl field.

func (*PrivateKeyCredsInput) SetTokenUrlNil

func (o *PrivateKeyCredsInput) SetTokenUrlNil()

SetTokenUrlNil sets the value for TokenUrl to be an explicit nil

func (*PrivateKeyCredsInput) SetUrl

func (o *PrivateKeyCredsInput) SetUrl(v string)

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

func (*PrivateKeyCredsInput) SetUrlNil

func (o *PrivateKeyCredsInput) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*PrivateKeyCredsInput) SetUsername

func (o *PrivateKeyCredsInput) SetUsername(v string)

SetUsername sets field value

func (PrivateKeyCredsInput) ToMap

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

func (*PrivateKeyCredsInput) UnmarshalJSON

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

func (*PrivateKeyCredsInput) UnsetTokenUrl

func (o *PrivateKeyCredsInput) UnsetTokenUrl()

UnsetTokenUrl ensures that no value is present for TokenUrl, not even an explicit nil

func (*PrivateKeyCredsInput) UnsetUrl

func (o *PrivateKeyCredsInput) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type PrivateKeyCredsOutput

type PrivateKeyCredsOutput struct {
	PrivateKey  interface{}    `json:"private_key"`
	ConsumerKey interface{}    `json:"consumer_key"`
	Username    interface{}    `json:"username"`
	Url         NullableString `json:"url,omitempty"`
	TokenUrl    NullableString `json:"token_url,omitempty"`
}

PrivateKeyCredsOutput Private Key Connection model

func NewPrivateKeyCredsOutput

func NewPrivateKeyCredsOutput(privateKey interface{}, consumerKey interface{}, username interface{}) *PrivateKeyCredsOutput

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

func NewPrivateKeyCredsOutputWithDefaults() *PrivateKeyCredsOutput

NewPrivateKeyCredsOutputWithDefaults instantiates a new PrivateKeyCredsOutput object This 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 (*PrivateKeyCredsOutput) GetConsumerKey

func (o *PrivateKeyCredsOutput) GetConsumerKey() interface{}

GetConsumerKey returns the ConsumerKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*PrivateKeyCredsOutput) GetConsumerKeyOk

func (o *PrivateKeyCredsOutput) GetConsumerKeyOk() (*interface{}, bool)

GetConsumerKeyOk returns a tuple with the ConsumerKey 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 (*PrivateKeyCredsOutput) GetPrivateKey

func (o *PrivateKeyCredsOutput) GetPrivateKey() interface{}

GetPrivateKey returns the PrivateKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*PrivateKeyCredsOutput) GetPrivateKeyOk

func (o *PrivateKeyCredsOutput) GetPrivateKeyOk() (*interface{}, bool)

GetPrivateKeyOk returns a tuple with the PrivateKey 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 (*PrivateKeyCredsOutput) GetTokenUrl

func (o *PrivateKeyCredsOutput) GetTokenUrl() string

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

func (*PrivateKeyCredsOutput) GetTokenUrlOk

func (o *PrivateKeyCredsOutput) GetTokenUrlOk() (*string, bool)

GetTokenUrlOk returns a tuple with the TokenUrl 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 (*PrivateKeyCredsOutput) GetUrl

func (o *PrivateKeyCredsOutput) GetUrl() string

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

func (*PrivateKeyCredsOutput) GetUrlOk

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

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

func (*PrivateKeyCredsOutput) GetUsername

func (o *PrivateKeyCredsOutput) GetUsername() interface{}

GetUsername returns the Username field value If the value is explicit nil, the zero value for interface{} will be returned

func (*PrivateKeyCredsOutput) GetUsernameOk

func (o *PrivateKeyCredsOutput) GetUsernameOk() (*interface{}, bool)

GetUsernameOk returns a tuple with the Username 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 (*PrivateKeyCredsOutput) HasTokenUrl

func (o *PrivateKeyCredsOutput) HasTokenUrl() bool

HasTokenUrl returns a boolean if a field has been set.

func (*PrivateKeyCredsOutput) HasUrl

func (o *PrivateKeyCredsOutput) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (PrivateKeyCredsOutput) MarshalJSON

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

func (*PrivateKeyCredsOutput) SetConsumerKey

func (o *PrivateKeyCredsOutput) SetConsumerKey(v interface{})

SetConsumerKey sets field value

func (*PrivateKeyCredsOutput) SetPrivateKey

func (o *PrivateKeyCredsOutput) SetPrivateKey(v interface{})

SetPrivateKey sets field value

func (*PrivateKeyCredsOutput) SetTokenUrl

func (o *PrivateKeyCredsOutput) SetTokenUrl(v string)

SetTokenUrl gets a reference to the given NullableString and assigns it to the TokenUrl field.

func (*PrivateKeyCredsOutput) SetTokenUrlNil

func (o *PrivateKeyCredsOutput) SetTokenUrlNil()

SetTokenUrlNil sets the value for TokenUrl to be an explicit nil

func (*PrivateKeyCredsOutput) SetUrl

func (o *PrivateKeyCredsOutput) SetUrl(v string)

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

func (*PrivateKeyCredsOutput) SetUrlNil

func (o *PrivateKeyCredsOutput) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*PrivateKeyCredsOutput) SetUsername

func (o *PrivateKeyCredsOutput) SetUsername(v interface{})

SetUsername sets field value

func (PrivateKeyCredsOutput) ToMap

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

func (*PrivateKeyCredsOutput) UnmarshalJSON

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

func (*PrivateKeyCredsOutput) UnsetTokenUrl

func (o *PrivateKeyCredsOutput) UnsetTokenUrl()

UnsetTokenUrl ensures that no value is present for TokenUrl, not even an explicit nil

func (*PrivateKeyCredsOutput) UnsetUrl

func (o *PrivateKeyCredsOutput) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type ResourceEnum

type ResourceEnum string

ResourceEnum Enum for resources

const (
	RESOURCEENUM_ASSET               ResourceEnum = "asset"
	RESOURCEENUM_DRIVER_EVENT_LOG    ResourceEnum = "driver_event_log"
	RESOURCEENUM_DRIVER_SAFETY_EVENT ResourceEnum = "driver_safety_event"
	RESOURCEENUM_DVIR_LOG            ResourceEnum = "dvir_log"
	RESOURCEENUM_DVIR_LOG_DEFECT     ResourceEnum = "dvir_log_defect"
	RESOURCEENUM_HOS_AVAILABILITY    ResourceEnum = "hos_availability"
	RESOURCEENUM_HOS_DAILY_SNAPSHOT  ResourceEnum = "hos_daily_snapshot"
	RESOURCEENUM_HOS_EVENT           ResourceEnum = "hos_event"
	RESOURCEENUM_HOS_LOG             ResourceEnum = "hos_log"
	RESOURCEENUM_HOS_LOG_ANNOTATION  ResourceEnum = "hos_log_annotation"
	RESOURCEENUM_HOS_LOG_ATTACHMENT  ResourceEnum = "hos_log_attachment"
	RESOURCEENUM_HOS_VIOLATION       ResourceEnum = "hos_violation"
	RESOURCEENUM_IFTA_SUMMARY        ResourceEnum = "ifta_summary"
	RESOURCEENUM_LOCATION_SEGMENT    ResourceEnum = "location_segment"
	RESOURCEENUM_USER                ResourceEnum = "user"
	RESOURCEENUM_VEHICLE             ResourceEnum = "vehicle"
	RESOURCEENUM_VEHICLE_LOCATION    ResourceEnum = "vehicle_location"
	RESOURCEENUM_VEHICLE_SENSOR      ResourceEnum = "vehicle_sensor"
	RESOURCEENUM_TRAILER             ResourceEnum = "trailer"
)

List of ResourceEnum

func NewResourceEnumFromValue

func NewResourceEnumFromValue(v string) (*ResourceEnum, error)

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

func (ResourceEnum) IsValid

func (v ResourceEnum) IsValid() bool

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

func (ResourceEnum) Ptr

func (v ResourceEnum) Ptr() *ResourceEnum

Ptr returns reference to ResourceEnum value

func (*ResourceEnum) UnmarshalJSON

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

type RetryAfterDetail

type RetryAfterDetail struct {
	RetryAfterSeconds int32  `json:"retry_after_seconds"`
	Message           string `json:"message"`
}

RetryAfterDetail struct for RetryAfterDetail

func NewRetryAfterDetail

func NewRetryAfterDetail(retryAfterSeconds int32, message string) *RetryAfterDetail

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

func NewRetryAfterDetailWithDefaults() *RetryAfterDetail

NewRetryAfterDetailWithDefaults instantiates a new RetryAfterDetail object This 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 (*RetryAfterDetail) GetMessage

func (o *RetryAfterDetail) GetMessage() string

GetMessage returns the Message field value

func (*RetryAfterDetail) GetMessageOk

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

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

func (*RetryAfterDetail) GetRetryAfterSeconds

func (o *RetryAfterDetail) GetRetryAfterSeconds() int32

GetRetryAfterSeconds returns the RetryAfterSeconds field value

func (*RetryAfterDetail) GetRetryAfterSecondsOk

func (o *RetryAfterDetail) GetRetryAfterSecondsOk() (*int32, bool)

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

func (RetryAfterDetail) MarshalJSON

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

func (*RetryAfterDetail) SetMessage

func (o *RetryAfterDetail) SetMessage(v string)

SetMessage sets field value

func (*RetryAfterDetail) SetRetryAfterSeconds

func (o *RetryAfterDetail) SetRetryAfterSeconds(v int32)

SetRetryAfterSeconds sets field value

func (RetryAfterDetail) ToMap

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

func (*RetryAfterDetail) UnmarshalJSON

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

type S3CredsInput

type S3CredsInput struct {
	AccessKey  string `json:"access_key"`
	SecretKey  string `json:"secret_key"`
	BucketName string `json:"bucket_name"`
	Region     string `json:"region"`
}

S3CredsInput S3 Connection model

func NewS3CredsInput

func NewS3CredsInput(accessKey string, secretKey string, bucketName string, region string) *S3CredsInput

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

func NewS3CredsInputWithDefaults() *S3CredsInput

NewS3CredsInputWithDefaults instantiates a new S3CredsInput object This 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 (*S3CredsInput) GetAccessKey

func (o *S3CredsInput) GetAccessKey() string

GetAccessKey returns the AccessKey field value

func (*S3CredsInput) GetAccessKeyOk

func (o *S3CredsInput) GetAccessKeyOk() (*string, bool)

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

func (*S3CredsInput) GetBucketName

func (o *S3CredsInput) GetBucketName() string

GetBucketName returns the BucketName field value

func (*S3CredsInput) GetBucketNameOk

func (o *S3CredsInput) GetBucketNameOk() (*string, bool)

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

func (*S3CredsInput) GetRegion

func (o *S3CredsInput) GetRegion() string

GetRegion returns the Region field value

func (*S3CredsInput) GetRegionOk

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

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

func (*S3CredsInput) GetSecretKey

func (o *S3CredsInput) GetSecretKey() string

GetSecretKey returns the SecretKey field value

func (*S3CredsInput) GetSecretKeyOk

func (o *S3CredsInput) GetSecretKeyOk() (*string, bool)

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

func (S3CredsInput) MarshalJSON

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

func (*S3CredsInput) SetAccessKey

func (o *S3CredsInput) SetAccessKey(v string)

SetAccessKey sets field value

func (*S3CredsInput) SetBucketName

func (o *S3CredsInput) SetBucketName(v string)

SetBucketName sets field value

func (*S3CredsInput) SetRegion

func (o *S3CredsInput) SetRegion(v string)

SetRegion sets field value

func (*S3CredsInput) SetSecretKey

func (o *S3CredsInput) SetSecretKey(v string)

SetSecretKey sets field value

func (S3CredsInput) ToMap

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

func (*S3CredsInput) UnmarshalJSON

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

type S3CredsOutput

type S3CredsOutput struct {
	AccessKey  string      `json:"access_key"`
	SecretKey  interface{} `json:"secret_key"`
	BucketName string      `json:"bucket_name"`
	Region     string      `json:"region"`
}

S3CredsOutput S3 Connection model

func NewS3CredsOutput

func NewS3CredsOutput(accessKey string, secretKey interface{}, bucketName string, region string) *S3CredsOutput

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

func NewS3CredsOutputWithDefaults() *S3CredsOutput

NewS3CredsOutputWithDefaults instantiates a new S3CredsOutput object This 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 (*S3CredsOutput) GetAccessKey

func (o *S3CredsOutput) GetAccessKey() string

GetAccessKey returns the AccessKey field value

func (*S3CredsOutput) GetAccessKeyOk

func (o *S3CredsOutput) GetAccessKeyOk() (*string, bool)

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

func (*S3CredsOutput) GetBucketName

func (o *S3CredsOutput) GetBucketName() string

GetBucketName returns the BucketName field value

func (*S3CredsOutput) GetBucketNameOk

func (o *S3CredsOutput) GetBucketNameOk() (*string, bool)

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

func (*S3CredsOutput) GetRegion

func (o *S3CredsOutput) GetRegion() string

GetRegion returns the Region field value

func (*S3CredsOutput) GetRegionOk

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

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

func (*S3CredsOutput) GetSecretKey

func (o *S3CredsOutput) GetSecretKey() interface{}

GetSecretKey returns the SecretKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*S3CredsOutput) GetSecretKeyOk

func (o *S3CredsOutput) GetSecretKeyOk() (*interface{}, bool)

GetSecretKeyOk returns a tuple with the SecretKey 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 (S3CredsOutput) MarshalJSON

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

func (*S3CredsOutput) SetAccessKey

func (o *S3CredsOutput) SetAccessKey(v string)

SetAccessKey sets field value

func (*S3CredsOutput) SetBucketName

func (o *S3CredsOutput) SetBucketName(v string)

SetBucketName sets field value

func (*S3CredsOutput) SetRegion

func (o *S3CredsOutput) SetRegion(v string)

SetRegion sets field value

func (*S3CredsOutput) SetSecretKey

func (o *S3CredsOutput) SetSecretKey(v interface{})

SetSecretKey sets field value

func (S3CredsOutput) ToMap

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

func (*S3CredsOutput) UnmarshalJSON

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

type SamsaraCredsInput

type SamsaraCredsInput struct {
	ClientId     string `json:"client_id"`
	ClientSecret string `json:"client_secret"`
	AuthCode     string `json:"auth_code"`
}

SamsaraCredsInput Samsara Connection model

func NewSamsaraCredsInput

func NewSamsaraCredsInput(clientId string, clientSecret string, authCode string) *SamsaraCredsInput

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

func NewSamsaraCredsInputWithDefaults() *SamsaraCredsInput

NewSamsaraCredsInputWithDefaults instantiates a new SamsaraCredsInput object This 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 (*SamsaraCredsInput) GetAuthCode

func (o *SamsaraCredsInput) GetAuthCode() string

GetAuthCode returns the AuthCode field value

func (*SamsaraCredsInput) GetAuthCodeOk

func (o *SamsaraCredsInput) GetAuthCodeOk() (*string, bool)

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

func (*SamsaraCredsInput) GetClientId

func (o *SamsaraCredsInput) GetClientId() string

GetClientId returns the ClientId field value

func (*SamsaraCredsInput) GetClientIdOk

func (o *SamsaraCredsInput) GetClientIdOk() (*string, bool)

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

func (*SamsaraCredsInput) GetClientSecret

func (o *SamsaraCredsInput) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*SamsaraCredsInput) GetClientSecretOk

func (o *SamsaraCredsInput) GetClientSecretOk() (*string, bool)

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

func (SamsaraCredsInput) MarshalJSON

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

func (*SamsaraCredsInput) SetAuthCode

func (o *SamsaraCredsInput) SetAuthCode(v string)

SetAuthCode sets field value

func (*SamsaraCredsInput) SetClientId

func (o *SamsaraCredsInput) SetClientId(v string)

SetClientId sets field value

func (*SamsaraCredsInput) SetClientSecret

func (o *SamsaraCredsInput) SetClientSecret(v string)

SetClientSecret sets field value

func (SamsaraCredsInput) ToMap

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

func (*SamsaraCredsInput) UnmarshalJSON

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

type SamsaraCredsOutput

type SamsaraCredsOutput struct {
	ClientId     string      `json:"client_id"`
	ClientSecret interface{} `json:"client_secret"`
	AuthCode     interface{} `json:"auth_code"`
}

SamsaraCredsOutput Samsara Connection model

func NewSamsaraCredsOutput

func NewSamsaraCredsOutput(clientId string, clientSecret interface{}, authCode interface{}) *SamsaraCredsOutput

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

func NewSamsaraCredsOutputWithDefaults() *SamsaraCredsOutput

NewSamsaraCredsOutputWithDefaults instantiates a new SamsaraCredsOutput object This 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 (*SamsaraCredsOutput) GetAuthCode

func (o *SamsaraCredsOutput) GetAuthCode() interface{}

GetAuthCode returns the AuthCode field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SamsaraCredsOutput) GetAuthCodeOk

func (o *SamsaraCredsOutput) GetAuthCodeOk() (*interface{}, bool)

GetAuthCodeOk returns a tuple with the AuthCode 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 (*SamsaraCredsOutput) GetClientId

func (o *SamsaraCredsOutput) GetClientId() string

GetClientId returns the ClientId field value

func (*SamsaraCredsOutput) GetClientIdOk

func (o *SamsaraCredsOutput) GetClientIdOk() (*string, bool)

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

func (*SamsaraCredsOutput) GetClientSecret

func (o *SamsaraCredsOutput) GetClientSecret() interface{}

GetClientSecret returns the ClientSecret field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SamsaraCredsOutput) GetClientSecretOk

func (o *SamsaraCredsOutput) GetClientSecretOk() (*interface{}, bool)

GetClientSecretOk returns a tuple with the ClientSecret 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 (SamsaraCredsOutput) MarshalJSON

func (o SamsaraCredsOutput) MarshalJSON() ([]byte, error)

func (*SamsaraCredsOutput) SetAuthCode

func (o *SamsaraCredsOutput) SetAuthCode(v interface{})

SetAuthCode sets field value

func (*SamsaraCredsOutput) SetClientId

func (o *SamsaraCredsOutput) SetClientId(v string)

SetClientId sets field value

func (*SamsaraCredsOutput) SetClientSecret

func (o *SamsaraCredsOutput) SetClientSecret(v interface{})

SetClientSecret sets field value

func (SamsaraCredsOutput) ToMap

func (o SamsaraCredsOutput) ToMap() (map[string]interface{}, error)

func (*SamsaraCredsOutput) UnmarshalJSON

func (o *SamsaraCredsOutput) UnmarshalJSON(data []byte) (err error)

type ScheduleCreate

type ScheduleCreate struct {
	// The type of resource to fetch on this schedule (e.g., VEHICLE, DRIVER, HOS, IFTA).
	Resource ResourceEnum `json:"resource"`
	// The interval between scheduled executions in seconds. Defaults to 10 minutes (600 seconds).
	ExecutionIntervalSeconds *int32 `json:"execution_interval_seconds,omitempty"`
	// The number of consecutive errors allowed before the schedule is automatically set to INACTIVE. Defaults to 15.
	ConsecutiveErrorThreshold *int32 `json:"consecutive_error_threshold,omitempty"`
	// The maximum number of concurrent executions allowed for this schedule. Defaults to 1.
	MaxConcurrentExecutions *int32 `json:"max_concurrent_executions,omitempty"`
	// The initial status of the schedule. Defaults to ACTIVE.
	Status *StatusEnum `json:"status,omitempty"`
}

ScheduleCreate API Model for creating a schedule

func NewScheduleCreate

func NewScheduleCreate(resource ResourceEnum) *ScheduleCreate

NewScheduleCreate instantiates a new ScheduleCreate object This constructor will assign default values to properties that have it defined, 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 NewScheduleCreateWithDefaults

func NewScheduleCreateWithDefaults() *ScheduleCreate

NewScheduleCreateWithDefaults instantiates a new ScheduleCreate object This 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 (*ScheduleCreate) GetConsecutiveErrorThreshold

func (o *ScheduleCreate) GetConsecutiveErrorThreshold() int32

GetConsecutiveErrorThreshold returns the ConsecutiveErrorThreshold field value if set, zero value otherwise.

func (*ScheduleCreate) GetConsecutiveErrorThresholdOk

func (o *ScheduleCreate) GetConsecutiveErrorThresholdOk() (*int32, bool)

GetConsecutiveErrorThresholdOk returns a tuple with the ConsecutiveErrorThreshold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduleCreate) GetExecutionIntervalSeconds

func (o *ScheduleCreate) GetExecutionIntervalSeconds() int32

GetExecutionIntervalSeconds returns the ExecutionIntervalSeconds field value if set, zero value otherwise.

func (*ScheduleCreate) GetExecutionIntervalSecondsOk

func (o *ScheduleCreate) GetExecutionIntervalSecondsOk() (*int32, bool)

GetExecutionIntervalSecondsOk returns a tuple with the ExecutionIntervalSeconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduleCreate) GetMaxConcurrentExecutions

func (o *ScheduleCreate) GetMaxConcurrentExecutions() int32

GetMaxConcurrentExecutions returns the MaxConcurrentExecutions field value if set, zero value otherwise.

func (*ScheduleCreate) GetMaxConcurrentExecutionsOk

func (o *ScheduleCreate) GetMaxConcurrentExecutionsOk() (*int32, bool)

GetMaxConcurrentExecutionsOk returns a tuple with the MaxConcurrentExecutions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduleCreate) GetResource

func (o *ScheduleCreate) GetResource() ResourceEnum

GetResource returns the Resource field value

func (*ScheduleCreate) GetResourceOk

func (o *ScheduleCreate) GetResourceOk() (*ResourceEnum, bool)

GetResourceOk returns a tuple with the Resource field value and a boolean to check if the value has been set.

func (*ScheduleCreate) GetStatus

func (o *ScheduleCreate) GetStatus() StatusEnum

GetStatus returns the Status field value if set, zero value otherwise.

func (*ScheduleCreate) GetStatusOk

func (o *ScheduleCreate) GetStatusOk() (*StatusEnum, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduleCreate) HasConsecutiveErrorThreshold

func (o *ScheduleCreate) HasConsecutiveErrorThreshold() bool

HasConsecutiveErrorThreshold returns a boolean if a field has been set.

func (*ScheduleCreate) HasExecutionIntervalSeconds

func (o *ScheduleCreate) HasExecutionIntervalSeconds() bool

HasExecutionIntervalSeconds returns a boolean if a field has been set.

func (*ScheduleCreate) HasMaxConcurrentExecutions

func (o *ScheduleCreate) HasMaxConcurrentExecutions() bool

HasMaxConcurrentExecutions returns a boolean if a field has been set.

func (*ScheduleCreate) HasStatus

func (o *ScheduleCreate) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ScheduleCreate) MarshalJSON

func (o ScheduleCreate) MarshalJSON() ([]byte, error)

func (*ScheduleCreate) SetConsecutiveErrorThreshold

func (o *ScheduleCreate) SetConsecutiveErrorThreshold(v int32)

SetConsecutiveErrorThreshold gets a reference to the given int32 and assigns it to the ConsecutiveErrorThreshold field.

func (*ScheduleCreate) SetExecutionIntervalSeconds

func (o *ScheduleCreate) SetExecutionIntervalSeconds(v int32)

SetExecutionIntervalSeconds gets a reference to the given int32 and assigns it to the ExecutionIntervalSeconds field.

func (*ScheduleCreate) SetMaxConcurrentExecutions

func (o *ScheduleCreate) SetMaxConcurrentExecutions(v int32)

SetMaxConcurrentExecutions gets a reference to the given int32 and assigns it to the MaxConcurrentExecutions field.

func (*ScheduleCreate) SetResource

func (o *ScheduleCreate) SetResource(v ResourceEnum)

SetResource sets field value

func (*ScheduleCreate) SetStatus

func (o *ScheduleCreate) SetStatus(v StatusEnum)

SetStatus gets a reference to the given StatusEnum and assigns it to the Status field.

func (ScheduleCreate) ToMap

func (o ScheduleCreate) ToMap() (map[string]interface{}, error)

func (*ScheduleCreate) UnmarshalJSON

func (o *ScheduleCreate) UnmarshalJSON(data []byte) (err error)

type ScheduleRead

type ScheduleRead struct {
	// Unique identifier for the schedule.
	Id string `json:"id"`
	// The ID of the connection that this schedule belongs to.
	ConnectionId string `json:"connection_id"`
	// The type of resource being fetched on this schedule (e.g., VEHICLE, DRIVER, HOS, IFTA).
	Resource ResourceEnum `json:"resource"`
	// The interval between scheduled executions in seconds.
	ExecutionIntervalSeconds int32 `json:"execution_interval_seconds"`
	// The current status of the schedule (ACTIVE, INACTIVE).
	Status StatusEnum `json:"status"`
	// The number of consecutive errors that have occurred for this schedule.
	ConsecutiveErrorCount int32 `json:"consecutive_error_count"`
	// The number of consecutive errors allowed before the schedule is automatically set to INACTIVE.
	ConsecutiveErrorThreshold int32 `json:"consecutive_error_threshold"`
	// The maximum number of concurrent executions allowed for this schedule.
	MaxConcurrentExecutions int32 `json:"max_concurrent_executions"`
}

ScheduleRead API Model for reading a schedule

func NewScheduleRead

func NewScheduleRead(id string, connectionId string, resource ResourceEnum, executionIntervalSeconds int32, status StatusEnum, consecutiveErrorCount int32, consecutiveErrorThreshold int32, maxConcurrentExecutions int32) *ScheduleRead

NewScheduleRead instantiates a new ScheduleRead object This constructor will assign default values to properties that have it defined, 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 NewScheduleReadWithDefaults

func NewScheduleReadWithDefaults() *ScheduleRead

NewScheduleReadWithDefaults instantiates a new ScheduleRead object This 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 (*ScheduleRead) GetConnectionId

func (o *ScheduleRead) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*ScheduleRead) GetConnectionIdOk

func (o *ScheduleRead) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value and a boolean to check if the value has been set.

func (*ScheduleRead) GetConsecutiveErrorCount

func (o *ScheduleRead) GetConsecutiveErrorCount() int32

GetConsecutiveErrorCount returns the ConsecutiveErrorCount field value

func (*ScheduleRead) GetConsecutiveErrorCountOk

func (o *ScheduleRead) GetConsecutiveErrorCountOk() (*int32, bool)

GetConsecutiveErrorCountOk returns a tuple with the ConsecutiveErrorCount field value and a boolean to check if the value has been set.

func (*ScheduleRead) GetConsecutiveErrorThreshold

func (o *ScheduleRead) GetConsecutiveErrorThreshold() int32

GetConsecutiveErrorThreshold returns the ConsecutiveErrorThreshold field value

func (*ScheduleRead) GetConsecutiveErrorThresholdOk

func (o *ScheduleRead) GetConsecutiveErrorThresholdOk() (*int32, bool)

GetConsecutiveErrorThresholdOk returns a tuple with the ConsecutiveErrorThreshold field value and a boolean to check if the value has been set.

func (*ScheduleRead) GetExecutionIntervalSeconds

func (o *ScheduleRead) GetExecutionIntervalSeconds() int32

GetExecutionIntervalSeconds returns the ExecutionIntervalSeconds field value

func (*ScheduleRead) GetExecutionIntervalSecondsOk

func (o *ScheduleRead) GetExecutionIntervalSecondsOk() (*int32, bool)

GetExecutionIntervalSecondsOk returns a tuple with the ExecutionIntervalSeconds field value and a boolean to check if the value has been set.

func (*ScheduleRead) GetId

func (o *ScheduleRead) GetId() string

GetId returns the Id field value

func (*ScheduleRead) GetIdOk

func (o *ScheduleRead) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ScheduleRead) GetMaxConcurrentExecutions

func (o *ScheduleRead) GetMaxConcurrentExecutions() int32

GetMaxConcurrentExecutions returns the MaxConcurrentExecutions field value

func (*ScheduleRead) GetMaxConcurrentExecutionsOk

func (o *ScheduleRead) GetMaxConcurrentExecutionsOk() (*int32, bool)

GetMaxConcurrentExecutionsOk returns a tuple with the MaxConcurrentExecutions field value and a boolean to check if the value has been set.

func (*ScheduleRead) GetResource

func (o *ScheduleRead) GetResource() ResourceEnum

GetResource returns the Resource field value

func (*ScheduleRead) GetResourceOk

func (o *ScheduleRead) GetResourceOk() (*ResourceEnum, bool)

GetResourceOk returns a tuple with the Resource field value and a boolean to check if the value has been set.

func (*ScheduleRead) GetStatus

func (o *ScheduleRead) GetStatus() StatusEnum

GetStatus returns the Status field value

func (*ScheduleRead) GetStatusOk

func (o *ScheduleRead) GetStatusOk() (*StatusEnum, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (ScheduleRead) MarshalJSON

func (o ScheduleRead) MarshalJSON() ([]byte, error)

func (*ScheduleRead) SetConnectionId

func (o *ScheduleRead) SetConnectionId(v string)

SetConnectionId sets field value

func (*ScheduleRead) SetConsecutiveErrorCount

func (o *ScheduleRead) SetConsecutiveErrorCount(v int32)

SetConsecutiveErrorCount sets field value

func (*ScheduleRead) SetConsecutiveErrorThreshold

func (o *ScheduleRead) SetConsecutiveErrorThreshold(v int32)

SetConsecutiveErrorThreshold sets field value

func (*ScheduleRead) SetExecutionIntervalSeconds

func (o *ScheduleRead) SetExecutionIntervalSeconds(v int32)

SetExecutionIntervalSeconds sets field value

func (*ScheduleRead) SetId

func (o *ScheduleRead) SetId(v string)

SetId sets field value

func (*ScheduleRead) SetMaxConcurrentExecutions

func (o *ScheduleRead) SetMaxConcurrentExecutions(v int32)

SetMaxConcurrentExecutions sets field value

func (*ScheduleRead) SetResource

func (o *ScheduleRead) SetResource(v ResourceEnum)

SetResource sets field value

func (*ScheduleRead) SetStatus

func (o *ScheduleRead) SetStatus(v StatusEnum)

SetStatus sets field value

func (ScheduleRead) ToMap

func (o ScheduleRead) ToMap() (map[string]interface{}, error)

func (*ScheduleRead) UnmarshalJSON

func (o *ScheduleRead) UnmarshalJSON(data []byte) (err error)

type ScheduleUpdate

type ScheduleUpdate struct {
	Status                    NullableStatusEnum `json:"status,omitempty"`
	ExecutionIntervalSeconds  NullableInt32      `json:"execution_interval_seconds,omitempty"`
	ConsecutiveErrorThreshold NullableInt32      `json:"consecutive_error_threshold,omitempty"`
	ConsecutiveErrorCount     NullableInt32      `json:"consecutive_error_count,omitempty"`
	MaxConcurrentExecutions   NullableInt32      `json:"max_concurrent_executions,omitempty"`
	NextExecutionAt           NullableTime       `json:"next_execution_at,omitempty"`
}

ScheduleUpdate API Model for updating a schedule

func NewScheduleUpdate

func NewScheduleUpdate() *ScheduleUpdate

NewScheduleUpdate instantiates a new ScheduleUpdate object This constructor will assign default values to properties that have it defined, 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 NewScheduleUpdateWithDefaults

func NewScheduleUpdateWithDefaults() *ScheduleUpdate

NewScheduleUpdateWithDefaults instantiates a new ScheduleUpdate object This 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 (*ScheduleUpdate) GetConsecutiveErrorCount

func (o *ScheduleUpdate) GetConsecutiveErrorCount() int32

GetConsecutiveErrorCount returns the ConsecutiveErrorCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScheduleUpdate) GetConsecutiveErrorCountOk

func (o *ScheduleUpdate) GetConsecutiveErrorCountOk() (*int32, bool)

GetConsecutiveErrorCountOk returns a tuple with the ConsecutiveErrorCount 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 (*ScheduleUpdate) GetConsecutiveErrorThreshold

func (o *ScheduleUpdate) GetConsecutiveErrorThreshold() int32

GetConsecutiveErrorThreshold returns the ConsecutiveErrorThreshold field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScheduleUpdate) GetConsecutiveErrorThresholdOk

func (o *ScheduleUpdate) GetConsecutiveErrorThresholdOk() (*int32, bool)

GetConsecutiveErrorThresholdOk returns a tuple with the ConsecutiveErrorThreshold 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 (*ScheduleUpdate) GetExecutionIntervalSeconds

func (o *ScheduleUpdate) GetExecutionIntervalSeconds() int32

GetExecutionIntervalSeconds returns the ExecutionIntervalSeconds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScheduleUpdate) GetExecutionIntervalSecondsOk

func (o *ScheduleUpdate) GetExecutionIntervalSecondsOk() (*int32, bool)

GetExecutionIntervalSecondsOk returns a tuple with the ExecutionIntervalSeconds 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 (*ScheduleUpdate) GetMaxConcurrentExecutions

func (o *ScheduleUpdate) GetMaxConcurrentExecutions() int32

GetMaxConcurrentExecutions returns the MaxConcurrentExecutions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScheduleUpdate) GetMaxConcurrentExecutionsOk

func (o *ScheduleUpdate) GetMaxConcurrentExecutionsOk() (*int32, bool)

GetMaxConcurrentExecutionsOk returns a tuple with the MaxConcurrentExecutions 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 (*ScheduleUpdate) GetNextExecutionAt

func (o *ScheduleUpdate) GetNextExecutionAt() time.Time

GetNextExecutionAt returns the NextExecutionAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScheduleUpdate) GetNextExecutionAtOk

func (o *ScheduleUpdate) GetNextExecutionAtOk() (*time.Time, bool)

GetNextExecutionAtOk returns a tuple with the NextExecutionAt 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 (*ScheduleUpdate) GetStatus

func (o *ScheduleUpdate) GetStatus() StatusEnum

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScheduleUpdate) GetStatusOk

func (o *ScheduleUpdate) GetStatusOk() (*StatusEnum, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScheduleUpdate) HasConsecutiveErrorCount

func (o *ScheduleUpdate) HasConsecutiveErrorCount() bool

HasConsecutiveErrorCount returns a boolean if a field has been set.

func (*ScheduleUpdate) HasConsecutiveErrorThreshold

func (o *ScheduleUpdate) HasConsecutiveErrorThreshold() bool

HasConsecutiveErrorThreshold returns a boolean if a field has been set.

func (*ScheduleUpdate) HasExecutionIntervalSeconds

func (o *ScheduleUpdate) HasExecutionIntervalSeconds() bool

HasExecutionIntervalSeconds returns a boolean if a field has been set.

func (*ScheduleUpdate) HasMaxConcurrentExecutions

func (o *ScheduleUpdate) HasMaxConcurrentExecutions() bool

HasMaxConcurrentExecutions returns a boolean if a field has been set.

func (*ScheduleUpdate) HasNextExecutionAt

func (o *ScheduleUpdate) HasNextExecutionAt() bool

HasNextExecutionAt returns a boolean if a field has been set.

func (*ScheduleUpdate) HasStatus

func (o *ScheduleUpdate) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ScheduleUpdate) MarshalJSON

func (o ScheduleUpdate) MarshalJSON() ([]byte, error)

func (*ScheduleUpdate) SetConsecutiveErrorCount

func (o *ScheduleUpdate) SetConsecutiveErrorCount(v int32)

SetConsecutiveErrorCount gets a reference to the given NullableInt32 and assigns it to the ConsecutiveErrorCount field.

func (*ScheduleUpdate) SetConsecutiveErrorCountNil

func (o *ScheduleUpdate) SetConsecutiveErrorCountNil()

SetConsecutiveErrorCountNil sets the value for ConsecutiveErrorCount to be an explicit nil

func (*ScheduleUpdate) SetConsecutiveErrorThreshold

func (o *ScheduleUpdate) SetConsecutiveErrorThreshold(v int32)

SetConsecutiveErrorThreshold gets a reference to the given NullableInt32 and assigns it to the ConsecutiveErrorThreshold field.

func (*ScheduleUpdate) SetConsecutiveErrorThresholdNil

func (o *ScheduleUpdate) SetConsecutiveErrorThresholdNil()

SetConsecutiveErrorThresholdNil sets the value for ConsecutiveErrorThreshold to be an explicit nil

func (*ScheduleUpdate) SetExecutionIntervalSeconds

func (o *ScheduleUpdate) SetExecutionIntervalSeconds(v int32)

SetExecutionIntervalSeconds gets a reference to the given NullableInt32 and assigns it to the ExecutionIntervalSeconds field.

func (*ScheduleUpdate) SetExecutionIntervalSecondsNil

func (o *ScheduleUpdate) SetExecutionIntervalSecondsNil()

SetExecutionIntervalSecondsNil sets the value for ExecutionIntervalSeconds to be an explicit nil

func (*ScheduleUpdate) SetMaxConcurrentExecutions

func (o *ScheduleUpdate) SetMaxConcurrentExecutions(v int32)

SetMaxConcurrentExecutions gets a reference to the given NullableInt32 and assigns it to the MaxConcurrentExecutions field.

func (*ScheduleUpdate) SetMaxConcurrentExecutionsNil

func (o *ScheduleUpdate) SetMaxConcurrentExecutionsNil()

SetMaxConcurrentExecutionsNil sets the value for MaxConcurrentExecutions to be an explicit nil

func (*ScheduleUpdate) SetNextExecutionAt

func (o *ScheduleUpdate) SetNextExecutionAt(v time.Time)

SetNextExecutionAt gets a reference to the given NullableTime and assigns it to the NextExecutionAt field.

func (*ScheduleUpdate) SetNextExecutionAtNil

func (o *ScheduleUpdate) SetNextExecutionAtNil()

SetNextExecutionAtNil sets the value for NextExecutionAt to be an explicit nil

func (*ScheduleUpdate) SetStatus

func (o *ScheduleUpdate) SetStatus(v StatusEnum)

SetStatus gets a reference to the given NullableStatusEnum and assigns it to the Status field.

func (*ScheduleUpdate) SetStatusNil

func (o *ScheduleUpdate) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (ScheduleUpdate) ToMap

func (o ScheduleUpdate) ToMap() (map[string]interface{}, error)

func (*ScheduleUpdate) UnsetConsecutiveErrorCount

func (o *ScheduleUpdate) UnsetConsecutiveErrorCount()

UnsetConsecutiveErrorCount ensures that no value is present for ConsecutiveErrorCount, not even an explicit nil

func (*ScheduleUpdate) UnsetConsecutiveErrorThreshold

func (o *ScheduleUpdate) UnsetConsecutiveErrorThreshold()

UnsetConsecutiveErrorThreshold ensures that no value is present for ConsecutiveErrorThreshold, not even an explicit nil

func (*ScheduleUpdate) UnsetExecutionIntervalSeconds

func (o *ScheduleUpdate) UnsetExecutionIntervalSeconds()

UnsetExecutionIntervalSeconds ensures that no value is present for ExecutionIntervalSeconds, not even an explicit nil

func (*ScheduleUpdate) UnsetMaxConcurrentExecutions

func (o *ScheduleUpdate) UnsetMaxConcurrentExecutions()

UnsetMaxConcurrentExecutions ensures that no value is present for MaxConcurrentExecutions, not even an explicit nil

func (*ScheduleUpdate) UnsetNextExecutionAt

func (o *ScheduleUpdate) UnsetNextExecutionAt()

UnsetNextExecutionAt ensures that no value is present for NextExecutionAt, not even an explicit nil

func (*ScheduleUpdate) UnsetStatus

func (o *ScheduleUpdate) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

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 SftpCredsInput

type SftpCredsInput struct {
	Host     string        `json:"host"`
	Port     NullableInt32 `json:"port,omitempty"`
	Username string        `json:"username"`
	Password string        `json:"password"`
}

SftpCredsInput SFTP Connection model

func NewSftpCredsInput

func NewSftpCredsInput(host string, username string, password string) *SftpCredsInput

NewSftpCredsInput instantiates a new SftpCredsInput object This constructor will assign default values to properties that have it defined, 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 NewSftpCredsInputWithDefaults

func NewSftpCredsInputWithDefaults() *SftpCredsInput

NewSftpCredsInputWithDefaults instantiates a new SftpCredsInput object This 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 (*SftpCredsInput) GetHost

func (o *SftpCredsInput) GetHost() string

GetHost returns the Host field value

func (*SftpCredsInput) GetHostOk

func (o *SftpCredsInput) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value and a boolean to check if the value has been set.

func (*SftpCredsInput) GetPassword

func (o *SftpCredsInput) GetPassword() string

GetPassword returns the Password field value

func (*SftpCredsInput) GetPasswordOk

func (o *SftpCredsInput) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*SftpCredsInput) GetPort

func (o *SftpCredsInput) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SftpCredsInput) GetPortOk

func (o *SftpCredsInput) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SftpCredsInput) GetUsername

func (o *SftpCredsInput) GetUsername() string

GetUsername returns the Username field value

func (*SftpCredsInput) GetUsernameOk

func (o *SftpCredsInput) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*SftpCredsInput) HasPort

func (o *SftpCredsInput) HasPort() bool

HasPort returns a boolean if a field has been set.

func (SftpCredsInput) MarshalJSON

func (o SftpCredsInput) MarshalJSON() ([]byte, error)

func (*SftpCredsInput) SetHost

func (o *SftpCredsInput) SetHost(v string)

SetHost sets field value

func (*SftpCredsInput) SetPassword

func (o *SftpCredsInput) SetPassword(v string)

SetPassword sets field value

func (*SftpCredsInput) SetPort

func (o *SftpCredsInput) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*SftpCredsInput) SetPortNil

func (o *SftpCredsInput) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*SftpCredsInput) SetUsername

func (o *SftpCredsInput) SetUsername(v string)

SetUsername sets field value

func (SftpCredsInput) ToMap

func (o SftpCredsInput) ToMap() (map[string]interface{}, error)

func (*SftpCredsInput) UnmarshalJSON

func (o *SftpCredsInput) UnmarshalJSON(data []byte) (err error)

func (*SftpCredsInput) UnsetPort

func (o *SftpCredsInput) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

type SftpCredsOutput

type SftpCredsOutput struct {
	Host     interface{}   `json:"host"`
	Port     NullableInt32 `json:"port,omitempty"`
	Username interface{}   `json:"username"`
	Password interface{}   `json:"password"`
}

SftpCredsOutput SFTP Connection model

func NewSftpCredsOutput

func NewSftpCredsOutput(host interface{}, username interface{}, password interface{}) *SftpCredsOutput

NewSftpCredsOutput instantiates a new SftpCredsOutput object This constructor will assign default values to properties that have it defined, 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 NewSftpCredsOutputWithDefaults

func NewSftpCredsOutputWithDefaults() *SftpCredsOutput

NewSftpCredsOutputWithDefaults instantiates a new SftpCredsOutput object This 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 (*SftpCredsOutput) GetHost

func (o *SftpCredsOutput) GetHost() interface{}

GetHost returns the Host field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SftpCredsOutput) GetHostOk

func (o *SftpCredsOutput) GetHostOk() (*interface{}, bool)

GetHostOk returns a tuple with the Host 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 (*SftpCredsOutput) GetPassword

func (o *SftpCredsOutput) GetPassword() interface{}

GetPassword returns the Password field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SftpCredsOutput) GetPasswordOk

func (o *SftpCredsOutput) GetPasswordOk() (*interface{}, bool)

GetPasswordOk returns a tuple with the Password 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 (*SftpCredsOutput) GetPort

func (o *SftpCredsOutput) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SftpCredsOutput) GetPortOk

func (o *SftpCredsOutput) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SftpCredsOutput) GetUsername

func (o *SftpCredsOutput) GetUsername() interface{}

GetUsername returns the Username field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SftpCredsOutput) GetUsernameOk

func (o *SftpCredsOutput) GetUsernameOk() (*interface{}, bool)

GetUsernameOk returns a tuple with the Username 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 (*SftpCredsOutput) HasPort

func (o *SftpCredsOutput) HasPort() bool

HasPort returns a boolean if a field has been set.

func (SftpCredsOutput) MarshalJSON

func (o SftpCredsOutput) MarshalJSON() ([]byte, error)

func (*SftpCredsOutput) SetHost

func (o *SftpCredsOutput) SetHost(v interface{})

SetHost sets field value

func (*SftpCredsOutput) SetPassword

func (o *SftpCredsOutput) SetPassword(v interface{})

SetPassword sets field value

func (*SftpCredsOutput) SetPort

func (o *SftpCredsOutput) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*SftpCredsOutput) SetPortNil

func (o *SftpCredsOutput) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*SftpCredsOutput) SetUsername

func (o *SftpCredsOutput) SetUsername(v interface{})

SetUsername sets field value

func (SftpCredsOutput) ToMap

func (o SftpCredsOutput) ToMap() (map[string]interface{}, error)

func (*SftpCredsOutput) UnmarshalJSON

func (o *SftpCredsOutput) UnmarshalJSON(data []byte) (err error)

func (*SftpCredsOutput) UnsetPort

func (o *SftpCredsOutput) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

type SpireonSLCInput

type SpireonSLCInput struct {
	AccessToken string `json:"access_token"`
	AuthCode    string `json:"auth_code"`
}

SpireonSLCInput Spireon Short-lived Credentials model

func NewSpireonSLCInput

func NewSpireonSLCInput(accessToken string, authCode string) *SpireonSLCInput

NewSpireonSLCInput instantiates a new SpireonSLCInput object This constructor will assign default values to properties that have it defined, 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 NewSpireonSLCInputWithDefaults

func NewSpireonSLCInputWithDefaults() *SpireonSLCInput

NewSpireonSLCInputWithDefaults instantiates a new SpireonSLCInput object This 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 (*SpireonSLCInput) GetAccessToken

func (o *SpireonSLCInput) GetAccessToken() string

GetAccessToken returns the AccessToken field value

func (*SpireonSLCInput) GetAccessTokenOk

func (o *SpireonSLCInput) GetAccessTokenOk() (*string, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value and a boolean to check if the value has been set.

func (*SpireonSLCInput) GetAuthCode

func (o *SpireonSLCInput) GetAuthCode() string

GetAuthCode returns the AuthCode field value

func (*SpireonSLCInput) GetAuthCodeOk

func (o *SpireonSLCInput) GetAuthCodeOk() (*string, bool)

GetAuthCodeOk returns a tuple with the AuthCode field value and a boolean to check if the value has been set.

func (SpireonSLCInput) MarshalJSON

func (o SpireonSLCInput) MarshalJSON() ([]byte, error)

func (*SpireonSLCInput) SetAccessToken

func (o *SpireonSLCInput) SetAccessToken(v string)

SetAccessToken sets field value

func (*SpireonSLCInput) SetAuthCode

func (o *SpireonSLCInput) SetAuthCode(v string)

SetAuthCode sets field value

func (SpireonSLCInput) ToMap

func (o SpireonSLCInput) ToMap() (map[string]interface{}, error)

func (*SpireonSLCInput) UnmarshalJSON

func (o *SpireonSLCInput) UnmarshalJSON(data []byte) (err error)

type SpireonSLCOutput

type SpireonSLCOutput struct {
	AccessToken interface{} `json:"access_token"`
	AuthCode    interface{} `json:"auth_code"`
}

SpireonSLCOutput Spireon Short-lived Credentials model

func NewSpireonSLCOutput

func NewSpireonSLCOutput(accessToken interface{}, authCode interface{}) *SpireonSLCOutput

NewSpireonSLCOutput instantiates a new SpireonSLCOutput object This constructor will assign default values to properties that have it defined, 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 NewSpireonSLCOutputWithDefaults

func NewSpireonSLCOutputWithDefaults() *SpireonSLCOutput

NewSpireonSLCOutputWithDefaults instantiates a new SpireonSLCOutput object This 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 (*SpireonSLCOutput) GetAccessToken

func (o *SpireonSLCOutput) GetAccessToken() interface{}

GetAccessToken returns the AccessToken field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SpireonSLCOutput) GetAccessTokenOk

func (o *SpireonSLCOutput) GetAccessTokenOk() (*interface{}, bool)

GetAccessTokenOk returns a tuple with the AccessToken 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 (*SpireonSLCOutput) GetAuthCode

func (o *SpireonSLCOutput) GetAuthCode() interface{}

GetAuthCode returns the AuthCode field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SpireonSLCOutput) GetAuthCodeOk

func (o *SpireonSLCOutput) GetAuthCodeOk() (*interface{}, bool)

GetAuthCodeOk returns a tuple with the AuthCode 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 (SpireonSLCOutput) MarshalJSON

func (o SpireonSLCOutput) MarshalJSON() ([]byte, error)

func (*SpireonSLCOutput) SetAccessToken

func (o *SpireonSLCOutput) SetAccessToken(v interface{})

SetAccessToken sets field value

func (*SpireonSLCOutput) SetAuthCode

func (o *SpireonSLCOutput) SetAuthCode(v interface{})

SetAuthCode sets field value

func (SpireonSLCOutput) ToMap

func (o SpireonSLCOutput) ToMap() (map[string]interface{}, error)

func (*SpireonSLCOutput) UnmarshalJSON

func (o *SpireonSLCOutput) UnmarshalJSON(data []byte) (err error)

type StatusEnum

type StatusEnum string

StatusEnum Enum for statuses

const (
	STATUSENUM_ACTIVE    StatusEnum = "active"
	STATUSENUM_INACTIVE  StatusEnum = "inactive"
	STATUSENUM_PAUSED    StatusEnum = "paused"
	STATUSENUM_EXPIRED   StatusEnum = "expired"
	STATUSENUM_CANCELLED StatusEnum = "cancelled"
	STATUSENUM_PENDING   StatusEnum = "pending"
	STATUSENUM_DELETED   StatusEnum = "deleted"
	STATUSENUM_STALE     StatusEnum = "stale"
	STATUSENUM_SUCCESS   StatusEnum = "success"
	STATUSENUM_FAILED    StatusEnum = "failed"
	STATUSENUM_SCHEDULED StatusEnum = "scheduled"
	STATUSENUM_ACCEPTED  StatusEnum = "accepted"
	STATUSENUM_DECLINED  StatusEnum = "declined"
)

List of StatusEnum

func NewStatusEnumFromValue

func NewStatusEnumFromValue(v string) (*StatusEnum, error)

NewStatusEnumFromValue returns a pointer to a valid StatusEnum for the value passed as argument, or an error if the value passed is not allowed by the enum

func (StatusEnum) IsValid

func (v StatusEnum) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (StatusEnum) Ptr

func (v StatusEnum) Ptr() *StatusEnum

Ptr returns reference to StatusEnum value

func (*StatusEnum) UnmarshalJSON

func (v *StatusEnum) UnmarshalJSON(src []byte) error

type TTCredsInput

type TTCredsInput struct {
	ApiKey        string `json:"api_key"`
	ProviderToken string `json:"provider_token"`
	DotNumber     string `json:"dot_number"`
}

TTCredsInput Trucking Technologies Credentials model

func NewTTCredsInput

func NewTTCredsInput(apiKey string, providerToken string, dotNumber string) *TTCredsInput

NewTTCredsInput instantiates a new TTCredsInput object This constructor will assign default values to properties that have it defined, 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 NewTTCredsInputWithDefaults

func NewTTCredsInputWithDefaults() *TTCredsInput

NewTTCredsInputWithDefaults instantiates a new TTCredsInput object This 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 (*TTCredsInput) GetApiKey

func (o *TTCredsInput) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*TTCredsInput) GetApiKeyOk

func (o *TTCredsInput) GetApiKeyOk() (*string, bool)

GetApiKeyOk returns a tuple with the ApiKey field value and a boolean to check if the value has been set.

func (*TTCredsInput) GetDotNumber

func (o *TTCredsInput) GetDotNumber() string

GetDotNumber returns the DotNumber field value

func (*TTCredsInput) GetDotNumberOk

func (o *TTCredsInput) GetDotNumberOk() (*string, bool)

GetDotNumberOk returns a tuple with the DotNumber field value and a boolean to check if the value has been set.

func (*TTCredsInput) GetProviderToken

func (o *TTCredsInput) GetProviderToken() string

GetProviderToken returns the ProviderToken field value

func (*TTCredsInput) GetProviderTokenOk

func (o *TTCredsInput) GetProviderTokenOk() (*string, bool)

GetProviderTokenOk returns a tuple with the ProviderToken field value and a boolean to check if the value has been set.

func (TTCredsInput) MarshalJSON

func (o TTCredsInput) MarshalJSON() ([]byte, error)

func (*TTCredsInput) SetApiKey

func (o *TTCredsInput) SetApiKey(v string)

SetApiKey sets field value

func (*TTCredsInput) SetDotNumber

func (o *TTCredsInput) SetDotNumber(v string)

SetDotNumber sets field value

func (*TTCredsInput) SetProviderToken

func (o *TTCredsInput) SetProviderToken(v string)

SetProviderToken sets field value

func (TTCredsInput) ToMap

func (o TTCredsInput) ToMap() (map[string]interface{}, error)

func (*TTCredsInput) UnmarshalJSON

func (o *TTCredsInput) UnmarshalJSON(data []byte) (err error)

type TTCredsOutput

type TTCredsOutput struct {
	ApiKey        interface{} `json:"api_key"`
	ProviderToken interface{} `json:"provider_token"`
	DotNumber     string      `json:"dot_number"`
}

TTCredsOutput Trucking Technologies Credentials model

func NewTTCredsOutput

func NewTTCredsOutput(apiKey interface{}, providerToken interface{}, dotNumber string) *TTCredsOutput

NewTTCredsOutput instantiates a new TTCredsOutput object This constructor will assign default values to properties that have it defined, 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 NewTTCredsOutputWithDefaults

func NewTTCredsOutputWithDefaults() *TTCredsOutput

NewTTCredsOutputWithDefaults instantiates a new TTCredsOutput object This 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 (*TTCredsOutput) GetApiKey

func (o *TTCredsOutput) GetApiKey() interface{}

GetApiKey returns the ApiKey field value If the value is explicit nil, the zero value for interface{} will be returned

func (*TTCredsOutput) GetApiKeyOk

func (o *TTCredsOutput) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*TTCredsOutput) GetDotNumber

func (o *TTCredsOutput) GetDotNumber() string

GetDotNumber returns the DotNumber field value

func (*TTCredsOutput) GetDotNumberOk

func (o *TTCredsOutput) GetDotNumberOk() (*string, bool)

GetDotNumberOk returns a tuple with the DotNumber field value and a boolean to check if the value has been set.

func (*TTCredsOutput) GetProviderToken

func (o *TTCredsOutput) GetProviderToken() interface{}

GetProviderToken returns the ProviderToken field value If the value is explicit nil, the zero value for interface{} will be returned

func (*TTCredsOutput) GetProviderTokenOk

func (o *TTCredsOutput) GetProviderTokenOk() (*interface{}, bool)

GetProviderTokenOk returns a tuple with the ProviderToken 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 (TTCredsOutput) MarshalJSON

func (o TTCredsOutput) MarshalJSON() ([]byte, error)

func (*TTCredsOutput) SetApiKey

func (o *TTCredsOutput) SetApiKey(v interface{})

SetApiKey sets field value

func (*TTCredsOutput) SetDotNumber

func (o *TTCredsOutput) SetDotNumber(v string)

SetDotNumber sets field value

func (*TTCredsOutput) SetProviderToken

func (o *TTCredsOutput) SetProviderToken(v interface{})

SetProviderToken sets field value

func (TTCredsOutput) ToMap

func (o TTCredsOutput) ToMap() (map[string]interface{}, error)

func (*TTCredsOutput) UnmarshalJSON

func (o *TTCredsOutput) UnmarshalJSON(data []byte) (err error)

type TokenCredsInput

type TokenCredsInput struct {
	Token string         `json:"token"`
	Url   NullableString `json:"url,omitempty"`
}

TokenCredsInput Token Connection model

func NewTokenCredsInput

func NewTokenCredsInput(token string) *TokenCredsInput

NewTokenCredsInput instantiates a new TokenCredsInput object This constructor will assign default values to properties that have it defined, 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 NewTokenCredsInputWithDefaults

func NewTokenCredsInputWithDefaults() *TokenCredsInput

NewTokenCredsInputWithDefaults instantiates a new TokenCredsInput object This 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 (*TokenCredsInput) GetToken

func (o *TokenCredsInput) GetToken() string

GetToken returns the Token field value

func (*TokenCredsInput) GetTokenOk

func (o *TokenCredsInput) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (*TokenCredsInput) GetUrl

func (o *TokenCredsInput) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenCredsInput) GetUrlOk

func (o *TokenCredsInput) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TokenCredsInput) HasUrl

func (o *TokenCredsInput) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (TokenCredsInput) MarshalJSON

func (o TokenCredsInput) MarshalJSON() ([]byte, error)

func (*TokenCredsInput) SetToken

func (o *TokenCredsInput) SetToken(v string)

SetToken sets field value

func (*TokenCredsInput) SetUrl

func (o *TokenCredsInput) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*TokenCredsInput) SetUrlNil

func (o *TokenCredsInput) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (TokenCredsInput) ToMap

func (o TokenCredsInput) ToMap() (map[string]interface{}, error)

func (*TokenCredsInput) UnmarshalJSON

func (o *TokenCredsInput) UnmarshalJSON(data []byte) (err error)

func (*TokenCredsInput) UnsetUrl

func (o *TokenCredsInput) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type TokenCredsOutput

type TokenCredsOutput struct {
	Token interface{}    `json:"token"`
	Url   NullableString `json:"url,omitempty"`
}

TokenCredsOutput Token Connection model

func NewTokenCredsOutput

func NewTokenCredsOutput(token interface{}) *TokenCredsOutput

NewTokenCredsOutput instantiates a new TokenCredsOutput object This constructor will assign default values to properties that have it defined, 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 NewTokenCredsOutputWithDefaults

func NewTokenCredsOutputWithDefaults() *TokenCredsOutput

NewTokenCredsOutputWithDefaults instantiates a new TokenCredsOutput object This 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 (*TokenCredsOutput) GetToken

func (o *TokenCredsOutput) GetToken() interface{}

GetToken returns the Token field value If the value is explicit nil, the zero value for interface{} will be returned

func (*TokenCredsOutput) GetTokenOk

func (o *TokenCredsOutput) GetTokenOk() (*interface{}, bool)

GetTokenOk returns a tuple with the Token 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 (*TokenCredsOutput) GetUrl

func (o *TokenCredsOutput) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenCredsOutput) GetUrlOk

func (o *TokenCredsOutput) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TokenCredsOutput) HasUrl

func (o *TokenCredsOutput) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (TokenCredsOutput) MarshalJSON

func (o TokenCredsOutput) MarshalJSON() ([]byte, error)

func (*TokenCredsOutput) SetToken

func (o *TokenCredsOutput) SetToken(v interface{})

SetToken sets field value

func (*TokenCredsOutput) SetUrl

func (o *TokenCredsOutput) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*TokenCredsOutput) SetUrlNil

func (o *TokenCredsOutput) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (TokenCredsOutput) ToMap

func (o TokenCredsOutput) ToMap() (map[string]interface{}, error)

func (*TokenCredsOutput) UnmarshalJSON

func (o *TokenCredsOutput) UnmarshalJSON(data []byte) (err error)

func (*TokenCredsOutput) UnsetUrl

func (o *TokenCredsOutput) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type TooManyRequests

type TooManyRequests struct {
	Code    *int32                   `json:"code,omitempty"`
	Message *string                  `json:"message,omitempty"`
	Detail  NullableRetryAfterDetail `json:"detail,omitempty"`
}

TooManyRequests struct for TooManyRequests

func NewTooManyRequests

func NewTooManyRequests() *TooManyRequests

NewTooManyRequests instantiates a new TooManyRequests object This constructor will assign default values to properties that have it defined, 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 NewTooManyRequestsWithDefaults

func NewTooManyRequestsWithDefaults() *TooManyRequests

NewTooManyRequestsWithDefaults instantiates a new TooManyRequests object This 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 (*TooManyRequests) GetCode

func (o *TooManyRequests) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*TooManyRequests) GetCodeOk

func (o *TooManyRequests) GetCodeOk() (*int32, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TooManyRequests) GetDetail

func (o *TooManyRequests) GetDetail() RetryAfterDetail

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TooManyRequests) GetDetailOk

func (o *TooManyRequests) GetDetailOk() (*RetryAfterDetail, bool)

GetDetailOk returns a tuple with the Detail 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 (*TooManyRequests) GetMessage

func (o *TooManyRequests) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*TooManyRequests) GetMessageOk

func (o *TooManyRequests) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TooManyRequests) HasCode

func (o *TooManyRequests) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*TooManyRequests) HasDetail

func (o *TooManyRequests) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*TooManyRequests) HasMessage

func (o *TooManyRequests) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (TooManyRequests) MarshalJSON

func (o TooManyRequests) MarshalJSON() ([]byte, error)

func (*TooManyRequests) SetCode

func (o *TooManyRequests) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*TooManyRequests) SetDetail

func (o *TooManyRequests) SetDetail(v RetryAfterDetail)

SetDetail gets a reference to the given NullableRetryAfterDetail and assigns it to the Detail field.

func (*TooManyRequests) SetDetailNil

func (o *TooManyRequests) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*TooManyRequests) SetMessage

func (o *TooManyRequests) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (TooManyRequests) ToMap

func (o TooManyRequests) ToMap() (map[string]interface{}, error)

func (*TooManyRequests) UnsetDetail

func (o *TooManyRequests) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

type TruckXCredsInput

type TruckXCredsInput struct {
	DotNumber string `json:"dot_number"`
	Token     string `json:"token"`
}

TruckXCredsInput TruckX Short-lived Credentials model

func NewTruckXCredsInput

func NewTruckXCredsInput(dotNumber string, token string) *TruckXCredsInput

NewTruckXCredsInput instantiates a new TruckXCredsInput object This constructor will assign default values to properties that have it defined, 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 NewTruckXCredsInputWithDefaults

func NewTruckXCredsInputWithDefaults() *TruckXCredsInput

NewTruckXCredsInputWithDefaults instantiates a new TruckXCredsInput object This 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 (*TruckXCredsInput) GetDotNumber

func (o *TruckXCredsInput) GetDotNumber() string

GetDotNumber returns the DotNumber field value

func (*TruckXCredsInput) GetDotNumberOk

func (o *TruckXCredsInput) GetDotNumberOk() (*string, bool)

GetDotNumberOk returns a tuple with the DotNumber field value and a boolean to check if the value has been set.

func (*TruckXCredsInput) GetToken

func (o *TruckXCredsInput) GetToken() string

GetToken returns the Token field value

func (*TruckXCredsInput) GetTokenOk

func (o *TruckXCredsInput) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (TruckXCredsInput) MarshalJSON

func (o TruckXCredsInput) MarshalJSON() ([]byte, error)

func (*TruckXCredsInput) SetDotNumber

func (o *TruckXCredsInput) SetDotNumber(v string)

SetDotNumber sets field value

func (*TruckXCredsInput) SetToken

func (o *TruckXCredsInput) SetToken(v string)

SetToken sets field value

func (TruckXCredsInput) ToMap

func (o TruckXCredsInput) ToMap() (map[string]interface{}, error)

func (*TruckXCredsInput) UnmarshalJSON

func (o *TruckXCredsInput) UnmarshalJSON(data []byte) (err error)

type TruckXCredsOutput

type TruckXCredsOutput struct {
	DotNumber string      `json:"dot_number"`
	Token     interface{} `json:"token"`
}

TruckXCredsOutput TruckX Short-lived Credentials model

func NewTruckXCredsOutput

func NewTruckXCredsOutput(dotNumber string, token interface{}) *TruckXCredsOutput

NewTruckXCredsOutput instantiates a new TruckXCredsOutput object This constructor will assign default values to properties that have it defined, 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 NewTruckXCredsOutputWithDefaults

func NewTruckXCredsOutputWithDefaults() *TruckXCredsOutput

NewTruckXCredsOutputWithDefaults instantiates a new TruckXCredsOutput object This 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 (*TruckXCredsOutput) GetDotNumber

func (o *TruckXCredsOutput) GetDotNumber() string

GetDotNumber returns the DotNumber field value

func (*TruckXCredsOutput) GetDotNumberOk

func (o *TruckXCredsOutput) GetDotNumberOk() (*string, bool)

GetDotNumberOk returns a tuple with the DotNumber field value and a boolean to check if the value has been set.

func (*TruckXCredsOutput) GetToken

func (o *TruckXCredsOutput) GetToken() interface{}

GetToken returns the Token field value If the value is explicit nil, the zero value for interface{} will be returned

func (*TruckXCredsOutput) GetTokenOk

func (o *TruckXCredsOutput) GetTokenOk() (*interface{}, bool)

GetTokenOk returns a tuple with the Token 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 (TruckXCredsOutput) MarshalJSON

func (o TruckXCredsOutput) MarshalJSON() ([]byte, error)

func (*TruckXCredsOutput) SetDotNumber

func (o *TruckXCredsOutput) SetDotNumber(v string)

SetDotNumber sets field value

func (*TruckXCredsOutput) SetToken

func (o *TruckXCredsOutput) SetToken(v interface{})

SetToken sets field value

func (TruckXCredsOutput) ToMap

func (o TruckXCredsOutput) ToMap() (map[string]interface{}, error)

func (*TruckXCredsOutput) UnmarshalJSON

func (o *TruckXCredsOutput) UnmarshalJSON(data []byte) (err error)

type TruckXSLCInput

type TruckXSLCInput struct {
	Token     string `json:"token"`
	CarrierId string `json:"carrier_id"`
}

TruckXSLCInput TruckX Short-lived Credentials model

func NewTruckXSLCInput

func NewTruckXSLCInput(token string, carrierId string) *TruckXSLCInput

NewTruckXSLCInput instantiates a new TruckXSLCInput object This constructor will assign default values to properties that have it defined, 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 NewTruckXSLCInputWithDefaults

func NewTruckXSLCInputWithDefaults() *TruckXSLCInput

NewTruckXSLCInputWithDefaults instantiates a new TruckXSLCInput object This 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 (*TruckXSLCInput) GetCarrierId

func (o *TruckXSLCInput) GetCarrierId() string

GetCarrierId returns the CarrierId field value

func (*TruckXSLCInput) GetCarrierIdOk

func (o *TruckXSLCInput) GetCarrierIdOk() (*string, bool)

GetCarrierIdOk returns a tuple with the CarrierId field value and a boolean to check if the value has been set.

func (*TruckXSLCInput) GetToken

func (o *TruckXSLCInput) GetToken() string

GetToken returns the Token field value

func (*TruckXSLCInput) GetTokenOk

func (o *TruckXSLCInput) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (TruckXSLCInput) MarshalJSON

func (o TruckXSLCInput) MarshalJSON() ([]byte, error)

func (*TruckXSLCInput) SetCarrierId

func (o *TruckXSLCInput) SetCarrierId(v string)

SetCarrierId sets field value

func (*TruckXSLCInput) SetToken

func (o *TruckXSLCInput) SetToken(v string)

SetToken sets field value

func (TruckXSLCInput) ToMap

func (o TruckXSLCInput) ToMap() (map[string]interface{}, error)

func (*TruckXSLCInput) UnmarshalJSON

func (o *TruckXSLCInput) UnmarshalJSON(data []byte) (err error)

type TruckXSLCOutput

type TruckXSLCOutput struct {
	Token     interface{} `json:"token"`
	CarrierId string      `json:"carrier_id"`
}

TruckXSLCOutput TruckX Short-lived Credentials model

func NewTruckXSLCOutput

func NewTruckXSLCOutput(token interface{}, carrierId string) *TruckXSLCOutput

NewTruckXSLCOutput instantiates a new TruckXSLCOutput object This constructor will assign default values to properties that have it defined, 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 NewTruckXSLCOutputWithDefaults

func NewTruckXSLCOutputWithDefaults() *TruckXSLCOutput

NewTruckXSLCOutputWithDefaults instantiates a new TruckXSLCOutput object This 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 (*TruckXSLCOutput) GetCarrierId

func (o *TruckXSLCOutput) GetCarrierId() string

GetCarrierId returns the CarrierId field value

func (*TruckXSLCOutput) GetCarrierIdOk

func (o *TruckXSLCOutput) GetCarrierIdOk() (*string, bool)

GetCarrierIdOk returns a tuple with the CarrierId field value and a boolean to check if the value has been set.

func (*TruckXSLCOutput) GetToken

func (o *TruckXSLCOutput) GetToken() interface{}

GetToken returns the Token field value If the value is explicit nil, the zero value for interface{} will be returned

func (*TruckXSLCOutput) GetTokenOk

func (o *TruckXSLCOutput) GetTokenOk() (*interface{}, bool)

GetTokenOk returns a tuple with the Token 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 (TruckXSLCOutput) MarshalJSON

func (o TruckXSLCOutput) MarshalJSON() ([]byte, error)

func (*TruckXSLCOutput) SetCarrierId

func (o *TruckXSLCOutput) SetCarrierId(v string)

SetCarrierId sets field value

func (*TruckXSLCOutput) SetToken

func (o *TruckXSLCOutput) SetToken(v interface{})

SetToken sets field value

func (TruckXSLCOutput) ToMap

func (o TruckXSLCOutput) ToMap() (map[string]interface{}, error)

func (*TruckXSLCOutput) UnmarshalJSON

func (o *TruckXSLCOutput) UnmarshalJSON(data []byte) (err error)

type TspEnum

type TspEnum string

TspEnum Enum for TSPs

const (
	TSPENUM_ADA                     TspEnum = "ada"
	TSPENUM_AI_ELD                  TspEnum = "ai_eld"
	TSPENUM_APOLLO                  TspEnum = "apollo"
	TSPENUM_ASCEND                  TspEnum = "ascend"
	TSPENUM_AZUGA                   TspEnum = "azuga"
	TSPENUM_BIGROAD                 TspEnum = "bigroad"
	TSPENUM_BLUEINKTECH             TspEnum = "blueinktech"
	TSPENUM_BOUNCIE                 TspEnum = "bouncie"
	TSPENUM_BUDGETGPS               TspEnum = "budgetgps"
	TSPENUM_CYNTRX                  TspEnum = "cyntrx"
	TSPENUM_DRIVER_TECH             TspEnum = "driver_tech"
	TSPENUM_DSG_ELOGS               TspEnum = "dsg_elogs"
	TSPENUM_DYNAMIC_ELD             TspEnum = "dynamic_eld"
	TSPENUM_ELD_MANDATE             TspEnum = "eld_mandate"
	TSPENUM_EROAD                   TspEnum = "eroad"
	TSPENUM_EVO_ELD                 TspEnum = "evo_eld"
	TSPENUM_EZLOGZ                  TspEnum = "ezlogz"
	TSPENUM_FACTOR_ELD              TspEnum = "factor_eld"
	TSPENUM_FLEETCOMPLETE           TspEnum = "fleetcomplete"
	TSPENUM_FLEETCOMPLETEHUB        TspEnum = "fleetcompletehub"
	TSPENUM_FLEETHUNT               TspEnum = "fleethunt"
	TSPENUM_FLEETSHARP              TspEnum = "fleetsharp"
	TSPENUM_FLEETUP                 TspEnum = "fleetup"
	TSPENUM_FM                      TspEnum = "fm"
	TSPENUM_FORWARDTHINKING         TspEnum = "forwardthinking"
	TSPENUM_GEOTAB                  TspEnum = "geotab"
	TSPENUM_GPSINSIGHT              TspEnum = "gpsinsight"
	TSPENUM_GPSTAB                  TspEnum = "gpstab"
	TSPENUM_GPSTRACKIT              TspEnum = "gpstrackit"
	TSPENUM_GREENLIGHT              TspEnum = "greenlight"
	TSPENUM_HCSS                    TspEnum = "hcss"
	TSPENUM_HOSCONNECT              TspEnum = "hosconnect"
	TSPENUM_HOS247                  TspEnum = "hos247"
	TSPENUM_HUTCH                   TspEnum = "hutch"
	TSPENUM_INTELLISHIFT            TspEnum = "intellishift"
	TSPENUM_ISAAC                   TspEnum = "isaac"
	TSPENUM_JJKELLER                TspEnum = "jjkeller"
	TSPENUM_KNIGHT_ELD              TspEnum = "knight_eld"
	TSPENUM_KONEXIAL                TspEnum = "konexial"
	TSPENUM_LINXUP                  TspEnum = "linxup"
	TSPENUM_LUCID_ELD               TspEnum = "lucid_eld"
	TSPENUM_LYTX                    TspEnum = "lytx"
	TSPENUM_MAPON                   TspEnum = "mapon"
	TSPENUM_MATRACK                 TspEnum = "matrack"
	TSPENUM_MAVEN                   TspEnum = "maven"
	TSPENUM_MOBILEFLEET             TspEnum = "mobilefleet"
	TSPENUM_MOTIVE                  TspEnum = "motive"
	TSPENUM_MY_LOGS_ELD             TspEnum = "my_logs_eld"
	TSPENUM_NERO                    TspEnum = "nero"
	TSPENUM_NETRADYNE               TspEnum = "netradyne"
	TSPENUM_NEW_ELD_WORLD           TspEnum = "new_eld_world"
	TSPENUM_NEXTRAQ                 TspEnum = "nextraq"
	TSPENUM_ONESTEP                 TspEnum = "onestep"
	TSPENUM_ONTIME_ELD              TspEnum = "ontime_eld"
	TSPENUM_OPTIMA                  TspEnum = "optima"
	TSPENUM_ORBCOMM                 TspEnum = "orbcomm"
	TSPENUM_ORIENT_ELD              TspEnum = "orient_eld"
	TSPENUM_PAYD                    TspEnum = "payd"
	TSPENUM_PEOPLENET               TspEnum = "peoplenet"
	TSPENUM_PHOENIX                 TspEnum = "phoenix"
	TSPENUM_POP_ELD                 TspEnum = "pop_eld"
	TSPENUM_RANDMCNALLY             TspEnum = "randmcnally"
	TSPENUM_RASTRAC                 TspEnum = "rastrac"
	TSPENUM_ROUTEMATE               TspEnum = "routemate"
	TSPENUM_SAMSARA                 TspEnum = "samsara"
	TSPENUM_SELECTIVEDRIVE          TspEnum = "selectivedrive"
	TSPENUM_SMART_ELDS              TspEnum = "smart_elds"
	TSPENUM_SPARKLE_ELD             TspEnum = "sparkle_eld"
	TSPENUM_OMNITRACS               TspEnum = "omnitracs"
	TSPENUM_SPIREON                 TspEnum = "spireon"
	TSPENUM_SURFSIGHT               TspEnum = "surfsight"
	TSPENUM_SWIFT                   TspEnum = "swift"
	TSPENUM_SWITCHBOARD             TspEnum = "switchboard"
	TSPENUM_TELETRACNAVMAN          TspEnum = "teletracnavman"
	TSPENUM_TELETRACNAVMAN_DIRECTOR TspEnum = "teletracnavman_director"
	TSPENUM_TELOGIS                 TspEnum = "telogis"
	TSPENUM_TENNA                   TspEnum = "tenna"
	TSPENUM_THINK                   TspEnum = "think"
	TSPENUM_TIVE                    TspEnum = "tive"
	TSPENUM_TRACCAR                 TspEnum = "traccar"
	TSPENUM_TRANSFLO                TspEnum = "transflo"
	TSPENUM_TRIMBLE                 TspEnum = "trimble"
	TSPENUM_TRUCKX                  TspEnum = "truckx"
	TSPENUM_TT                      TspEnum = "tt"
	TSPENUM_US_FAST_ELD             TspEnum = "us_fast_eld"
	TSPENUM_VERIZON                 TspEnum = "verizon"
	TSPENUM_VERIZON_REVEAL          TspEnum = "verizon_reveal"
	TSPENUM_VISTA_ELD               TspEnum = "vista_eld"
	TSPENUM_VISTRACKS               TspEnum = "vistracks"
	TSPENUM_WEBFLEET                TspEnum = "webfleet"
	TSPENUM_XPLORE_ELD              TspEnum = "xplore_eld"
	TSPENUM_ZONAR                   TspEnum = "zonar"
	TSPENUM_ZUBIE                   TspEnum = "zubie"
)

List of TspEnum

func NewTspEnumFromValue

func NewTspEnumFromValue(v string) (*TspEnum, error)

NewTspEnumFromValue returns a pointer to a valid TspEnum for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TspEnum) IsValid

func (v TspEnum) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TspEnum) Ptr

func (v TspEnum) Ptr() *TspEnum

Ptr returns reference to TspEnum value

func (*TspEnum) UnmarshalJSON

func (v *TspEnum) UnmarshalJSON(src []byte) error

type Unauthorized

type Unauthorized struct {
	Code    *int32         `json:"code,omitempty"`
	Message *string        `json:"message,omitempty"`
	Detail  NullableString `json:"detail,omitempty"`
}

Unauthorized struct for Unauthorized

func NewUnauthorized

func NewUnauthorized() *Unauthorized

NewUnauthorized instantiates a new Unauthorized object This constructor will assign default values to properties that have it defined, 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 NewUnauthorizedWithDefaults

func NewUnauthorizedWithDefaults() *Unauthorized

NewUnauthorizedWithDefaults instantiates a new Unauthorized object This 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 (*Unauthorized) GetCode

func (o *Unauthorized) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*Unauthorized) GetCodeOk

func (o *Unauthorized) GetCodeOk() (*int32, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Unauthorized) GetDetail

func (o *Unauthorized) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Unauthorized) GetDetailOk

func (o *Unauthorized) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail 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 (*Unauthorized) GetMessage

func (o *Unauthorized) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Unauthorized) GetMessageOk

func (o *Unauthorized) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Unauthorized) HasCode

func (o *Unauthorized) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Unauthorized) HasDetail

func (o *Unauthorized) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*Unauthorized) HasMessage

func (o *Unauthorized) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Unauthorized) MarshalJSON

func (o Unauthorized) MarshalJSON() ([]byte, error)

func (*Unauthorized) SetCode

func (o *Unauthorized) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*Unauthorized) SetDetail

func (o *Unauthorized) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*Unauthorized) SetDetailNil

func (o *Unauthorized) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*Unauthorized) SetMessage

func (o *Unauthorized) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (Unauthorized) ToMap

func (o Unauthorized) ToMap() (map[string]interface{}, error)

func (*Unauthorized) UnsetDetail

func (o *Unauthorized) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

type UnprocessableEntity

type UnprocessableEntity struct {
	Code    *int32                  `json:"code,omitempty"`
	Message *string                 `json:"message,omitempty"`
	Detail  []ValidationErrorDetail `json:"detail,omitempty"`
}

UnprocessableEntity struct for UnprocessableEntity

func NewUnprocessableEntity

func NewUnprocessableEntity() *UnprocessableEntity

NewUnprocessableEntity instantiates a new UnprocessableEntity object This constructor will assign default values to properties that have it defined, 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 NewUnprocessableEntityWithDefaults

func NewUnprocessableEntityWithDefaults() *UnprocessableEntity

NewUnprocessableEntityWithDefaults instantiates a new UnprocessableEntity object This 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 (*UnprocessableEntity) GetCode

func (o *UnprocessableEntity) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*UnprocessableEntity) GetCodeOk

func (o *UnprocessableEntity) GetCodeOk() (*int32, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnprocessableEntity) GetDetail

func (o *UnprocessableEntity) GetDetail() []ValidationErrorDetail

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UnprocessableEntity) GetDetailOk

func (o *UnprocessableEntity) GetDetailOk() ([]ValidationErrorDetail, bool)

GetDetailOk returns a tuple with the Detail 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 (*UnprocessableEntity) GetMessage

func (o *UnprocessableEntity) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*UnprocessableEntity) GetMessageOk

func (o *UnprocessableEntity) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnprocessableEntity) HasCode

func (o *UnprocessableEntity) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*UnprocessableEntity) HasDetail

func (o *UnprocessableEntity) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*UnprocessableEntity) HasMessage

func (o *UnprocessableEntity) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (UnprocessableEntity) MarshalJSON

func (o UnprocessableEntity) MarshalJSON() ([]byte, error)

func (*UnprocessableEntity) SetCode

func (o *UnprocessableEntity) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*UnprocessableEntity) SetDetail

func (o *UnprocessableEntity) SetDetail(v []ValidationErrorDetail)

SetDetail gets a reference to the given []ValidationErrorDetail and assigns it to the Detail field.

func (*UnprocessableEntity) SetMessage

func (o *UnprocessableEntity) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (UnprocessableEntity) ToMap

func (o UnprocessableEntity) ToMap() (map[string]interface{}, error)

type ValidationErrorDetail

type ValidationErrorDetail struct {
	Path      string `json:"path"`
	Input     string `json:"input"`
	Message   string `json:"message"`
	ErrorType string `json:"error_type"`
}

ValidationErrorDetail struct for ValidationErrorDetail

func NewValidationErrorDetail

func NewValidationErrorDetail(path string, input string, message string, errorType string) *ValidationErrorDetail

NewValidationErrorDetail instantiates a new ValidationErrorDetail object This constructor will assign default values to properties that have it defined, 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 NewValidationErrorDetailWithDefaults

func NewValidationErrorDetailWithDefaults() *ValidationErrorDetail

NewValidationErrorDetailWithDefaults instantiates a new ValidationErrorDetail object This 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 (*ValidationErrorDetail) GetErrorType

func (o *ValidationErrorDetail) GetErrorType() string

GetErrorType returns the ErrorType field value

func (*ValidationErrorDetail) GetErrorTypeOk

func (o *ValidationErrorDetail) GetErrorTypeOk() (*string, bool)

GetErrorTypeOk returns a tuple with the ErrorType field value and a boolean to check if the value has been set.

func (*ValidationErrorDetail) GetInput

func (o *ValidationErrorDetail) GetInput() string

GetInput returns the Input field value

func (*ValidationErrorDetail) GetInputOk

func (o *ValidationErrorDetail) GetInputOk() (*string, bool)

GetInputOk returns a tuple with the Input field value and a boolean to check if the value has been set.

func (*ValidationErrorDetail) GetMessage

func (o *ValidationErrorDetail) GetMessage() string

GetMessage returns the Message field value

func (*ValidationErrorDetail) GetMessageOk

func (o *ValidationErrorDetail) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*ValidationErrorDetail) GetPath

func (o *ValidationErrorDetail) GetPath() string

GetPath returns the Path field value

func (*ValidationErrorDetail) GetPathOk

func (o *ValidationErrorDetail) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (ValidationErrorDetail) MarshalJSON

func (o ValidationErrorDetail) MarshalJSON() ([]byte, error)

func (*ValidationErrorDetail) SetErrorType

func (o *ValidationErrorDetail) SetErrorType(v string)

SetErrorType sets field value

func (*ValidationErrorDetail) SetInput

func (o *ValidationErrorDetail) SetInput(v string)

SetInput sets field value

func (*ValidationErrorDetail) SetMessage

func (o *ValidationErrorDetail) SetMessage(v string)

SetMessage sets field value

func (*ValidationErrorDetail) SetPath

func (o *ValidationErrorDetail) SetPath(v string)

SetPath sets field value

func (ValidationErrorDetail) ToMap

func (o ValidationErrorDetail) ToMap() (map[string]interface{}, error)

func (*ValidationErrorDetail) UnmarshalJSON

func (o *ValidationErrorDetail) UnmarshalJSON(data []byte) (err error)

type ZubieCredsInput

type ZubieCredsInput struct {
	ClientId     string `json:"client_id"`
	ClientSecret string `json:"client_secret"`
	AuthCode     string `json:"auth_code"`
	RedirectUri  string `json:"redirect_uri"`
}

ZubieCredsInput Motive Connection model

func NewZubieCredsInput

func NewZubieCredsInput(clientId string, clientSecret string, authCode string, redirectUri string) *ZubieCredsInput

NewZubieCredsInput instantiates a new ZubieCredsInput object This constructor will assign default values to properties that have it defined, 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 NewZubieCredsInputWithDefaults

func NewZubieCredsInputWithDefaults() *ZubieCredsInput

NewZubieCredsInputWithDefaults instantiates a new ZubieCredsInput object This 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 (*ZubieCredsInput) GetAuthCode

func (o *ZubieCredsInput) GetAuthCode() string

GetAuthCode returns the AuthCode field value

func (*ZubieCredsInput) GetAuthCodeOk

func (o *ZubieCredsInput) GetAuthCodeOk() (*string, bool)

GetAuthCodeOk returns a tuple with the AuthCode field value and a boolean to check if the value has been set.

func (*ZubieCredsInput) GetClientId

func (o *ZubieCredsInput) GetClientId() string

GetClientId returns the ClientId field value

func (*ZubieCredsInput) GetClientIdOk

func (o *ZubieCredsInput) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value and a boolean to check if the value has been set.

func (*ZubieCredsInput) GetClientSecret

func (o *ZubieCredsInput) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*ZubieCredsInput) GetClientSecretOk

func (o *ZubieCredsInput) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value and a boolean to check if the value has been set.

func (*ZubieCredsInput) GetRedirectUri

func (o *ZubieCredsInput) GetRedirectUri() string

GetRedirectUri returns the RedirectUri field value

func (*ZubieCredsInput) GetRedirectUriOk

func (o *ZubieCredsInput) GetRedirectUriOk() (*string, bool)

GetRedirectUriOk returns a tuple with the RedirectUri field value and a boolean to check if the value has been set.

func (ZubieCredsInput) MarshalJSON

func (o ZubieCredsInput) MarshalJSON() ([]byte, error)

func (*ZubieCredsInput) SetAuthCode

func (o *ZubieCredsInput) SetAuthCode(v string)

SetAuthCode sets field value

func (*ZubieCredsInput) SetClientId

func (o *ZubieCredsInput) SetClientId(v string)

SetClientId sets field value

func (*ZubieCredsInput) SetClientSecret

func (o *ZubieCredsInput) SetClientSecret(v string)

SetClientSecret sets field value

func (*ZubieCredsInput) SetRedirectUri

func (o *ZubieCredsInput) SetRedirectUri(v string)

SetRedirectUri sets field value

func (ZubieCredsInput) ToMap

func (o ZubieCredsInput) ToMap() (map[string]interface{}, error)

func (*ZubieCredsInput) UnmarshalJSON

func (o *ZubieCredsInput) UnmarshalJSON(data []byte) (err error)

type ZubieCredsOutput

type ZubieCredsOutput struct {
	ClientId     string      `json:"client_id"`
	ClientSecret interface{} `json:"client_secret"`
	AuthCode     interface{} `json:"auth_code"`
	RedirectUri  string      `json:"redirect_uri"`
}

ZubieCredsOutput Motive Connection model

func NewZubieCredsOutput

func NewZubieCredsOutput(clientId string, clientSecret interface{}, authCode interface{}, redirectUri string) *ZubieCredsOutput

NewZubieCredsOutput instantiates a new ZubieCredsOutput object This constructor will assign default values to properties that have it defined, 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 NewZubieCredsOutputWithDefaults

func NewZubieCredsOutputWithDefaults() *ZubieCredsOutput

NewZubieCredsOutputWithDefaults instantiates a new ZubieCredsOutput object This 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 (*ZubieCredsOutput) GetAuthCode

func (o *ZubieCredsOutput) GetAuthCode() interface{}

GetAuthCode returns the AuthCode field value If the value is explicit nil, the zero value for interface{} will be returned

func (*ZubieCredsOutput) GetAuthCodeOk

func (o *ZubieCredsOutput) GetAuthCodeOk() (*interface{}, bool)

GetAuthCodeOk returns a tuple with the AuthCode 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 (*ZubieCredsOutput) GetClientId

func (o *ZubieCredsOutput) GetClientId() string

GetClientId returns the ClientId field value

func (*ZubieCredsOutput) GetClientIdOk

func (o *ZubieCredsOutput) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value and a boolean to check if the value has been set.

func (*ZubieCredsOutput) GetClientSecret

func (o *ZubieCredsOutput) GetClientSecret() interface{}

GetClientSecret returns the ClientSecret field value If the value is explicit nil, the zero value for interface{} will be returned

func (*ZubieCredsOutput) GetClientSecretOk

func (o *ZubieCredsOutput) GetClientSecretOk() (*interface{}, bool)

GetClientSecretOk returns a tuple with the ClientSecret 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 (*ZubieCredsOutput) GetRedirectUri

func (o *ZubieCredsOutput) GetRedirectUri() string

GetRedirectUri returns the RedirectUri field value

func (*ZubieCredsOutput) GetRedirectUriOk

func (o *ZubieCredsOutput) GetRedirectUriOk() (*string, bool)

GetRedirectUriOk returns a tuple with the RedirectUri field value and a boolean to check if the value has been set.

func (ZubieCredsOutput) MarshalJSON

func (o ZubieCredsOutput) MarshalJSON() ([]byte, error)

func (*ZubieCredsOutput) SetAuthCode

func (o *ZubieCredsOutput) SetAuthCode(v interface{})

SetAuthCode sets field value

func (*ZubieCredsOutput) SetClientId

func (o *ZubieCredsOutput) SetClientId(v string)

SetClientId sets field value

func (*ZubieCredsOutput) SetClientSecret

func (o *ZubieCredsOutput) SetClientSecret(v interface{})

SetClientSecret sets field value

func (*ZubieCredsOutput) SetRedirectUri

func (o *ZubieCredsOutput) SetRedirectUri(v string)

SetRedirectUri sets field value

func (ZubieCredsOutput) ToMap

func (o ZubieCredsOutput) ToMap() (map[string]interface{}, error)

func (*ZubieCredsOutput) UnmarshalJSON

func (o *ZubieCredsOutput) 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