basistheory

package module
v5.1.1 Latest Latest
Warning

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

Go to latest
Published: Mar 26, 2024 License: Apache-2.0 Imports: 20 Imported by: 0

README

Basis Theory Go SDK

Release

Getting Started

  • Sign-in to Basis Theory and go to Applications
  • Create a Basis Theory Private Application
  • All permissions should be selected
  • Paste the API Key into the BT-API-KEY variable

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: v1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import basistheory "github.com/Basis-Theory/basistheory-go/v5"

To use a proxy, set the environment variable HTTP_PROXY:

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

Running tests locally

To run tests locally, you'll need to create a Basis Theory tenant with private and management applications that are granted all permissions, then add the API keys for these applications to a .env.local file. You'll want to follow the same format as defined in the .env.example file. Then you can run make verify from the root of this repository to run all tests.

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

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

Class Method HTTP request Description
ApplicationKeysApi Create Post /applications/{id}/keys
ApplicationKeysApi Delete Delete /applications/{id}/keys/{keyId}
ApplicationKeysApi Get Get /applications/{id}/keys
ApplicationKeysApi GetById Get /applications/{id}/keys/{keyId}
ApplicationTemplatesApi Get Get /application-templates
ApplicationTemplatesApi GetById Get /application-templates/{id}
ApplicationsApi Create Post /applications
ApplicationsApi Delete Delete /applications/{id}
ApplicationsApi Get Get /applications
ApplicationsApi GetById Get /applications/{id}
ApplicationsApi GetByKey Get /applications/key
ApplicationsApi RegenerateKey Post /applications/{id}/regenerate
ApplicationsApi Update Put /applications/{id}
LogsApi Get Get /logs
LogsApi GetEntityTypes Get /logs/entity-types
PermissionsApi Get Get /permissions
ProxiesApi Create Post /proxies
ProxiesApi Delete Delete /proxies/{id}
ProxiesApi Get Get /proxies
ProxiesApi GetById Get /proxies/{id}
ProxiesApi Patch Patch /proxies/{id}
ProxiesApi Update Put /proxies/{id}
ReactorFormulasApi Create Post /reactor-formulas
ReactorFormulasApi Delete Delete /reactor-formulas/{id}
ReactorFormulasApi Get Get /reactor-formulas
ReactorFormulasApi GetById Get /reactor-formulas/{id}
ReactorFormulasApi Update Put /reactor-formulas/{id}
ReactorsApi Create Post /reactors
ReactorsApi Delete Delete /reactors/{id}
ReactorsApi Get Get /reactors
ReactorsApi GetById Get /reactors/{id}
ReactorsApi Patch Patch /reactors/{id}
ReactorsApi React Post /reactors/{id}/react
ReactorsApi Update Put /reactors/{id}
SessionsApi Authorize Post /sessions/authorize
SessionsApi Create Post /sessions
TenantsApi CreateInvitation Post /tenants/self/invitations
TenantsApi Delete Delete /tenants/self
TenantsApi DeleteInvitation Delete /tenants/self/invitations/{invitationId}
TenantsApi DeleteMember Delete /tenants/self/members/{memberId}
TenantsApi Get Get /tenants/self
TenantsApi GetInvitations Get /tenants/self/invitations
TenantsApi GetMembers Get /tenants/self/members
TenantsApi GetTenantUsageReport Get /tenants/self/reports/usage
TenantsApi ResendInvitation Post /tenants/self/invitations/{invitationId}/resend
TenantsApi Update Put /tenants/self
ThreeDSApi ThreeDSAuthenticateSession Post /3ds/sessions/{sessionId}/authenticate
ThreeDSApi ThreeDSGetChallengeResult Get /3ds/sessions/{sessionId}/challenge-result
ThreeDSApi ThreeDSGetSessionById Get /3ds/sessions/{id}
TokenizeApi Tokenize Post /tokenize
TokensApi Create Post /tokens
TokensApi Delete Delete /tokens/{id}
TokensApi Get Get /tokens
TokensApi GetById Get /tokens/{id}
TokensApi Search Post /tokens/search
TokensApi Update Patch /tokens/{id}

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

ApiKey
  • Type: API key
  • API key parameter name: BT-API-KEY
  • Location: HTTP header

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

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 (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedTenantInvitationStatusEnumValues = []TenantInvitationStatus{
	"PENDING",
	"EXPIRED",
}

All allowed values of TenantInvitationStatus 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 {
	ApplicationKeysApi *ApplicationKeysApiService

	ApplicationTemplatesApi *ApplicationTemplatesApiService

	ApplicationsApi *ApplicationsApiService

	LogsApi *LogsApiService

	PermissionsApi *PermissionsApiService

	ProxiesApi *ProxiesApiService

	ReactorFormulasApi *ReactorFormulasApiService

	ReactorsApi *ReactorsApiService

	SessionsApi *SessionsApiService

	TenantsApi *TenantsApiService

	ThreeDSApi *ThreeDSApiService

	TokenizeApi *TokenizeApiService

	TokensApi *TokensApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Basis Theory API API vv1 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 AccessRule

type AccessRule struct {
	Description NullableString `json:"description,omitempty"`
	Priority    NullableInt32  `json:"priority,omitempty"`
	Container   NullableString `json:"container,omitempty"`
	Transform   NullableString `json:"transform,omitempty"`
	Conditions  []Condition    `json:"conditions,omitempty"`
	Permissions []string       `json:"permissions,omitempty"`
}

AccessRule struct for AccessRule

func NewAccessRule

func NewAccessRule() *AccessRule

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

func NewAccessRuleWithDefaults

func NewAccessRuleWithDefaults() *AccessRule

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

func (*AccessRule) GetConditions

func (o *AccessRule) GetConditions() []Condition

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

func (*AccessRule) GetConditionsOk

func (o *AccessRule) GetConditionsOk() ([]Condition, bool)

GetConditionsOk returns a tuple with the Conditions 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 (*AccessRule) GetContainer

func (o *AccessRule) GetContainer() string

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

func (*AccessRule) GetContainerOk

func (o *AccessRule) GetContainerOk() (*string, bool)

GetContainerOk returns a tuple with the Container 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 (*AccessRule) GetDescription

func (o *AccessRule) GetDescription() string

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

func (*AccessRule) GetDescriptionOk

func (o *AccessRule) 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 (*AccessRule) GetPermissions

func (o *AccessRule) GetPermissions() []string

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

func (*AccessRule) GetPermissionsOk

func (o *AccessRule) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions 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 (*AccessRule) GetPriority

func (o *AccessRule) GetPriority() int32

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

func (*AccessRule) GetPriorityOk

func (o *AccessRule) GetPriorityOk() (*int32, bool)

GetPriorityOk returns a tuple with the Priority 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 (*AccessRule) GetTransform

func (o *AccessRule) GetTransform() string

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

func (*AccessRule) GetTransformOk

func (o *AccessRule) GetTransformOk() (*string, bool)

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

func (*AccessRule) HasConditions

func (o *AccessRule) HasConditions() bool

HasConditions returns a boolean if a field is not nil.

func (*AccessRule) HasContainer

func (o *AccessRule) HasContainer() bool

HasContainer returns a boolean if a field is not nil.

func (*AccessRule) HasDescription

func (o *AccessRule) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*AccessRule) HasPermissions

func (o *AccessRule) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*AccessRule) HasPriority

func (o *AccessRule) HasPriority() bool

HasPriority returns a boolean if a field is not nil.

func (*AccessRule) HasTransform

func (o *AccessRule) HasTransform() bool

HasTransform returns a boolean if a field is not nil.

func (AccessRule) MarshalJSON

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

func (*AccessRule) SetConditions

func (o *AccessRule) SetConditions(v []Condition)

SetConditions gets a reference to the given []Condition and assigns it to the Conditions field.

func (*AccessRule) SetContainer

func (o *AccessRule) SetContainer(v string)

SetContainer gets a reference to the given NullableString and assigns it to the Container field.

func (*AccessRule) SetContainerNil

func (o *AccessRule) SetContainerNil()

SetContainerNil sets the value for Container to be an explicit nil

func (*AccessRule) SetDescription

func (o *AccessRule) SetDescription(v string)

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

func (*AccessRule) SetDescriptionNil

func (o *AccessRule) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*AccessRule) SetPermissions

func (o *AccessRule) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*AccessRule) SetPriority

func (o *AccessRule) SetPriority(v int32)

SetPriority gets a reference to the given NullableInt32 and assigns it to the Priority field.

func (*AccessRule) SetPriorityNil

func (o *AccessRule) SetPriorityNil()

SetPriorityNil sets the value for Priority to be an explicit nil

func (*AccessRule) SetTransform

func (o *AccessRule) SetTransform(v string)

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

func (*AccessRule) SetTransformNil

func (o *AccessRule) SetTransformNil()

SetTransformNil sets the value for Transform to be an explicit nil

func (AccessRule) ToMap

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

func (*AccessRule) UnsetContainer

func (o *AccessRule) UnsetContainer()

UnsetContainer ensures that no value is present for Container, not even an explicit nil

func (*AccessRule) UnsetDescription

func (o *AccessRule) UnsetDescription()

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

func (*AccessRule) UnsetPriority

func (o *AccessRule) UnsetPriority()

UnsetPriority ensures that no value is present for Priority, not even an explicit nil

func (*AccessRule) UnsetTransform

func (o *AccessRule) UnsetTransform()

UnsetTransform ensures that no value is present for Transform, not even an explicit nil

type Application

type Application struct {
	Id       *string        `json:"id,omitempty"`
	TenantId *string        `json:"tenant_id,omitempty"`
	Name     NullableString `json:"name,omitempty"`
	// Deprecated
	Key         NullableString   `json:"key,omitempty"`
	Keys        []ApplicationKey `json:"keys,omitempty"`
	Type        NullableString   `json:"type,omitempty"`
	CreatedBy   NullableString   `json:"created_by,omitempty"`
	CreatedAt   NullableTime     `json:"created_at,omitempty"`
	ModifiedBy  NullableString   `json:"modified_by,omitempty"`
	ModifiedAt  NullableTime     `json:"modified_at,omitempty"`
	ExpiresAt   NullableTime     `json:"expires_at,omitempty"`
	Permissions []string         `json:"permissions,omitempty"`
	Rules       []AccessRule     `json:"rules,omitempty"`
}

Application struct for Application

func NewApplication

func NewApplication() *Application

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

func NewApplicationWithDefaults

func NewApplicationWithDefaults() *Application

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

func (*Application) GetCreatedAt

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

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

func (*Application) GetCreatedAtOk

func (o *Application) GetCreatedAtOk() (*time.Time, bool)

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

func (*Application) GetCreatedBy

func (o *Application) GetCreatedBy() string

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

func (*Application) GetCreatedByOk

func (o *Application) GetCreatedByOk() (*string, bool)

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

func (*Application) GetExpiresAt

func (o *Application) GetExpiresAt() time.Time

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

func (*Application) GetExpiresAtOk

func (o *Application) GetExpiresAtOk() (*time.Time, bool)

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

func (*Application) GetId

func (o *Application) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Application) GetIdOk

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

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

func (*Application) GetKey

func (o *Application) GetKey() string

GetKey returns the Key field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*Application) GetKeyOk

func (o *Application) GetKeyOk() (*string, bool)

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

func (*Application) GetKeys

func (o *Application) GetKeys() []ApplicationKey

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

func (*Application) GetKeysOk

func (o *Application) GetKeysOk() ([]ApplicationKey, bool)

GetKeysOk returns a tuple with the Keys 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 (*Application) GetModifiedAt

func (o *Application) GetModifiedAt() time.Time

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

func (*Application) GetModifiedAtOk

func (o *Application) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*Application) GetModifiedBy

func (o *Application) GetModifiedBy() string

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

func (*Application) GetModifiedByOk

func (o *Application) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*Application) GetName

func (o *Application) GetName() string

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

func (*Application) GetNameOk

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

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

func (*Application) GetPermissions

func (o *Application) GetPermissions() []string

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

func (*Application) GetPermissionsOk

func (o *Application) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions 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 (*Application) GetRules

func (o *Application) GetRules() []AccessRule

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

func (*Application) GetRulesOk

func (o *Application) GetRulesOk() ([]AccessRule, bool)

GetRulesOk returns a tuple with the Rules 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 (*Application) GetTenantId

func (o *Application) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Application) GetTenantIdOk

func (o *Application) GetTenantIdOk() (*string, bool)

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

func (*Application) GetType

func (o *Application) GetType() string

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

func (*Application) GetTypeOk

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

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

func (*Application) HasCreatedAt

func (o *Application) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*Application) HasCreatedBy

func (o *Application) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*Application) HasExpiresAt

func (o *Application) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*Application) HasId

func (o *Application) HasId() bool

HasId returns a boolean if a field is not nil.

func (*Application) HasKey

func (o *Application) HasKey() bool

HasKey returns a boolean if a field is not nil.

func (*Application) HasKeys

func (o *Application) HasKeys() bool

HasKeys returns a boolean if a field is not nil.

func (*Application) HasModifiedAt

func (o *Application) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*Application) HasModifiedBy

func (o *Application) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*Application) HasName

func (o *Application) HasName() bool

HasName returns a boolean if a field is not nil.

func (*Application) HasPermissions

func (o *Application) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*Application) HasRules

func (o *Application) HasRules() bool

HasRules returns a boolean if a field is not nil.

func (*Application) HasTenantId

func (o *Application) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (*Application) HasType

func (o *Application) HasType() bool

HasType returns a boolean if a field is not nil.

func (Application) MarshalJSON

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

func (*Application) SetCreatedAt

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

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

func (*Application) SetCreatedAtNil

func (o *Application) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Application) SetCreatedBy

func (o *Application) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*Application) SetCreatedByNil

func (o *Application) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Application) SetExpiresAt

func (o *Application) SetExpiresAt(v time.Time)

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

func (*Application) SetExpiresAtNil

func (o *Application) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*Application) SetId

func (o *Application) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Application) SetKey

func (o *Application) SetKey(v string)

SetKey gets a reference to the given NullableString and assigns it to the Key field. Deprecated

func (*Application) SetKeyNil

func (o *Application) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*Application) SetKeys

func (o *Application) SetKeys(v []ApplicationKey)

SetKeys gets a reference to the given []ApplicationKey and assigns it to the Keys field.

func (*Application) SetModifiedAt

func (o *Application) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*Application) SetModifiedAtNil

func (o *Application) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*Application) SetModifiedBy

func (o *Application) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*Application) SetModifiedByNil

func (o *Application) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Application) SetName

func (o *Application) SetName(v string)

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

func (*Application) SetNameNil

func (o *Application) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Application) SetPermissions

func (o *Application) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*Application) SetRules

func (o *Application) SetRules(v []AccessRule)

SetRules gets a reference to the given []AccessRule and assigns it to the Rules field.

func (*Application) SetTenantId

func (o *Application) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Application) SetType

func (o *Application) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*Application) SetTypeNil

func (o *Application) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (Application) ToMap

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

func (*Application) UnsetCreatedAt

func (o *Application) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*Application) UnsetCreatedBy

func (o *Application) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*Application) UnsetExpiresAt

func (o *Application) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

func (*Application) UnsetKey

func (o *Application) UnsetKey()

UnsetKey ensures that no value is present for Key, not even an explicit nil

func (*Application) UnsetModifiedAt

func (o *Application) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*Application) UnsetModifiedBy

func (o *Application) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*Application) UnsetName

func (o *Application) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*Application) UnsetType

func (o *Application) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type ApplicationKey

type ApplicationKey struct {
	Id        *string        `json:"id,omitempty"`
	Key       NullableString `json:"key,omitempty"`
	CreatedBy NullableString `json:"created_by,omitempty"`
	CreatedAt NullableTime   `json:"created_at,omitempty"`
}

ApplicationKey struct for ApplicationKey

func NewApplicationKey

func NewApplicationKey() *ApplicationKey

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

func NewApplicationKeyWithDefaults

func NewApplicationKeyWithDefaults() *ApplicationKey

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

func (*ApplicationKey) GetCreatedAt

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

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

func (*ApplicationKey) GetCreatedAtOk

func (o *ApplicationKey) GetCreatedAtOk() (*time.Time, bool)

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

func (*ApplicationKey) GetCreatedBy

func (o *ApplicationKey) GetCreatedBy() string

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

func (*ApplicationKey) GetCreatedByOk

func (o *ApplicationKey) GetCreatedByOk() (*string, bool)

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

func (*ApplicationKey) GetId

func (o *ApplicationKey) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ApplicationKey) GetIdOk

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

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

func (*ApplicationKey) GetKey

func (o *ApplicationKey) GetKey() string

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

func (*ApplicationKey) GetKeyOk

func (o *ApplicationKey) GetKeyOk() (*string, bool)

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

func (*ApplicationKey) HasCreatedAt

func (o *ApplicationKey) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*ApplicationKey) HasCreatedBy

func (o *ApplicationKey) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*ApplicationKey) HasId

func (o *ApplicationKey) HasId() bool

HasId returns a boolean if a field is not nil.

func (*ApplicationKey) HasKey

func (o *ApplicationKey) HasKey() bool

HasKey returns a boolean if a field is not nil.

func (ApplicationKey) MarshalJSON

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

func (*ApplicationKey) SetCreatedAt

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

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

func (*ApplicationKey) SetCreatedAtNil

func (o *ApplicationKey) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*ApplicationKey) SetCreatedBy

func (o *ApplicationKey) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*ApplicationKey) SetCreatedByNil

func (o *ApplicationKey) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ApplicationKey) SetId

func (o *ApplicationKey) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ApplicationKey) SetKey

func (o *ApplicationKey) SetKey(v string)

SetKey gets a reference to the given NullableString and assigns it to the Key field.

func (*ApplicationKey) SetKeyNil

func (o *ApplicationKey) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (ApplicationKey) ToMap

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

func (*ApplicationKey) UnsetCreatedAt

func (o *ApplicationKey) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*ApplicationKey) UnsetCreatedBy

func (o *ApplicationKey) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*ApplicationKey) UnsetKey

func (o *ApplicationKey) UnsetKey()

UnsetKey ensures that no value is present for Key, not even an explicit nil

type ApplicationKeysApiCreateRequest

type ApplicationKeysApiCreateRequest struct {
	ApiService *ApplicationKeysApiService
	// contains filtered or unexported fields
}

func (ApplicationKeysApiCreateRequest) Execute

type ApplicationKeysApiDeleteRequest

type ApplicationKeysApiDeleteRequest struct {
	ApiService *ApplicationKeysApiService
	// contains filtered or unexported fields
}

func (ApplicationKeysApiDeleteRequest) Execute

type ApplicationKeysApiGetByIdRequest

type ApplicationKeysApiGetByIdRequest struct {
	ApiService *ApplicationKeysApiService
	// contains filtered or unexported fields
}

func (ApplicationKeysApiGetByIdRequest) Execute

type ApplicationKeysApiGetRequest

type ApplicationKeysApiGetRequest struct {
	ApiService *ApplicationKeysApiService
	// contains filtered or unexported fields
}

func (ApplicationKeysApiGetRequest) Execute

func (ApplicationKeysApiGetRequest) Id2

func (ApplicationKeysApiGetRequest) Type_

type ApplicationKeysApiService

type ApplicationKeysApiService service

ApplicationKeysApiService ApplicationKeysApi service

func (*ApplicationKeysApiService) Create

Create Method for Create

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

func (*ApplicationKeysApiService) CreateExecute

Execute executes the request

@return ApplicationKey

func (*ApplicationKeysApiService) Delete

Delete Method for Delete

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

func (*ApplicationKeysApiService) DeleteExecute

Execute executes the request

func (*ApplicationKeysApiService) Get

Get Method for Get

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

func (*ApplicationKeysApiService) GetById

GetById Method for GetById

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

func (*ApplicationKeysApiService) GetByIdExecute

Execute executes the request

@return ApplicationKey

func (*ApplicationKeysApiService) GetExecute

Execute executes the request

@return []ApplicationKey

type ApplicationPaginatedList

type ApplicationPaginatedList struct {
	Pagination *Pagination   `json:"pagination,omitempty"`
	Data       []Application `json:"data,omitempty"`
}

ApplicationPaginatedList struct for ApplicationPaginatedList

func NewApplicationPaginatedList

func NewApplicationPaginatedList() *ApplicationPaginatedList

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

func NewApplicationPaginatedListWithDefaults

func NewApplicationPaginatedListWithDefaults() *ApplicationPaginatedList

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

func (*ApplicationPaginatedList) GetData

func (o *ApplicationPaginatedList) GetData() []Application

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

func (*ApplicationPaginatedList) GetDataOk

func (o *ApplicationPaginatedList) GetDataOk() ([]Application, bool)

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

func (*ApplicationPaginatedList) GetPagination

func (o *ApplicationPaginatedList) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ApplicationPaginatedList) GetPaginationOk

func (o *ApplicationPaginatedList) GetPaginationOk() (*Pagination, bool)

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

func (*ApplicationPaginatedList) HasData

func (o *ApplicationPaginatedList) HasData() bool

HasData returns a boolean if a field is not nil.

func (*ApplicationPaginatedList) HasPagination

func (o *ApplicationPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field is not nil.

func (ApplicationPaginatedList) MarshalJSON

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

func (*ApplicationPaginatedList) SetData

func (o *ApplicationPaginatedList) SetData(v []Application)

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

func (*ApplicationPaginatedList) SetPagination

func (o *ApplicationPaginatedList) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (ApplicationPaginatedList) ToMap

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

type ApplicationTemplate

type ApplicationTemplate struct {
	Id              *string        `json:"id,omitempty"`
	Name            NullableString `json:"name,omitempty"`
	Description     NullableString `json:"description,omitempty"`
	ApplicationType NullableString `json:"application_type,omitempty"`
	TemplateType    NullableString `json:"template_type,omitempty"`
	IsStarter       *bool          `json:"is_starter,omitempty"`
	Rules           []AccessRule   `json:"rules,omitempty"`
	Permissions     []string       `json:"permissions,omitempty"`
}

ApplicationTemplate struct for ApplicationTemplate

func NewApplicationTemplate

func NewApplicationTemplate() *ApplicationTemplate

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

func NewApplicationTemplateWithDefaults

func NewApplicationTemplateWithDefaults() *ApplicationTemplate

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

func (*ApplicationTemplate) GetApplicationType

func (o *ApplicationTemplate) GetApplicationType() string

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

func (*ApplicationTemplate) GetApplicationTypeOk

func (o *ApplicationTemplate) GetApplicationTypeOk() (*string, bool)

GetApplicationTypeOk returns a tuple with the ApplicationType 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 (*ApplicationTemplate) GetDescription

func (o *ApplicationTemplate) GetDescription() string

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

func (*ApplicationTemplate) GetDescriptionOk

func (o *ApplicationTemplate) 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 (*ApplicationTemplate) GetId

func (o *ApplicationTemplate) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ApplicationTemplate) GetIdOk

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

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

func (*ApplicationTemplate) GetIsStarter

func (o *ApplicationTemplate) GetIsStarter() bool

GetIsStarter returns the IsStarter field value if set, zero value otherwise.

func (*ApplicationTemplate) GetIsStarterOk

func (o *ApplicationTemplate) GetIsStarterOk() (*bool, bool)

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

func (*ApplicationTemplate) GetName

func (o *ApplicationTemplate) GetName() string

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

func (*ApplicationTemplate) GetNameOk

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

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

func (*ApplicationTemplate) GetPermissions

func (o *ApplicationTemplate) GetPermissions() []string

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

func (*ApplicationTemplate) GetPermissionsOk

func (o *ApplicationTemplate) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions 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 (*ApplicationTemplate) GetRules

func (o *ApplicationTemplate) GetRules() []AccessRule

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

func (*ApplicationTemplate) GetRulesOk

func (o *ApplicationTemplate) GetRulesOk() ([]AccessRule, bool)

GetRulesOk returns a tuple with the Rules 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 (*ApplicationTemplate) GetTemplateType

func (o *ApplicationTemplate) GetTemplateType() string

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

func (*ApplicationTemplate) GetTemplateTypeOk

func (o *ApplicationTemplate) GetTemplateTypeOk() (*string, bool)

GetTemplateTypeOk returns a tuple with the TemplateType 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 (*ApplicationTemplate) HasApplicationType

func (o *ApplicationTemplate) HasApplicationType() bool

HasApplicationType returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasDescription

func (o *ApplicationTemplate) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasId

func (o *ApplicationTemplate) HasId() bool

HasId returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasIsStarter

func (o *ApplicationTemplate) HasIsStarter() bool

HasIsStarter returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasName

func (o *ApplicationTemplate) HasName() bool

HasName returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasPermissions

func (o *ApplicationTemplate) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasRules

func (o *ApplicationTemplate) HasRules() bool

HasRules returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasTemplateType

func (o *ApplicationTemplate) HasTemplateType() bool

HasTemplateType returns a boolean if a field is not nil.

func (ApplicationTemplate) MarshalJSON

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

func (*ApplicationTemplate) SetApplicationType

func (o *ApplicationTemplate) SetApplicationType(v string)

SetApplicationType gets a reference to the given NullableString and assigns it to the ApplicationType field.

func (*ApplicationTemplate) SetApplicationTypeNil

func (o *ApplicationTemplate) SetApplicationTypeNil()

SetApplicationTypeNil sets the value for ApplicationType to be an explicit nil

func (*ApplicationTemplate) SetDescription

func (o *ApplicationTemplate) SetDescription(v string)

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

func (*ApplicationTemplate) SetDescriptionNil

func (o *ApplicationTemplate) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ApplicationTemplate) SetId

func (o *ApplicationTemplate) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ApplicationTemplate) SetIsStarter

func (o *ApplicationTemplate) SetIsStarter(v bool)

SetIsStarter gets a reference to the given bool and assigns it to the IsStarter field.

func (*ApplicationTemplate) SetName

func (o *ApplicationTemplate) SetName(v string)

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

func (*ApplicationTemplate) SetNameNil

func (o *ApplicationTemplate) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ApplicationTemplate) SetPermissions

func (o *ApplicationTemplate) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*ApplicationTemplate) SetRules

func (o *ApplicationTemplate) SetRules(v []AccessRule)

SetRules gets a reference to the given []AccessRule and assigns it to the Rules field.

func (*ApplicationTemplate) SetTemplateType

func (o *ApplicationTemplate) SetTemplateType(v string)

SetTemplateType gets a reference to the given NullableString and assigns it to the TemplateType field.

func (*ApplicationTemplate) SetTemplateTypeNil

func (o *ApplicationTemplate) SetTemplateTypeNil()

SetTemplateTypeNil sets the value for TemplateType to be an explicit nil

func (ApplicationTemplate) ToMap

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

func (*ApplicationTemplate) UnsetApplicationType

func (o *ApplicationTemplate) UnsetApplicationType()

UnsetApplicationType ensures that no value is present for ApplicationType, not even an explicit nil

func (*ApplicationTemplate) UnsetDescription

func (o *ApplicationTemplate) UnsetDescription()

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

func (*ApplicationTemplate) UnsetName

func (o *ApplicationTemplate) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*ApplicationTemplate) UnsetTemplateType

func (o *ApplicationTemplate) UnsetTemplateType()

UnsetTemplateType ensures that no value is present for TemplateType, not even an explicit nil

type ApplicationTemplatesApiGetByIdRequest

type ApplicationTemplatesApiGetByIdRequest struct {
	ApiService *ApplicationTemplatesApiService
	// contains filtered or unexported fields
}

func (ApplicationTemplatesApiGetByIdRequest) Execute

type ApplicationTemplatesApiGetRequest

type ApplicationTemplatesApiGetRequest struct {
	ApiService *ApplicationTemplatesApiService
	// contains filtered or unexported fields
}

func (ApplicationTemplatesApiGetRequest) Execute

type ApplicationTemplatesApiService

type ApplicationTemplatesApiService service

ApplicationTemplatesApiService ApplicationTemplatesApi service

func (*ApplicationTemplatesApiService) Get

Get Method for Get

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

func (*ApplicationTemplatesApiService) GetById

GetById Method for GetById

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

func (*ApplicationTemplatesApiService) GetByIdExecute

Execute executes the request

@return ApplicationTemplate

func (*ApplicationTemplatesApiService) GetExecute

Execute executes the request

@return []ApplicationTemplate

type ApplicationsApiCreateRequest

type ApplicationsApiCreateRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApplicationsApiCreateRequest) CreateApplicationRequest

func (r ApplicationsApiCreateRequest) CreateApplicationRequest(createApplicationRequest CreateApplicationRequest) ApplicationsApiCreateRequest

func (ApplicationsApiCreateRequest) Execute

type ApplicationsApiDeleteRequest

type ApplicationsApiDeleteRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApplicationsApiDeleteRequest) Execute

type ApplicationsApiGetByIdRequest

type ApplicationsApiGetByIdRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApplicationsApiGetByIdRequest) Execute

type ApplicationsApiGetByKeyRequest

type ApplicationsApiGetByKeyRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApplicationsApiGetByKeyRequest) Execute

type ApplicationsApiGetRequest

type ApplicationsApiGetRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApplicationsApiGetRequest) Execute

func (ApplicationsApiGetRequest) Id

func (ApplicationsApiGetRequest) Page

func (ApplicationsApiGetRequest) Size

func (ApplicationsApiGetRequest) Start

func (ApplicationsApiGetRequest) Type_

type ApplicationsApiRegenerateKeyRequest

type ApplicationsApiRegenerateKeyRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApplicationsApiRegenerateKeyRequest) Execute

type ApplicationsApiService

type ApplicationsApiService service

ApplicationsApiService ApplicationsApi service

func (*ApplicationsApiService) Create

Create Method for Create

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

func (*ApplicationsApiService) CreateExecute

Execute executes the request

@return Application

func (*ApplicationsApiService) Delete

Delete Method for Delete

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

func (*ApplicationsApiService) DeleteExecute

Execute executes the request

func (*ApplicationsApiService) Get

Get Method for Get

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

func (*ApplicationsApiService) GetById

GetById Method for GetById

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

func (*ApplicationsApiService) GetByIdExecute

Execute executes the request

@return Application

func (*ApplicationsApiService) GetByKey

GetByKey Method for GetByKey

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

func (*ApplicationsApiService) GetByKeyExecute

Execute executes the request

@return Application

func (*ApplicationsApiService) GetExecute

Execute executes the request

@return ApplicationPaginatedList

func (*ApplicationsApiService) RegenerateKey

RegenerateKey Method for RegenerateKey

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

Deprecated

func (*ApplicationsApiService) RegenerateKeyExecute

Execute executes the request

@return Application

Deprecated

func (*ApplicationsApiService) Update

Update Method for Update

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

func (*ApplicationsApiService) UpdateExecute

Execute executes the request

@return Application

type ApplicationsApiUpdateRequest

type ApplicationsApiUpdateRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApplicationsApiUpdateRequest) Execute

func (ApplicationsApiUpdateRequest) UpdateApplicationRequest

func (r ApplicationsApiUpdateRequest) UpdateApplicationRequest(updateApplicationRequest UpdateApplicationRequest) ApplicationsApiUpdateRequest

type AuthenticateThreeDSSessionRequest

type AuthenticateThreeDSSessionRequest struct {
	AuthenticationCategory string                    `json:"authentication_category"`
	AuthenticationType     string                    `json:"authentication_type"`
	ChallengePreference    NullableString            `json:"challenge_preference,omitempty"`
	PurchaseInfo           *ThreeDSPurchaseInfo      `json:"purchase_info,omitempty"`
	MerchantInfo           *ThreeDSMerchantInfo      `json:"merchant_info,omitempty"`
	RequestorInfo          ThreeDSRequestorInfo      `json:"requestor_info"`
	CardholderInfo         *ThreeDSCardholderInfo    `json:"cardholder_info,omitempty"`
	BroadcastInfo          interface{}               `json:"broadcast_info,omitempty"`
	MessageExtensions      []ThreeDSMessageExtension `json:"message_extensions,omitempty"`
}

AuthenticateThreeDSSessionRequest struct for AuthenticateThreeDSSessionRequest

func NewAuthenticateThreeDSSessionRequest

func NewAuthenticateThreeDSSessionRequest(authenticationCategory string, authenticationType string, requestorInfo ThreeDSRequestorInfo) *AuthenticateThreeDSSessionRequest

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

func NewAuthenticateThreeDSSessionRequestWithDefaults

func NewAuthenticateThreeDSSessionRequestWithDefaults() *AuthenticateThreeDSSessionRequest

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

func (*AuthenticateThreeDSSessionRequest) GetAuthenticationCategory

func (o *AuthenticateThreeDSSessionRequest) GetAuthenticationCategory() string

GetAuthenticationCategory returns the AuthenticationCategory field value

func (*AuthenticateThreeDSSessionRequest) GetAuthenticationCategoryOk

func (o *AuthenticateThreeDSSessionRequest) GetAuthenticationCategoryOk() (*string, bool)

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

func (*AuthenticateThreeDSSessionRequest) GetAuthenticationType

func (o *AuthenticateThreeDSSessionRequest) GetAuthenticationType() string

GetAuthenticationType returns the AuthenticationType field value

func (*AuthenticateThreeDSSessionRequest) GetAuthenticationTypeOk

func (o *AuthenticateThreeDSSessionRequest) GetAuthenticationTypeOk() (*string, bool)

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

func (*AuthenticateThreeDSSessionRequest) GetBroadcastInfo

func (o *AuthenticateThreeDSSessionRequest) GetBroadcastInfo() interface{}

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

func (*AuthenticateThreeDSSessionRequest) GetBroadcastInfoOk

func (o *AuthenticateThreeDSSessionRequest) GetBroadcastInfoOk() (*interface{}, bool)

GetBroadcastInfoOk returns a tuple with the BroadcastInfo 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 (*AuthenticateThreeDSSessionRequest) GetCardholderInfo

GetCardholderInfo returns the CardholderInfo field value if set, zero value otherwise.

func (*AuthenticateThreeDSSessionRequest) GetCardholderInfoOk

func (o *AuthenticateThreeDSSessionRequest) GetCardholderInfoOk() (*ThreeDSCardholderInfo, bool)

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

func (*AuthenticateThreeDSSessionRequest) GetChallengePreference

func (o *AuthenticateThreeDSSessionRequest) GetChallengePreference() string

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

func (*AuthenticateThreeDSSessionRequest) GetChallengePreferenceOk

func (o *AuthenticateThreeDSSessionRequest) GetChallengePreferenceOk() (*string, bool)

GetChallengePreferenceOk returns a tuple with the ChallengePreference 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 (*AuthenticateThreeDSSessionRequest) GetMerchantInfo

GetMerchantInfo returns the MerchantInfo field value if set, zero value otherwise.

func (*AuthenticateThreeDSSessionRequest) GetMerchantInfoOk

func (o *AuthenticateThreeDSSessionRequest) GetMerchantInfoOk() (*ThreeDSMerchantInfo, bool)

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

func (*AuthenticateThreeDSSessionRequest) GetMessageExtensions

func (o *AuthenticateThreeDSSessionRequest) GetMessageExtensions() []ThreeDSMessageExtension

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

func (*AuthenticateThreeDSSessionRequest) GetMessageExtensionsOk

func (o *AuthenticateThreeDSSessionRequest) GetMessageExtensionsOk() ([]ThreeDSMessageExtension, bool)

GetMessageExtensionsOk returns a tuple with the MessageExtensions 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 (*AuthenticateThreeDSSessionRequest) GetPurchaseInfo

GetPurchaseInfo returns the PurchaseInfo field value if set, zero value otherwise.

func (*AuthenticateThreeDSSessionRequest) GetPurchaseInfoOk

func (o *AuthenticateThreeDSSessionRequest) GetPurchaseInfoOk() (*ThreeDSPurchaseInfo, bool)

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

func (*AuthenticateThreeDSSessionRequest) GetRequestorInfo

GetRequestorInfo returns the RequestorInfo field value

func (*AuthenticateThreeDSSessionRequest) GetRequestorInfoOk

func (o *AuthenticateThreeDSSessionRequest) GetRequestorInfoOk() (*ThreeDSRequestorInfo, bool)

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

func (*AuthenticateThreeDSSessionRequest) HasBroadcastInfo

func (o *AuthenticateThreeDSSessionRequest) HasBroadcastInfo() bool

HasBroadcastInfo returns a boolean if a field is not nil.

func (*AuthenticateThreeDSSessionRequest) HasCardholderInfo

func (o *AuthenticateThreeDSSessionRequest) HasCardholderInfo() bool

HasCardholderInfo returns a boolean if a field is not nil.

func (*AuthenticateThreeDSSessionRequest) HasChallengePreference

func (o *AuthenticateThreeDSSessionRequest) HasChallengePreference() bool

HasChallengePreference returns a boolean if a field is not nil.

func (*AuthenticateThreeDSSessionRequest) HasMerchantInfo

func (o *AuthenticateThreeDSSessionRequest) HasMerchantInfo() bool

HasMerchantInfo returns a boolean if a field is not nil.

func (*AuthenticateThreeDSSessionRequest) HasMessageExtensions

func (o *AuthenticateThreeDSSessionRequest) HasMessageExtensions() bool

HasMessageExtensions returns a boolean if a field is not nil.

func (*AuthenticateThreeDSSessionRequest) HasPurchaseInfo

func (o *AuthenticateThreeDSSessionRequest) HasPurchaseInfo() bool

HasPurchaseInfo returns a boolean if a field is not nil.

func (AuthenticateThreeDSSessionRequest) MarshalJSON

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

func (*AuthenticateThreeDSSessionRequest) SetAuthenticationCategory

func (o *AuthenticateThreeDSSessionRequest) SetAuthenticationCategory(v string)

SetAuthenticationCategory sets field value

func (*AuthenticateThreeDSSessionRequest) SetAuthenticationType

func (o *AuthenticateThreeDSSessionRequest) SetAuthenticationType(v string)

SetAuthenticationType sets field value

func (*AuthenticateThreeDSSessionRequest) SetBroadcastInfo

func (o *AuthenticateThreeDSSessionRequest) SetBroadcastInfo(v interface{})

SetBroadcastInfo gets a reference to the given interface{} and assigns it to the BroadcastInfo field.

func (*AuthenticateThreeDSSessionRequest) SetCardholderInfo

SetCardholderInfo gets a reference to the given ThreeDSCardholderInfo and assigns it to the CardholderInfo field.

func (*AuthenticateThreeDSSessionRequest) SetChallengePreference

func (o *AuthenticateThreeDSSessionRequest) SetChallengePreference(v string)

SetChallengePreference gets a reference to the given NullableString and assigns it to the ChallengePreference field.

func (*AuthenticateThreeDSSessionRequest) SetChallengePreferenceNil

func (o *AuthenticateThreeDSSessionRequest) SetChallengePreferenceNil()

SetChallengePreferenceNil sets the value for ChallengePreference to be an explicit nil

func (*AuthenticateThreeDSSessionRequest) SetMerchantInfo

SetMerchantInfo gets a reference to the given ThreeDSMerchantInfo and assigns it to the MerchantInfo field.

func (*AuthenticateThreeDSSessionRequest) SetMessageExtensions

func (o *AuthenticateThreeDSSessionRequest) SetMessageExtensions(v []ThreeDSMessageExtension)

SetMessageExtensions gets a reference to the given []ThreeDSMessageExtension and assigns it to the MessageExtensions field.

func (*AuthenticateThreeDSSessionRequest) SetPurchaseInfo

SetPurchaseInfo gets a reference to the given ThreeDSPurchaseInfo and assigns it to the PurchaseInfo field.

func (*AuthenticateThreeDSSessionRequest) SetRequestorInfo

SetRequestorInfo sets field value

func (AuthenticateThreeDSSessionRequest) ToMap

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

func (*AuthenticateThreeDSSessionRequest) UnsetChallengePreference

func (o *AuthenticateThreeDSSessionRequest) UnsetChallengePreference()

UnsetChallengePreference ensures that no value is present for ChallengePreference, not even an explicit nil

type AuthorizeSessionRequest

type AuthorizeSessionRequest struct {
	Nonce       string         `json:"nonce"`
	ExpiresAt   NullableString `json:"expires_at,omitempty"`
	Permissions []string       `json:"permissions,omitempty"`
	Rules       []AccessRule   `json:"rules,omitempty"`
}

AuthorizeSessionRequest struct for AuthorizeSessionRequest

func NewAuthorizeSessionRequest

func NewAuthorizeSessionRequest(nonce string) *AuthorizeSessionRequest

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

func NewAuthorizeSessionRequestWithDefaults

func NewAuthorizeSessionRequestWithDefaults() *AuthorizeSessionRequest

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

func (*AuthorizeSessionRequest) GetExpiresAt

func (o *AuthorizeSessionRequest) GetExpiresAt() string

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

func (*AuthorizeSessionRequest) GetExpiresAtOk

func (o *AuthorizeSessionRequest) GetExpiresAtOk() (*string, bool)

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

func (*AuthorizeSessionRequest) GetNonce

func (o *AuthorizeSessionRequest) GetNonce() string

GetNonce returns the Nonce field value

func (*AuthorizeSessionRequest) GetNonceOk

func (o *AuthorizeSessionRequest) GetNonceOk() (*string, bool)

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

func (*AuthorizeSessionRequest) GetPermissions

func (o *AuthorizeSessionRequest) GetPermissions() []string

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

func (*AuthorizeSessionRequest) GetPermissionsOk

func (o *AuthorizeSessionRequest) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions 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 (*AuthorizeSessionRequest) GetRules

func (o *AuthorizeSessionRequest) GetRules() []AccessRule

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

func (*AuthorizeSessionRequest) GetRulesOk

func (o *AuthorizeSessionRequest) GetRulesOk() ([]AccessRule, bool)

GetRulesOk returns a tuple with the Rules 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 (*AuthorizeSessionRequest) HasExpiresAt

func (o *AuthorizeSessionRequest) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*AuthorizeSessionRequest) HasPermissions

func (o *AuthorizeSessionRequest) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*AuthorizeSessionRequest) HasRules

func (o *AuthorizeSessionRequest) HasRules() bool

HasRules returns a boolean if a field is not nil.

func (AuthorizeSessionRequest) MarshalJSON

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

func (*AuthorizeSessionRequest) SetExpiresAt

func (o *AuthorizeSessionRequest) SetExpiresAt(v string)

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

func (*AuthorizeSessionRequest) SetExpiresAtNil

func (o *AuthorizeSessionRequest) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*AuthorizeSessionRequest) SetNonce

func (o *AuthorizeSessionRequest) SetNonce(v string)

SetNonce sets field value

func (*AuthorizeSessionRequest) SetPermissions

func (o *AuthorizeSessionRequest) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*AuthorizeSessionRequest) SetRules

func (o *AuthorizeSessionRequest) SetRules(v []AccessRule)

SetRules gets a reference to the given []AccessRule and assigns it to the Rules field.

func (AuthorizeSessionRequest) ToMap

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

func (*AuthorizeSessionRequest) UnsetExpiresAt

func (o *AuthorizeSessionRequest) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, 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 BinDetails

type BinDetails struct {
	CardBrand       NullableString     `json:"card_brand,omitempty"`
	Type            NullableString     `json:"type,omitempty"`
	Prepaid         NullableBool       `json:"prepaid,omitempty"`
	CardSegmentType NullableString     `json:"card_segment_type,omitempty"`
	Bank            *BinDetailsBank    `json:"bank,omitempty"`
	Product         *BinDetailsProduct `json:"product,omitempty"`
	Country         *BinDetailsCountry `json:"country,omitempty"`
	Reloadable      NullableBool       `json:"reloadable,omitempty"`
	PanOrToken      NullableString     `json:"pan_or_token,omitempty"`
	AccountUpdater  NullableBool       `json:"account_updater,omitempty"`
	Alm             NullableBool       `json:"alm,omitempty"`
	DomesticOnly    NullableBool       `json:"domestic_only,omitempty"`
	GamblingBlocked NullableBool       `json:"gambling_blocked,omitempty"`
	Level2          NullableBool       `json:"level2,omitempty"`
	Level3          NullableBool       `json:"level3,omitempty"`
	IssuerCurrency  NullableString     `json:"issuer_currency,omitempty"`
	ComboCard       NullableString     `json:"combo_card,omitempty"`
	BinLength       NullableInt32      `json:"bin_length,omitempty"`
	Authentication  interface{}        `json:"authentication,omitempty"`
	Cost            interface{}        `json:"cost,omitempty"`
}

BinDetails struct for BinDetails

func NewBinDetails

func NewBinDetails() *BinDetails

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

func NewBinDetailsWithDefaults

func NewBinDetailsWithDefaults() *BinDetails

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

func (*BinDetails) GetAccountUpdater

func (o *BinDetails) GetAccountUpdater() bool

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

func (*BinDetails) GetAccountUpdaterOk

func (o *BinDetails) GetAccountUpdaterOk() (*bool, bool)

GetAccountUpdaterOk returns a tuple with the AccountUpdater 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 (*BinDetails) GetAlm

func (o *BinDetails) GetAlm() bool

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

func (*BinDetails) GetAlmOk

func (o *BinDetails) GetAlmOk() (*bool, bool)

GetAlmOk returns a tuple with the Alm 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 (*BinDetails) GetAuthentication

func (o *BinDetails) GetAuthentication() interface{}

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

func (*BinDetails) GetAuthenticationOk

func (o *BinDetails) GetAuthenticationOk() (*interface{}, bool)

GetAuthenticationOk returns a tuple with the Authentication 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 (*BinDetails) GetBank

func (o *BinDetails) GetBank() BinDetailsBank

GetBank returns the Bank field value if set, zero value otherwise.

func (*BinDetails) GetBankOk

func (o *BinDetails) GetBankOk() (*BinDetailsBank, bool)

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

func (*BinDetails) GetBinLength

func (o *BinDetails) GetBinLength() int32

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

func (*BinDetails) GetBinLengthOk

func (o *BinDetails) GetBinLengthOk() (*int32, bool)

GetBinLengthOk returns a tuple with the BinLength 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 (*BinDetails) GetCardBrand

func (o *BinDetails) GetCardBrand() string

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

func (*BinDetails) GetCardBrandOk

func (o *BinDetails) GetCardBrandOk() (*string, bool)

GetCardBrandOk returns a tuple with the CardBrand 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 (*BinDetails) GetCardSegmentType

func (o *BinDetails) GetCardSegmentType() string

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

func (*BinDetails) GetCardSegmentTypeOk

func (o *BinDetails) GetCardSegmentTypeOk() (*string, bool)

GetCardSegmentTypeOk returns a tuple with the CardSegmentType 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 (*BinDetails) GetComboCard

func (o *BinDetails) GetComboCard() string

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

func (*BinDetails) GetComboCardOk

func (o *BinDetails) GetComboCardOk() (*string, bool)

GetComboCardOk returns a tuple with the ComboCard 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 (*BinDetails) GetCost

func (o *BinDetails) GetCost() interface{}

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

func (*BinDetails) GetCostOk

func (o *BinDetails) GetCostOk() (*interface{}, bool)

GetCostOk returns a tuple with the Cost 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 (*BinDetails) GetCountry

func (o *BinDetails) GetCountry() BinDetailsCountry

GetCountry returns the Country field value if set, zero value otherwise.

func (*BinDetails) GetCountryOk

func (o *BinDetails) GetCountryOk() (*BinDetailsCountry, bool)

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

func (*BinDetails) GetDomesticOnly

func (o *BinDetails) GetDomesticOnly() bool

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

func (*BinDetails) GetDomesticOnlyOk

func (o *BinDetails) GetDomesticOnlyOk() (*bool, bool)

GetDomesticOnlyOk returns a tuple with the DomesticOnly 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 (*BinDetails) GetGamblingBlocked

func (o *BinDetails) GetGamblingBlocked() bool

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

func (*BinDetails) GetGamblingBlockedOk

func (o *BinDetails) GetGamblingBlockedOk() (*bool, bool)

GetGamblingBlockedOk returns a tuple with the GamblingBlocked 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 (*BinDetails) GetIssuerCurrency

func (o *BinDetails) GetIssuerCurrency() string

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

func (*BinDetails) GetIssuerCurrencyOk

func (o *BinDetails) GetIssuerCurrencyOk() (*string, bool)

GetIssuerCurrencyOk returns a tuple with the IssuerCurrency 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 (*BinDetails) GetLevel2

func (o *BinDetails) GetLevel2() bool

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

func (*BinDetails) GetLevel2Ok

func (o *BinDetails) GetLevel2Ok() (*bool, bool)

GetLevel2Ok returns a tuple with the Level2 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 (*BinDetails) GetLevel3

func (o *BinDetails) GetLevel3() bool

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

func (*BinDetails) GetLevel3Ok

func (o *BinDetails) GetLevel3Ok() (*bool, bool)

GetLevel3Ok returns a tuple with the Level3 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 (*BinDetails) GetPanOrToken

func (o *BinDetails) GetPanOrToken() string

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

func (*BinDetails) GetPanOrTokenOk

func (o *BinDetails) GetPanOrTokenOk() (*string, bool)

GetPanOrTokenOk returns a tuple with the PanOrToken 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 (*BinDetails) GetPrepaid

func (o *BinDetails) GetPrepaid() bool

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

func (*BinDetails) GetPrepaidOk

func (o *BinDetails) GetPrepaidOk() (*bool, bool)

GetPrepaidOk returns a tuple with the Prepaid 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 (*BinDetails) GetProduct

func (o *BinDetails) GetProduct() BinDetailsProduct

GetProduct returns the Product field value if set, zero value otherwise.

func (*BinDetails) GetProductOk

func (o *BinDetails) GetProductOk() (*BinDetailsProduct, bool)

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

func (*BinDetails) GetReloadable

func (o *BinDetails) GetReloadable() bool

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

func (*BinDetails) GetReloadableOk

func (o *BinDetails) GetReloadableOk() (*bool, bool)

GetReloadableOk returns a tuple with the Reloadable 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 (*BinDetails) GetType

func (o *BinDetails) GetType() string

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

func (*BinDetails) GetTypeOk

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

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

func (*BinDetails) HasAccountUpdater

func (o *BinDetails) HasAccountUpdater() bool

HasAccountUpdater returns a boolean if a field is not nil.

func (*BinDetails) HasAlm

func (o *BinDetails) HasAlm() bool

HasAlm returns a boolean if a field is not nil.

func (*BinDetails) HasAuthentication

func (o *BinDetails) HasAuthentication() bool

HasAuthentication returns a boolean if a field is not nil.

func (*BinDetails) HasBank

func (o *BinDetails) HasBank() bool

HasBank returns a boolean if a field is not nil.

func (*BinDetails) HasBinLength

func (o *BinDetails) HasBinLength() bool

HasBinLength returns a boolean if a field is not nil.

func (*BinDetails) HasCardBrand

func (o *BinDetails) HasCardBrand() bool

HasCardBrand returns a boolean if a field is not nil.

func (*BinDetails) HasCardSegmentType

func (o *BinDetails) HasCardSegmentType() bool

HasCardSegmentType returns a boolean if a field is not nil.

func (*BinDetails) HasComboCard

func (o *BinDetails) HasComboCard() bool

HasComboCard returns a boolean if a field is not nil.

func (*BinDetails) HasCost

func (o *BinDetails) HasCost() bool

HasCost returns a boolean if a field is not nil.

func (*BinDetails) HasCountry

func (o *BinDetails) HasCountry() bool

HasCountry returns a boolean if a field is not nil.

func (*BinDetails) HasDomesticOnly

func (o *BinDetails) HasDomesticOnly() bool

HasDomesticOnly returns a boolean if a field is not nil.

func (*BinDetails) HasGamblingBlocked

func (o *BinDetails) HasGamblingBlocked() bool

HasGamblingBlocked returns a boolean if a field is not nil.

func (*BinDetails) HasIssuerCurrency

func (o *BinDetails) HasIssuerCurrency() bool

HasIssuerCurrency returns a boolean if a field is not nil.

func (*BinDetails) HasLevel2

func (o *BinDetails) HasLevel2() bool

HasLevel2 returns a boolean if a field is not nil.

func (*BinDetails) HasLevel3

func (o *BinDetails) HasLevel3() bool

HasLevel3 returns a boolean if a field is not nil.

func (*BinDetails) HasPanOrToken

func (o *BinDetails) HasPanOrToken() bool

HasPanOrToken returns a boolean if a field is not nil.

func (*BinDetails) HasPrepaid

func (o *BinDetails) HasPrepaid() bool

HasPrepaid returns a boolean if a field is not nil.

func (*BinDetails) HasProduct

func (o *BinDetails) HasProduct() bool

HasProduct returns a boolean if a field is not nil.

func (*BinDetails) HasReloadable

func (o *BinDetails) HasReloadable() bool

HasReloadable returns a boolean if a field is not nil.

func (*BinDetails) HasType

func (o *BinDetails) HasType() bool

HasType returns a boolean if a field is not nil.

func (BinDetails) MarshalJSON

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

func (*BinDetails) SetAccountUpdater

func (o *BinDetails) SetAccountUpdater(v bool)

SetAccountUpdater gets a reference to the given NullableBool and assigns it to the AccountUpdater field.

func (*BinDetails) SetAccountUpdaterNil

func (o *BinDetails) SetAccountUpdaterNil()

SetAccountUpdaterNil sets the value for AccountUpdater to be an explicit nil

func (*BinDetails) SetAlm

func (o *BinDetails) SetAlm(v bool)

SetAlm gets a reference to the given NullableBool and assigns it to the Alm field.

func (*BinDetails) SetAlmNil

func (o *BinDetails) SetAlmNil()

SetAlmNil sets the value for Alm to be an explicit nil

func (*BinDetails) SetAuthentication

func (o *BinDetails) SetAuthentication(v interface{})

SetAuthentication gets a reference to the given interface{} and assigns it to the Authentication field.

func (*BinDetails) SetBank

func (o *BinDetails) SetBank(v BinDetailsBank)

SetBank gets a reference to the given BinDetailsBank and assigns it to the Bank field.

func (*BinDetails) SetBinLength

func (o *BinDetails) SetBinLength(v int32)

SetBinLength gets a reference to the given NullableInt32 and assigns it to the BinLength field.

func (*BinDetails) SetBinLengthNil

func (o *BinDetails) SetBinLengthNil()

SetBinLengthNil sets the value for BinLength to be an explicit nil

func (*BinDetails) SetCardBrand

func (o *BinDetails) SetCardBrand(v string)

SetCardBrand gets a reference to the given NullableString and assigns it to the CardBrand field.

func (*BinDetails) SetCardBrandNil

func (o *BinDetails) SetCardBrandNil()

SetCardBrandNil sets the value for CardBrand to be an explicit nil

func (*BinDetails) SetCardSegmentType

func (o *BinDetails) SetCardSegmentType(v string)

SetCardSegmentType gets a reference to the given NullableString and assigns it to the CardSegmentType field.

func (*BinDetails) SetCardSegmentTypeNil

func (o *BinDetails) SetCardSegmentTypeNil()

SetCardSegmentTypeNil sets the value for CardSegmentType to be an explicit nil

func (*BinDetails) SetComboCard

func (o *BinDetails) SetComboCard(v string)

SetComboCard gets a reference to the given NullableString and assigns it to the ComboCard field.

func (*BinDetails) SetComboCardNil

func (o *BinDetails) SetComboCardNil()

SetComboCardNil sets the value for ComboCard to be an explicit nil

func (*BinDetails) SetCost

func (o *BinDetails) SetCost(v interface{})

SetCost gets a reference to the given interface{} and assigns it to the Cost field.

func (*BinDetails) SetCountry

func (o *BinDetails) SetCountry(v BinDetailsCountry)

SetCountry gets a reference to the given BinDetailsCountry and assigns it to the Country field.

func (*BinDetails) SetDomesticOnly

func (o *BinDetails) SetDomesticOnly(v bool)

SetDomesticOnly gets a reference to the given NullableBool and assigns it to the DomesticOnly field.

func (*BinDetails) SetDomesticOnlyNil

func (o *BinDetails) SetDomesticOnlyNil()

SetDomesticOnlyNil sets the value for DomesticOnly to be an explicit nil

func (*BinDetails) SetGamblingBlocked

func (o *BinDetails) SetGamblingBlocked(v bool)

SetGamblingBlocked gets a reference to the given NullableBool and assigns it to the GamblingBlocked field.

func (*BinDetails) SetGamblingBlockedNil

func (o *BinDetails) SetGamblingBlockedNil()

SetGamblingBlockedNil sets the value for GamblingBlocked to be an explicit nil

func (*BinDetails) SetIssuerCurrency

func (o *BinDetails) SetIssuerCurrency(v string)

SetIssuerCurrency gets a reference to the given NullableString and assigns it to the IssuerCurrency field.

func (*BinDetails) SetIssuerCurrencyNil

func (o *BinDetails) SetIssuerCurrencyNil()

SetIssuerCurrencyNil sets the value for IssuerCurrency to be an explicit nil

func (*BinDetails) SetLevel2

func (o *BinDetails) SetLevel2(v bool)

SetLevel2 gets a reference to the given NullableBool and assigns it to the Level2 field.

func (*BinDetails) SetLevel2Nil

func (o *BinDetails) SetLevel2Nil()

SetLevel2Nil sets the value for Level2 to be an explicit nil

func (*BinDetails) SetLevel3

func (o *BinDetails) SetLevel3(v bool)

SetLevel3 gets a reference to the given NullableBool and assigns it to the Level3 field.

func (*BinDetails) SetLevel3Nil

func (o *BinDetails) SetLevel3Nil()

SetLevel3Nil sets the value for Level3 to be an explicit nil

func (*BinDetails) SetPanOrToken

func (o *BinDetails) SetPanOrToken(v string)

SetPanOrToken gets a reference to the given NullableString and assigns it to the PanOrToken field.

func (*BinDetails) SetPanOrTokenNil

func (o *BinDetails) SetPanOrTokenNil()

SetPanOrTokenNil sets the value for PanOrToken to be an explicit nil

func (*BinDetails) SetPrepaid

func (o *BinDetails) SetPrepaid(v bool)

SetPrepaid gets a reference to the given NullableBool and assigns it to the Prepaid field.

func (*BinDetails) SetPrepaidNil

func (o *BinDetails) SetPrepaidNil()

SetPrepaidNil sets the value for Prepaid to be an explicit nil

func (*BinDetails) SetProduct

func (o *BinDetails) SetProduct(v BinDetailsProduct)

SetProduct gets a reference to the given BinDetailsProduct and assigns it to the Product field.

func (*BinDetails) SetReloadable

func (o *BinDetails) SetReloadable(v bool)

SetReloadable gets a reference to the given NullableBool and assigns it to the Reloadable field.

func (*BinDetails) SetReloadableNil

func (o *BinDetails) SetReloadableNil()

SetReloadableNil sets the value for Reloadable to be an explicit nil

func (*BinDetails) SetType

func (o *BinDetails) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*BinDetails) SetTypeNil

func (o *BinDetails) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (BinDetails) ToMap

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

func (*BinDetails) UnsetAccountUpdater

func (o *BinDetails) UnsetAccountUpdater()

UnsetAccountUpdater ensures that no value is present for AccountUpdater, not even an explicit nil

func (*BinDetails) UnsetAlm

func (o *BinDetails) UnsetAlm()

UnsetAlm ensures that no value is present for Alm, not even an explicit nil

func (*BinDetails) UnsetBinLength

func (o *BinDetails) UnsetBinLength()

UnsetBinLength ensures that no value is present for BinLength, not even an explicit nil

func (*BinDetails) UnsetCardBrand

func (o *BinDetails) UnsetCardBrand()

UnsetCardBrand ensures that no value is present for CardBrand, not even an explicit nil

func (*BinDetails) UnsetCardSegmentType

func (o *BinDetails) UnsetCardSegmentType()

UnsetCardSegmentType ensures that no value is present for CardSegmentType, not even an explicit nil

func (*BinDetails) UnsetComboCard

func (o *BinDetails) UnsetComboCard()

UnsetComboCard ensures that no value is present for ComboCard, not even an explicit nil

func (*BinDetails) UnsetDomesticOnly

func (o *BinDetails) UnsetDomesticOnly()

UnsetDomesticOnly ensures that no value is present for DomesticOnly, not even an explicit nil

func (*BinDetails) UnsetGamblingBlocked

func (o *BinDetails) UnsetGamblingBlocked()

UnsetGamblingBlocked ensures that no value is present for GamblingBlocked, not even an explicit nil

func (*BinDetails) UnsetIssuerCurrency

func (o *BinDetails) UnsetIssuerCurrency()

UnsetIssuerCurrency ensures that no value is present for IssuerCurrency, not even an explicit nil

func (*BinDetails) UnsetLevel2

func (o *BinDetails) UnsetLevel2()

UnsetLevel2 ensures that no value is present for Level2, not even an explicit nil

func (*BinDetails) UnsetLevel3

func (o *BinDetails) UnsetLevel3()

UnsetLevel3 ensures that no value is present for Level3, not even an explicit nil

func (*BinDetails) UnsetPanOrToken

func (o *BinDetails) UnsetPanOrToken()

UnsetPanOrToken ensures that no value is present for PanOrToken, not even an explicit nil

func (*BinDetails) UnsetPrepaid

func (o *BinDetails) UnsetPrepaid()

UnsetPrepaid ensures that no value is present for Prepaid, not even an explicit nil

func (*BinDetails) UnsetReloadable

func (o *BinDetails) UnsetReloadable()

UnsetReloadable ensures that no value is present for Reloadable, not even an explicit nil

func (*BinDetails) UnsetType

func (o *BinDetails) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type BinDetailsBank

type BinDetailsBank struct {
	Name      NullableString `json:"name,omitempty"`
	Phone     NullableString `json:"phone,omitempty"`
	Url       NullableString `json:"url,omitempty"`
	CleanName NullableString `json:"clean_name,omitempty"`
}

BinDetailsBank struct for BinDetailsBank

func NewBinDetailsBank

func NewBinDetailsBank() *BinDetailsBank

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

func NewBinDetailsBankWithDefaults

func NewBinDetailsBankWithDefaults() *BinDetailsBank

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

func (*BinDetailsBank) GetCleanName

func (o *BinDetailsBank) GetCleanName() string

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

func (*BinDetailsBank) GetCleanNameOk

func (o *BinDetailsBank) GetCleanNameOk() (*string, bool)

GetCleanNameOk returns a tuple with the CleanName 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 (*BinDetailsBank) GetName

func (o *BinDetailsBank) GetName() string

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

func (*BinDetailsBank) GetNameOk

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

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

func (*BinDetailsBank) GetPhone

func (o *BinDetailsBank) GetPhone() string

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

func (*BinDetailsBank) GetPhoneOk

func (o *BinDetailsBank) GetPhoneOk() (*string, bool)

GetPhoneOk returns a tuple with the Phone 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 (*BinDetailsBank) GetUrl

func (o *BinDetailsBank) GetUrl() string

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

func (*BinDetailsBank) GetUrlOk

func (o *BinDetailsBank) 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 (*BinDetailsBank) HasCleanName

func (o *BinDetailsBank) HasCleanName() bool

HasCleanName returns a boolean if a field is not nil.

func (*BinDetailsBank) HasName

func (o *BinDetailsBank) HasName() bool

HasName returns a boolean if a field is not nil.

func (*BinDetailsBank) HasPhone

func (o *BinDetailsBank) HasPhone() bool

HasPhone returns a boolean if a field is not nil.

func (*BinDetailsBank) HasUrl

func (o *BinDetailsBank) HasUrl() bool

HasUrl returns a boolean if a field is not nil.

func (BinDetailsBank) MarshalJSON

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

func (*BinDetailsBank) SetCleanName

func (o *BinDetailsBank) SetCleanName(v string)

SetCleanName gets a reference to the given NullableString and assigns it to the CleanName field.

func (*BinDetailsBank) SetCleanNameNil

func (o *BinDetailsBank) SetCleanNameNil()

SetCleanNameNil sets the value for CleanName to be an explicit nil

func (*BinDetailsBank) SetName

func (o *BinDetailsBank) SetName(v string)

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

func (*BinDetailsBank) SetNameNil

func (o *BinDetailsBank) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*BinDetailsBank) SetPhone

func (o *BinDetailsBank) SetPhone(v string)

SetPhone gets a reference to the given NullableString and assigns it to the Phone field.

func (*BinDetailsBank) SetPhoneNil

func (o *BinDetailsBank) SetPhoneNil()

SetPhoneNil sets the value for Phone to be an explicit nil

func (*BinDetailsBank) SetUrl

func (o *BinDetailsBank) SetUrl(v string)

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

func (*BinDetailsBank) SetUrlNil

func (o *BinDetailsBank) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (BinDetailsBank) ToMap

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

func (*BinDetailsBank) UnsetCleanName

func (o *BinDetailsBank) UnsetCleanName()

UnsetCleanName ensures that no value is present for CleanName, not even an explicit nil

func (*BinDetailsBank) UnsetName

func (o *BinDetailsBank) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*BinDetailsBank) UnsetPhone

func (o *BinDetailsBank) UnsetPhone()

UnsetPhone ensures that no value is present for Phone, not even an explicit nil

func (*BinDetailsBank) UnsetUrl

func (o *BinDetailsBank) UnsetUrl()

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

type BinDetailsCountry

type BinDetailsCountry struct {
	Alpha2  NullableString `json:"alpha2,omitempty"`
	Name    NullableString `json:"name,omitempty"`
	Numeric NullableString `json:"numeric,omitempty"`
}

BinDetailsCountry struct for BinDetailsCountry

func NewBinDetailsCountry

func NewBinDetailsCountry() *BinDetailsCountry

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

func NewBinDetailsCountryWithDefaults

func NewBinDetailsCountryWithDefaults() *BinDetailsCountry

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

func (*BinDetailsCountry) GetAlpha2

func (o *BinDetailsCountry) GetAlpha2() string

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

func (*BinDetailsCountry) GetAlpha2Ok

func (o *BinDetailsCountry) GetAlpha2Ok() (*string, bool)

GetAlpha2Ok returns a tuple with the Alpha2 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 (*BinDetailsCountry) GetName

func (o *BinDetailsCountry) GetName() string

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

func (*BinDetailsCountry) GetNameOk

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

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

func (*BinDetailsCountry) GetNumeric

func (o *BinDetailsCountry) GetNumeric() string

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

func (*BinDetailsCountry) GetNumericOk

func (o *BinDetailsCountry) GetNumericOk() (*string, bool)

GetNumericOk returns a tuple with the Numeric 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 (*BinDetailsCountry) HasAlpha2

func (o *BinDetailsCountry) HasAlpha2() bool

HasAlpha2 returns a boolean if a field is not nil.

func (*BinDetailsCountry) HasName

func (o *BinDetailsCountry) HasName() bool

HasName returns a boolean if a field is not nil.

func (*BinDetailsCountry) HasNumeric

func (o *BinDetailsCountry) HasNumeric() bool

HasNumeric returns a boolean if a field is not nil.

func (BinDetailsCountry) MarshalJSON

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

func (*BinDetailsCountry) SetAlpha2

func (o *BinDetailsCountry) SetAlpha2(v string)

SetAlpha2 gets a reference to the given NullableString and assigns it to the Alpha2 field.

func (*BinDetailsCountry) SetAlpha2Nil

func (o *BinDetailsCountry) SetAlpha2Nil()

SetAlpha2Nil sets the value for Alpha2 to be an explicit nil

func (*BinDetailsCountry) SetName

func (o *BinDetailsCountry) SetName(v string)

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

func (*BinDetailsCountry) SetNameNil

func (o *BinDetailsCountry) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*BinDetailsCountry) SetNumeric

func (o *BinDetailsCountry) SetNumeric(v string)

SetNumeric gets a reference to the given NullableString and assigns it to the Numeric field.

func (*BinDetailsCountry) SetNumericNil

func (o *BinDetailsCountry) SetNumericNil()

SetNumericNil sets the value for Numeric to be an explicit nil

func (BinDetailsCountry) ToMap

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

func (*BinDetailsCountry) UnsetAlpha2

func (o *BinDetailsCountry) UnsetAlpha2()

UnsetAlpha2 ensures that no value is present for Alpha2, not even an explicit nil

func (*BinDetailsCountry) UnsetName

func (o *BinDetailsCountry) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*BinDetailsCountry) UnsetNumeric

func (o *BinDetailsCountry) UnsetNumeric()

UnsetNumeric ensures that no value is present for Numeric, not even an explicit nil

type BinDetailsProduct

type BinDetailsProduct struct {
	Code NullableString `json:"code,omitempty"`
	Name NullableString `json:"name,omitempty"`
}

BinDetailsProduct struct for BinDetailsProduct

func NewBinDetailsProduct

func NewBinDetailsProduct() *BinDetailsProduct

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

func NewBinDetailsProductWithDefaults

func NewBinDetailsProductWithDefaults() *BinDetailsProduct

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

func (*BinDetailsProduct) GetCode

func (o *BinDetailsProduct) GetCode() string

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

func (*BinDetailsProduct) GetCodeOk

func (o *BinDetailsProduct) GetCodeOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BinDetailsProduct) GetName

func (o *BinDetailsProduct) GetName() string

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

func (*BinDetailsProduct) GetNameOk

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

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

func (*BinDetailsProduct) HasCode

func (o *BinDetailsProduct) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (*BinDetailsProduct) HasName

func (o *BinDetailsProduct) HasName() bool

HasName returns a boolean if a field is not nil.

func (BinDetailsProduct) MarshalJSON

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

func (*BinDetailsProduct) SetCode

func (o *BinDetailsProduct) SetCode(v string)

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

func (*BinDetailsProduct) SetCodeNil

func (o *BinDetailsProduct) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*BinDetailsProduct) SetName

func (o *BinDetailsProduct) SetName(v string)

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

func (*BinDetailsProduct) SetNameNil

func (o *BinDetailsProduct) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (BinDetailsProduct) ToMap

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

func (*BinDetailsProduct) UnsetCode

func (o *BinDetailsProduct) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

func (*BinDetailsProduct) UnsetName

func (o *BinDetailsProduct) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type Condition

type Condition struct {
	Attribute NullableString `json:"attribute,omitempty"`
	Operator  NullableString `json:"operator,omitempty"`
	Value     NullableString `json:"value,omitempty"`
}

Condition struct for Condition

func NewCondition

func NewCondition() *Condition

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

func NewConditionWithDefaults

func NewConditionWithDefaults() *Condition

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

func (*Condition) GetAttribute

func (o *Condition) GetAttribute() string

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

func (*Condition) GetAttributeOk

func (o *Condition) GetAttributeOk() (*string, bool)

GetAttributeOk returns a tuple with the Attribute 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 (*Condition) GetOperator

func (o *Condition) GetOperator() string

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

func (*Condition) GetOperatorOk

func (o *Condition) GetOperatorOk() (*string, bool)

GetOperatorOk returns a tuple with the Operator 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 (*Condition) GetValue

func (o *Condition) GetValue() string

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

func (*Condition) GetValueOk

func (o *Condition) GetValueOk() (*string, bool)

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

func (*Condition) HasAttribute

func (o *Condition) HasAttribute() bool

HasAttribute returns a boolean if a field is not nil.

func (*Condition) HasOperator

func (o *Condition) HasOperator() bool

HasOperator returns a boolean if a field is not nil.

func (*Condition) HasValue

func (o *Condition) HasValue() bool

HasValue returns a boolean if a field is not nil.

func (Condition) MarshalJSON

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

func (*Condition) SetAttribute

func (o *Condition) SetAttribute(v string)

SetAttribute gets a reference to the given NullableString and assigns it to the Attribute field.

func (*Condition) SetAttributeNil

func (o *Condition) SetAttributeNil()

SetAttributeNil sets the value for Attribute to be an explicit nil

func (*Condition) SetOperator

func (o *Condition) SetOperator(v string)

SetOperator gets a reference to the given NullableString and assigns it to the Operator field.

func (*Condition) SetOperatorNil

func (o *Condition) SetOperatorNil()

SetOperatorNil sets the value for Operator to be an explicit nil

func (*Condition) SetValue

func (o *Condition) SetValue(v string)

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

func (*Condition) SetValueNil

func (o *Condition) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (Condition) ToMap

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

func (*Condition) UnsetAttribute

func (o *Condition) UnsetAttribute()

UnsetAttribute ensures that no value is present for Attribute, not even an explicit nil

func (*Condition) UnsetOperator

func (o *Condition) UnsetOperator()

UnsetOperator ensures that no value is present for Operator, not even an explicit nil

func (*Condition) UnsetValue

func (o *Condition) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

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 CreateApplicationRequest

type CreateApplicationRequest struct {
	Name        string         `json:"name"`
	Type        string         `json:"type"`
	ExpiresAt   NullableString `json:"expires_at,omitempty"`
	Permissions []string       `json:"permissions,omitempty"`
	Rules       []AccessRule   `json:"rules,omitempty"`
	CreateKey   NullableBool   `json:"create_key,omitempty"`
}

CreateApplicationRequest struct for CreateApplicationRequest

func NewCreateApplicationRequest

func NewCreateApplicationRequest(name string, type_ string) *CreateApplicationRequest

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

func NewCreateApplicationRequestWithDefaults

func NewCreateApplicationRequestWithDefaults() *CreateApplicationRequest

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

func (*CreateApplicationRequest) GetCreateKey

func (o *CreateApplicationRequest) GetCreateKey() bool

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

func (*CreateApplicationRequest) GetCreateKeyOk

func (o *CreateApplicationRequest) GetCreateKeyOk() (*bool, bool)

GetCreateKeyOk returns a tuple with the CreateKey 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 (*CreateApplicationRequest) GetExpiresAt

func (o *CreateApplicationRequest) GetExpiresAt() string

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

func (*CreateApplicationRequest) GetExpiresAtOk

func (o *CreateApplicationRequest) GetExpiresAtOk() (*string, bool)

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

func (*CreateApplicationRequest) GetName

func (o *CreateApplicationRequest) GetName() string

GetName returns the Name field value

func (*CreateApplicationRequest) GetNameOk

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

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

func (*CreateApplicationRequest) GetPermissions

func (o *CreateApplicationRequest) GetPermissions() []string

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

func (*CreateApplicationRequest) GetPermissionsOk

func (o *CreateApplicationRequest) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions 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 (*CreateApplicationRequest) GetRules

func (o *CreateApplicationRequest) GetRules() []AccessRule

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

func (*CreateApplicationRequest) GetRulesOk

func (o *CreateApplicationRequest) GetRulesOk() ([]AccessRule, bool)

GetRulesOk returns a tuple with the Rules 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 (*CreateApplicationRequest) GetType

func (o *CreateApplicationRequest) GetType() string

GetType returns the Type field value

func (*CreateApplicationRequest) GetTypeOk

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

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

func (*CreateApplicationRequest) HasCreateKey

func (o *CreateApplicationRequest) HasCreateKey() bool

HasCreateKey returns a boolean if a field is not nil.

func (*CreateApplicationRequest) HasExpiresAt

func (o *CreateApplicationRequest) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*CreateApplicationRequest) HasPermissions

func (o *CreateApplicationRequest) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*CreateApplicationRequest) HasRules

func (o *CreateApplicationRequest) HasRules() bool

HasRules returns a boolean if a field is not nil.

func (CreateApplicationRequest) MarshalJSON

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

func (*CreateApplicationRequest) SetCreateKey

func (o *CreateApplicationRequest) SetCreateKey(v bool)

SetCreateKey gets a reference to the given NullableBool and assigns it to the CreateKey field.

func (*CreateApplicationRequest) SetCreateKeyNil

func (o *CreateApplicationRequest) SetCreateKeyNil()

SetCreateKeyNil sets the value for CreateKey to be an explicit nil

func (*CreateApplicationRequest) SetExpiresAt

func (o *CreateApplicationRequest) SetExpiresAt(v string)

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

func (*CreateApplicationRequest) SetExpiresAtNil

func (o *CreateApplicationRequest) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*CreateApplicationRequest) SetName

func (o *CreateApplicationRequest) SetName(v string)

SetName sets field value

func (*CreateApplicationRequest) SetPermissions

func (o *CreateApplicationRequest) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*CreateApplicationRequest) SetRules

func (o *CreateApplicationRequest) SetRules(v []AccessRule)

SetRules gets a reference to the given []AccessRule and assigns it to the Rules field.

func (*CreateApplicationRequest) SetType

func (o *CreateApplicationRequest) SetType(v string)

SetType sets field value

func (CreateApplicationRequest) ToMap

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

func (*CreateApplicationRequest) UnsetCreateKey

func (o *CreateApplicationRequest) UnsetCreateKey()

UnsetCreateKey ensures that no value is present for CreateKey, not even an explicit nil

func (*CreateApplicationRequest) UnsetExpiresAt

func (o *CreateApplicationRequest) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

type CreateProxyRequest

type CreateProxyRequest struct {
	Name              string            `json:"name"`
	DestinationUrl    string            `json:"destination_url"`
	RequestReactorId  NullableString    `json:"request_reactor_id,omitempty"`
	ResponseReactorId NullableString    `json:"response_reactor_id,omitempty"`
	RequestTransform  *ProxyTransform   `json:"request_transform,omitempty"`
	ResponseTransform *ProxyTransform   `json:"response_transform,omitempty"`
	Application       *Application      `json:"application,omitempty"`
	Configuration     map[string]string `json:"configuration,omitempty"`
	RequireAuth       NullableBool      `json:"require_auth,omitempty"`
}

CreateProxyRequest struct for CreateProxyRequest

func NewCreateProxyRequest

func NewCreateProxyRequest(name string, destinationUrl string) *CreateProxyRequest

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

func NewCreateProxyRequestWithDefaults

func NewCreateProxyRequestWithDefaults() *CreateProxyRequest

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

func (*CreateProxyRequest) GetApplication

func (o *CreateProxyRequest) GetApplication() Application

GetApplication returns the Application field value if set, zero value otherwise.

func (*CreateProxyRequest) GetApplicationOk

func (o *CreateProxyRequest) GetApplicationOk() (*Application, bool)

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

func (*CreateProxyRequest) GetConfiguration

func (o *CreateProxyRequest) GetConfiguration() map[string]string

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

func (*CreateProxyRequest) GetConfigurationOk

func (o *CreateProxyRequest) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*CreateProxyRequest) GetDestinationUrl

func (o *CreateProxyRequest) GetDestinationUrl() string

GetDestinationUrl returns the DestinationUrl field value

func (*CreateProxyRequest) GetDestinationUrlOk

func (o *CreateProxyRequest) GetDestinationUrlOk() (*string, bool)

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

func (*CreateProxyRequest) GetName

func (o *CreateProxyRequest) GetName() string

GetName returns the Name field value

func (*CreateProxyRequest) GetNameOk

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

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

func (*CreateProxyRequest) GetRequestReactorId

func (o *CreateProxyRequest) GetRequestReactorId() string

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

func (*CreateProxyRequest) GetRequestReactorIdOk

func (o *CreateProxyRequest) GetRequestReactorIdOk() (*string, bool)

GetRequestReactorIdOk returns a tuple with the RequestReactorId 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 (*CreateProxyRequest) GetRequestTransform

func (o *CreateProxyRequest) GetRequestTransform() ProxyTransform

GetRequestTransform returns the RequestTransform field value if set, zero value otherwise.

func (*CreateProxyRequest) GetRequestTransformOk

func (o *CreateProxyRequest) GetRequestTransformOk() (*ProxyTransform, bool)

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

func (*CreateProxyRequest) GetRequireAuth

func (o *CreateProxyRequest) GetRequireAuth() bool

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

func (*CreateProxyRequest) GetRequireAuthOk

func (o *CreateProxyRequest) GetRequireAuthOk() (*bool, bool)

GetRequireAuthOk returns a tuple with the RequireAuth 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 (*CreateProxyRequest) GetResponseReactorId

func (o *CreateProxyRequest) GetResponseReactorId() string

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

func (*CreateProxyRequest) GetResponseReactorIdOk

func (o *CreateProxyRequest) GetResponseReactorIdOk() (*string, bool)

GetResponseReactorIdOk returns a tuple with the ResponseReactorId 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 (*CreateProxyRequest) GetResponseTransform

func (o *CreateProxyRequest) GetResponseTransform() ProxyTransform

GetResponseTransform returns the ResponseTransform field value if set, zero value otherwise.

func (*CreateProxyRequest) GetResponseTransformOk

func (o *CreateProxyRequest) GetResponseTransformOk() (*ProxyTransform, bool)

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

func (*CreateProxyRequest) HasApplication

func (o *CreateProxyRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*CreateProxyRequest) HasConfiguration

func (o *CreateProxyRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*CreateProxyRequest) HasRequestReactorId

func (o *CreateProxyRequest) HasRequestReactorId() bool

HasRequestReactorId returns a boolean if a field is not nil.

func (*CreateProxyRequest) HasRequestTransform

func (o *CreateProxyRequest) HasRequestTransform() bool

HasRequestTransform returns a boolean if a field is not nil.

func (*CreateProxyRequest) HasRequireAuth

func (o *CreateProxyRequest) HasRequireAuth() bool

HasRequireAuth returns a boolean if a field is not nil.

func (*CreateProxyRequest) HasResponseReactorId

func (o *CreateProxyRequest) HasResponseReactorId() bool

HasResponseReactorId returns a boolean if a field is not nil.

func (*CreateProxyRequest) HasResponseTransform

func (o *CreateProxyRequest) HasResponseTransform() bool

HasResponseTransform returns a boolean if a field is not nil.

func (CreateProxyRequest) MarshalJSON

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

func (*CreateProxyRequest) SetApplication

func (o *CreateProxyRequest) SetApplication(v Application)

SetApplication gets a reference to the given Application and assigns it to the Application field.

func (*CreateProxyRequest) SetConfiguration

func (o *CreateProxyRequest) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*CreateProxyRequest) SetDestinationUrl

func (o *CreateProxyRequest) SetDestinationUrl(v string)

SetDestinationUrl sets field value

func (*CreateProxyRequest) SetName

func (o *CreateProxyRequest) SetName(v string)

SetName sets field value

func (*CreateProxyRequest) SetRequestReactorId

func (o *CreateProxyRequest) SetRequestReactorId(v string)

SetRequestReactorId gets a reference to the given NullableString and assigns it to the RequestReactorId field.

func (*CreateProxyRequest) SetRequestReactorIdNil

func (o *CreateProxyRequest) SetRequestReactorIdNil()

SetRequestReactorIdNil sets the value for RequestReactorId to be an explicit nil

func (*CreateProxyRequest) SetRequestTransform

func (o *CreateProxyRequest) SetRequestTransform(v ProxyTransform)

SetRequestTransform gets a reference to the given ProxyTransform and assigns it to the RequestTransform field.

func (*CreateProxyRequest) SetRequireAuth

func (o *CreateProxyRequest) SetRequireAuth(v bool)

SetRequireAuth gets a reference to the given NullableBool and assigns it to the RequireAuth field.

func (*CreateProxyRequest) SetRequireAuthNil

func (o *CreateProxyRequest) SetRequireAuthNil()

SetRequireAuthNil sets the value for RequireAuth to be an explicit nil

func (*CreateProxyRequest) SetResponseReactorId

func (o *CreateProxyRequest) SetResponseReactorId(v string)

SetResponseReactorId gets a reference to the given NullableString and assigns it to the ResponseReactorId field.

func (*CreateProxyRequest) SetResponseReactorIdNil

func (o *CreateProxyRequest) SetResponseReactorIdNil()

SetResponseReactorIdNil sets the value for ResponseReactorId to be an explicit nil

func (*CreateProxyRequest) SetResponseTransform

func (o *CreateProxyRequest) SetResponseTransform(v ProxyTransform)

SetResponseTransform gets a reference to the given ProxyTransform and assigns it to the ResponseTransform field.

func (CreateProxyRequest) ToMap

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

func (*CreateProxyRequest) UnsetRequestReactorId

func (o *CreateProxyRequest) UnsetRequestReactorId()

UnsetRequestReactorId ensures that no value is present for RequestReactorId, not even an explicit nil

func (*CreateProxyRequest) UnsetRequireAuth

func (o *CreateProxyRequest) UnsetRequireAuth()

UnsetRequireAuth ensures that no value is present for RequireAuth, not even an explicit nil

func (*CreateProxyRequest) UnsetResponseReactorId

func (o *CreateProxyRequest) UnsetResponseReactorId()

UnsetResponseReactorId ensures that no value is present for ResponseReactorId, not even an explicit nil

type CreateReactorFormulaRequest

type CreateReactorFormulaRequest struct {
	Id                NullableString                   `json:"id,omitempty"`
	Type              string                           `json:"type"`
	Name              string                           `json:"name"`
	Description       NullableString                   `json:"description,omitempty"`
	Icon              NullableString                   `json:"icon,omitempty"`
	Code              NullableString                   `json:"code,omitempty"`
	Configuration     []ReactorFormulaConfiguration    `json:"configuration,omitempty"`
	RequestParameters []ReactorFormulaRequestParameter `json:"request_parameters,omitempty"`
}

CreateReactorFormulaRequest struct for CreateReactorFormulaRequest

func NewCreateReactorFormulaRequest

func NewCreateReactorFormulaRequest(type_ string, name string) *CreateReactorFormulaRequest

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

func NewCreateReactorFormulaRequestWithDefaults

func NewCreateReactorFormulaRequestWithDefaults() *CreateReactorFormulaRequest

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

func (*CreateReactorFormulaRequest) GetCode

func (o *CreateReactorFormulaRequest) GetCode() string

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

func (*CreateReactorFormulaRequest) GetCodeOk

func (o *CreateReactorFormulaRequest) GetCodeOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateReactorFormulaRequest) GetConfiguration

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

func (*CreateReactorFormulaRequest) GetConfigurationOk

func (o *CreateReactorFormulaRequest) GetConfigurationOk() ([]ReactorFormulaConfiguration, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*CreateReactorFormulaRequest) GetDescription

func (o *CreateReactorFormulaRequest) GetDescription() string

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

func (*CreateReactorFormulaRequest) GetDescriptionOk

func (o *CreateReactorFormulaRequest) 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 (*CreateReactorFormulaRequest) GetIcon

func (o *CreateReactorFormulaRequest) GetIcon() string

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

func (*CreateReactorFormulaRequest) GetIconOk

func (o *CreateReactorFormulaRequest) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon 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 (*CreateReactorFormulaRequest) GetId

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

func (*CreateReactorFormulaRequest) GetIdOk

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

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

func (*CreateReactorFormulaRequest) GetName

func (o *CreateReactorFormulaRequest) GetName() string

GetName returns the Name field value

func (*CreateReactorFormulaRequest) GetNameOk

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

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

func (*CreateReactorFormulaRequest) GetRequestParameters

func (o *CreateReactorFormulaRequest) GetRequestParameters() []ReactorFormulaRequestParameter

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

func (*CreateReactorFormulaRequest) GetRequestParametersOk

func (o *CreateReactorFormulaRequest) GetRequestParametersOk() ([]ReactorFormulaRequestParameter, bool)

GetRequestParametersOk returns a tuple with the RequestParameters 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 (*CreateReactorFormulaRequest) GetType

func (o *CreateReactorFormulaRequest) GetType() string

GetType returns the Type field value

func (*CreateReactorFormulaRequest) GetTypeOk

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

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

func (*CreateReactorFormulaRequest) HasCode

func (o *CreateReactorFormulaRequest) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (*CreateReactorFormulaRequest) HasConfiguration

func (o *CreateReactorFormulaRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*CreateReactorFormulaRequest) HasDescription

func (o *CreateReactorFormulaRequest) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*CreateReactorFormulaRequest) HasIcon

func (o *CreateReactorFormulaRequest) HasIcon() bool

HasIcon returns a boolean if a field is not nil.

func (*CreateReactorFormulaRequest) HasId

func (o *CreateReactorFormulaRequest) HasId() bool

HasId returns a boolean if a field is not nil.

func (*CreateReactorFormulaRequest) HasRequestParameters

func (o *CreateReactorFormulaRequest) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field is not nil.

func (CreateReactorFormulaRequest) MarshalJSON

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

func (*CreateReactorFormulaRequest) SetCode

func (o *CreateReactorFormulaRequest) SetCode(v string)

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

func (*CreateReactorFormulaRequest) SetCodeNil

func (o *CreateReactorFormulaRequest) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*CreateReactorFormulaRequest) SetConfiguration

SetConfiguration gets a reference to the given []ReactorFormulaConfiguration and assigns it to the Configuration field.

func (*CreateReactorFormulaRequest) SetDescription

func (o *CreateReactorFormulaRequest) SetDescription(v string)

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

func (*CreateReactorFormulaRequest) SetDescriptionNil

func (o *CreateReactorFormulaRequest) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*CreateReactorFormulaRequest) SetIcon

func (o *CreateReactorFormulaRequest) SetIcon(v string)

SetIcon gets a reference to the given NullableString and assigns it to the Icon field.

func (*CreateReactorFormulaRequest) SetIconNil

func (o *CreateReactorFormulaRequest) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*CreateReactorFormulaRequest) SetId

func (o *CreateReactorFormulaRequest) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*CreateReactorFormulaRequest) SetIdNil

func (o *CreateReactorFormulaRequest) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*CreateReactorFormulaRequest) SetName

func (o *CreateReactorFormulaRequest) SetName(v string)

SetName sets field value

func (*CreateReactorFormulaRequest) SetRequestParameters

func (o *CreateReactorFormulaRequest) SetRequestParameters(v []ReactorFormulaRequestParameter)

SetRequestParameters gets a reference to the given []ReactorFormulaRequestParameter and assigns it to the RequestParameters field.

func (*CreateReactorFormulaRequest) SetType

func (o *CreateReactorFormulaRequest) SetType(v string)

SetType sets field value

func (CreateReactorFormulaRequest) ToMap

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

func (*CreateReactorFormulaRequest) UnsetCode

func (o *CreateReactorFormulaRequest) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

func (*CreateReactorFormulaRequest) UnsetDescription

func (o *CreateReactorFormulaRequest) UnsetDescription()

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

func (*CreateReactorFormulaRequest) UnsetIcon

func (o *CreateReactorFormulaRequest) UnsetIcon()

UnsetIcon ensures that no value is present for Icon, not even an explicit nil

func (*CreateReactorFormulaRequest) UnsetId

func (o *CreateReactorFormulaRequest) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type CreateReactorRequest

type CreateReactorRequest struct {
	Name          string            `json:"name"`
	Code          string            `json:"code"`
	Application   *Application      `json:"application,omitempty"`
	Configuration map[string]string `json:"configuration,omitempty"`
}

CreateReactorRequest struct for CreateReactorRequest

func NewCreateReactorRequest

func NewCreateReactorRequest(name string, code string) *CreateReactorRequest

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

func NewCreateReactorRequestWithDefaults

func NewCreateReactorRequestWithDefaults() *CreateReactorRequest

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

func (*CreateReactorRequest) GetApplication

func (o *CreateReactorRequest) GetApplication() Application

GetApplication returns the Application field value if set, zero value otherwise.

func (*CreateReactorRequest) GetApplicationOk

func (o *CreateReactorRequest) GetApplicationOk() (*Application, bool)

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

func (*CreateReactorRequest) GetCode

func (o *CreateReactorRequest) GetCode() string

GetCode returns the Code field value

func (*CreateReactorRequest) GetCodeOk

func (o *CreateReactorRequest) GetCodeOk() (*string, bool)

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

func (*CreateReactorRequest) GetConfiguration

func (o *CreateReactorRequest) GetConfiguration() map[string]string

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

func (*CreateReactorRequest) GetConfigurationOk

func (o *CreateReactorRequest) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*CreateReactorRequest) GetName

func (o *CreateReactorRequest) GetName() string

GetName returns the Name field value

func (*CreateReactorRequest) GetNameOk

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

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

func (*CreateReactorRequest) HasApplication

func (o *CreateReactorRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*CreateReactorRequest) HasConfiguration

func (o *CreateReactorRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (CreateReactorRequest) MarshalJSON

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

func (*CreateReactorRequest) SetApplication

func (o *CreateReactorRequest) SetApplication(v Application)

SetApplication gets a reference to the given Application and assigns it to the Application field.

func (*CreateReactorRequest) SetCode

func (o *CreateReactorRequest) SetCode(v string)

SetCode sets field value

func (*CreateReactorRequest) SetConfiguration

func (o *CreateReactorRequest) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*CreateReactorRequest) SetName

func (o *CreateReactorRequest) SetName(v string)

SetName sets field value

func (CreateReactorRequest) ToMap

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

type CreateSessionResponse

type CreateSessionResponse struct {
	SessionKey NullableString `json:"session_key,omitempty"`
	Nonce      NullableString `json:"nonce,omitempty"`
	ExpiresAt  NullableTime   `json:"expires_at,omitempty"`
}

CreateSessionResponse struct for CreateSessionResponse

func NewCreateSessionResponse

func NewCreateSessionResponse() *CreateSessionResponse

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

func NewCreateSessionResponseWithDefaults

func NewCreateSessionResponseWithDefaults() *CreateSessionResponse

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

func (*CreateSessionResponse) GetExpiresAt

func (o *CreateSessionResponse) GetExpiresAt() time.Time

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

func (*CreateSessionResponse) GetExpiresAtOk

func (o *CreateSessionResponse) GetExpiresAtOk() (*time.Time, bool)

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

func (*CreateSessionResponse) GetNonce

func (o *CreateSessionResponse) GetNonce() string

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

func (*CreateSessionResponse) GetNonceOk

func (o *CreateSessionResponse) GetNonceOk() (*string, bool)

GetNonceOk returns a tuple with the Nonce 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 (*CreateSessionResponse) GetSessionKey

func (o *CreateSessionResponse) GetSessionKey() string

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

func (*CreateSessionResponse) GetSessionKeyOk

func (o *CreateSessionResponse) GetSessionKeyOk() (*string, bool)

GetSessionKeyOk returns a tuple with the SessionKey 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 (*CreateSessionResponse) HasExpiresAt

func (o *CreateSessionResponse) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*CreateSessionResponse) HasNonce

func (o *CreateSessionResponse) HasNonce() bool

HasNonce returns a boolean if a field is not nil.

func (*CreateSessionResponse) HasSessionKey

func (o *CreateSessionResponse) HasSessionKey() bool

HasSessionKey returns a boolean if a field is not nil.

func (CreateSessionResponse) MarshalJSON

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

func (*CreateSessionResponse) SetExpiresAt

func (o *CreateSessionResponse) SetExpiresAt(v time.Time)

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

func (*CreateSessionResponse) SetExpiresAtNil

func (o *CreateSessionResponse) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*CreateSessionResponse) SetNonce

func (o *CreateSessionResponse) SetNonce(v string)

SetNonce gets a reference to the given NullableString and assigns it to the Nonce field.

func (*CreateSessionResponse) SetNonceNil

func (o *CreateSessionResponse) SetNonceNil()

SetNonceNil sets the value for Nonce to be an explicit nil

func (*CreateSessionResponse) SetSessionKey

func (o *CreateSessionResponse) SetSessionKey(v string)

SetSessionKey gets a reference to the given NullableString and assigns it to the SessionKey field.

func (*CreateSessionResponse) SetSessionKeyNil

func (o *CreateSessionResponse) SetSessionKeyNil()

SetSessionKeyNil sets the value for SessionKey to be an explicit nil

func (CreateSessionResponse) ToMap

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

func (*CreateSessionResponse) UnsetExpiresAt

func (o *CreateSessionResponse) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

func (*CreateSessionResponse) UnsetNonce

func (o *CreateSessionResponse) UnsetNonce()

UnsetNonce ensures that no value is present for Nonce, not even an explicit nil

func (*CreateSessionResponse) UnsetSessionKey

func (o *CreateSessionResponse) UnsetSessionKey()

UnsetSessionKey ensures that no value is present for SessionKey, not even an explicit nil

type CreateTenantInvitationRequest

type CreateTenantInvitationRequest struct {
	Email string `json:"email"`
}

CreateTenantInvitationRequest struct for CreateTenantInvitationRequest

func NewCreateTenantInvitationRequest

func NewCreateTenantInvitationRequest(email string) *CreateTenantInvitationRequest

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

func NewCreateTenantInvitationRequestWithDefaults

func NewCreateTenantInvitationRequestWithDefaults() *CreateTenantInvitationRequest

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

func (*CreateTenantInvitationRequest) GetEmail

func (o *CreateTenantInvitationRequest) GetEmail() string

GetEmail returns the Email field value

func (*CreateTenantInvitationRequest) GetEmailOk

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

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

func (CreateTenantInvitationRequest) MarshalJSON

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

func (*CreateTenantInvitationRequest) SetEmail

func (o *CreateTenantInvitationRequest) SetEmail(v string)

SetEmail sets field value

func (CreateTenantInvitationRequest) ToMap

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

type CreateTokenRequest

type CreateTokenRequest struct {
	Id                    NullableString    `json:"id,omitempty"`
	Type                  NullableString    `json:"type,omitempty"`
	Data                  interface{}       `json:"data"`
	Privacy               *Privacy          `json:"privacy,omitempty"`
	Metadata              map[string]string `json:"metadata,omitempty"`
	SearchIndexes         []string          `json:"search_indexes,omitempty"`
	FingerprintExpression NullableString    `json:"fingerprint_expression,omitempty"`
	Mask                  interface{}       `json:"mask,omitempty"`
	DeduplicateToken      NullableBool      `json:"deduplicate_token,omitempty"`
	ExpiresAt             NullableString    `json:"expires_at,omitempty"`
	Containers            []string          `json:"containers,omitempty"`
}

CreateTokenRequest struct for CreateTokenRequest

func NewCreateTokenRequest

func NewCreateTokenRequest(data interface{}) *CreateTokenRequest

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

func NewCreateTokenRequestWithDefaults

func NewCreateTokenRequestWithDefaults() *CreateTokenRequest

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

func (*CreateTokenRequest) GetContainers

func (o *CreateTokenRequest) GetContainers() []string

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

func (*CreateTokenRequest) GetContainersOk

func (o *CreateTokenRequest) GetContainersOk() ([]string, bool)

GetContainersOk returns a tuple with the Containers 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 (*CreateTokenRequest) GetData

func (o *CreateTokenRequest) GetData() interface{}

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

func (*CreateTokenRequest) GetDataOk

func (o *CreateTokenRequest) GetDataOk() (*interface{}, bool)

GetDataOk returns a tuple with the Data 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 (*CreateTokenRequest) GetDeduplicateToken

func (o *CreateTokenRequest) GetDeduplicateToken() bool

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

func (*CreateTokenRequest) GetDeduplicateTokenOk

func (o *CreateTokenRequest) GetDeduplicateTokenOk() (*bool, bool)

GetDeduplicateTokenOk returns a tuple with the DeduplicateToken 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 (*CreateTokenRequest) GetExpiresAt

func (o *CreateTokenRequest) GetExpiresAt() string

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

func (*CreateTokenRequest) GetExpiresAtOk

func (o *CreateTokenRequest) GetExpiresAtOk() (*string, bool)

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

func (*CreateTokenRequest) GetFingerprintExpression

func (o *CreateTokenRequest) GetFingerprintExpression() string

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

func (*CreateTokenRequest) GetFingerprintExpressionOk

func (o *CreateTokenRequest) GetFingerprintExpressionOk() (*string, bool)

GetFingerprintExpressionOk returns a tuple with the FingerprintExpression 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 (*CreateTokenRequest) GetId

func (o *CreateTokenRequest) GetId() string

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

func (*CreateTokenRequest) GetIdOk

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

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

func (*CreateTokenRequest) GetMask

func (o *CreateTokenRequest) GetMask() interface{}

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

func (*CreateTokenRequest) GetMaskOk

func (o *CreateTokenRequest) GetMaskOk() (*interface{}, bool)

GetMaskOk returns a tuple with the Mask 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 (*CreateTokenRequest) GetMetadata

func (o *CreateTokenRequest) GetMetadata() map[string]string

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

func (*CreateTokenRequest) GetMetadataOk

func (o *CreateTokenRequest) GetMetadataOk() (*map[string]string, bool)

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

func (*CreateTokenRequest) GetPrivacy

func (o *CreateTokenRequest) GetPrivacy() Privacy

GetPrivacy returns the Privacy field value if set, zero value otherwise.

func (*CreateTokenRequest) GetPrivacyOk

func (o *CreateTokenRequest) GetPrivacyOk() (*Privacy, bool)

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

func (*CreateTokenRequest) GetSearchIndexes

func (o *CreateTokenRequest) GetSearchIndexes() []string

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

func (*CreateTokenRequest) GetSearchIndexesOk

func (o *CreateTokenRequest) GetSearchIndexesOk() ([]string, bool)

GetSearchIndexesOk returns a tuple with the SearchIndexes 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 (*CreateTokenRequest) GetType

func (o *CreateTokenRequest) GetType() string

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

func (*CreateTokenRequest) GetTypeOk

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

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

func (*CreateTokenRequest) HasContainers

func (o *CreateTokenRequest) HasContainers() bool

HasContainers returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasDeduplicateToken

func (o *CreateTokenRequest) HasDeduplicateToken() bool

HasDeduplicateToken returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasExpiresAt

func (o *CreateTokenRequest) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasFingerprintExpression

func (o *CreateTokenRequest) HasFingerprintExpression() bool

HasFingerprintExpression returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasId

func (o *CreateTokenRequest) HasId() bool

HasId returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasMask

func (o *CreateTokenRequest) HasMask() bool

HasMask returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasMetadata

func (o *CreateTokenRequest) HasMetadata() bool

HasMetadata returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasPrivacy

func (o *CreateTokenRequest) HasPrivacy() bool

HasPrivacy returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasSearchIndexes

func (o *CreateTokenRequest) HasSearchIndexes() bool

HasSearchIndexes returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasType

func (o *CreateTokenRequest) HasType() bool

HasType returns a boolean if a field is not nil.

func (CreateTokenRequest) MarshalJSON

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

func (*CreateTokenRequest) SetContainers

func (o *CreateTokenRequest) SetContainers(v []string)

SetContainers gets a reference to the given []string and assigns it to the Containers field.

func (*CreateTokenRequest) SetData

func (o *CreateTokenRequest) SetData(v interface{})

SetData sets field value

func (*CreateTokenRequest) SetDeduplicateToken

func (o *CreateTokenRequest) SetDeduplicateToken(v bool)

SetDeduplicateToken gets a reference to the given NullableBool and assigns it to the DeduplicateToken field.

func (*CreateTokenRequest) SetDeduplicateTokenNil

func (o *CreateTokenRequest) SetDeduplicateTokenNil()

SetDeduplicateTokenNil sets the value for DeduplicateToken to be an explicit nil

func (*CreateTokenRequest) SetExpiresAt

func (o *CreateTokenRequest) SetExpiresAt(v string)

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

func (*CreateTokenRequest) SetExpiresAtNil

func (o *CreateTokenRequest) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*CreateTokenRequest) SetFingerprintExpression

func (o *CreateTokenRequest) SetFingerprintExpression(v string)

SetFingerprintExpression gets a reference to the given NullableString and assigns it to the FingerprintExpression field.

func (*CreateTokenRequest) SetFingerprintExpressionNil

func (o *CreateTokenRequest) SetFingerprintExpressionNil()

SetFingerprintExpressionNil sets the value for FingerprintExpression to be an explicit nil

func (*CreateTokenRequest) SetId

func (o *CreateTokenRequest) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*CreateTokenRequest) SetIdNil

func (o *CreateTokenRequest) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*CreateTokenRequest) SetMask

func (o *CreateTokenRequest) SetMask(v interface{})

SetMask gets a reference to the given interface{} and assigns it to the Mask field.

func (*CreateTokenRequest) SetMetadata

func (o *CreateTokenRequest) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*CreateTokenRequest) SetPrivacy

func (o *CreateTokenRequest) SetPrivacy(v Privacy)

SetPrivacy gets a reference to the given Privacy and assigns it to the Privacy field.

func (*CreateTokenRequest) SetSearchIndexes

func (o *CreateTokenRequest) SetSearchIndexes(v []string)

SetSearchIndexes gets a reference to the given []string and assigns it to the SearchIndexes field.

func (*CreateTokenRequest) SetType

func (o *CreateTokenRequest) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*CreateTokenRequest) SetTypeNil

func (o *CreateTokenRequest) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (CreateTokenRequest) ToMap

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

func (*CreateTokenRequest) UnsetDeduplicateToken

func (o *CreateTokenRequest) UnsetDeduplicateToken()

UnsetDeduplicateToken ensures that no value is present for DeduplicateToken, not even an explicit nil

func (*CreateTokenRequest) UnsetExpiresAt

func (o *CreateTokenRequest) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

func (*CreateTokenRequest) UnsetFingerprintExpression

func (o *CreateTokenRequest) UnsetFingerprintExpression()

UnsetFingerprintExpression ensures that no value is present for FingerprintExpression, not even an explicit nil

func (*CreateTokenRequest) UnsetId

func (o *CreateTokenRequest) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*CreateTokenRequest) UnsetType

func (o *CreateTokenRequest) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type CreateTokenResponse

type CreateTokenResponse struct {
	Id                    NullableString    `json:"id,omitempty"`
	TenantId              *string           `json:"tenant_id,omitempty"`
	Type                  NullableString    `json:"type,omitempty"`
	Fingerprint           NullableString    `json:"fingerprint,omitempty"`
	FingerprintExpression NullableString    `json:"fingerprint_expression,omitempty"`
	Mask                  interface{}       `json:"mask,omitempty"`
	Data                  interface{}       `json:"data,omitempty"`
	Metadata              map[string]string `json:"metadata,omitempty"`
	Enrichments           *TokenEnrichments `json:"enrichments,omitempty"`
	Privacy               *Privacy          `json:"privacy,omitempty"`
	SearchIndexes         []string          `json:"search_indexes,omitempty"`
	CreatedBy             NullableString    `json:"created_by,omitempty"`
	CreatedAt             NullableTime      `json:"created_at,omitempty"`
	ModifiedBy            NullableString    `json:"modified_by,omitempty"`
	ModifiedAt            NullableTime      `json:"modified_at,omitempty"`
	ExpiresAt             NullableTime      `json:"expires_at,omitempty"`
	Containers            []string          `json:"containers,omitempty"`
	Aliases               []string          `json:"aliases,omitempty"`
}

CreateTokenResponse struct for CreateTokenResponse

func NewCreateTokenResponse

func NewCreateTokenResponse() *CreateTokenResponse

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

func NewCreateTokenResponseWithDefaults

func NewCreateTokenResponseWithDefaults() *CreateTokenResponse

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

func (*CreateTokenResponse) GetAliases

func (o *CreateTokenResponse) GetAliases() []string

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

func (*CreateTokenResponse) GetAliasesOk

func (o *CreateTokenResponse) GetAliasesOk() ([]string, bool)

GetAliasesOk returns a tuple with the Aliases 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 (*CreateTokenResponse) GetContainers

func (o *CreateTokenResponse) GetContainers() []string

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

func (*CreateTokenResponse) GetContainersOk

func (o *CreateTokenResponse) GetContainersOk() ([]string, bool)

GetContainersOk returns a tuple with the Containers 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 (*CreateTokenResponse) GetCreatedAt

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

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

func (*CreateTokenResponse) GetCreatedAtOk

func (o *CreateTokenResponse) GetCreatedAtOk() (*time.Time, bool)

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

func (*CreateTokenResponse) GetCreatedBy

func (o *CreateTokenResponse) GetCreatedBy() string

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

func (*CreateTokenResponse) GetCreatedByOk

func (o *CreateTokenResponse) GetCreatedByOk() (*string, bool)

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

func (*CreateTokenResponse) GetData

func (o *CreateTokenResponse) GetData() interface{}

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

func (*CreateTokenResponse) GetDataOk

func (o *CreateTokenResponse) GetDataOk() (*interface{}, bool)

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

func (*CreateTokenResponse) GetEnrichments

func (o *CreateTokenResponse) GetEnrichments() TokenEnrichments

GetEnrichments returns the Enrichments field value if set, zero value otherwise.

func (*CreateTokenResponse) GetEnrichmentsOk

func (o *CreateTokenResponse) GetEnrichmentsOk() (*TokenEnrichments, bool)

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

func (*CreateTokenResponse) GetExpiresAt

func (o *CreateTokenResponse) GetExpiresAt() time.Time

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

func (*CreateTokenResponse) GetExpiresAtOk

func (o *CreateTokenResponse) GetExpiresAtOk() (*time.Time, bool)

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

func (*CreateTokenResponse) GetFingerprint

func (o *CreateTokenResponse) GetFingerprint() string

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

func (*CreateTokenResponse) GetFingerprintExpression

func (o *CreateTokenResponse) GetFingerprintExpression() string

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

func (*CreateTokenResponse) GetFingerprintExpressionOk

func (o *CreateTokenResponse) GetFingerprintExpressionOk() (*string, bool)

GetFingerprintExpressionOk returns a tuple with the FingerprintExpression 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 (*CreateTokenResponse) GetFingerprintOk

func (o *CreateTokenResponse) GetFingerprintOk() (*string, bool)

GetFingerprintOk returns a tuple with the Fingerprint 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 (*CreateTokenResponse) GetId

func (o *CreateTokenResponse) GetId() string

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

func (*CreateTokenResponse) GetIdOk

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

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

func (*CreateTokenResponse) GetMask

func (o *CreateTokenResponse) GetMask() interface{}

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

func (*CreateTokenResponse) GetMaskOk

func (o *CreateTokenResponse) GetMaskOk() (*interface{}, bool)

GetMaskOk returns a tuple with the Mask 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 (*CreateTokenResponse) GetMetadata

func (o *CreateTokenResponse) GetMetadata() map[string]string

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

func (*CreateTokenResponse) GetMetadataOk

func (o *CreateTokenResponse) GetMetadataOk() (*map[string]string, bool)

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

func (*CreateTokenResponse) GetModifiedAt

func (o *CreateTokenResponse) GetModifiedAt() time.Time

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

func (*CreateTokenResponse) GetModifiedAtOk

func (o *CreateTokenResponse) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*CreateTokenResponse) GetModifiedBy

func (o *CreateTokenResponse) GetModifiedBy() string

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

func (*CreateTokenResponse) GetModifiedByOk

func (o *CreateTokenResponse) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*CreateTokenResponse) GetPrivacy

func (o *CreateTokenResponse) GetPrivacy() Privacy

GetPrivacy returns the Privacy field value if set, zero value otherwise.

func (*CreateTokenResponse) GetPrivacyOk

func (o *CreateTokenResponse) GetPrivacyOk() (*Privacy, bool)

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

func (*CreateTokenResponse) GetSearchIndexes

func (o *CreateTokenResponse) GetSearchIndexes() []string

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

func (*CreateTokenResponse) GetSearchIndexesOk

func (o *CreateTokenResponse) GetSearchIndexesOk() ([]string, bool)

GetSearchIndexesOk returns a tuple with the SearchIndexes 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 (*CreateTokenResponse) GetTenantId

func (o *CreateTokenResponse) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*CreateTokenResponse) GetTenantIdOk

func (o *CreateTokenResponse) GetTenantIdOk() (*string, bool)

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

func (*CreateTokenResponse) GetType

func (o *CreateTokenResponse) GetType() string

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

func (*CreateTokenResponse) GetTypeOk

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

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

func (*CreateTokenResponse) HasAliases

func (o *CreateTokenResponse) HasAliases() bool

HasAliases returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasContainers

func (o *CreateTokenResponse) HasContainers() bool

HasContainers returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasCreatedAt

func (o *CreateTokenResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasCreatedBy

func (o *CreateTokenResponse) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasData

func (o *CreateTokenResponse) HasData() bool

HasData returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasEnrichments

func (o *CreateTokenResponse) HasEnrichments() bool

HasEnrichments returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasExpiresAt

func (o *CreateTokenResponse) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasFingerprint

func (o *CreateTokenResponse) HasFingerprint() bool

HasFingerprint returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasFingerprintExpression

func (o *CreateTokenResponse) HasFingerprintExpression() bool

HasFingerprintExpression returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasId

func (o *CreateTokenResponse) HasId() bool

HasId returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasMask

func (o *CreateTokenResponse) HasMask() bool

HasMask returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasMetadata

func (o *CreateTokenResponse) HasMetadata() bool

HasMetadata returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasModifiedAt

func (o *CreateTokenResponse) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasModifiedBy

func (o *CreateTokenResponse) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasPrivacy

func (o *CreateTokenResponse) HasPrivacy() bool

HasPrivacy returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasSearchIndexes

func (o *CreateTokenResponse) HasSearchIndexes() bool

HasSearchIndexes returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasTenantId

func (o *CreateTokenResponse) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasType

func (o *CreateTokenResponse) HasType() bool

HasType returns a boolean if a field is not nil.

func (CreateTokenResponse) MarshalJSON

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

func (*CreateTokenResponse) SetAliases

func (o *CreateTokenResponse) SetAliases(v []string)

SetAliases gets a reference to the given []string and assigns it to the Aliases field.

func (*CreateTokenResponse) SetContainers

func (o *CreateTokenResponse) SetContainers(v []string)

SetContainers gets a reference to the given []string and assigns it to the Containers field.

func (*CreateTokenResponse) SetCreatedAt

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

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

func (*CreateTokenResponse) SetCreatedAtNil

func (o *CreateTokenResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*CreateTokenResponse) SetCreatedBy

func (o *CreateTokenResponse) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*CreateTokenResponse) SetCreatedByNil

func (o *CreateTokenResponse) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*CreateTokenResponse) SetData

func (o *CreateTokenResponse) SetData(v interface{})

SetData gets a reference to the given interface{} and assigns it to the Data field.

func (*CreateTokenResponse) SetEnrichments

func (o *CreateTokenResponse) SetEnrichments(v TokenEnrichments)

SetEnrichments gets a reference to the given TokenEnrichments and assigns it to the Enrichments field.

func (*CreateTokenResponse) SetExpiresAt

func (o *CreateTokenResponse) SetExpiresAt(v time.Time)

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

func (*CreateTokenResponse) SetExpiresAtNil

func (o *CreateTokenResponse) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*CreateTokenResponse) SetFingerprint

func (o *CreateTokenResponse) SetFingerprint(v string)

SetFingerprint gets a reference to the given NullableString and assigns it to the Fingerprint field.

func (*CreateTokenResponse) SetFingerprintExpression

func (o *CreateTokenResponse) SetFingerprintExpression(v string)

SetFingerprintExpression gets a reference to the given NullableString and assigns it to the FingerprintExpression field.

func (*CreateTokenResponse) SetFingerprintExpressionNil

func (o *CreateTokenResponse) SetFingerprintExpressionNil()

SetFingerprintExpressionNil sets the value for FingerprintExpression to be an explicit nil

func (*CreateTokenResponse) SetFingerprintNil

func (o *CreateTokenResponse) SetFingerprintNil()

SetFingerprintNil sets the value for Fingerprint to be an explicit nil

func (*CreateTokenResponse) SetId

func (o *CreateTokenResponse) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*CreateTokenResponse) SetIdNil

func (o *CreateTokenResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*CreateTokenResponse) SetMask

func (o *CreateTokenResponse) SetMask(v interface{})

SetMask gets a reference to the given interface{} and assigns it to the Mask field.

func (*CreateTokenResponse) SetMetadata

func (o *CreateTokenResponse) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*CreateTokenResponse) SetModifiedAt

func (o *CreateTokenResponse) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*CreateTokenResponse) SetModifiedAtNil

func (o *CreateTokenResponse) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*CreateTokenResponse) SetModifiedBy

func (o *CreateTokenResponse) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*CreateTokenResponse) SetModifiedByNil

func (o *CreateTokenResponse) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*CreateTokenResponse) SetPrivacy

func (o *CreateTokenResponse) SetPrivacy(v Privacy)

SetPrivacy gets a reference to the given Privacy and assigns it to the Privacy field.

func (*CreateTokenResponse) SetSearchIndexes

func (o *CreateTokenResponse) SetSearchIndexes(v []string)

SetSearchIndexes gets a reference to the given []string and assigns it to the SearchIndexes field.

func (*CreateTokenResponse) SetTenantId

func (o *CreateTokenResponse) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*CreateTokenResponse) SetType

func (o *CreateTokenResponse) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*CreateTokenResponse) SetTypeNil

func (o *CreateTokenResponse) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (CreateTokenResponse) ToMap

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

func (*CreateTokenResponse) UnsetCreatedAt

func (o *CreateTokenResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*CreateTokenResponse) UnsetCreatedBy

func (o *CreateTokenResponse) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*CreateTokenResponse) UnsetExpiresAt

func (o *CreateTokenResponse) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

func (*CreateTokenResponse) UnsetFingerprint

func (o *CreateTokenResponse) UnsetFingerprint()

UnsetFingerprint ensures that no value is present for Fingerprint, not even an explicit nil

func (*CreateTokenResponse) UnsetFingerprintExpression

func (o *CreateTokenResponse) UnsetFingerprintExpression()

UnsetFingerprintExpression ensures that no value is present for FingerprintExpression, not even an explicit nil

func (*CreateTokenResponse) UnsetId

func (o *CreateTokenResponse) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*CreateTokenResponse) UnsetModifiedAt

func (o *CreateTokenResponse) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*CreateTokenResponse) UnsetModifiedBy

func (o *CreateTokenResponse) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*CreateTokenResponse) UnsetType

func (o *CreateTokenResponse) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type EncryptionKey

type EncryptionKey struct {
	Key  string         `json:"key"`
	Prov NullableString `json:"prov,omitempty"`
	Alg  NullableString `json:"alg,omitempty"`
}

EncryptionKey struct for EncryptionKey

func NewEncryptionKey

func NewEncryptionKey(key string) *EncryptionKey

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

func NewEncryptionKeyWithDefaults

func NewEncryptionKeyWithDefaults() *EncryptionKey

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

func (*EncryptionKey) GetAlg

func (o *EncryptionKey) GetAlg() string

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

func (*EncryptionKey) GetAlgOk

func (o *EncryptionKey) GetAlgOk() (*string, bool)

GetAlgOk returns a tuple with the Alg 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 (*EncryptionKey) GetKey

func (o *EncryptionKey) GetKey() string

GetKey returns the Key field value

func (*EncryptionKey) GetKeyOk

func (o *EncryptionKey) GetKeyOk() (*string, bool)

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

func (*EncryptionKey) GetProv

func (o *EncryptionKey) GetProv() string

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

func (*EncryptionKey) GetProvOk

func (o *EncryptionKey) GetProvOk() (*string, bool)

GetProvOk returns a tuple with the Prov 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 (*EncryptionKey) HasAlg

func (o *EncryptionKey) HasAlg() bool

HasAlg returns a boolean if a field is not nil.

func (*EncryptionKey) HasProv

func (o *EncryptionKey) HasProv() bool

HasProv returns a boolean if a field is not nil.

func (EncryptionKey) MarshalJSON

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

func (*EncryptionKey) SetAlg

func (o *EncryptionKey) SetAlg(v string)

SetAlg gets a reference to the given NullableString and assigns it to the Alg field.

func (*EncryptionKey) SetAlgNil

func (o *EncryptionKey) SetAlgNil()

SetAlgNil sets the value for Alg to be an explicit nil

func (*EncryptionKey) SetKey

func (o *EncryptionKey) SetKey(v string)

SetKey sets field value

func (*EncryptionKey) SetProv

func (o *EncryptionKey) SetProv(v string)

SetProv gets a reference to the given NullableString and assigns it to the Prov field.

func (*EncryptionKey) SetProvNil

func (o *EncryptionKey) SetProvNil()

SetProvNil sets the value for Prov to be an explicit nil

func (EncryptionKey) ToMap

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

func (*EncryptionKey) UnsetAlg

func (o *EncryptionKey) UnsetAlg()

UnsetAlg ensures that no value is present for Alg, not even an explicit nil

func (*EncryptionKey) UnsetProv

func (o *EncryptionKey) UnsetProv()

UnsetProv ensures that no value is present for Prov, not even an explicit nil

type EncryptionMetadata

type EncryptionMetadata struct {
	Cek *EncryptionKey `json:"cek,omitempty"`
	Kek *EncryptionKey `json:"kek,omitempty"`
}

EncryptionMetadata struct for EncryptionMetadata

func NewEncryptionMetadata

func NewEncryptionMetadata() *EncryptionMetadata

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

func NewEncryptionMetadataWithDefaults

func NewEncryptionMetadataWithDefaults() *EncryptionMetadata

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

func (*EncryptionMetadata) GetCek

func (o *EncryptionMetadata) GetCek() EncryptionKey

GetCek returns the Cek field value if set, zero value otherwise.

func (*EncryptionMetadata) GetCekOk

func (o *EncryptionMetadata) GetCekOk() (*EncryptionKey, bool)

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

func (*EncryptionMetadata) GetKek

func (o *EncryptionMetadata) GetKek() EncryptionKey

GetKek returns the Kek field value if set, zero value otherwise.

func (*EncryptionMetadata) GetKekOk

func (o *EncryptionMetadata) GetKekOk() (*EncryptionKey, bool)

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

func (*EncryptionMetadata) HasCek

func (o *EncryptionMetadata) HasCek() bool

HasCek returns a boolean if a field is not nil.

func (*EncryptionMetadata) HasKek

func (o *EncryptionMetadata) HasKek() bool

HasKek returns a boolean if a field is not nil.

func (EncryptionMetadata) MarshalJSON

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

func (*EncryptionMetadata) SetCek

func (o *EncryptionMetadata) SetCek(v EncryptionKey)

SetCek gets a reference to the given EncryptionKey and assigns it to the Cek field.

func (*EncryptionMetadata) SetKek

func (o *EncryptionMetadata) SetKek(v EncryptionKey)

SetKek gets a reference to the given EncryptionKey and assigns it to the Kek field.

func (EncryptionMetadata) ToMap

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetApplications

type GetApplications struct {
	Id    []string       `json:"id,omitempty"`
	Type  []string       `json:"type,omitempty"`
	Page  NullableInt32  `json:"page,omitempty"`
	Start NullableString `json:"start,omitempty"`
	Size  NullableInt32  `json:"size,omitempty"`
}

GetApplications struct for GetApplications

func NewGetApplications

func NewGetApplications() *GetApplications

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

func NewGetApplicationsWithDefaults

func NewGetApplicationsWithDefaults() *GetApplications

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

func (*GetApplications) GetId

func (o *GetApplications) GetId() []string

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

func (*GetApplications) GetIdOk

func (o *GetApplications) GetIdOk() ([]string, bool)

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

func (*GetApplications) GetPage

func (o *GetApplications) GetPage() int32

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

func (*GetApplications) GetPageOk

func (o *GetApplications) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*GetApplications) GetSize

func (o *GetApplications) GetSize() int32

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

func (*GetApplications) GetSizeOk

func (o *GetApplications) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*GetApplications) GetStart

func (o *GetApplications) GetStart() string

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

func (*GetApplications) GetStartOk

func (o *GetApplications) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*GetApplications) GetType

func (o *GetApplications) GetType() []string

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

func (*GetApplications) GetTypeOk

func (o *GetApplications) GetTypeOk() ([]string, bool)

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

func (*GetApplications) HasId

func (o *GetApplications) HasId() bool

HasId returns a boolean if a field is not nil.

func (*GetApplications) HasPage

func (o *GetApplications) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetApplications) HasSize

func (o *GetApplications) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetApplications) HasStart

func (o *GetApplications) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (*GetApplications) HasType

func (o *GetApplications) HasType() bool

HasType returns a boolean if a field is not nil.

func (GetApplications) MarshalJSON

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

func (*GetApplications) SetId

func (o *GetApplications) SetId(v []string)

SetId gets a reference to the given []string and assigns it to the Id field.

func (*GetApplications) SetPage

func (o *GetApplications) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetApplications) SetPageNil

func (o *GetApplications) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetApplications) SetSize

func (o *GetApplications) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetApplications) SetSizeNil

func (o *GetApplications) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetApplications) SetStart

func (o *GetApplications) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*GetApplications) SetStartNil

func (o *GetApplications) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (*GetApplications) SetType

func (o *GetApplications) SetType(v []string)

SetType gets a reference to the given []string and assigns it to the Type field.

func (GetApplications) ToMap

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

func (*GetApplications) UnsetPage

func (o *GetApplications) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetApplications) UnsetSize

func (o *GetApplications) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*GetApplications) UnsetStart

func (o *GetApplications) UnsetStart()

UnsetStart ensures that no value is present for Start, not even an explicit nil

type GetLogs

type GetLogs struct {
	EntityType NullableString `json:"entity_type,omitempty"`
	EntityId   NullableString `json:"entity_id,omitempty"`
	StartDate  NullableTime   `json:"start_date,omitempty"`
	EndDate    NullableTime   `json:"end_date,omitempty"`
	Page       NullableInt32  `json:"page,omitempty"`
	Start      NullableString `json:"start,omitempty"`
	Size       NullableInt32  `json:"size,omitempty"`
}

GetLogs struct for GetLogs

func NewGetLogs

func NewGetLogs() *GetLogs

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

func NewGetLogsWithDefaults

func NewGetLogsWithDefaults() *GetLogs

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

func (*GetLogs) GetEndDate

func (o *GetLogs) GetEndDate() time.Time

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

func (*GetLogs) GetEndDateOk

func (o *GetLogs) GetEndDateOk() (*time.Time, bool)

GetEndDateOk returns a tuple with the EndDate 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 (*GetLogs) GetEntityId

func (o *GetLogs) GetEntityId() string

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

func (*GetLogs) GetEntityIdOk

func (o *GetLogs) GetEntityIdOk() (*string, bool)

GetEntityIdOk returns a tuple with the EntityId 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 (*GetLogs) GetEntityType

func (o *GetLogs) GetEntityType() string

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

func (*GetLogs) GetEntityTypeOk

func (o *GetLogs) GetEntityTypeOk() (*string, bool)

GetEntityTypeOk returns a tuple with the EntityType 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 (*GetLogs) GetPage

func (o *GetLogs) GetPage() int32

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

func (*GetLogs) GetPageOk

func (o *GetLogs) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*GetLogs) GetSize

func (o *GetLogs) GetSize() int32

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

func (*GetLogs) GetSizeOk

func (o *GetLogs) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*GetLogs) GetStart

func (o *GetLogs) GetStart() string

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

func (*GetLogs) GetStartDate

func (o *GetLogs) GetStartDate() time.Time

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

func (*GetLogs) GetStartDateOk

func (o *GetLogs) GetStartDateOk() (*time.Time, bool)

GetStartDateOk returns a tuple with the StartDate 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 (*GetLogs) GetStartOk

func (o *GetLogs) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*GetLogs) HasEndDate

func (o *GetLogs) HasEndDate() bool

HasEndDate returns a boolean if a field is not nil.

func (*GetLogs) HasEntityId

func (o *GetLogs) HasEntityId() bool

HasEntityId returns a boolean if a field is not nil.

func (*GetLogs) HasEntityType

func (o *GetLogs) HasEntityType() bool

HasEntityType returns a boolean if a field is not nil.

func (*GetLogs) HasPage

func (o *GetLogs) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetLogs) HasSize

func (o *GetLogs) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetLogs) HasStart

func (o *GetLogs) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (*GetLogs) HasStartDate

func (o *GetLogs) HasStartDate() bool

HasStartDate returns a boolean if a field is not nil.

func (GetLogs) MarshalJSON

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

func (*GetLogs) SetEndDate

func (o *GetLogs) SetEndDate(v time.Time)

SetEndDate gets a reference to the given NullableTime and assigns it to the EndDate field.

func (*GetLogs) SetEndDateNil

func (o *GetLogs) SetEndDateNil()

SetEndDateNil sets the value for EndDate to be an explicit nil

func (*GetLogs) SetEntityId

func (o *GetLogs) SetEntityId(v string)

SetEntityId gets a reference to the given NullableString and assigns it to the EntityId field.

func (*GetLogs) SetEntityIdNil

func (o *GetLogs) SetEntityIdNil()

SetEntityIdNil sets the value for EntityId to be an explicit nil

func (*GetLogs) SetEntityType

func (o *GetLogs) SetEntityType(v string)

SetEntityType gets a reference to the given NullableString and assigns it to the EntityType field.

func (*GetLogs) SetEntityTypeNil

func (o *GetLogs) SetEntityTypeNil()

SetEntityTypeNil sets the value for EntityType to be an explicit nil

func (*GetLogs) SetPage

func (o *GetLogs) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetLogs) SetPageNil

func (o *GetLogs) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetLogs) SetSize

func (o *GetLogs) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetLogs) SetSizeNil

func (o *GetLogs) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetLogs) SetStart

func (o *GetLogs) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*GetLogs) SetStartDate

func (o *GetLogs) SetStartDate(v time.Time)

SetStartDate gets a reference to the given NullableTime and assigns it to the StartDate field.

func (*GetLogs) SetStartDateNil

func (o *GetLogs) SetStartDateNil()

SetStartDateNil sets the value for StartDate to be an explicit nil

func (*GetLogs) SetStartNil

func (o *GetLogs) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (GetLogs) ToMap

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

func (*GetLogs) UnsetEndDate

func (o *GetLogs) UnsetEndDate()

UnsetEndDate ensures that no value is present for EndDate, not even an explicit nil

func (*GetLogs) UnsetEntityId

func (o *GetLogs) UnsetEntityId()

UnsetEntityId ensures that no value is present for EntityId, not even an explicit nil

func (*GetLogs) UnsetEntityType

func (o *GetLogs) UnsetEntityType()

UnsetEntityType ensures that no value is present for EntityType, not even an explicit nil

func (*GetLogs) UnsetPage

func (o *GetLogs) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetLogs) UnsetSize

func (o *GetLogs) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*GetLogs) UnsetStart

func (o *GetLogs) UnsetStart()

UnsetStart ensures that no value is present for Start, not even an explicit nil

func (*GetLogs) UnsetStartDate

func (o *GetLogs) UnsetStartDate()

UnsetStartDate ensures that no value is present for StartDate, not even an explicit nil

type GetPermissions

type GetPermissions struct {
	ApplicationType NullableString `json:"application_type,omitempty"`
}

GetPermissions struct for GetPermissions

func NewGetPermissions

func NewGetPermissions() *GetPermissions

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

func NewGetPermissionsWithDefaults

func NewGetPermissionsWithDefaults() *GetPermissions

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

func (*GetPermissions) GetApplicationType

func (o *GetPermissions) GetApplicationType() string

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

func (*GetPermissions) GetApplicationTypeOk

func (o *GetPermissions) GetApplicationTypeOk() (*string, bool)

GetApplicationTypeOk returns a tuple with the ApplicationType 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 (*GetPermissions) HasApplicationType

func (o *GetPermissions) HasApplicationType() bool

HasApplicationType returns a boolean if a field is not nil.

func (GetPermissions) MarshalJSON

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

func (*GetPermissions) SetApplicationType

func (o *GetPermissions) SetApplicationType(v string)

SetApplicationType gets a reference to the given NullableString and assigns it to the ApplicationType field.

func (*GetPermissions) SetApplicationTypeNil

func (o *GetPermissions) SetApplicationTypeNil()

SetApplicationTypeNil sets the value for ApplicationType to be an explicit nil

func (GetPermissions) ToMap

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

func (*GetPermissions) UnsetApplicationType

func (o *GetPermissions) UnsetApplicationType()

UnsetApplicationType ensures that no value is present for ApplicationType, not even an explicit nil

type GetProxies

type GetProxies struct {
	Id    []string       `json:"id,omitempty"`
	Name  NullableString `json:"name,omitempty"`
	Page  NullableInt32  `json:"page,omitempty"`
	Start NullableString `json:"start,omitempty"`
	Size  NullableInt32  `json:"size,omitempty"`
}

GetProxies struct for GetProxies

func NewGetProxies

func NewGetProxies() *GetProxies

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

func NewGetProxiesWithDefaults

func NewGetProxiesWithDefaults() *GetProxies

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

func (*GetProxies) GetId

func (o *GetProxies) GetId() []string

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

func (*GetProxies) GetIdOk

func (o *GetProxies) GetIdOk() ([]string, bool)

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

func (*GetProxies) GetName

func (o *GetProxies) GetName() string

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

func (*GetProxies) GetNameOk

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

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

func (*GetProxies) GetPage

func (o *GetProxies) GetPage() int32

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

func (*GetProxies) GetPageOk

func (o *GetProxies) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*GetProxies) GetSize

func (o *GetProxies) GetSize() int32

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

func (*GetProxies) GetSizeOk

func (o *GetProxies) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*GetProxies) GetStart

func (o *GetProxies) GetStart() string

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

func (*GetProxies) GetStartOk

func (o *GetProxies) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*GetProxies) HasId

func (o *GetProxies) HasId() bool

HasId returns a boolean if a field is not nil.

func (*GetProxies) HasName

func (o *GetProxies) HasName() bool

HasName returns a boolean if a field is not nil.

func (*GetProxies) HasPage

func (o *GetProxies) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetProxies) HasSize

func (o *GetProxies) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetProxies) HasStart

func (o *GetProxies) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (GetProxies) MarshalJSON

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

func (*GetProxies) SetId

func (o *GetProxies) SetId(v []string)

SetId gets a reference to the given []string and assigns it to the Id field.

func (*GetProxies) SetName

func (o *GetProxies) SetName(v string)

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

func (*GetProxies) SetNameNil

func (o *GetProxies) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GetProxies) SetPage

func (o *GetProxies) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetProxies) SetPageNil

func (o *GetProxies) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetProxies) SetSize

func (o *GetProxies) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetProxies) SetSizeNil

func (o *GetProxies) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetProxies) SetStart

func (o *GetProxies) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*GetProxies) SetStartNil

func (o *GetProxies) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (GetProxies) ToMap

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

func (*GetProxies) UnsetName

func (o *GetProxies) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*GetProxies) UnsetPage

func (o *GetProxies) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetProxies) UnsetSize

func (o *GetProxies) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*GetProxies) UnsetStart

func (o *GetProxies) UnsetStart()

UnsetStart ensures that no value is present for Start, not even an explicit nil

type GetReactorFormulas

type GetReactorFormulas struct {
	Name  NullableString `json:"name,omitempty"`
	Page  NullableInt32  `json:"page,omitempty"`
	Start NullableString `json:"start,omitempty"`
	Size  NullableInt32  `json:"size,omitempty"`
}

GetReactorFormulas struct for GetReactorFormulas

func NewGetReactorFormulas

func NewGetReactorFormulas() *GetReactorFormulas

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

func NewGetReactorFormulasWithDefaults

func NewGetReactorFormulasWithDefaults() *GetReactorFormulas

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

func (*GetReactorFormulas) GetName

func (o *GetReactorFormulas) GetName() string

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

func (*GetReactorFormulas) GetNameOk

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

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

func (*GetReactorFormulas) GetPage

func (o *GetReactorFormulas) GetPage() int32

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

func (*GetReactorFormulas) GetPageOk

func (o *GetReactorFormulas) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*GetReactorFormulas) GetSize

func (o *GetReactorFormulas) GetSize() int32

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

func (*GetReactorFormulas) GetSizeOk

func (o *GetReactorFormulas) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*GetReactorFormulas) GetStart

func (o *GetReactorFormulas) GetStart() string

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

func (*GetReactorFormulas) GetStartOk

func (o *GetReactorFormulas) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*GetReactorFormulas) HasName

func (o *GetReactorFormulas) HasName() bool

HasName returns a boolean if a field is not nil.

func (*GetReactorFormulas) HasPage

func (o *GetReactorFormulas) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetReactorFormulas) HasSize

func (o *GetReactorFormulas) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetReactorFormulas) HasStart

func (o *GetReactorFormulas) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (GetReactorFormulas) MarshalJSON

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

func (*GetReactorFormulas) SetName

func (o *GetReactorFormulas) SetName(v string)

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

func (*GetReactorFormulas) SetNameNil

func (o *GetReactorFormulas) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GetReactorFormulas) SetPage

func (o *GetReactorFormulas) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetReactorFormulas) SetPageNil

func (o *GetReactorFormulas) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetReactorFormulas) SetSize

func (o *GetReactorFormulas) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetReactorFormulas) SetSizeNil

func (o *GetReactorFormulas) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetReactorFormulas) SetStart

func (o *GetReactorFormulas) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*GetReactorFormulas) SetStartNil

func (o *GetReactorFormulas) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (GetReactorFormulas) ToMap

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

func (*GetReactorFormulas) UnsetName

func (o *GetReactorFormulas) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*GetReactorFormulas) UnsetPage

func (o *GetReactorFormulas) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetReactorFormulas) UnsetSize

func (o *GetReactorFormulas) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*GetReactorFormulas) UnsetStart

func (o *GetReactorFormulas) UnsetStart()

UnsetStart ensures that no value is present for Start, not even an explicit nil

type GetReactors

type GetReactors struct {
	Id    []string       `json:"id,omitempty"`
	Name  NullableString `json:"name,omitempty"`
	Page  NullableInt32  `json:"page,omitempty"`
	Start NullableString `json:"start,omitempty"`
	Size  NullableInt32  `json:"size,omitempty"`
}

GetReactors struct for GetReactors

func NewGetReactors

func NewGetReactors() *GetReactors

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

func NewGetReactorsWithDefaults

func NewGetReactorsWithDefaults() *GetReactors

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

func (*GetReactors) GetId

func (o *GetReactors) GetId() []string

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

func (*GetReactors) GetIdOk

func (o *GetReactors) GetIdOk() ([]string, bool)

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

func (*GetReactors) GetName

func (o *GetReactors) GetName() string

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

func (*GetReactors) GetNameOk

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

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

func (*GetReactors) GetPage

func (o *GetReactors) GetPage() int32

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

func (*GetReactors) GetPageOk

func (o *GetReactors) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*GetReactors) GetSize

func (o *GetReactors) GetSize() int32

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

func (*GetReactors) GetSizeOk

func (o *GetReactors) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*GetReactors) GetStart

func (o *GetReactors) GetStart() string

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

func (*GetReactors) GetStartOk

func (o *GetReactors) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*GetReactors) HasId

func (o *GetReactors) HasId() bool

HasId returns a boolean if a field is not nil.

func (*GetReactors) HasName

func (o *GetReactors) HasName() bool

HasName returns a boolean if a field is not nil.

func (*GetReactors) HasPage

func (o *GetReactors) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetReactors) HasSize

func (o *GetReactors) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetReactors) HasStart

func (o *GetReactors) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (GetReactors) MarshalJSON

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

func (*GetReactors) SetId

func (o *GetReactors) SetId(v []string)

SetId gets a reference to the given []string and assigns it to the Id field.

func (*GetReactors) SetName

func (o *GetReactors) SetName(v string)

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

func (*GetReactors) SetNameNil

func (o *GetReactors) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GetReactors) SetPage

func (o *GetReactors) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetReactors) SetPageNil

func (o *GetReactors) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetReactors) SetSize

func (o *GetReactors) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetReactors) SetSizeNil

func (o *GetReactors) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetReactors) SetStart

func (o *GetReactors) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*GetReactors) SetStartNil

func (o *GetReactors) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (GetReactors) ToMap

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

func (*GetReactors) UnsetName

func (o *GetReactors) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*GetReactors) UnsetPage

func (o *GetReactors) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetReactors) UnsetSize

func (o *GetReactors) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*GetReactors) UnsetStart

func (o *GetReactors) UnsetStart()

UnsetStart ensures that no value is present for Start, not even an explicit nil

type GetTenantInvitations

type GetTenantInvitations struct {
	Status *TenantInvitationStatus `json:"status,omitempty"`
	Page   NullableInt32           `json:"page,omitempty"`
	Start  NullableString          `json:"start,omitempty"`
	Size   NullableInt32           `json:"size,omitempty"`
}

GetTenantInvitations struct for GetTenantInvitations

func NewGetTenantInvitations

func NewGetTenantInvitations() *GetTenantInvitations

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

func NewGetTenantInvitationsWithDefaults

func NewGetTenantInvitationsWithDefaults() *GetTenantInvitations

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

func (*GetTenantInvitations) GetPage

func (o *GetTenantInvitations) GetPage() int32

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

func (*GetTenantInvitations) GetPageOk

func (o *GetTenantInvitations) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*GetTenantInvitations) GetSize

func (o *GetTenantInvitations) GetSize() int32

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

func (*GetTenantInvitations) GetSizeOk

func (o *GetTenantInvitations) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*GetTenantInvitations) GetStart

func (o *GetTenantInvitations) GetStart() string

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

func (*GetTenantInvitations) GetStartOk

func (o *GetTenantInvitations) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*GetTenantInvitations) GetStatus

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

func (*GetTenantInvitations) GetStatusOk

func (o *GetTenantInvitations) GetStatusOk() (*TenantInvitationStatus, 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 (*GetTenantInvitations) HasPage

func (o *GetTenantInvitations) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetTenantInvitations) HasSize

func (o *GetTenantInvitations) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetTenantInvitations) HasStart

func (o *GetTenantInvitations) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (*GetTenantInvitations) HasStatus

func (o *GetTenantInvitations) HasStatus() bool

HasStatus returns a boolean if a field is not nil.

func (GetTenantInvitations) MarshalJSON

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

func (*GetTenantInvitations) SetPage

func (o *GetTenantInvitations) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetTenantInvitations) SetPageNil

func (o *GetTenantInvitations) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetTenantInvitations) SetSize

func (o *GetTenantInvitations) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetTenantInvitations) SetSizeNil

func (o *GetTenantInvitations) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetTenantInvitations) SetStart

func (o *GetTenantInvitations) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*GetTenantInvitations) SetStartNil

func (o *GetTenantInvitations) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (*GetTenantInvitations) SetStatus

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

func (GetTenantInvitations) ToMap

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

func (*GetTenantInvitations) UnsetPage

func (o *GetTenantInvitations) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetTenantInvitations) UnsetSize

func (o *GetTenantInvitations) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*GetTenantInvitations) UnsetStart

func (o *GetTenantInvitations) UnsetStart()

UnsetStart ensures that no value is present for Start, not even an explicit nil

type GetTenantMembers

type GetTenantMembers struct {
	UserId []string       `json:"user_id,omitempty"`
	Page   NullableInt32  `json:"page,omitempty"`
	Start  NullableString `json:"start,omitempty"`
	Size   NullableInt32  `json:"size,omitempty"`
}

GetTenantMembers struct for GetTenantMembers

func NewGetTenantMembers

func NewGetTenantMembers() *GetTenantMembers

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

func NewGetTenantMembersWithDefaults

func NewGetTenantMembersWithDefaults() *GetTenantMembers

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

func (*GetTenantMembers) GetPage

func (o *GetTenantMembers) GetPage() int32

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

func (*GetTenantMembers) GetPageOk

func (o *GetTenantMembers) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*GetTenantMembers) GetSize

func (o *GetTenantMembers) GetSize() int32

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

func (*GetTenantMembers) GetSizeOk

func (o *GetTenantMembers) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*GetTenantMembers) GetStart

func (o *GetTenantMembers) GetStart() string

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

func (*GetTenantMembers) GetStartOk

func (o *GetTenantMembers) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*GetTenantMembers) GetUserId

func (o *GetTenantMembers) GetUserId() []string

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

func (*GetTenantMembers) GetUserIdOk

func (o *GetTenantMembers) 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 (*GetTenantMembers) HasPage

func (o *GetTenantMembers) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetTenantMembers) HasSize

func (o *GetTenantMembers) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetTenantMembers) HasStart

func (o *GetTenantMembers) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (*GetTenantMembers) HasUserId

func (o *GetTenantMembers) HasUserId() bool

HasUserId returns a boolean if a field is not nil.

func (GetTenantMembers) MarshalJSON

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

func (*GetTenantMembers) SetPage

func (o *GetTenantMembers) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetTenantMembers) SetPageNil

func (o *GetTenantMembers) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetTenantMembers) SetSize

func (o *GetTenantMembers) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetTenantMembers) SetSizeNil

func (o *GetTenantMembers) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetTenantMembers) SetStart

func (o *GetTenantMembers) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*GetTenantMembers) SetStartNil

func (o *GetTenantMembers) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (*GetTenantMembers) SetUserId

func (o *GetTenantMembers) SetUserId(v []string)

SetUserId gets a reference to the given []string and assigns it to the UserId field.

func (GetTenantMembers) ToMap

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

func (*GetTenantMembers) UnsetPage

func (o *GetTenantMembers) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetTenantMembers) UnsetSize

func (o *GetTenantMembers) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*GetTenantMembers) UnsetStart

func (o *GetTenantMembers) UnsetStart()

UnsetStart ensures that no value is present for Start, not even an explicit nil

type GetTokens

type GetTokens struct {
	Id       []string          `json:"id,omitempty"`
	Metadata map[string]string `json:"metadata,omitempty"`
	Page     NullableInt32     `json:"page,omitempty"`
	Start    NullableString    `json:"start,omitempty"`
	Size     NullableInt32     `json:"size,omitempty"`
}

GetTokens struct for GetTokens

func NewGetTokens

func NewGetTokens() *GetTokens

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

func NewGetTokensWithDefaults

func NewGetTokensWithDefaults() *GetTokens

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

func (*GetTokens) GetId

func (o *GetTokens) GetId() []string

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

func (*GetTokens) GetIdOk

func (o *GetTokens) GetIdOk() ([]string, bool)

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

func (*GetTokens) GetMetadata

func (o *GetTokens) GetMetadata() map[string]string

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

func (*GetTokens) GetMetadataOk

func (o *GetTokens) GetMetadataOk() (*map[string]string, bool)

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

func (*GetTokens) GetPage

func (o *GetTokens) GetPage() int32

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

func (*GetTokens) GetPageOk

func (o *GetTokens) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*GetTokens) GetSize

func (o *GetTokens) GetSize() int32

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

func (*GetTokens) GetSizeOk

func (o *GetTokens) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*GetTokens) GetStart

func (o *GetTokens) GetStart() string

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

func (*GetTokens) GetStartOk

func (o *GetTokens) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*GetTokens) HasId

func (o *GetTokens) HasId() bool

HasId returns a boolean if a field is not nil.

func (*GetTokens) HasMetadata

func (o *GetTokens) HasMetadata() bool

HasMetadata returns a boolean if a field is not nil.

func (*GetTokens) HasPage

func (o *GetTokens) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetTokens) HasSize

func (o *GetTokens) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetTokens) HasStart

func (o *GetTokens) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (GetTokens) MarshalJSON

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

func (*GetTokens) SetId

func (o *GetTokens) SetId(v []string)

SetId gets a reference to the given []string and assigns it to the Id field.

func (*GetTokens) SetMetadata

func (o *GetTokens) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*GetTokens) SetPage

func (o *GetTokens) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetTokens) SetPageNil

func (o *GetTokens) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetTokens) SetSize

func (o *GetTokens) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetTokens) SetSizeNil

func (o *GetTokens) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetTokens) SetStart

func (o *GetTokens) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*GetTokens) SetStartNil

func (o *GetTokens) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (GetTokens) ToMap

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

func (*GetTokens) UnsetPage

func (o *GetTokens) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetTokens) UnsetSize

func (o *GetTokens) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*GetTokens) UnsetStart

func (o *GetTokens) UnsetStart()

UnsetStart ensures that no value is present for Start, not even an explicit nil

type Log

type Log struct {
	Id         NullableString `json:"id,omitempty"`
	TenantId   *string        `json:"tenant_id,omitempty"`
	ActorId    NullableString `json:"actor_id,omitempty"`
	ActorType  NullableString `json:"actor_type,omitempty"`
	EntityType NullableString `json:"entity_type,omitempty"`
	EntityId   NullableString `json:"entity_id,omitempty"`
	Operation  NullableString `json:"operation,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	CreatedAt  NullableTime   `json:"created_at,omitempty"`
}

Log struct for Log

func NewLog

func NewLog() *Log

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

func NewLogWithDefaults

func NewLogWithDefaults() *Log

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

func (*Log) GetActorId

func (o *Log) GetActorId() string

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

func (*Log) GetActorIdOk

func (o *Log) GetActorIdOk() (*string, bool)

GetActorIdOk returns a tuple with the ActorId 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 (*Log) GetActorType

func (o *Log) GetActorType() string

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

func (*Log) GetActorTypeOk

func (o *Log) GetActorTypeOk() (*string, bool)

GetActorTypeOk returns a tuple with the ActorType 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 (*Log) GetCreatedAt

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

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

func (*Log) GetCreatedAtOk

func (o *Log) GetCreatedAtOk() (*time.Time, bool)

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

func (*Log) GetEntityId

func (o *Log) GetEntityId() string

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

func (*Log) GetEntityIdOk

func (o *Log) GetEntityIdOk() (*string, bool)

GetEntityIdOk returns a tuple with the EntityId 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 (*Log) GetEntityType

func (o *Log) GetEntityType() string

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

func (*Log) GetEntityTypeOk

func (o *Log) GetEntityTypeOk() (*string, bool)

GetEntityTypeOk returns a tuple with the EntityType 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 (*Log) GetId

func (o *Log) GetId() string

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

func (*Log) GetIdOk

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

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

func (*Log) GetMessage

func (o *Log) GetMessage() string

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

func (*Log) GetMessageOk

func (o *Log) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Log) GetOperation

func (o *Log) GetOperation() string

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

func (*Log) GetOperationOk

func (o *Log) GetOperationOk() (*string, bool)

GetOperationOk returns a tuple with the Operation 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 (*Log) GetTenantId

func (o *Log) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Log) GetTenantIdOk

func (o *Log) GetTenantIdOk() (*string, bool)

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

func (*Log) HasActorId

func (o *Log) HasActorId() bool

HasActorId returns a boolean if a field is not nil.

func (*Log) HasActorType

func (o *Log) HasActorType() bool

HasActorType returns a boolean if a field is not nil.

func (*Log) HasCreatedAt

func (o *Log) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*Log) HasEntityId

func (o *Log) HasEntityId() bool

HasEntityId returns a boolean if a field is not nil.

func (*Log) HasEntityType

func (o *Log) HasEntityType() bool

HasEntityType returns a boolean if a field is not nil.

func (*Log) HasId

func (o *Log) HasId() bool

HasId returns a boolean if a field is not nil.

func (*Log) HasMessage

func (o *Log) HasMessage() bool

HasMessage returns a boolean if a field is not nil.

func (*Log) HasOperation

func (o *Log) HasOperation() bool

HasOperation returns a boolean if a field is not nil.

func (*Log) HasTenantId

func (o *Log) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (Log) MarshalJSON

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

func (*Log) SetActorId

func (o *Log) SetActorId(v string)

SetActorId gets a reference to the given NullableString and assigns it to the ActorId field.

func (*Log) SetActorIdNil

func (o *Log) SetActorIdNil()

SetActorIdNil sets the value for ActorId to be an explicit nil

func (*Log) SetActorType

func (o *Log) SetActorType(v string)

SetActorType gets a reference to the given NullableString and assigns it to the ActorType field.

func (*Log) SetActorTypeNil

func (o *Log) SetActorTypeNil()

SetActorTypeNil sets the value for ActorType to be an explicit nil

func (*Log) SetCreatedAt

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

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

func (*Log) SetCreatedAtNil

func (o *Log) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Log) SetEntityId

func (o *Log) SetEntityId(v string)

SetEntityId gets a reference to the given NullableString and assigns it to the EntityId field.

func (*Log) SetEntityIdNil

func (o *Log) SetEntityIdNil()

SetEntityIdNil sets the value for EntityId to be an explicit nil

func (*Log) SetEntityType

func (o *Log) SetEntityType(v string)

SetEntityType gets a reference to the given NullableString and assigns it to the EntityType field.

func (*Log) SetEntityTypeNil

func (o *Log) SetEntityTypeNil()

SetEntityTypeNil sets the value for EntityType to be an explicit nil

func (*Log) SetId

func (o *Log) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*Log) SetIdNil

func (o *Log) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Log) SetMessage

func (o *Log) SetMessage(v string)

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

func (*Log) SetMessageNil

func (o *Log) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*Log) SetOperation

func (o *Log) SetOperation(v string)

SetOperation gets a reference to the given NullableString and assigns it to the Operation field.

func (*Log) SetOperationNil

func (o *Log) SetOperationNil()

SetOperationNil sets the value for Operation to be an explicit nil

func (*Log) SetTenantId

func (o *Log) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (Log) ToMap

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

func (*Log) UnsetActorId

func (o *Log) UnsetActorId()

UnsetActorId ensures that no value is present for ActorId, not even an explicit nil

func (*Log) UnsetActorType

func (o *Log) UnsetActorType()

UnsetActorType ensures that no value is present for ActorType, not even an explicit nil

func (*Log) UnsetCreatedAt

func (o *Log) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*Log) UnsetEntityId

func (o *Log) UnsetEntityId()

UnsetEntityId ensures that no value is present for EntityId, not even an explicit nil

func (*Log) UnsetEntityType

func (o *Log) UnsetEntityType()

UnsetEntityType ensures that no value is present for EntityType, not even an explicit nil

func (*Log) UnsetId

func (o *Log) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*Log) UnsetMessage

func (o *Log) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*Log) UnsetOperation

func (o *Log) UnsetOperation()

UnsetOperation ensures that no value is present for Operation, not even an explicit nil

type LogEntityType

type LogEntityType struct {
	DisplayName NullableString `json:"display_name,omitempty"`
	Value       NullableString `json:"value,omitempty"`
}

LogEntityType struct for LogEntityType

func NewLogEntityType

func NewLogEntityType() *LogEntityType

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

func NewLogEntityTypeWithDefaults

func NewLogEntityTypeWithDefaults() *LogEntityType

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

func (*LogEntityType) GetDisplayName

func (o *LogEntityType) GetDisplayName() string

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

func (*LogEntityType) GetDisplayNameOk

func (o *LogEntityType) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName 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 (*LogEntityType) GetValue

func (o *LogEntityType) GetValue() string

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

func (*LogEntityType) GetValueOk

func (o *LogEntityType) GetValueOk() (*string, bool)

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

func (*LogEntityType) HasDisplayName

func (o *LogEntityType) HasDisplayName() bool

HasDisplayName returns a boolean if a field is not nil.

func (*LogEntityType) HasValue

func (o *LogEntityType) HasValue() bool

HasValue returns a boolean if a field is not nil.

func (LogEntityType) MarshalJSON

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

func (*LogEntityType) SetDisplayName

func (o *LogEntityType) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*LogEntityType) SetDisplayNameNil

func (o *LogEntityType) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*LogEntityType) SetValue

func (o *LogEntityType) SetValue(v string)

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

func (*LogEntityType) SetValueNil

func (o *LogEntityType) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (LogEntityType) ToMap

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

func (*LogEntityType) UnsetDisplayName

func (o *LogEntityType) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*LogEntityType) UnsetValue

func (o *LogEntityType) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type LogPaginatedList

type LogPaginatedList struct {
	Pagination *Pagination `json:"pagination,omitempty"`
	Data       []Log       `json:"data,omitempty"`
}

LogPaginatedList struct for LogPaginatedList

func NewLogPaginatedList

func NewLogPaginatedList() *LogPaginatedList

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

func NewLogPaginatedListWithDefaults

func NewLogPaginatedListWithDefaults() *LogPaginatedList

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

func (*LogPaginatedList) GetData

func (o *LogPaginatedList) GetData() []Log

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

func (*LogPaginatedList) GetDataOk

func (o *LogPaginatedList) GetDataOk() ([]Log, bool)

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

func (*LogPaginatedList) GetPagination

func (o *LogPaginatedList) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*LogPaginatedList) GetPaginationOk

func (o *LogPaginatedList) GetPaginationOk() (*Pagination, bool)

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

func (*LogPaginatedList) HasData

func (o *LogPaginatedList) HasData() bool

HasData returns a boolean if a field is not nil.

func (*LogPaginatedList) HasPagination

func (o *LogPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field is not nil.

func (LogPaginatedList) MarshalJSON

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

func (*LogPaginatedList) SetData

func (o *LogPaginatedList) SetData(v []Log)

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

func (*LogPaginatedList) SetPagination

func (o *LogPaginatedList) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (LogPaginatedList) ToMap

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

type LogsApiGetEntityTypesRequest

type LogsApiGetEntityTypesRequest struct {
	ApiService *LogsApiService
	// contains filtered or unexported fields
}

func (LogsApiGetEntityTypesRequest) Execute

type LogsApiGetRequest

type LogsApiGetRequest struct {
	ApiService *LogsApiService
	// contains filtered or unexported fields
}

func (LogsApiGetRequest) EndDate

func (r LogsApiGetRequest) EndDate(endDate time.Time) LogsApiGetRequest

func (LogsApiGetRequest) EntityId

func (r LogsApiGetRequest) EntityId(entityId string) LogsApiGetRequest

func (LogsApiGetRequest) EntityType

func (r LogsApiGetRequest) EntityType(entityType string) LogsApiGetRequest

func (LogsApiGetRequest) Execute

func (LogsApiGetRequest) Page

func (LogsApiGetRequest) Size

func (LogsApiGetRequest) Start

func (LogsApiGetRequest) StartDate

func (r LogsApiGetRequest) StartDate(startDate time.Time) LogsApiGetRequest

type LogsApiService

type LogsApiService service

LogsApiService LogsApi service

func (*LogsApiService) Get

Get Method for Get

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

func (*LogsApiService) GetEntityTypes

GetEntityTypes Method for GetEntityTypes

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

func (*LogsApiService) GetEntityTypesExecute

func (a *LogsApiService) GetEntityTypesExecute(r LogsApiGetEntityTypesRequest) ([]LogEntityType, *http.Response, error)

Execute executes the request

@return []LogEntityType

func (*LogsApiService) GetExecute

Execute executes the request

@return LogPaginatedList

type MappedNullable

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

type MonthlyActiveTokenHistory

type MonthlyActiveTokenHistory struct {
	Year  *int32 `json:"year,omitempty"`
	Month *int32 `json:"month,omitempty"`
	Count *int64 `json:"count,omitempty"`
}

MonthlyActiveTokenHistory struct for MonthlyActiveTokenHistory

func NewMonthlyActiveTokenHistory

func NewMonthlyActiveTokenHistory() *MonthlyActiveTokenHistory

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

func NewMonthlyActiveTokenHistoryWithDefaults

func NewMonthlyActiveTokenHistoryWithDefaults() *MonthlyActiveTokenHistory

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

func (*MonthlyActiveTokenHistory) GetCount

func (o *MonthlyActiveTokenHistory) GetCount() int64

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

func (*MonthlyActiveTokenHistory) GetCountOk

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

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

func (*MonthlyActiveTokenHistory) GetMonth

func (o *MonthlyActiveTokenHistory) GetMonth() int32

GetMonth returns the Month field value if set, zero value otherwise.

func (*MonthlyActiveTokenHistory) GetMonthOk

func (o *MonthlyActiveTokenHistory) GetMonthOk() (*int32, bool)

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

func (*MonthlyActiveTokenHistory) GetYear

func (o *MonthlyActiveTokenHistory) GetYear() int32

GetYear returns the Year field value if set, zero value otherwise.

func (*MonthlyActiveTokenHistory) GetYearOk

func (o *MonthlyActiveTokenHistory) GetYearOk() (*int32, bool)

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

func (*MonthlyActiveTokenHistory) HasCount

func (o *MonthlyActiveTokenHistory) HasCount() bool

HasCount returns a boolean if a field is not nil.

func (*MonthlyActiveTokenHistory) HasMonth

func (o *MonthlyActiveTokenHistory) HasMonth() bool

HasMonth returns a boolean if a field is not nil.

func (*MonthlyActiveTokenHistory) HasYear

func (o *MonthlyActiveTokenHistory) HasYear() bool

HasYear returns a boolean if a field is not nil.

func (MonthlyActiveTokenHistory) MarshalJSON

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

func (*MonthlyActiveTokenHistory) SetCount

func (o *MonthlyActiveTokenHistory) SetCount(v int64)

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

func (*MonthlyActiveTokenHistory) SetMonth

func (o *MonthlyActiveTokenHistory) SetMonth(v int32)

SetMonth gets a reference to the given int32 and assigns it to the Month field.

func (*MonthlyActiveTokenHistory) SetYear

func (o *MonthlyActiveTokenHistory) SetYear(v int32)

SetYear gets a reference to the given int32 and assigns it to the Year field.

func (MonthlyActiveTokenHistory) ToMap

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

type NullableAccessRule

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

func NewNullableAccessRule

func NewNullableAccessRule(val *AccessRule) *NullableAccessRule

func (NullableAccessRule) Get

func (v NullableAccessRule) Get() *AccessRule

func (NullableAccessRule) IsSet

func (v NullableAccessRule) IsSet() bool

func (NullableAccessRule) MarshalJSON

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

func (*NullableAccessRule) Set

func (v *NullableAccessRule) Set(val *AccessRule)

func (*NullableAccessRule) UnmarshalJSON

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

func (*NullableAccessRule) Unset

func (v *NullableAccessRule) Unset()

type NullableApplication

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

func NewNullableApplication

func NewNullableApplication(val *Application) *NullableApplication

func (NullableApplication) Get

func (NullableApplication) IsSet

func (v NullableApplication) IsSet() bool

func (NullableApplication) MarshalJSON

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

func (*NullableApplication) Set

func (v *NullableApplication) Set(val *Application)

func (*NullableApplication) UnmarshalJSON

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

func (*NullableApplication) Unset

func (v *NullableApplication) Unset()

type NullableApplicationKey

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

func NewNullableApplicationKey

func NewNullableApplicationKey(val *ApplicationKey) *NullableApplicationKey

func (NullableApplicationKey) Get

func (NullableApplicationKey) IsSet

func (v NullableApplicationKey) IsSet() bool

func (NullableApplicationKey) MarshalJSON

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

func (*NullableApplicationKey) Set

func (*NullableApplicationKey) UnmarshalJSON

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

func (*NullableApplicationKey) Unset

func (v *NullableApplicationKey) Unset()

type NullableApplicationPaginatedList

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

func (NullableApplicationPaginatedList) Get

func (NullableApplicationPaginatedList) IsSet

func (NullableApplicationPaginatedList) MarshalJSON

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

func (*NullableApplicationPaginatedList) Set

func (*NullableApplicationPaginatedList) UnmarshalJSON

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

func (*NullableApplicationPaginatedList) Unset

type NullableApplicationTemplate

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

func NewNullableApplicationTemplate

func NewNullableApplicationTemplate(val *ApplicationTemplate) *NullableApplicationTemplate

func (NullableApplicationTemplate) Get

func (NullableApplicationTemplate) IsSet

func (NullableApplicationTemplate) MarshalJSON

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

func (*NullableApplicationTemplate) Set

func (*NullableApplicationTemplate) UnmarshalJSON

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

func (*NullableApplicationTemplate) Unset

func (v *NullableApplicationTemplate) Unset()

type NullableAuthenticateThreeDSSessionRequest

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

func (NullableAuthenticateThreeDSSessionRequest) Get

func (NullableAuthenticateThreeDSSessionRequest) IsSet

func (NullableAuthenticateThreeDSSessionRequest) MarshalJSON

func (*NullableAuthenticateThreeDSSessionRequest) Set

func (*NullableAuthenticateThreeDSSessionRequest) UnmarshalJSON

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

func (*NullableAuthenticateThreeDSSessionRequest) Unset

type NullableAuthorizeSessionRequest

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

func (NullableAuthorizeSessionRequest) Get

func (NullableAuthorizeSessionRequest) IsSet

func (NullableAuthorizeSessionRequest) MarshalJSON

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

func (*NullableAuthorizeSessionRequest) Set

func (*NullableAuthorizeSessionRequest) UnmarshalJSON

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

func (*NullableAuthorizeSessionRequest) Unset

type NullableBinDetails

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

func NewNullableBinDetails

func NewNullableBinDetails(val *BinDetails) *NullableBinDetails

func (NullableBinDetails) Get

func (v NullableBinDetails) Get() *BinDetails

func (NullableBinDetails) IsSet

func (v NullableBinDetails) IsSet() bool

func (NullableBinDetails) MarshalJSON

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

func (*NullableBinDetails) Set

func (v *NullableBinDetails) Set(val *BinDetails)

func (*NullableBinDetails) UnmarshalJSON

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

func (*NullableBinDetails) Unset

func (v *NullableBinDetails) Unset()

type NullableBinDetailsBank

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

func NewNullableBinDetailsBank

func NewNullableBinDetailsBank(val *BinDetailsBank) *NullableBinDetailsBank

func (NullableBinDetailsBank) Get

func (NullableBinDetailsBank) IsSet

func (v NullableBinDetailsBank) IsSet() bool

func (NullableBinDetailsBank) MarshalJSON

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

func (*NullableBinDetailsBank) Set

func (*NullableBinDetailsBank) UnmarshalJSON

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

func (*NullableBinDetailsBank) Unset

func (v *NullableBinDetailsBank) Unset()

type NullableBinDetailsCountry

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

func NewNullableBinDetailsCountry

func NewNullableBinDetailsCountry(val *BinDetailsCountry) *NullableBinDetailsCountry

func (NullableBinDetailsCountry) Get

func (NullableBinDetailsCountry) IsSet

func (v NullableBinDetailsCountry) IsSet() bool

func (NullableBinDetailsCountry) MarshalJSON

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

func (*NullableBinDetailsCountry) Set

func (*NullableBinDetailsCountry) UnmarshalJSON

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

func (*NullableBinDetailsCountry) Unset

func (v *NullableBinDetailsCountry) Unset()

type NullableBinDetailsProduct

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

func NewNullableBinDetailsProduct

func NewNullableBinDetailsProduct(val *BinDetailsProduct) *NullableBinDetailsProduct

func (NullableBinDetailsProduct) Get

func (NullableBinDetailsProduct) IsSet

func (v NullableBinDetailsProduct) IsSet() bool

func (NullableBinDetailsProduct) MarshalJSON

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

func (*NullableBinDetailsProduct) Set

func (*NullableBinDetailsProduct) UnmarshalJSON

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

func (*NullableBinDetailsProduct) Unset

func (v *NullableBinDetailsProduct) 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 NullableCondition

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

func NewNullableCondition

func NewNullableCondition(val *Condition) *NullableCondition

func (NullableCondition) Get

func (v NullableCondition) Get() *Condition

func (NullableCondition) IsSet

func (v NullableCondition) IsSet() bool

func (NullableCondition) MarshalJSON

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

func (*NullableCondition) Set

func (v *NullableCondition) Set(val *Condition)

func (*NullableCondition) UnmarshalJSON

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

func (*NullableCondition) Unset

func (v *NullableCondition) Unset()

type NullableCreateApplicationRequest

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

func (NullableCreateApplicationRequest) Get

func (NullableCreateApplicationRequest) IsSet

func (NullableCreateApplicationRequest) MarshalJSON

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

func (*NullableCreateApplicationRequest) Set

func (*NullableCreateApplicationRequest) UnmarshalJSON

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

func (*NullableCreateApplicationRequest) Unset

type NullableCreateProxyRequest

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

func NewNullableCreateProxyRequest

func NewNullableCreateProxyRequest(val *CreateProxyRequest) *NullableCreateProxyRequest

func (NullableCreateProxyRequest) Get

func (NullableCreateProxyRequest) IsSet

func (v NullableCreateProxyRequest) IsSet() bool

func (NullableCreateProxyRequest) MarshalJSON

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

func (*NullableCreateProxyRequest) Set

func (*NullableCreateProxyRequest) UnmarshalJSON

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

func (*NullableCreateProxyRequest) Unset

func (v *NullableCreateProxyRequest) Unset()

type NullableCreateReactorFormulaRequest

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

func (NullableCreateReactorFormulaRequest) Get

func (NullableCreateReactorFormulaRequest) IsSet

func (NullableCreateReactorFormulaRequest) MarshalJSON

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

func (*NullableCreateReactorFormulaRequest) Set

func (*NullableCreateReactorFormulaRequest) UnmarshalJSON

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

func (*NullableCreateReactorFormulaRequest) Unset

type NullableCreateReactorRequest

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

func NewNullableCreateReactorRequest

func NewNullableCreateReactorRequest(val *CreateReactorRequest) *NullableCreateReactorRequest

func (NullableCreateReactorRequest) Get

func (NullableCreateReactorRequest) IsSet

func (NullableCreateReactorRequest) MarshalJSON

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

func (*NullableCreateReactorRequest) Set

func (*NullableCreateReactorRequest) UnmarshalJSON

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

func (*NullableCreateReactorRequest) Unset

func (v *NullableCreateReactorRequest) Unset()

type NullableCreateSessionResponse

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

func (NullableCreateSessionResponse) Get

func (NullableCreateSessionResponse) IsSet

func (NullableCreateSessionResponse) MarshalJSON

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

func (*NullableCreateSessionResponse) Set

func (*NullableCreateSessionResponse) UnmarshalJSON

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

func (*NullableCreateSessionResponse) Unset

func (v *NullableCreateSessionResponse) Unset()

type NullableCreateTenantInvitationRequest

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

func (NullableCreateTenantInvitationRequest) Get

func (NullableCreateTenantInvitationRequest) IsSet

func (NullableCreateTenantInvitationRequest) MarshalJSON

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

func (*NullableCreateTenantInvitationRequest) Set

func (*NullableCreateTenantInvitationRequest) UnmarshalJSON

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

func (*NullableCreateTenantInvitationRequest) Unset

type NullableCreateTokenRequest

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

func NewNullableCreateTokenRequest

func NewNullableCreateTokenRequest(val *CreateTokenRequest) *NullableCreateTokenRequest

func (NullableCreateTokenRequest) Get

func (NullableCreateTokenRequest) IsSet

func (v NullableCreateTokenRequest) IsSet() bool

func (NullableCreateTokenRequest) MarshalJSON

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

func (*NullableCreateTokenRequest) Set

func (*NullableCreateTokenRequest) UnmarshalJSON

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

func (*NullableCreateTokenRequest) Unset

func (v *NullableCreateTokenRequest) Unset()

type NullableCreateTokenResponse

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

func NewNullableCreateTokenResponse

func NewNullableCreateTokenResponse(val *CreateTokenResponse) *NullableCreateTokenResponse

func (NullableCreateTokenResponse) Get

func (NullableCreateTokenResponse) IsSet

func (NullableCreateTokenResponse) MarshalJSON

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

func (*NullableCreateTokenResponse) Set

func (*NullableCreateTokenResponse) UnmarshalJSON

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

func (*NullableCreateTokenResponse) Unset

func (v *NullableCreateTokenResponse) Unset()

type NullableEncryptionKey

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

func NewNullableEncryptionKey

func NewNullableEncryptionKey(val *EncryptionKey) *NullableEncryptionKey

func (NullableEncryptionKey) Get

func (NullableEncryptionKey) IsSet

func (v NullableEncryptionKey) IsSet() bool

func (NullableEncryptionKey) MarshalJSON

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

func (*NullableEncryptionKey) Set

func (v *NullableEncryptionKey) Set(val *EncryptionKey)

func (*NullableEncryptionKey) UnmarshalJSON

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

func (*NullableEncryptionKey) Unset

func (v *NullableEncryptionKey) Unset()

type NullableEncryptionMetadata

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

func NewNullableEncryptionMetadata

func NewNullableEncryptionMetadata(val *EncryptionMetadata) *NullableEncryptionMetadata

func (NullableEncryptionMetadata) Get

func (NullableEncryptionMetadata) IsSet

func (v NullableEncryptionMetadata) IsSet() bool

func (NullableEncryptionMetadata) MarshalJSON

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

func (*NullableEncryptionMetadata) Set

func (*NullableEncryptionMetadata) UnmarshalJSON

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

func (*NullableEncryptionMetadata) Unset

func (v *NullableEncryptionMetadata) 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 NullableGetApplications

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

func NewNullableGetApplications

func NewNullableGetApplications(val *GetApplications) *NullableGetApplications

func (NullableGetApplications) Get

func (NullableGetApplications) IsSet

func (v NullableGetApplications) IsSet() bool

func (NullableGetApplications) MarshalJSON

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

func (*NullableGetApplications) Set

func (*NullableGetApplications) UnmarshalJSON

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

func (*NullableGetApplications) Unset

func (v *NullableGetApplications) Unset()

type NullableGetLogs

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

func NewNullableGetLogs

func NewNullableGetLogs(val *GetLogs) *NullableGetLogs

func (NullableGetLogs) Get

func (v NullableGetLogs) Get() *GetLogs

func (NullableGetLogs) IsSet

func (v NullableGetLogs) IsSet() bool

func (NullableGetLogs) MarshalJSON

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

func (*NullableGetLogs) Set

func (v *NullableGetLogs) Set(val *GetLogs)

func (*NullableGetLogs) UnmarshalJSON

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

func (*NullableGetLogs) Unset

func (v *NullableGetLogs) Unset()

type NullableGetPermissions

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

func NewNullableGetPermissions

func NewNullableGetPermissions(val *GetPermissions) *NullableGetPermissions

func (NullableGetPermissions) Get

func (NullableGetPermissions) IsSet

func (v NullableGetPermissions) IsSet() bool

func (NullableGetPermissions) MarshalJSON

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

func (*NullableGetPermissions) Set

func (*NullableGetPermissions) UnmarshalJSON

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

func (*NullableGetPermissions) Unset

func (v *NullableGetPermissions) Unset()

type NullableGetProxies

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

func NewNullableGetProxies

func NewNullableGetProxies(val *GetProxies) *NullableGetProxies

func (NullableGetProxies) Get

func (v NullableGetProxies) Get() *GetProxies

func (NullableGetProxies) IsSet

func (v NullableGetProxies) IsSet() bool

func (NullableGetProxies) MarshalJSON

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

func (*NullableGetProxies) Set

func (v *NullableGetProxies) Set(val *GetProxies)

func (*NullableGetProxies) UnmarshalJSON

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

func (*NullableGetProxies) Unset

func (v *NullableGetProxies) Unset()

type NullableGetReactorFormulas

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

func NewNullableGetReactorFormulas

func NewNullableGetReactorFormulas(val *GetReactorFormulas) *NullableGetReactorFormulas

func (NullableGetReactorFormulas) Get

func (NullableGetReactorFormulas) IsSet

func (v NullableGetReactorFormulas) IsSet() bool

func (NullableGetReactorFormulas) MarshalJSON

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

func (*NullableGetReactorFormulas) Set

func (*NullableGetReactorFormulas) UnmarshalJSON

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

func (*NullableGetReactorFormulas) Unset

func (v *NullableGetReactorFormulas) Unset()

type NullableGetReactors

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

func NewNullableGetReactors

func NewNullableGetReactors(val *GetReactors) *NullableGetReactors

func (NullableGetReactors) Get

func (NullableGetReactors) IsSet

func (v NullableGetReactors) IsSet() bool

func (NullableGetReactors) MarshalJSON

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

func (*NullableGetReactors) Set

func (v *NullableGetReactors) Set(val *GetReactors)

func (*NullableGetReactors) UnmarshalJSON

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

func (*NullableGetReactors) Unset

func (v *NullableGetReactors) Unset()

type NullableGetTenantInvitations

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

func NewNullableGetTenantInvitations

func NewNullableGetTenantInvitations(val *GetTenantInvitations) *NullableGetTenantInvitations

func (NullableGetTenantInvitations) Get

func (NullableGetTenantInvitations) IsSet

func (NullableGetTenantInvitations) MarshalJSON

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

func (*NullableGetTenantInvitations) Set

func (*NullableGetTenantInvitations) UnmarshalJSON

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

func (*NullableGetTenantInvitations) Unset

func (v *NullableGetTenantInvitations) Unset()

type NullableGetTenantMembers

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

func NewNullableGetTenantMembers

func NewNullableGetTenantMembers(val *GetTenantMembers) *NullableGetTenantMembers

func (NullableGetTenantMembers) Get

func (NullableGetTenantMembers) IsSet

func (v NullableGetTenantMembers) IsSet() bool

func (NullableGetTenantMembers) MarshalJSON

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

func (*NullableGetTenantMembers) Set

func (*NullableGetTenantMembers) UnmarshalJSON

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

func (*NullableGetTenantMembers) Unset

func (v *NullableGetTenantMembers) Unset()

type NullableGetTokens

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

func NewNullableGetTokens

func NewNullableGetTokens(val *GetTokens) *NullableGetTokens

func (NullableGetTokens) Get

func (v NullableGetTokens) Get() *GetTokens

func (NullableGetTokens) IsSet

func (v NullableGetTokens) IsSet() bool

func (NullableGetTokens) MarshalJSON

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

func (*NullableGetTokens) Set

func (v *NullableGetTokens) Set(val *GetTokens)

func (*NullableGetTokens) UnmarshalJSON

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

func (*NullableGetTokens) Unset

func (v *NullableGetTokens) 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 NullableLog

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

func NewNullableLog

func NewNullableLog(val *Log) *NullableLog

func (NullableLog) Get

func (v NullableLog) Get() *Log

func (NullableLog) IsSet

func (v NullableLog) IsSet() bool

func (NullableLog) MarshalJSON

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

func (*NullableLog) Set

func (v *NullableLog) Set(val *Log)

func (*NullableLog) UnmarshalJSON

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

func (*NullableLog) Unset

func (v *NullableLog) Unset()

type NullableLogEntityType

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

func NewNullableLogEntityType

func NewNullableLogEntityType(val *LogEntityType) *NullableLogEntityType

func (NullableLogEntityType) Get

func (NullableLogEntityType) IsSet

func (v NullableLogEntityType) IsSet() bool

func (NullableLogEntityType) MarshalJSON

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

func (*NullableLogEntityType) Set

func (v *NullableLogEntityType) Set(val *LogEntityType)

func (*NullableLogEntityType) UnmarshalJSON

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

func (*NullableLogEntityType) Unset

func (v *NullableLogEntityType) Unset()

type NullableLogPaginatedList

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

func NewNullableLogPaginatedList

func NewNullableLogPaginatedList(val *LogPaginatedList) *NullableLogPaginatedList

func (NullableLogPaginatedList) Get

func (NullableLogPaginatedList) IsSet

func (v NullableLogPaginatedList) IsSet() bool

func (NullableLogPaginatedList) MarshalJSON

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

func (*NullableLogPaginatedList) Set

func (*NullableLogPaginatedList) UnmarshalJSON

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

func (*NullableLogPaginatedList) Unset

func (v *NullableLogPaginatedList) Unset()

type NullableMonthlyActiveTokenHistory

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

func (NullableMonthlyActiveTokenHistory) Get

func (NullableMonthlyActiveTokenHistory) IsSet

func (NullableMonthlyActiveTokenHistory) MarshalJSON

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

func (*NullableMonthlyActiveTokenHistory) Set

func (*NullableMonthlyActiveTokenHistory) UnmarshalJSON

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

func (*NullableMonthlyActiveTokenHistory) Unset

type NullablePagination

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

func NewNullablePagination

func NewNullablePagination(val *Pagination) *NullablePagination

func (NullablePagination) Get

func (v NullablePagination) Get() *Pagination

func (NullablePagination) IsSet

func (v NullablePagination) IsSet() bool

func (NullablePagination) MarshalJSON

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

func (*NullablePagination) Set

func (v *NullablePagination) Set(val *Pagination)

func (*NullablePagination) UnmarshalJSON

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

func (*NullablePagination) Unset

func (v *NullablePagination) Unset()

type NullablePatchProxyRequest

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

func NewNullablePatchProxyRequest

func NewNullablePatchProxyRequest(val *PatchProxyRequest) *NullablePatchProxyRequest

func (NullablePatchProxyRequest) Get

func (NullablePatchProxyRequest) IsSet

func (v NullablePatchProxyRequest) IsSet() bool

func (NullablePatchProxyRequest) MarshalJSON

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

func (*NullablePatchProxyRequest) Set

func (*NullablePatchProxyRequest) UnmarshalJSON

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

func (*NullablePatchProxyRequest) Unset

func (v *NullablePatchProxyRequest) Unset()

type NullablePatchReactorRequest

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

func NewNullablePatchReactorRequest

func NewNullablePatchReactorRequest(val *PatchReactorRequest) *NullablePatchReactorRequest

func (NullablePatchReactorRequest) Get

func (NullablePatchReactorRequest) IsSet

func (NullablePatchReactorRequest) MarshalJSON

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

func (*NullablePatchReactorRequest) Set

func (*NullablePatchReactorRequest) UnmarshalJSON

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

func (*NullablePatchReactorRequest) Unset

func (v *NullablePatchReactorRequest) Unset()

type NullablePermission

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

func NewNullablePermission

func NewNullablePermission(val *Permission) *NullablePermission

func (NullablePermission) Get

func (v NullablePermission) Get() *Permission

func (NullablePermission) IsSet

func (v NullablePermission) IsSet() bool

func (NullablePermission) MarshalJSON

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

func (*NullablePermission) Set

func (v *NullablePermission) Set(val *Permission)

func (*NullablePermission) UnmarshalJSON

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

func (*NullablePermission) Unset

func (v *NullablePermission) Unset()

type NullablePrivacy

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

func NewNullablePrivacy

func NewNullablePrivacy(val *Privacy) *NullablePrivacy

func (NullablePrivacy) Get

func (v NullablePrivacy) Get() *Privacy

func (NullablePrivacy) IsSet

func (v NullablePrivacy) IsSet() bool

func (NullablePrivacy) MarshalJSON

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

func (*NullablePrivacy) Set

func (v *NullablePrivacy) Set(val *Privacy)

func (*NullablePrivacy) UnmarshalJSON

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

func (*NullablePrivacy) Unset

func (v *NullablePrivacy) Unset()

type NullableProblemDetails

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

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

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

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

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

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableProxy

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

func NewNullableProxy

func NewNullableProxy(val *Proxy) *NullableProxy

func (NullableProxy) Get

func (v NullableProxy) Get() *Proxy

func (NullableProxy) IsSet

func (v NullableProxy) IsSet() bool

func (NullableProxy) MarshalJSON

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

func (*NullableProxy) Set

func (v *NullableProxy) Set(val *Proxy)

func (*NullableProxy) UnmarshalJSON

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

func (*NullableProxy) Unset

func (v *NullableProxy) Unset()

type NullableProxyPaginatedList

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

func NewNullableProxyPaginatedList

func NewNullableProxyPaginatedList(val *ProxyPaginatedList) *NullableProxyPaginatedList

func (NullableProxyPaginatedList) Get

func (NullableProxyPaginatedList) IsSet

func (v NullableProxyPaginatedList) IsSet() bool

func (NullableProxyPaginatedList) MarshalJSON

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

func (*NullableProxyPaginatedList) Set

func (*NullableProxyPaginatedList) UnmarshalJSON

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

func (*NullableProxyPaginatedList) Unset

func (v *NullableProxyPaginatedList) Unset()

type NullableProxyTransform

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

func NewNullableProxyTransform

func NewNullableProxyTransform(val *ProxyTransform) *NullableProxyTransform

func (NullableProxyTransform) Get

func (NullableProxyTransform) IsSet

func (v NullableProxyTransform) IsSet() bool

func (NullableProxyTransform) MarshalJSON

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

func (*NullableProxyTransform) Set

func (*NullableProxyTransform) UnmarshalJSON

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

func (*NullableProxyTransform) Unset

func (v *NullableProxyTransform) Unset()

type NullableReactRequest

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

func NewNullableReactRequest

func NewNullableReactRequest(val *ReactRequest) *NullableReactRequest

func (NullableReactRequest) Get

func (NullableReactRequest) IsSet

func (v NullableReactRequest) IsSet() bool

func (NullableReactRequest) MarshalJSON

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

func (*NullableReactRequest) Set

func (v *NullableReactRequest) Set(val *ReactRequest)

func (*NullableReactRequest) UnmarshalJSON

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

func (*NullableReactRequest) Unset

func (v *NullableReactRequest) Unset()

type NullableReactResponse

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

func NewNullableReactResponse

func NewNullableReactResponse(val *ReactResponse) *NullableReactResponse

func (NullableReactResponse) Get

func (NullableReactResponse) IsSet

func (v NullableReactResponse) IsSet() bool

func (NullableReactResponse) MarshalJSON

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

func (*NullableReactResponse) Set

func (v *NullableReactResponse) Set(val *ReactResponse)

func (*NullableReactResponse) UnmarshalJSON

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

func (*NullableReactResponse) Unset

func (v *NullableReactResponse) Unset()

type NullableReactor

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

func NewNullableReactor

func NewNullableReactor(val *Reactor) *NullableReactor

func (NullableReactor) Get

func (v NullableReactor) Get() *Reactor

func (NullableReactor) IsSet

func (v NullableReactor) IsSet() bool

func (NullableReactor) MarshalJSON

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

func (*NullableReactor) Set

func (v *NullableReactor) Set(val *Reactor)

func (*NullableReactor) UnmarshalJSON

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

func (*NullableReactor) Unset

func (v *NullableReactor) Unset()

type NullableReactorFormula

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

func NewNullableReactorFormula

func NewNullableReactorFormula(val *ReactorFormula) *NullableReactorFormula

func (NullableReactorFormula) Get

func (NullableReactorFormula) IsSet

func (v NullableReactorFormula) IsSet() bool

func (NullableReactorFormula) MarshalJSON

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

func (*NullableReactorFormula) Set

func (*NullableReactorFormula) UnmarshalJSON

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

func (*NullableReactorFormula) Unset

func (v *NullableReactorFormula) Unset()

type NullableReactorFormulaConfiguration

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

func (NullableReactorFormulaConfiguration) Get

func (NullableReactorFormulaConfiguration) IsSet

func (NullableReactorFormulaConfiguration) MarshalJSON

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

func (*NullableReactorFormulaConfiguration) Set

func (*NullableReactorFormulaConfiguration) UnmarshalJSON

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

func (*NullableReactorFormulaConfiguration) Unset

type NullableReactorFormulaPaginatedList

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

func (NullableReactorFormulaPaginatedList) Get

func (NullableReactorFormulaPaginatedList) IsSet

func (NullableReactorFormulaPaginatedList) MarshalJSON

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

func (*NullableReactorFormulaPaginatedList) Set

func (*NullableReactorFormulaPaginatedList) UnmarshalJSON

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

func (*NullableReactorFormulaPaginatedList) Unset

type NullableReactorFormulaRequestParameter

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

func (NullableReactorFormulaRequestParameter) Get

func (NullableReactorFormulaRequestParameter) IsSet

func (NullableReactorFormulaRequestParameter) MarshalJSON

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

func (*NullableReactorFormulaRequestParameter) Set

func (*NullableReactorFormulaRequestParameter) UnmarshalJSON

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

func (*NullableReactorFormulaRequestParameter) Unset

type NullableReactorPaginatedList

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

func NewNullableReactorPaginatedList

func NewNullableReactorPaginatedList(val *ReactorPaginatedList) *NullableReactorPaginatedList

func (NullableReactorPaginatedList) Get

func (NullableReactorPaginatedList) IsSet

func (NullableReactorPaginatedList) MarshalJSON

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

func (*NullableReactorPaginatedList) Set

func (*NullableReactorPaginatedList) UnmarshalJSON

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

func (*NullableReactorPaginatedList) Unset

func (v *NullableReactorPaginatedList) Unset()

type NullableSearchTokensRequest

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

func NewNullableSearchTokensRequest

func NewNullableSearchTokensRequest(val *SearchTokensRequest) *NullableSearchTokensRequest

func (NullableSearchTokensRequest) Get

func (NullableSearchTokensRequest) IsSet

func (NullableSearchTokensRequest) MarshalJSON

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

func (*NullableSearchTokensRequest) Set

func (*NullableSearchTokensRequest) UnmarshalJSON

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

func (*NullableSearchTokensRequest) Unset

func (v *NullableSearchTokensRequest) 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 NullableStringStringKeyValuePair

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

func (NullableStringStringKeyValuePair) Get

func (NullableStringStringKeyValuePair) IsSet

func (NullableStringStringKeyValuePair) MarshalJSON

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

func (*NullableStringStringKeyValuePair) Set

func (*NullableStringStringKeyValuePair) UnmarshalJSON

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

func (*NullableStringStringKeyValuePair) Unset

type NullableTenant

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

func NewNullableTenant

func NewNullableTenant(val *Tenant) *NullableTenant

func (NullableTenant) Get

func (v NullableTenant) Get() *Tenant

func (NullableTenant) IsSet

func (v NullableTenant) IsSet() bool

func (NullableTenant) MarshalJSON

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

func (*NullableTenant) Set

func (v *NullableTenant) Set(val *Tenant)

func (*NullableTenant) UnmarshalJSON

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

func (*NullableTenant) Unset

func (v *NullableTenant) Unset()

type NullableTenantInvitationResponse

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

func (NullableTenantInvitationResponse) Get

func (NullableTenantInvitationResponse) IsSet

func (NullableTenantInvitationResponse) MarshalJSON

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

func (*NullableTenantInvitationResponse) Set

func (*NullableTenantInvitationResponse) UnmarshalJSON

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

func (*NullableTenantInvitationResponse) Unset

type NullableTenantInvitationResponsePaginatedList

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

func (NullableTenantInvitationResponsePaginatedList) Get

func (NullableTenantInvitationResponsePaginatedList) IsSet

func (NullableTenantInvitationResponsePaginatedList) MarshalJSON

func (*NullableTenantInvitationResponsePaginatedList) Set

func (*NullableTenantInvitationResponsePaginatedList) UnmarshalJSON

func (*NullableTenantInvitationResponsePaginatedList) Unset

type NullableTenantInvitationStatus

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

func (NullableTenantInvitationStatus) Get

func (NullableTenantInvitationStatus) IsSet

func (NullableTenantInvitationStatus) MarshalJSON

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

func (*NullableTenantInvitationStatus) Set

func (*NullableTenantInvitationStatus) UnmarshalJSON

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

func (*NullableTenantInvitationStatus) Unset

func (v *NullableTenantInvitationStatus) Unset()

type NullableTenantMemberResponse

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

func NewNullableTenantMemberResponse

func NewNullableTenantMemberResponse(val *TenantMemberResponse) *NullableTenantMemberResponse

func (NullableTenantMemberResponse) Get

func (NullableTenantMemberResponse) IsSet

func (NullableTenantMemberResponse) MarshalJSON

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

func (*NullableTenantMemberResponse) Set

func (*NullableTenantMemberResponse) UnmarshalJSON

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

func (*NullableTenantMemberResponse) Unset

func (v *NullableTenantMemberResponse) Unset()

type NullableTenantMemberResponsePaginatedList

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

func (NullableTenantMemberResponsePaginatedList) Get

func (NullableTenantMemberResponsePaginatedList) IsSet

func (NullableTenantMemberResponsePaginatedList) MarshalJSON

func (*NullableTenantMemberResponsePaginatedList) Set

func (*NullableTenantMemberResponsePaginatedList) UnmarshalJSON

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

func (*NullableTenantMemberResponsePaginatedList) Unset

type NullableTenantUsageReport

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

func NewNullableTenantUsageReport

func NewNullableTenantUsageReport(val *TenantUsageReport) *NullableTenantUsageReport

func (NullableTenantUsageReport) Get

func (NullableTenantUsageReport) IsSet

func (v NullableTenantUsageReport) IsSet() bool

func (NullableTenantUsageReport) MarshalJSON

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

func (*NullableTenantUsageReport) Set

func (*NullableTenantUsageReport) UnmarshalJSON

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

func (*NullableTenantUsageReport) Unset

func (v *NullableTenantUsageReport) Unset()

type NullableThreeDSAcsRenderingType

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

func (NullableThreeDSAcsRenderingType) Get

func (NullableThreeDSAcsRenderingType) IsSet

func (NullableThreeDSAcsRenderingType) MarshalJSON

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

func (*NullableThreeDSAcsRenderingType) Set

func (*NullableThreeDSAcsRenderingType) UnmarshalJSON

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

func (*NullableThreeDSAcsRenderingType) Unset

type NullableThreeDSAddress

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

func NewNullableThreeDSAddress

func NewNullableThreeDSAddress(val *ThreeDSAddress) *NullableThreeDSAddress

func (NullableThreeDSAddress) Get

func (NullableThreeDSAddress) IsSet

func (v NullableThreeDSAddress) IsSet() bool

func (NullableThreeDSAddress) MarshalJSON

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

func (*NullableThreeDSAddress) Set

func (*NullableThreeDSAddress) UnmarshalJSON

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

func (*NullableThreeDSAddress) Unset

func (v *NullableThreeDSAddress) Unset()

type NullableThreeDSAuthentication

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

func (NullableThreeDSAuthentication) Get

func (NullableThreeDSAuthentication) IsSet

func (NullableThreeDSAuthentication) MarshalJSON

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

func (*NullableThreeDSAuthentication) Set

func (*NullableThreeDSAuthentication) UnmarshalJSON

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

func (*NullableThreeDSAuthentication) Unset

func (v *NullableThreeDSAuthentication) Unset()

type NullableThreeDSCardholderAccountInfo

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

func (NullableThreeDSCardholderAccountInfo) Get

func (NullableThreeDSCardholderAccountInfo) IsSet

func (NullableThreeDSCardholderAccountInfo) MarshalJSON

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

func (*NullableThreeDSCardholderAccountInfo) Set

func (*NullableThreeDSCardholderAccountInfo) UnmarshalJSON

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

func (*NullableThreeDSCardholderAccountInfo) Unset

type NullableThreeDSCardholderAuthenticationInfo

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

func (NullableThreeDSCardholderAuthenticationInfo) Get

func (NullableThreeDSCardholderAuthenticationInfo) IsSet

func (NullableThreeDSCardholderAuthenticationInfo) MarshalJSON

func (*NullableThreeDSCardholderAuthenticationInfo) Set

func (*NullableThreeDSCardholderAuthenticationInfo) UnmarshalJSON

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

func (*NullableThreeDSCardholderAuthenticationInfo) Unset

type NullableThreeDSCardholderInfo

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

func (NullableThreeDSCardholderInfo) Get

func (NullableThreeDSCardholderInfo) IsSet

func (NullableThreeDSCardholderInfo) MarshalJSON

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

func (*NullableThreeDSCardholderInfo) Set

func (*NullableThreeDSCardholderInfo) UnmarshalJSON

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

func (*NullableThreeDSCardholderInfo) Unset

func (v *NullableThreeDSCardholderInfo) Unset()

type NullableThreeDSCardholderPhoneNumber

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

func (NullableThreeDSCardholderPhoneNumber) Get

func (NullableThreeDSCardholderPhoneNumber) IsSet

func (NullableThreeDSCardholderPhoneNumber) MarshalJSON

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

func (*NullableThreeDSCardholderPhoneNumber) Set

func (*NullableThreeDSCardholderPhoneNumber) UnmarshalJSON

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

func (*NullableThreeDSCardholderPhoneNumber) Unset

type NullableThreeDSDeviceInfo

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

func NewNullableThreeDSDeviceInfo

func NewNullableThreeDSDeviceInfo(val *ThreeDSDeviceInfo) *NullableThreeDSDeviceInfo

func (NullableThreeDSDeviceInfo) Get

func (NullableThreeDSDeviceInfo) IsSet

func (v NullableThreeDSDeviceInfo) IsSet() bool

func (NullableThreeDSDeviceInfo) MarshalJSON

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

func (*NullableThreeDSDeviceInfo) Set

func (*NullableThreeDSDeviceInfo) UnmarshalJSON

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

func (*NullableThreeDSDeviceInfo) Unset

func (v *NullableThreeDSDeviceInfo) Unset()

type NullableThreeDSMerchantInfo

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

func NewNullableThreeDSMerchantInfo

func NewNullableThreeDSMerchantInfo(val *ThreeDSMerchantInfo) *NullableThreeDSMerchantInfo

func (NullableThreeDSMerchantInfo) Get

func (NullableThreeDSMerchantInfo) IsSet

func (NullableThreeDSMerchantInfo) MarshalJSON

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

func (*NullableThreeDSMerchantInfo) Set

func (*NullableThreeDSMerchantInfo) UnmarshalJSON

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

func (*NullableThreeDSMerchantInfo) Unset

func (v *NullableThreeDSMerchantInfo) Unset()

type NullableThreeDSMerchantRiskInfo

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

func (NullableThreeDSMerchantRiskInfo) Get

func (NullableThreeDSMerchantRiskInfo) IsSet

func (NullableThreeDSMerchantRiskInfo) MarshalJSON

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

func (*NullableThreeDSMerchantRiskInfo) Set

func (*NullableThreeDSMerchantRiskInfo) UnmarshalJSON

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

func (*NullableThreeDSMerchantRiskInfo) Unset

type NullableThreeDSMessageExtension

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

func (NullableThreeDSMessageExtension) Get

func (NullableThreeDSMessageExtension) IsSet

func (NullableThreeDSMessageExtension) MarshalJSON

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

func (*NullableThreeDSMessageExtension) Set

func (*NullableThreeDSMessageExtension) UnmarshalJSON

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

func (*NullableThreeDSMessageExtension) Unset

type NullableThreeDSMethod

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

func NewNullableThreeDSMethod

func NewNullableThreeDSMethod(val *ThreeDSMethod) *NullableThreeDSMethod

func (NullableThreeDSMethod) Get

func (NullableThreeDSMethod) IsSet

func (v NullableThreeDSMethod) IsSet() bool

func (NullableThreeDSMethod) MarshalJSON

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

func (*NullableThreeDSMethod) Set

func (v *NullableThreeDSMethod) Set(val *ThreeDSMethod)

func (*NullableThreeDSMethod) UnmarshalJSON

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

func (*NullableThreeDSMethod) Unset

func (v *NullableThreeDSMethod) Unset()

type NullableThreeDSMobileSdkRenderOptions

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

func (NullableThreeDSMobileSdkRenderOptions) Get

func (NullableThreeDSMobileSdkRenderOptions) IsSet

func (NullableThreeDSMobileSdkRenderOptions) MarshalJSON

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

func (*NullableThreeDSMobileSdkRenderOptions) Set

func (*NullableThreeDSMobileSdkRenderOptions) UnmarshalJSON

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

func (*NullableThreeDSMobileSdkRenderOptions) Unset

type NullableThreeDSPriorAuthenticationInfo

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

func (NullableThreeDSPriorAuthenticationInfo) Get

func (NullableThreeDSPriorAuthenticationInfo) IsSet

func (NullableThreeDSPriorAuthenticationInfo) MarshalJSON

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

func (*NullableThreeDSPriorAuthenticationInfo) Set

func (*NullableThreeDSPriorAuthenticationInfo) UnmarshalJSON

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

func (*NullableThreeDSPriorAuthenticationInfo) Unset

type NullableThreeDSPurchaseInfo

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

func NewNullableThreeDSPurchaseInfo

func NewNullableThreeDSPurchaseInfo(val *ThreeDSPurchaseInfo) *NullableThreeDSPurchaseInfo

func (NullableThreeDSPurchaseInfo) Get

func (NullableThreeDSPurchaseInfo) IsSet

func (NullableThreeDSPurchaseInfo) MarshalJSON

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

func (*NullableThreeDSPurchaseInfo) Set

func (*NullableThreeDSPurchaseInfo) UnmarshalJSON

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

func (*NullableThreeDSPurchaseInfo) Unset

func (v *NullableThreeDSPurchaseInfo) Unset()

type NullableThreeDSRequestorInfo

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

func NewNullableThreeDSRequestorInfo

func NewNullableThreeDSRequestorInfo(val *ThreeDSRequestorInfo) *NullableThreeDSRequestorInfo

func (NullableThreeDSRequestorInfo) Get

func (NullableThreeDSRequestorInfo) IsSet

func (NullableThreeDSRequestorInfo) MarshalJSON

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

func (*NullableThreeDSRequestorInfo) Set

func (*NullableThreeDSRequestorInfo) UnmarshalJSON

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

func (*NullableThreeDSRequestorInfo) Unset

func (v *NullableThreeDSRequestorInfo) Unset()

type NullableThreeDSSession

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

func NewNullableThreeDSSession

func NewNullableThreeDSSession(val *ThreeDSSession) *NullableThreeDSSession

func (NullableThreeDSSession) Get

func (NullableThreeDSSession) IsSet

func (v NullableThreeDSSession) IsSet() bool

func (NullableThreeDSSession) MarshalJSON

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

func (*NullableThreeDSSession) Set

func (*NullableThreeDSSession) UnmarshalJSON

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

func (*NullableThreeDSSession) Unset

func (v *NullableThreeDSSession) Unset()

type NullableThreeDSVersion

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

func NewNullableThreeDSVersion

func NewNullableThreeDSVersion(val *ThreeDSVersion) *NullableThreeDSVersion

func (NullableThreeDSVersion) Get

func (NullableThreeDSVersion) IsSet

func (v NullableThreeDSVersion) IsSet() bool

func (NullableThreeDSVersion) MarshalJSON

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

func (*NullableThreeDSVersion) Set

func (*NullableThreeDSVersion) UnmarshalJSON

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

func (*NullableThreeDSVersion) Unset

func (v *NullableThreeDSVersion) 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 NullableToken

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

func NewNullableToken

func NewNullableToken(val *Token) *NullableToken

func (NullableToken) Get

func (v NullableToken) Get() *Token

func (NullableToken) IsSet

func (v NullableToken) IsSet() bool

func (NullableToken) MarshalJSON

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

func (*NullableToken) Set

func (v *NullableToken) Set(val *Token)

func (*NullableToken) UnmarshalJSON

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

func (*NullableToken) Unset

func (v *NullableToken) Unset()

type NullableTokenEnrichments

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

func NewNullableTokenEnrichments

func NewNullableTokenEnrichments(val *TokenEnrichments) *NullableTokenEnrichments

func (NullableTokenEnrichments) Get

func (NullableTokenEnrichments) IsSet

func (v NullableTokenEnrichments) IsSet() bool

func (NullableTokenEnrichments) MarshalJSON

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

func (*NullableTokenEnrichments) Set

func (*NullableTokenEnrichments) UnmarshalJSON

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

func (*NullableTokenEnrichments) Unset

func (v *NullableTokenEnrichments) Unset()

type NullableTokenMetrics

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

func NewNullableTokenMetrics

func NewNullableTokenMetrics(val *TokenMetrics) *NullableTokenMetrics

func (NullableTokenMetrics) Get

func (NullableTokenMetrics) IsSet

func (v NullableTokenMetrics) IsSet() bool

func (NullableTokenMetrics) MarshalJSON

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

func (*NullableTokenMetrics) Set

func (v *NullableTokenMetrics) Set(val *TokenMetrics)

func (*NullableTokenMetrics) UnmarshalJSON

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

func (*NullableTokenMetrics) Unset

func (v *NullableTokenMetrics) Unset()

type NullableTokenPaginatedList

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

func NewNullableTokenPaginatedList

func NewNullableTokenPaginatedList(val *TokenPaginatedList) *NullableTokenPaginatedList

func (NullableTokenPaginatedList) Get

func (NullableTokenPaginatedList) IsSet

func (v NullableTokenPaginatedList) IsSet() bool

func (NullableTokenPaginatedList) MarshalJSON

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

func (*NullableTokenPaginatedList) Set

func (*NullableTokenPaginatedList) UnmarshalJSON

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

func (*NullableTokenPaginatedList) Unset

func (v *NullableTokenPaginatedList) Unset()

type NullableTokenReport

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

func NewNullableTokenReport

func NewNullableTokenReport(val *TokenReport) *NullableTokenReport

func (NullableTokenReport) Get

func (NullableTokenReport) IsSet

func (v NullableTokenReport) IsSet() bool

func (NullableTokenReport) MarshalJSON

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

func (*NullableTokenReport) Set

func (v *NullableTokenReport) Set(val *TokenReport)

func (*NullableTokenReport) UnmarshalJSON

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

func (*NullableTokenReport) Unset

func (v *NullableTokenReport) Unset()

type NullableUpdateApplicationRequest

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

func (NullableUpdateApplicationRequest) Get

func (NullableUpdateApplicationRequest) IsSet

func (NullableUpdateApplicationRequest) MarshalJSON

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

func (*NullableUpdateApplicationRequest) Set

func (*NullableUpdateApplicationRequest) UnmarshalJSON

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

func (*NullableUpdateApplicationRequest) Unset

type NullableUpdatePrivacy

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

func NewNullableUpdatePrivacy

func NewNullableUpdatePrivacy(val *UpdatePrivacy) *NullableUpdatePrivacy

func (NullableUpdatePrivacy) Get

func (NullableUpdatePrivacy) IsSet

func (v NullableUpdatePrivacy) IsSet() bool

func (NullableUpdatePrivacy) MarshalJSON

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

func (*NullableUpdatePrivacy) Set

func (v *NullableUpdatePrivacy) Set(val *UpdatePrivacy)

func (*NullableUpdatePrivacy) UnmarshalJSON

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

func (*NullableUpdatePrivacy) Unset

func (v *NullableUpdatePrivacy) Unset()

type NullableUpdateProxyRequest

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

func NewNullableUpdateProxyRequest

func NewNullableUpdateProxyRequest(val *UpdateProxyRequest) *NullableUpdateProxyRequest

func (NullableUpdateProxyRequest) Get

func (NullableUpdateProxyRequest) IsSet

func (v NullableUpdateProxyRequest) IsSet() bool

func (NullableUpdateProxyRequest) MarshalJSON

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

func (*NullableUpdateProxyRequest) Set

func (*NullableUpdateProxyRequest) UnmarshalJSON

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

func (*NullableUpdateProxyRequest) Unset

func (v *NullableUpdateProxyRequest) Unset()

type NullableUpdateReactorFormulaRequest

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

func (NullableUpdateReactorFormulaRequest) Get

func (NullableUpdateReactorFormulaRequest) IsSet

func (NullableUpdateReactorFormulaRequest) MarshalJSON

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

func (*NullableUpdateReactorFormulaRequest) Set

func (*NullableUpdateReactorFormulaRequest) UnmarshalJSON

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

func (*NullableUpdateReactorFormulaRequest) Unset

type NullableUpdateReactorRequest

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

func NewNullableUpdateReactorRequest

func NewNullableUpdateReactorRequest(val *UpdateReactorRequest) *NullableUpdateReactorRequest

func (NullableUpdateReactorRequest) Get

func (NullableUpdateReactorRequest) IsSet

func (NullableUpdateReactorRequest) MarshalJSON

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

func (*NullableUpdateReactorRequest) Set

func (*NullableUpdateReactorRequest) UnmarshalJSON

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

func (*NullableUpdateReactorRequest) Unset

func (v *NullableUpdateReactorRequest) Unset()

type NullableUpdateTenantRequest

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

func NewNullableUpdateTenantRequest

func NewNullableUpdateTenantRequest(val *UpdateTenantRequest) *NullableUpdateTenantRequest

func (NullableUpdateTenantRequest) Get

func (NullableUpdateTenantRequest) IsSet

func (NullableUpdateTenantRequest) MarshalJSON

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

func (*NullableUpdateTenantRequest) Set

func (*NullableUpdateTenantRequest) UnmarshalJSON

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

func (*NullableUpdateTenantRequest) Unset

func (v *NullableUpdateTenantRequest) Unset()

type NullableUpdateTokenRequest

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

func NewNullableUpdateTokenRequest

func NewNullableUpdateTokenRequest(val *UpdateTokenRequest) *NullableUpdateTokenRequest

func (NullableUpdateTokenRequest) Get

func (NullableUpdateTokenRequest) IsSet

func (v NullableUpdateTokenRequest) IsSet() bool

func (NullableUpdateTokenRequest) MarshalJSON

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

func (*NullableUpdateTokenRequest) Set

func (*NullableUpdateTokenRequest) UnmarshalJSON

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

func (*NullableUpdateTokenRequest) Unset

func (v *NullableUpdateTokenRequest) Unset()

type NullableUser

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

func NewNullableUser

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get

func (v NullableUser) Get() *User

func (NullableUser) IsSet

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON

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

func (*NullableUser) Set

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON

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

func (*NullableUser) Unset

func (v *NullableUser) Unset()

type NullableValidationProblemDetails

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

func (NullableValidationProblemDetails) Get

func (NullableValidationProblemDetails) IsSet

func (NullableValidationProblemDetails) MarshalJSON

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

func (*NullableValidationProblemDetails) Set

func (*NullableValidationProblemDetails) UnmarshalJSON

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

func (*NullableValidationProblemDetails) Unset

type Pagination

type Pagination struct {
	TotalItems NullableInt32  `json:"total_items,omitempty"`
	PageNumber NullableInt32  `json:"page_number,omitempty"`
	PageSize   NullableInt32  `json:"page_size,omitempty"`
	TotalPages NullableInt32  `json:"total_pages,omitempty"`
	After      NullableString `json:"after,omitempty"`
}

Pagination struct for Pagination

func NewPagination

func NewPagination() *Pagination

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

func NewPaginationWithDefaults

func NewPaginationWithDefaults() *Pagination

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

func (*Pagination) GetAfter

func (o *Pagination) GetAfter() string

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

func (*Pagination) GetAfterOk

func (o *Pagination) GetAfterOk() (*string, bool)

GetAfterOk returns a tuple with the After 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 (*Pagination) GetPageNumber

func (o *Pagination) GetPageNumber() int32

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

func (*Pagination) GetPageNumberOk

func (o *Pagination) GetPageNumberOk() (*int32, bool)

GetPageNumberOk returns a tuple with the PageNumber 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 (*Pagination) GetPageSize

func (o *Pagination) GetPageSize() int32

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

func (*Pagination) GetPageSizeOk

func (o *Pagination) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize 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 (*Pagination) GetTotalItems

func (o *Pagination) GetTotalItems() int32

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

func (*Pagination) GetTotalItemsOk

func (o *Pagination) GetTotalItemsOk() (*int32, bool)

GetTotalItemsOk returns a tuple with the TotalItems 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 (*Pagination) GetTotalPages

func (o *Pagination) GetTotalPages() int32

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

func (*Pagination) GetTotalPagesOk

func (o *Pagination) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages 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 (*Pagination) HasAfter

func (o *Pagination) HasAfter() bool

HasAfter returns a boolean if a field is not nil.

func (*Pagination) HasPageNumber

func (o *Pagination) HasPageNumber() bool

HasPageNumber returns a boolean if a field is not nil.

func (*Pagination) HasPageSize

func (o *Pagination) HasPageSize() bool

HasPageSize returns a boolean if a field is not nil.

func (*Pagination) HasTotalItems

func (o *Pagination) HasTotalItems() bool

HasTotalItems returns a boolean if a field is not nil.

func (*Pagination) HasTotalPages

func (o *Pagination) HasTotalPages() bool

HasTotalPages returns a boolean if a field is not nil.

func (Pagination) MarshalJSON

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

func (*Pagination) SetAfter

func (o *Pagination) SetAfter(v string)

SetAfter gets a reference to the given NullableString and assigns it to the After field.

func (*Pagination) SetAfterNil

func (o *Pagination) SetAfterNil()

SetAfterNil sets the value for After to be an explicit nil

func (*Pagination) SetPageNumber

func (o *Pagination) SetPageNumber(v int32)

SetPageNumber gets a reference to the given NullableInt32 and assigns it to the PageNumber field.

func (*Pagination) SetPageNumberNil

func (o *Pagination) SetPageNumberNil()

SetPageNumberNil sets the value for PageNumber to be an explicit nil

func (*Pagination) SetPageSize

func (o *Pagination) SetPageSize(v int32)

SetPageSize gets a reference to the given NullableInt32 and assigns it to the PageSize field.

func (*Pagination) SetPageSizeNil

func (o *Pagination) SetPageSizeNil()

SetPageSizeNil sets the value for PageSize to be an explicit nil

func (*Pagination) SetTotalItems

func (o *Pagination) SetTotalItems(v int32)

SetTotalItems gets a reference to the given NullableInt32 and assigns it to the TotalItems field.

func (*Pagination) SetTotalItemsNil

func (o *Pagination) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*Pagination) SetTotalPages

func (o *Pagination) SetTotalPages(v int32)

SetTotalPages gets a reference to the given NullableInt32 and assigns it to the TotalPages field.

func (*Pagination) SetTotalPagesNil

func (o *Pagination) SetTotalPagesNil()

SetTotalPagesNil sets the value for TotalPages to be an explicit nil

func (Pagination) ToMap

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

func (*Pagination) UnsetAfter

func (o *Pagination) UnsetAfter()

UnsetAfter ensures that no value is present for After, not even an explicit nil

func (*Pagination) UnsetPageNumber

func (o *Pagination) UnsetPageNumber()

UnsetPageNumber ensures that no value is present for PageNumber, not even an explicit nil

func (*Pagination) UnsetPageSize

func (o *Pagination) UnsetPageSize()

UnsetPageSize ensures that no value is present for PageSize, not even an explicit nil

func (*Pagination) UnsetTotalItems

func (o *Pagination) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

func (*Pagination) UnsetTotalPages

func (o *Pagination) UnsetTotalPages()

UnsetTotalPages ensures that no value is present for TotalPages, not even an explicit nil

type PatchProxyRequest

type PatchProxyRequest struct {
	Name              NullableString    `json:"name,omitempty"`
	DestinationUrl    NullableString    `json:"destination_url,omitempty"`
	RequestTransform  *ProxyTransform   `json:"request_transform,omitempty"`
	ResponseTransform *ProxyTransform   `json:"response_transform,omitempty"`
	Application       *Application      `json:"application,omitempty"`
	Configuration     map[string]string `json:"configuration,omitempty"`
	RequireAuth       NullableBool      `json:"require_auth,omitempty"`
}

PatchProxyRequest struct for PatchProxyRequest

func NewPatchProxyRequest

func NewPatchProxyRequest() *PatchProxyRequest

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

func NewPatchProxyRequestWithDefaults

func NewPatchProxyRequestWithDefaults() *PatchProxyRequest

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

func (*PatchProxyRequest) GetApplication

func (o *PatchProxyRequest) GetApplication() Application

GetApplication returns the Application field value if set, zero value otherwise.

func (*PatchProxyRequest) GetApplicationOk

func (o *PatchProxyRequest) GetApplicationOk() (*Application, bool)

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

func (*PatchProxyRequest) GetConfiguration

func (o *PatchProxyRequest) GetConfiguration() map[string]string

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

func (*PatchProxyRequest) GetConfigurationOk

func (o *PatchProxyRequest) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*PatchProxyRequest) GetDestinationUrl

func (o *PatchProxyRequest) GetDestinationUrl() string

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

func (*PatchProxyRequest) GetDestinationUrlOk

func (o *PatchProxyRequest) GetDestinationUrlOk() (*string, bool)

GetDestinationUrlOk returns a tuple with the DestinationUrl 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 (*PatchProxyRequest) GetName

func (o *PatchProxyRequest) GetName() string

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

func (*PatchProxyRequest) GetNameOk

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

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

func (*PatchProxyRequest) GetRequestTransform

func (o *PatchProxyRequest) GetRequestTransform() ProxyTransform

GetRequestTransform returns the RequestTransform field value if set, zero value otherwise.

func (*PatchProxyRequest) GetRequestTransformOk

func (o *PatchProxyRequest) GetRequestTransformOk() (*ProxyTransform, bool)

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

func (*PatchProxyRequest) GetRequireAuth

func (o *PatchProxyRequest) GetRequireAuth() bool

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

func (*PatchProxyRequest) GetRequireAuthOk

func (o *PatchProxyRequest) GetRequireAuthOk() (*bool, bool)

GetRequireAuthOk returns a tuple with the RequireAuth 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 (*PatchProxyRequest) GetResponseTransform

func (o *PatchProxyRequest) GetResponseTransform() ProxyTransform

GetResponseTransform returns the ResponseTransform field value if set, zero value otherwise.

func (*PatchProxyRequest) GetResponseTransformOk

func (o *PatchProxyRequest) GetResponseTransformOk() (*ProxyTransform, bool)

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

func (*PatchProxyRequest) HasApplication

func (o *PatchProxyRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasConfiguration

func (o *PatchProxyRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasDestinationUrl

func (o *PatchProxyRequest) HasDestinationUrl() bool

HasDestinationUrl returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasName

func (o *PatchProxyRequest) HasName() bool

HasName returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasRequestTransform

func (o *PatchProxyRequest) HasRequestTransform() bool

HasRequestTransform returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasRequireAuth

func (o *PatchProxyRequest) HasRequireAuth() bool

HasRequireAuth returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasResponseTransform

func (o *PatchProxyRequest) HasResponseTransform() bool

HasResponseTransform returns a boolean if a field is not nil.

func (PatchProxyRequest) MarshalJSON

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

func (*PatchProxyRequest) SetApplication

func (o *PatchProxyRequest) SetApplication(v Application)

SetApplication gets a reference to the given Application and assigns it to the Application field.

func (*PatchProxyRequest) SetConfiguration

func (o *PatchProxyRequest) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*PatchProxyRequest) SetDestinationUrl

func (o *PatchProxyRequest) SetDestinationUrl(v string)

SetDestinationUrl gets a reference to the given NullableString and assigns it to the DestinationUrl field.

func (*PatchProxyRequest) SetDestinationUrlNil

func (o *PatchProxyRequest) SetDestinationUrlNil()

SetDestinationUrlNil sets the value for DestinationUrl to be an explicit nil

func (*PatchProxyRequest) SetName

func (o *PatchProxyRequest) SetName(v string)

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

func (*PatchProxyRequest) SetNameNil

func (o *PatchProxyRequest) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*PatchProxyRequest) SetRequestTransform

func (o *PatchProxyRequest) SetRequestTransform(v ProxyTransform)

SetRequestTransform gets a reference to the given ProxyTransform and assigns it to the RequestTransform field.

func (*PatchProxyRequest) SetRequireAuth

func (o *PatchProxyRequest) SetRequireAuth(v bool)

SetRequireAuth gets a reference to the given NullableBool and assigns it to the RequireAuth field.

func (*PatchProxyRequest) SetRequireAuthNil

func (o *PatchProxyRequest) SetRequireAuthNil()

SetRequireAuthNil sets the value for RequireAuth to be an explicit nil

func (*PatchProxyRequest) SetResponseTransform

func (o *PatchProxyRequest) SetResponseTransform(v ProxyTransform)

SetResponseTransform gets a reference to the given ProxyTransform and assigns it to the ResponseTransform field.

func (PatchProxyRequest) ToMap

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

func (*PatchProxyRequest) UnsetDestinationUrl

func (o *PatchProxyRequest) UnsetDestinationUrl()

UnsetDestinationUrl ensures that no value is present for DestinationUrl, not even an explicit nil

func (*PatchProxyRequest) UnsetName

func (o *PatchProxyRequest) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*PatchProxyRequest) UnsetRequireAuth

func (o *PatchProxyRequest) UnsetRequireAuth()

UnsetRequireAuth ensures that no value is present for RequireAuth, not even an explicit nil

type PatchReactorRequest

type PatchReactorRequest struct {
	Name          NullableString    `json:"name,omitempty"`
	Application   *Application      `json:"application,omitempty"`
	Code          NullableString    `json:"code,omitempty"`
	Configuration map[string]string `json:"configuration,omitempty"`
}

PatchReactorRequest struct for PatchReactorRequest

func NewPatchReactorRequest

func NewPatchReactorRequest() *PatchReactorRequest

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

func NewPatchReactorRequestWithDefaults

func NewPatchReactorRequestWithDefaults() *PatchReactorRequest

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

func (*PatchReactorRequest) GetApplication

func (o *PatchReactorRequest) GetApplication() Application

GetApplication returns the Application field value if set, zero value otherwise.

func (*PatchReactorRequest) GetApplicationOk

func (o *PatchReactorRequest) GetApplicationOk() (*Application, bool)

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

func (*PatchReactorRequest) GetCode

func (o *PatchReactorRequest) GetCode() string

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

func (*PatchReactorRequest) GetCodeOk

func (o *PatchReactorRequest) GetCodeOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PatchReactorRequest) GetConfiguration

func (o *PatchReactorRequest) GetConfiguration() map[string]string

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

func (*PatchReactorRequest) GetConfigurationOk

func (o *PatchReactorRequest) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*PatchReactorRequest) GetName

func (o *PatchReactorRequest) GetName() string

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

func (*PatchReactorRequest) GetNameOk

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

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

func (*PatchReactorRequest) HasApplication

func (o *PatchReactorRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*PatchReactorRequest) HasCode

func (o *PatchReactorRequest) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (*PatchReactorRequest) HasConfiguration

func (o *PatchReactorRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*PatchReactorRequest) HasName

func (o *PatchReactorRequest) HasName() bool

HasName returns a boolean if a field is not nil.

func (PatchReactorRequest) MarshalJSON

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

func (*PatchReactorRequest) SetApplication

func (o *PatchReactorRequest) SetApplication(v Application)

SetApplication gets a reference to the given Application and assigns it to the Application field.

func (*PatchReactorRequest) SetCode

func (o *PatchReactorRequest) SetCode(v string)

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

func (*PatchReactorRequest) SetCodeNil

func (o *PatchReactorRequest) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*PatchReactorRequest) SetConfiguration

func (o *PatchReactorRequest) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*PatchReactorRequest) SetName

func (o *PatchReactorRequest) SetName(v string)

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

func (*PatchReactorRequest) SetNameNil

func (o *PatchReactorRequest) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (PatchReactorRequest) ToMap

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

func (*PatchReactorRequest) UnsetCode

func (o *PatchReactorRequest) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

func (*PatchReactorRequest) UnsetName

func (o *PatchReactorRequest) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type Permission

type Permission struct {
	Type             NullableString `json:"type,omitempty"`
	Description      NullableString `json:"description,omitempty"`
	ApplicationTypes []string       `json:"application_types,omitempty"`
}

Permission struct for Permission

func NewPermission

func NewPermission() *Permission

NewPermission instantiates a new Permission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPermissionWithDefaults

func NewPermissionWithDefaults() *Permission

NewPermissionWithDefaults instantiates a new Permission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Permission) GetApplicationTypes

func (o *Permission) GetApplicationTypes() []string

GetApplicationTypes returns the ApplicationTypes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Permission) GetApplicationTypesOk

func (o *Permission) GetApplicationTypesOk() ([]string, bool)

GetApplicationTypesOk returns a tuple with the ApplicationTypes 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 (*Permission) GetDescription

func (o *Permission) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Permission) GetDescriptionOk

func (o *Permission) 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 (*Permission) GetType

func (o *Permission) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Permission) GetTypeOk

func (o *Permission) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Permission) HasApplicationTypes

func (o *Permission) HasApplicationTypes() bool

HasApplicationTypes returns a boolean if a field is not nil.

func (*Permission) HasDescription

func (o *Permission) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*Permission) HasType

func (o *Permission) HasType() bool

HasType returns a boolean if a field is not nil.

func (Permission) MarshalJSON

func (o Permission) MarshalJSON() ([]byte, error)

func (*Permission) SetApplicationTypes

func (o *Permission) SetApplicationTypes(v []string)

SetApplicationTypes gets a reference to the given []string and assigns it to the ApplicationTypes field.

func (*Permission) SetDescription

func (o *Permission) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*Permission) SetDescriptionNil

func (o *Permission) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Permission) SetType

func (o *Permission) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*Permission) SetTypeNil

func (o *Permission) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (Permission) ToMap

func (o Permission) ToMap() (map[string]interface{}, error)

func (*Permission) UnsetDescription

func (o *Permission) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Permission) UnsetType

func (o *Permission) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type PermissionsApiGetRequest

type PermissionsApiGetRequest struct {
	ApiService *PermissionsApiService
	// contains filtered or unexported fields
}

func (PermissionsApiGetRequest) ApplicationType

func (r PermissionsApiGetRequest) ApplicationType(applicationType string) PermissionsApiGetRequest

func (PermissionsApiGetRequest) Execute

type PermissionsApiService

type PermissionsApiService service

PermissionsApiService PermissionsApi service

func (*PermissionsApiService) Get

Get Method for Get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionsApiGetRequest

func (*PermissionsApiService) GetExecute

Execute executes the request

@return []Permission

type Privacy

type Privacy struct {
	Classification    NullableString `json:"classification,omitempty"`
	ImpactLevel       NullableString `json:"impact_level,omitempty"`
	RestrictionPolicy NullableString `json:"restriction_policy,omitempty"`
}

Privacy struct for Privacy

func NewPrivacy

func NewPrivacy() *Privacy

NewPrivacy instantiates a new Privacy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPrivacyWithDefaults

func NewPrivacyWithDefaults() *Privacy

NewPrivacyWithDefaults instantiates a new Privacy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Privacy) GetClassification

func (o *Privacy) GetClassification() string

GetClassification returns the Classification field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Privacy) GetClassificationOk

func (o *Privacy) GetClassificationOk() (*string, bool)

GetClassificationOk returns a tuple with the Classification 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 (*Privacy) GetImpactLevel

func (o *Privacy) GetImpactLevel() string

GetImpactLevel returns the ImpactLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Privacy) GetImpactLevelOk

func (o *Privacy) GetImpactLevelOk() (*string, bool)

GetImpactLevelOk returns a tuple with the ImpactLevel 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 (*Privacy) GetRestrictionPolicy

func (o *Privacy) GetRestrictionPolicy() string

GetRestrictionPolicy returns the RestrictionPolicy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Privacy) GetRestrictionPolicyOk

func (o *Privacy) GetRestrictionPolicyOk() (*string, bool)

GetRestrictionPolicyOk returns a tuple with the RestrictionPolicy 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 (*Privacy) HasClassification

func (o *Privacy) HasClassification() bool

HasClassification returns a boolean if a field is not nil.

func (*Privacy) HasImpactLevel

func (o *Privacy) HasImpactLevel() bool

HasImpactLevel returns a boolean if a field is not nil.

func (*Privacy) HasRestrictionPolicy

func (o *Privacy) HasRestrictionPolicy() bool

HasRestrictionPolicy returns a boolean if a field is not nil.

func (Privacy) MarshalJSON

func (o Privacy) MarshalJSON() ([]byte, error)

func (*Privacy) SetClassification

func (o *Privacy) SetClassification(v string)

SetClassification gets a reference to the given NullableString and assigns it to the Classification field.

func (*Privacy) SetClassificationNil

func (o *Privacy) SetClassificationNil()

SetClassificationNil sets the value for Classification to be an explicit nil

func (*Privacy) SetImpactLevel

func (o *Privacy) SetImpactLevel(v string)

SetImpactLevel gets a reference to the given NullableString and assigns it to the ImpactLevel field.

func (*Privacy) SetImpactLevelNil

func (o *Privacy) SetImpactLevelNil()

SetImpactLevelNil sets the value for ImpactLevel to be an explicit nil

func (*Privacy) SetRestrictionPolicy

func (o *Privacy) SetRestrictionPolicy(v string)

SetRestrictionPolicy gets a reference to the given NullableString and assigns it to the RestrictionPolicy field.

func (*Privacy) SetRestrictionPolicyNil

func (o *Privacy) SetRestrictionPolicyNil()

SetRestrictionPolicyNil sets the value for RestrictionPolicy to be an explicit nil

func (Privacy) ToMap

func (o Privacy) ToMap() (map[string]interface{}, error)

func (*Privacy) UnsetClassification

func (o *Privacy) UnsetClassification()

UnsetClassification ensures that no value is present for Classification, not even an explicit nil

func (*Privacy) UnsetImpactLevel

func (o *Privacy) UnsetImpactLevel()

UnsetImpactLevel ensures that no value is present for ImpactLevel, not even an explicit nil

func (*Privacy) UnsetRestrictionPolicy

func (o *Privacy) UnsetRestrictionPolicy()

UnsetRestrictionPolicy ensures that no value is present for RestrictionPolicy, not even an explicit nil

type ProblemDetails

type ProblemDetails struct {
	Type     NullableString `json:"type,omitempty"`
	Title    NullableString `json:"title,omitempty"`
	Status   NullableInt32  `json:"status,omitempty"`
	Detail   NullableString `json:"detail,omitempty"`
	Instance NullableString `json:"instance,omitempty"`
}

ProblemDetails struct for ProblemDetails

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) 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 (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance 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 (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, 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 (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetTitleOk

func (o *ProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title 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 (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetTypeOk

func (o *ProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field is not nil.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field is not nil.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field is not nil.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field is not nil.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field is not nil.

func (ProblemDetails) MarshalJSON

func (o ProblemDetails) MarshalJSON() ([]byte, error)

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*ProblemDetails) SetDetailNil

func (o *ProblemDetails) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given NullableString and assigns it to the Instance field.

func (*ProblemDetails) SetInstanceNil

func (o *ProblemDetails) SetInstanceNil()

SetInstanceNil sets the value for Instance to be an explicit nil

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given NullableInt32 and assigns it to the Status field.

func (*ProblemDetails) SetStatusNil

func (o *ProblemDetails) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*ProblemDetails) SetTitleNil

func (o *ProblemDetails) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*ProblemDetails) SetTypeNil

func (o *ProblemDetails) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ProblemDetails) ToMap

func (o ProblemDetails) ToMap() (map[string]interface{}, error)

func (*ProblemDetails) UnsetDetail

func (o *ProblemDetails) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

func (*ProblemDetails) UnsetInstance

func (o *ProblemDetails) UnsetInstance()

UnsetInstance ensures that no value is present for Instance, not even an explicit nil

func (*ProblemDetails) UnsetStatus

func (o *ProblemDetails) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*ProblemDetails) UnsetTitle

func (o *ProblemDetails) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*ProblemDetails) UnsetType

func (o *ProblemDetails) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type ProxiesApiCreateRequest

type ProxiesApiCreateRequest struct {
	ApiService *ProxiesApiService
	// contains filtered or unexported fields
}

func (ProxiesApiCreateRequest) CreateProxyRequest

func (r ProxiesApiCreateRequest) CreateProxyRequest(createProxyRequest CreateProxyRequest) ProxiesApiCreateRequest

func (ProxiesApiCreateRequest) Execute

func (r ProxiesApiCreateRequest) Execute() (*Proxy, *http.Response, error)

type ProxiesApiDeleteRequest

type ProxiesApiDeleteRequest struct {
	ApiService *ProxiesApiService
	// contains filtered or unexported fields
}

func (ProxiesApiDeleteRequest) Execute

func (r ProxiesApiDeleteRequest) Execute() (*http.Response, error)

type ProxiesApiGetByIdRequest

type ProxiesApiGetByIdRequest struct {
	ApiService *ProxiesApiService
	// contains filtered or unexported fields
}

func (ProxiesApiGetByIdRequest) Execute

func (r ProxiesApiGetByIdRequest) Execute() (*Proxy, *http.Response, error)

type ProxiesApiGetRequest

type ProxiesApiGetRequest struct {
	ApiService *ProxiesApiService
	// contains filtered or unexported fields
}

func (ProxiesApiGetRequest) Execute

func (ProxiesApiGetRequest) Id

func (ProxiesApiGetRequest) Name

func (ProxiesApiGetRequest) Page

func (ProxiesApiGetRequest) Size

func (ProxiesApiGetRequest) Start

type ProxiesApiPatchRequest

type ProxiesApiPatchRequest struct {
	ApiService *ProxiesApiService
	// contains filtered or unexported fields
}

func (ProxiesApiPatchRequest) Execute

func (r ProxiesApiPatchRequest) Execute() (*http.Response, error)

func (ProxiesApiPatchRequest) PatchProxyRequest

func (r ProxiesApiPatchRequest) PatchProxyRequest(patchProxyRequest PatchProxyRequest) ProxiesApiPatchRequest

type ProxiesApiService

type ProxiesApiService service

ProxiesApiService ProxiesApi service

func (*ProxiesApiService) Create

Create Method for Create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProxiesApiCreateRequest

func (*ProxiesApiService) CreateExecute

Execute executes the request

@return Proxy

func (*ProxiesApiService) Delete

Delete Method for Delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ProxiesApiDeleteRequest

func (*ProxiesApiService) DeleteExecute

Execute executes the request

func (*ProxiesApiService) Get

Get Method for Get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProxiesApiGetRequest

func (*ProxiesApiService) GetById

GetById Method for GetById

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ProxiesApiGetByIdRequest

func (*ProxiesApiService) GetByIdExecute

Execute executes the request

@return Proxy

func (*ProxiesApiService) GetExecute

Execute executes the request

@return ProxyPaginatedList

func (*ProxiesApiService) Patch

Patch Method for Patch

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ProxiesApiPatchRequest

func (*ProxiesApiService) PatchExecute

Execute executes the request

func (*ProxiesApiService) Update

Update Method for Update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ProxiesApiUpdateRequest

func (*ProxiesApiService) UpdateExecute

Execute executes the request

@return Proxy

type ProxiesApiUpdateRequest

type ProxiesApiUpdateRequest struct {
	ApiService *ProxiesApiService
	// contains filtered or unexported fields
}

func (ProxiesApiUpdateRequest) Execute

func (r ProxiesApiUpdateRequest) Execute() (*Proxy, *http.Response, error)

func (ProxiesApiUpdateRequest) UpdateProxyRequest

func (r ProxiesApiUpdateRequest) UpdateProxyRequest(updateProxyRequest UpdateProxyRequest) ProxiesApiUpdateRequest

type Proxy

type Proxy struct {
	Id                *string           `json:"id,omitempty"`
	Key               NullableString    `json:"key,omitempty"`
	TenantId          *string           `json:"tenant_id,omitempty"`
	Name              NullableString    `json:"name,omitempty"`
	DestinationUrl    NullableString    `json:"destination_url,omitempty"`
	RequestReactorId  NullableString    `json:"request_reactor_id,omitempty"`
	ResponseReactorId NullableString    `json:"response_reactor_id,omitempty"`
	RequireAuth       *bool             `json:"require_auth,omitempty"`
	RequestTransform  *ProxyTransform   `json:"request_transform,omitempty"`
	ResponseTransform *ProxyTransform   `json:"response_transform,omitempty"`
	ApplicationId     NullableString    `json:"application_id,omitempty"`
	Configuration     map[string]string `json:"configuration,omitempty"`
	ProxyHost         NullableString    `json:"proxy_host,omitempty"`
	CreatedBy         NullableString    `json:"created_by,omitempty"`
	CreatedAt         NullableTime      `json:"created_at,omitempty"`
	ModifiedBy        NullableString    `json:"modified_by,omitempty"`
	ModifiedAt        NullableTime      `json:"modified_at,omitempty"`
}

Proxy struct for Proxy

func NewProxy

func NewProxy() *Proxy

NewProxy instantiates a new Proxy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProxyWithDefaults

func NewProxyWithDefaults() *Proxy

NewProxyWithDefaults instantiates a new Proxy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Proxy) GetApplicationId

func (o *Proxy) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetApplicationIdOk

func (o *Proxy) GetApplicationIdOk() (*string, bool)

GetApplicationIdOk returns a tuple with the ApplicationId 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 (*Proxy) GetConfiguration

func (o *Proxy) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetConfigurationOk

func (o *Proxy) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*Proxy) GetCreatedAt

func (o *Proxy) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetCreatedAtOk

func (o *Proxy) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Proxy) GetCreatedBy

func (o *Proxy) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetCreatedByOk

func (o *Proxy) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Proxy) GetDestinationUrl

func (o *Proxy) GetDestinationUrl() string

GetDestinationUrl returns the DestinationUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetDestinationUrlOk

func (o *Proxy) GetDestinationUrlOk() (*string, bool)

GetDestinationUrlOk returns a tuple with the DestinationUrl 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 (*Proxy) GetId

func (o *Proxy) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Proxy) GetIdOk

func (o *Proxy) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Proxy) GetKey

func (o *Proxy) GetKey() string

GetKey returns the Key field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetKeyOk

func (o *Proxy) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Proxy) GetModifiedAt

func (o *Proxy) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetModifiedAtOk

func (o *Proxy) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*Proxy) GetModifiedBy

func (o *Proxy) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetModifiedByOk

func (o *Proxy) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*Proxy) GetName

func (o *Proxy) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetNameOk

func (o *Proxy) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Proxy) GetProxyHost

func (o *Proxy) GetProxyHost() string

GetProxyHost returns the ProxyHost field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetProxyHostOk

func (o *Proxy) GetProxyHostOk() (*string, bool)

GetProxyHostOk returns a tuple with the ProxyHost 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 (*Proxy) GetRequestReactorId

func (o *Proxy) GetRequestReactorId() string

GetRequestReactorId returns the RequestReactorId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetRequestReactorIdOk

func (o *Proxy) GetRequestReactorIdOk() (*string, bool)

GetRequestReactorIdOk returns a tuple with the RequestReactorId 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 (*Proxy) GetRequestTransform

func (o *Proxy) GetRequestTransform() ProxyTransform

GetRequestTransform returns the RequestTransform field value if set, zero value otherwise.

func (*Proxy) GetRequestTransformOk

func (o *Proxy) GetRequestTransformOk() (*ProxyTransform, bool)

GetRequestTransformOk returns a tuple with the RequestTransform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Proxy) GetRequireAuth

func (o *Proxy) GetRequireAuth() bool

GetRequireAuth returns the RequireAuth field value if set, zero value otherwise.

func (*Proxy) GetRequireAuthOk

func (o *Proxy) GetRequireAuthOk() (*bool, bool)

GetRequireAuthOk returns a tuple with the RequireAuth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Proxy) GetResponseReactorId

func (o *Proxy) GetResponseReactorId() string

GetResponseReactorId returns the ResponseReactorId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Proxy) GetResponseReactorIdOk

func (o *Proxy) GetResponseReactorIdOk() (*string, bool)

GetResponseReactorIdOk returns a tuple with the ResponseReactorId 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 (*Proxy) GetResponseTransform

func (o *Proxy) GetResponseTransform() ProxyTransform

GetResponseTransform returns the ResponseTransform field value if set, zero value otherwise.

func (*Proxy) GetResponseTransformOk

func (o *Proxy) GetResponseTransformOk() (*ProxyTransform, bool)

GetResponseTransformOk returns a tuple with the ResponseTransform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Proxy) GetTenantId

func (o *Proxy) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Proxy) GetTenantIdOk

func (o *Proxy) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Proxy) HasApplicationId

func (o *Proxy) HasApplicationId() bool

HasApplicationId returns a boolean if a field is not nil.

func (*Proxy) HasConfiguration

func (o *Proxy) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*Proxy) HasCreatedAt

func (o *Proxy) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*Proxy) HasCreatedBy

func (o *Proxy) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*Proxy) HasDestinationUrl

func (o *Proxy) HasDestinationUrl() bool

HasDestinationUrl returns a boolean if a field is not nil.

func (*Proxy) HasId

func (o *Proxy) HasId() bool

HasId returns a boolean if a field is not nil.

func (*Proxy) HasKey

func (o *Proxy) HasKey() bool

HasKey returns a boolean if a field is not nil.

func (*Proxy) HasModifiedAt

func (o *Proxy) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*Proxy) HasModifiedBy

func (o *Proxy) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*Proxy) HasName

func (o *Proxy) HasName() bool

HasName returns a boolean if a field is not nil.

func (*Proxy) HasProxyHost

func (o *Proxy) HasProxyHost() bool

HasProxyHost returns a boolean if a field is not nil.

func (*Proxy) HasRequestReactorId

func (o *Proxy) HasRequestReactorId() bool

HasRequestReactorId returns a boolean if a field is not nil.

func (*Proxy) HasRequestTransform

func (o *Proxy) HasRequestTransform() bool

HasRequestTransform returns a boolean if a field is not nil.

func (*Proxy) HasRequireAuth

func (o *Proxy) HasRequireAuth() bool

HasRequireAuth returns a boolean if a field is not nil.

func (*Proxy) HasResponseReactorId

func (o *Proxy) HasResponseReactorId() bool

HasResponseReactorId returns a boolean if a field is not nil.

func (*Proxy) HasResponseTransform

func (o *Proxy) HasResponseTransform() bool

HasResponseTransform returns a boolean if a field is not nil.

func (*Proxy) HasTenantId

func (o *Proxy) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (Proxy) MarshalJSON

func (o Proxy) MarshalJSON() ([]byte, error)

func (*Proxy) SetApplicationId

func (o *Proxy) SetApplicationId(v string)

SetApplicationId gets a reference to the given NullableString and assigns it to the ApplicationId field.

func (*Proxy) SetApplicationIdNil

func (o *Proxy) SetApplicationIdNil()

SetApplicationIdNil sets the value for ApplicationId to be an explicit nil

func (*Proxy) SetConfiguration

func (o *Proxy) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*Proxy) SetCreatedAt

func (o *Proxy) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given NullableTime and assigns it to the CreatedAt field.

func (*Proxy) SetCreatedAtNil

func (o *Proxy) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Proxy) SetCreatedBy

func (o *Proxy) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*Proxy) SetCreatedByNil

func (o *Proxy) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Proxy) SetDestinationUrl

func (o *Proxy) SetDestinationUrl(v string)

SetDestinationUrl gets a reference to the given NullableString and assigns it to the DestinationUrl field.

func (*Proxy) SetDestinationUrlNil

func (o *Proxy) SetDestinationUrlNil()

SetDestinationUrlNil sets the value for DestinationUrl to be an explicit nil

func (*Proxy) SetId

func (o *Proxy) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Proxy) SetKey

func (o *Proxy) SetKey(v string)

SetKey gets a reference to the given NullableString and assigns it to the Key field.

func (*Proxy) SetKeyNil

func (o *Proxy) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*Proxy) SetModifiedAt

func (o *Proxy) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*Proxy) SetModifiedAtNil

func (o *Proxy) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*Proxy) SetModifiedBy

func (o *Proxy) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*Proxy) SetModifiedByNil

func (o *Proxy) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Proxy) SetName

func (o *Proxy) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*Proxy) SetNameNil

func (o *Proxy) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Proxy) SetProxyHost

func (o *Proxy) SetProxyHost(v string)

SetProxyHost gets a reference to the given NullableString and assigns it to the ProxyHost field.

func (*Proxy) SetProxyHostNil

func (o *Proxy) SetProxyHostNil()

SetProxyHostNil sets the value for ProxyHost to be an explicit nil

func (*Proxy) SetRequestReactorId

func (o *Proxy) SetRequestReactorId(v string)

SetRequestReactorId gets a reference to the given NullableString and assigns it to the RequestReactorId field.

func (*Proxy) SetRequestReactorIdNil

func (o *Proxy) SetRequestReactorIdNil()

SetRequestReactorIdNil sets the value for RequestReactorId to be an explicit nil

func (*Proxy) SetRequestTransform

func (o *Proxy) SetRequestTransform(v ProxyTransform)

SetRequestTransform gets a reference to the given ProxyTransform and assigns it to the RequestTransform field.

func (*Proxy) SetRequireAuth

func (o *Proxy) SetRequireAuth(v bool)

SetRequireAuth gets a reference to the given bool and assigns it to the RequireAuth field.

func (*Proxy) SetResponseReactorId

func (o *Proxy) SetResponseReactorId(v string)

SetResponseReactorId gets a reference to the given NullableString and assigns it to the ResponseReactorId field.

func (*Proxy) SetResponseReactorIdNil

func (o *Proxy) SetResponseReactorIdNil()

SetResponseReactorIdNil sets the value for ResponseReactorId to be an explicit nil

func (*Proxy) SetResponseTransform

func (o *Proxy) SetResponseTransform(v ProxyTransform)

SetResponseTransform gets a reference to the given ProxyTransform and assigns it to the ResponseTransform field.

func (*Proxy) SetTenantId

func (o *Proxy) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (Proxy) ToMap

func (o Proxy) ToMap() (map[string]interface{}, error)

func (*Proxy) UnsetApplicationId

func (o *Proxy) UnsetApplicationId()

UnsetApplicationId ensures that no value is present for ApplicationId, not even an explicit nil

func (*Proxy) UnsetCreatedAt

func (o *Proxy) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*Proxy) UnsetCreatedBy

func (o *Proxy) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*Proxy) UnsetDestinationUrl

func (o *Proxy) UnsetDestinationUrl()

UnsetDestinationUrl ensures that no value is present for DestinationUrl, not even an explicit nil

func (*Proxy) UnsetKey

func (o *Proxy) UnsetKey()

UnsetKey ensures that no value is present for Key, not even an explicit nil

func (*Proxy) UnsetModifiedAt

func (o *Proxy) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*Proxy) UnsetModifiedBy

func (o *Proxy) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*Proxy) UnsetName

func (o *Proxy) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*Proxy) UnsetProxyHost

func (o *Proxy) UnsetProxyHost()

UnsetProxyHost ensures that no value is present for ProxyHost, not even an explicit nil

func (*Proxy) UnsetRequestReactorId

func (o *Proxy) UnsetRequestReactorId()

UnsetRequestReactorId ensures that no value is present for RequestReactorId, not even an explicit nil

func (*Proxy) UnsetResponseReactorId

func (o *Proxy) UnsetResponseReactorId()

UnsetResponseReactorId ensures that no value is present for ResponseReactorId, not even an explicit nil

type ProxyPaginatedList

type ProxyPaginatedList struct {
	Pagination *Pagination `json:"pagination,omitempty"`
	Data       []Proxy     `json:"data,omitempty"`
}

ProxyPaginatedList struct for ProxyPaginatedList

func NewProxyPaginatedList

func NewProxyPaginatedList() *ProxyPaginatedList

NewProxyPaginatedList instantiates a new ProxyPaginatedList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProxyPaginatedListWithDefaults

func NewProxyPaginatedListWithDefaults() *ProxyPaginatedList

NewProxyPaginatedListWithDefaults instantiates a new ProxyPaginatedList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProxyPaginatedList) GetData

func (o *ProxyPaginatedList) GetData() []Proxy

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProxyPaginatedList) GetDataOk

func (o *ProxyPaginatedList) GetDataOk() ([]Proxy, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProxyPaginatedList) GetPagination

func (o *ProxyPaginatedList) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ProxyPaginatedList) GetPaginationOk

func (o *ProxyPaginatedList) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyPaginatedList) HasData

func (o *ProxyPaginatedList) HasData() bool

HasData returns a boolean if a field is not nil.

func (*ProxyPaginatedList) HasPagination

func (o *ProxyPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field is not nil.

func (ProxyPaginatedList) MarshalJSON

func (o ProxyPaginatedList) MarshalJSON() ([]byte, error)

func (*ProxyPaginatedList) SetData

func (o *ProxyPaginatedList) SetData(v []Proxy)

SetData gets a reference to the given []Proxy and assigns it to the Data field.

func (*ProxyPaginatedList) SetPagination

func (o *ProxyPaginatedList) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (ProxyPaginatedList) ToMap

func (o ProxyPaginatedList) ToMap() (map[string]interface{}, error)

type ProxyTransform

type ProxyTransform struct {
	Code NullableString `json:"code,omitempty"`
}

ProxyTransform struct for ProxyTransform

func NewProxyTransform

func NewProxyTransform() *ProxyTransform

NewProxyTransform instantiates a new ProxyTransform object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProxyTransformWithDefaults

func NewProxyTransformWithDefaults() *ProxyTransform

NewProxyTransformWithDefaults instantiates a new ProxyTransform object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProxyTransform) GetCode

func (o *ProxyTransform) GetCode() string

GetCode returns the Code field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProxyTransform) GetCodeOk

func (o *ProxyTransform) GetCodeOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProxyTransform) HasCode

func (o *ProxyTransform) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (ProxyTransform) MarshalJSON

func (o ProxyTransform) MarshalJSON() ([]byte, error)

func (*ProxyTransform) SetCode

func (o *ProxyTransform) SetCode(v string)

SetCode gets a reference to the given NullableString and assigns it to the Code field.

func (*ProxyTransform) SetCodeNil

func (o *ProxyTransform) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (ProxyTransform) ToMap

func (o ProxyTransform) ToMap() (map[string]interface{}, error)

func (*ProxyTransform) UnsetCode

func (o *ProxyTransform) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

type ReactRequest

type ReactRequest struct {
	Args        interface{}    `json:"args,omitempty"`
	CallbackUrl NullableString `json:"callback_url,omitempty"`
}

ReactRequest struct for ReactRequest

func NewReactRequest

func NewReactRequest() *ReactRequest

NewReactRequest instantiates a new ReactRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReactRequestWithDefaults

func NewReactRequestWithDefaults() *ReactRequest

NewReactRequestWithDefaults instantiates a new ReactRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReactRequest) GetArgs

func (o *ReactRequest) GetArgs() interface{}

GetArgs returns the Args field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactRequest) GetArgsOk

func (o *ReactRequest) GetArgsOk() (*interface{}, bool)

GetArgsOk returns a tuple with the Args 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 (*ReactRequest) GetCallbackUrl

func (o *ReactRequest) GetCallbackUrl() string

GetCallbackUrl returns the CallbackUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactRequest) GetCallbackUrlOk

func (o *ReactRequest) GetCallbackUrlOk() (*string, bool)

GetCallbackUrlOk returns a tuple with the CallbackUrl 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 (*ReactRequest) HasArgs

func (o *ReactRequest) HasArgs() bool

HasArgs returns a boolean if a field is not nil.

func (*ReactRequest) HasCallbackUrl

func (o *ReactRequest) HasCallbackUrl() bool

HasCallbackUrl returns a boolean if a field is not nil.

func (ReactRequest) MarshalJSON

func (o ReactRequest) MarshalJSON() ([]byte, error)

func (*ReactRequest) SetArgs

func (o *ReactRequest) SetArgs(v interface{})

SetArgs gets a reference to the given interface{} and assigns it to the Args field.

func (*ReactRequest) SetCallbackUrl

func (o *ReactRequest) SetCallbackUrl(v string)

SetCallbackUrl gets a reference to the given NullableString and assigns it to the CallbackUrl field.

func (*ReactRequest) SetCallbackUrlNil

func (o *ReactRequest) SetCallbackUrlNil()

SetCallbackUrlNil sets the value for CallbackUrl to be an explicit nil

func (ReactRequest) ToMap

func (o ReactRequest) ToMap() (map[string]interface{}, error)

func (*ReactRequest) UnsetCallbackUrl

func (o *ReactRequest) UnsetCallbackUrl()

UnsetCallbackUrl ensures that no value is present for CallbackUrl, not even an explicit nil

type ReactResponse

type ReactResponse struct {
	Tokens  interface{} `json:"tokens,omitempty"`
	Raw     interface{} `json:"raw,omitempty"`
	Body    interface{} `json:"body,omitempty"`
	Headers interface{} `json:"headers,omitempty"`
}

ReactResponse struct for ReactResponse

func NewReactResponse

func NewReactResponse() *ReactResponse

NewReactResponse instantiates a new ReactResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReactResponseWithDefaults

func NewReactResponseWithDefaults() *ReactResponse

NewReactResponseWithDefaults instantiates a new ReactResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReactResponse) GetBody

func (o *ReactResponse) GetBody() interface{}

GetBody returns the Body field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactResponse) GetBodyOk

func (o *ReactResponse) GetBodyOk() (*interface{}, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactResponse) GetHeaders

func (o *ReactResponse) GetHeaders() interface{}

GetHeaders returns the Headers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactResponse) GetHeadersOk

func (o *ReactResponse) GetHeadersOk() (*interface{}, bool)

GetHeadersOk returns a tuple with the Headers 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 (*ReactResponse) GetRaw

func (o *ReactResponse) GetRaw() interface{}

GetRaw returns the Raw field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactResponse) GetRawOk

func (o *ReactResponse) GetRawOk() (*interface{}, bool)

GetRawOk returns a tuple with the Raw 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 (*ReactResponse) GetTokens

func (o *ReactResponse) GetTokens() interface{}

GetTokens returns the Tokens field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactResponse) GetTokensOk

func (o *ReactResponse) GetTokensOk() (*interface{}, bool)

GetTokensOk returns a tuple with the Tokens 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 (*ReactResponse) HasBody

func (o *ReactResponse) HasBody() bool

HasBody returns a boolean if a field is not nil.

func (*ReactResponse) HasHeaders

func (o *ReactResponse) HasHeaders() bool

HasHeaders returns a boolean if a field is not nil.

func (*ReactResponse) HasRaw

func (o *ReactResponse) HasRaw() bool

HasRaw returns a boolean if a field is not nil.

func (*ReactResponse) HasTokens

func (o *ReactResponse) HasTokens() bool

HasTokens returns a boolean if a field is not nil.

func (ReactResponse) MarshalJSON

func (o ReactResponse) MarshalJSON() ([]byte, error)

func (*ReactResponse) SetBody

func (o *ReactResponse) SetBody(v interface{})

SetBody gets a reference to the given interface{} and assigns it to the Body field.

func (*ReactResponse) SetHeaders

func (o *ReactResponse) SetHeaders(v interface{})

SetHeaders gets a reference to the given interface{} and assigns it to the Headers field.

func (*ReactResponse) SetRaw

func (o *ReactResponse) SetRaw(v interface{})

SetRaw gets a reference to the given interface{} and assigns it to the Raw field.

func (*ReactResponse) SetTokens

func (o *ReactResponse) SetTokens(v interface{})

SetTokens gets a reference to the given interface{} and assigns it to the Tokens field.

func (ReactResponse) ToMap

func (o ReactResponse) ToMap() (map[string]interface{}, error)

type Reactor

type Reactor struct {
	Id       *string        `json:"id,omitempty"`
	TenantId *string        `json:"tenant_id,omitempty"`
	Name     NullableString `json:"name,omitempty"`
	// Deprecated
	Formula       *ReactorFormula   `json:"formula,omitempty"`
	Code          NullableString    `json:"code,omitempty"`
	Application   *Application      `json:"application,omitempty"`
	CreatedBy     NullableString    `json:"created_by,omitempty"`
	CreatedAt     NullableTime      `json:"created_at,omitempty"`
	ModifiedBy    NullableString    `json:"modified_by,omitempty"`
	ModifiedAt    NullableTime      `json:"modified_at,omitempty"`
	Configuration map[string]string `json:"configuration,omitempty"`
}

Reactor struct for Reactor

func NewReactor

func NewReactor() *Reactor

NewReactor instantiates a new Reactor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReactorWithDefaults

func NewReactorWithDefaults() *Reactor

NewReactorWithDefaults instantiates a new Reactor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Reactor) GetApplication

func (o *Reactor) GetApplication() Application

GetApplication returns the Application field value if set, zero value otherwise.

func (*Reactor) GetApplicationOk

func (o *Reactor) GetApplicationOk() (*Application, bool)

GetApplicationOk returns a tuple with the Application field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Reactor) GetCode

func (o *Reactor) GetCode() string

GetCode returns the Code field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Reactor) GetCodeOk

func (o *Reactor) GetCodeOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Reactor) GetConfiguration

func (o *Reactor) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Reactor) GetConfigurationOk

func (o *Reactor) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*Reactor) GetCreatedAt

func (o *Reactor) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Reactor) GetCreatedAtOk

func (o *Reactor) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Reactor) GetCreatedBy

func (o *Reactor) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Reactor) GetCreatedByOk

func (o *Reactor) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Reactor) GetFormula

func (o *Reactor) GetFormula() ReactorFormula

GetFormula returns the Formula field value if set, zero value otherwise. Deprecated

func (*Reactor) GetFormulaOk

func (o *Reactor) GetFormulaOk() (*ReactorFormula, bool)

GetFormulaOk returns a tuple with the Formula field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Reactor) GetId

func (o *Reactor) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Reactor) GetIdOk

func (o *Reactor) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Reactor) GetModifiedAt

func (o *Reactor) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Reactor) GetModifiedAtOk

func (o *Reactor) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*Reactor) GetModifiedBy

func (o *Reactor) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Reactor) GetModifiedByOk

func (o *Reactor) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*Reactor) GetName

func (o *Reactor) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Reactor) GetNameOk

func (o *Reactor) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Reactor) GetTenantId

func (o *Reactor) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Reactor) GetTenantIdOk

func (o *Reactor) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Reactor) HasApplication

func (o *Reactor) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*Reactor) HasCode

func (o *Reactor) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (*Reactor) HasConfiguration

func (o *Reactor) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*Reactor) HasCreatedAt

func (o *Reactor) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*Reactor) HasCreatedBy

func (o *Reactor) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*Reactor) HasFormula

func (o *Reactor) HasFormula() bool

HasFormula returns a boolean if a field is not nil.

func (*Reactor) HasId

func (o *Reactor) HasId() bool

HasId returns a boolean if a field is not nil.

func (*Reactor) HasModifiedAt

func (o *Reactor) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*Reactor) HasModifiedBy

func (o *Reactor) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*Reactor) HasName

func (o *Reactor) HasName() bool

HasName returns a boolean if a field is not nil.

func (*Reactor) HasTenantId

func (o *Reactor) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (Reactor) MarshalJSON

func (o Reactor) MarshalJSON() ([]byte, error)

func (*Reactor) SetApplication

func (o *Reactor) SetApplication(v Application)

SetApplication gets a reference to the given Application and assigns it to the Application field.

func (*Reactor) SetCode

func (o *Reactor) SetCode(v string)

SetCode gets a reference to the given NullableString and assigns it to the Code field.

func (*Reactor) SetCodeNil

func (o *Reactor) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*Reactor) SetConfiguration

func (o *Reactor) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*Reactor) SetCreatedAt

func (o *Reactor) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given NullableTime and assigns it to the CreatedAt field.

func (*Reactor) SetCreatedAtNil

func (o *Reactor) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Reactor) SetCreatedBy

func (o *Reactor) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*Reactor) SetCreatedByNil

func (o *Reactor) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Reactor) SetFormula

func (o *Reactor) SetFormula(v ReactorFormula)

SetFormula gets a reference to the given ReactorFormula and assigns it to the Formula field. Deprecated

func (*Reactor) SetId

func (o *Reactor) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Reactor) SetModifiedAt

func (o *Reactor) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*Reactor) SetModifiedAtNil

func (o *Reactor) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*Reactor) SetModifiedBy

func (o *Reactor) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*Reactor) SetModifiedByNil

func (o *Reactor) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Reactor) SetName

func (o *Reactor) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*Reactor) SetNameNil

func (o *Reactor) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Reactor) SetTenantId

func (o *Reactor) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (Reactor) ToMap

func (o Reactor) ToMap() (map[string]interface{}, error)

func (*Reactor) UnsetCode

func (o *Reactor) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

func (*Reactor) UnsetCreatedAt

func (o *Reactor) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*Reactor) UnsetCreatedBy

func (o *Reactor) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*Reactor) UnsetModifiedAt

func (o *Reactor) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*Reactor) UnsetModifiedBy

func (o *Reactor) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*Reactor) UnsetName

func (o *Reactor) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type ReactorFormula

type ReactorFormula struct {
	Id                *string                          `json:"id,omitempty"`
	Type              NullableString                   `json:"type,omitempty"`
	Status            NullableString                   `json:"status,omitempty"`
	Name              NullableString                   `json:"name,omitempty"`
	Description       NullableString                   `json:"description,omitempty"`
	Icon              NullableString                   `json:"icon,omitempty"`
	Code              NullableString                   `json:"code,omitempty"`
	CreatedBy         NullableString                   `json:"created_by,omitempty"`
	CreatedAt         NullableTime                     `json:"created_at,omitempty"`
	ModifiedBy        NullableString                   `json:"modified_by,omitempty"`
	ModifiedAt        NullableTime                     `json:"modified_at,omitempty"`
	Configuration     []ReactorFormulaConfiguration    `json:"configuration,omitempty"`
	RequestParameters []ReactorFormulaRequestParameter `json:"request_parameters,omitempty"`
}

ReactorFormula struct for ReactorFormula

func NewReactorFormula

func NewReactorFormula() *ReactorFormula

NewReactorFormula instantiates a new ReactorFormula object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReactorFormulaWithDefaults

func NewReactorFormulaWithDefaults() *ReactorFormula

NewReactorFormulaWithDefaults instantiates a new ReactorFormula object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReactorFormula) GetCode

func (o *ReactorFormula) GetCode() string

GetCode returns the Code field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetCodeOk

func (o *ReactorFormula) GetCodeOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactorFormula) GetConfiguration

func (o *ReactorFormula) GetConfiguration() []ReactorFormulaConfiguration

GetConfiguration returns the Configuration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetConfigurationOk

func (o *ReactorFormula) GetConfigurationOk() ([]ReactorFormulaConfiguration, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*ReactorFormula) GetCreatedAt

func (o *ReactorFormula) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetCreatedAtOk

func (o *ReactorFormula) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactorFormula) GetCreatedBy

func (o *ReactorFormula) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetCreatedByOk

func (o *ReactorFormula) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactorFormula) GetDescription

func (o *ReactorFormula) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetDescriptionOk

func (o *ReactorFormula) 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 (*ReactorFormula) GetIcon

func (o *ReactorFormula) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetIconOk

func (o *ReactorFormula) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon 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 (*ReactorFormula) GetId

func (o *ReactorFormula) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ReactorFormula) GetIdOk

func (o *ReactorFormula) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReactorFormula) GetModifiedAt

func (o *ReactorFormula) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetModifiedAtOk

func (o *ReactorFormula) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*ReactorFormula) GetModifiedBy

func (o *ReactorFormula) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetModifiedByOk

func (o *ReactorFormula) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*ReactorFormula) GetName

func (o *ReactorFormula) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetNameOk

func (o *ReactorFormula) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactorFormula) GetRequestParameters

func (o *ReactorFormula) GetRequestParameters() []ReactorFormulaRequestParameter

GetRequestParameters returns the RequestParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetRequestParametersOk

func (o *ReactorFormula) GetRequestParametersOk() ([]ReactorFormulaRequestParameter, bool)

GetRequestParametersOk returns a tuple with the RequestParameters 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 (*ReactorFormula) GetStatus

func (o *ReactorFormula) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetStatusOk

func (o *ReactorFormula) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactorFormula) GetType

func (o *ReactorFormula) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormula) GetTypeOk

func (o *ReactorFormula) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactorFormula) HasCode

func (o *ReactorFormula) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (*ReactorFormula) HasConfiguration

func (o *ReactorFormula) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*ReactorFormula) HasCreatedAt

func (o *ReactorFormula) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*ReactorFormula) HasCreatedBy

func (o *ReactorFormula) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*ReactorFormula) HasDescription

func (o *ReactorFormula) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*ReactorFormula) HasIcon

func (o *ReactorFormula) HasIcon() bool

HasIcon returns a boolean if a field is not nil.

func (*ReactorFormula) HasId

func (o *ReactorFormula) HasId() bool

HasId returns a boolean if a field is not nil.

func (*ReactorFormula) HasModifiedAt

func (o *ReactorFormula) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*ReactorFormula) HasModifiedBy

func (o *ReactorFormula) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*ReactorFormula) HasName

func (o *ReactorFormula) HasName() bool

HasName returns a boolean if a field is not nil.

func (*ReactorFormula) HasRequestParameters

func (o *ReactorFormula) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field is not nil.

func (*ReactorFormula) HasStatus

func (o *ReactorFormula) HasStatus() bool

HasStatus returns a boolean if a field is not nil.

func (*ReactorFormula) HasType

func (o *ReactorFormula) HasType() bool

HasType returns a boolean if a field is not nil.

func (ReactorFormula) MarshalJSON

func (o ReactorFormula) MarshalJSON() ([]byte, error)

func (*ReactorFormula) SetCode

func (o *ReactorFormula) SetCode(v string)

SetCode gets a reference to the given NullableString and assigns it to the Code field.

func (*ReactorFormula) SetCodeNil

func (o *ReactorFormula) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*ReactorFormula) SetConfiguration

func (o *ReactorFormula) SetConfiguration(v []ReactorFormulaConfiguration)

SetConfiguration gets a reference to the given []ReactorFormulaConfiguration and assigns it to the Configuration field.

func (*ReactorFormula) SetCreatedAt

func (o *ReactorFormula) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given NullableTime and assigns it to the CreatedAt field.

func (*ReactorFormula) SetCreatedAtNil

func (o *ReactorFormula) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*ReactorFormula) SetCreatedBy

func (o *ReactorFormula) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*ReactorFormula) SetCreatedByNil

func (o *ReactorFormula) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ReactorFormula) SetDescription

func (o *ReactorFormula) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*ReactorFormula) SetDescriptionNil

func (o *ReactorFormula) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormula) SetIcon

func (o *ReactorFormula) SetIcon(v string)

SetIcon gets a reference to the given NullableString and assigns it to the Icon field.

func (*ReactorFormula) SetIconNil

func (o *ReactorFormula) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*ReactorFormula) SetId

func (o *ReactorFormula) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ReactorFormula) SetModifiedAt

func (o *ReactorFormula) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*ReactorFormula) SetModifiedAtNil

func (o *ReactorFormula) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*ReactorFormula) SetModifiedBy

func (o *ReactorFormula) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*ReactorFormula) SetModifiedByNil

func (o *ReactorFormula) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*ReactorFormula) SetName

func (o *ReactorFormula) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*ReactorFormula) SetNameNil

func (o *ReactorFormula) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ReactorFormula) SetRequestParameters

func (o *ReactorFormula) SetRequestParameters(v []ReactorFormulaRequestParameter)

SetRequestParameters gets a reference to the given []ReactorFormulaRequestParameter and assigns it to the RequestParameters field.

func (*ReactorFormula) SetStatus

func (o *ReactorFormula) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*ReactorFormula) SetStatusNil

func (o *ReactorFormula) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*ReactorFormula) SetType

func (o *ReactorFormula) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*ReactorFormula) SetTypeNil

func (o *ReactorFormula) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ReactorFormula) ToMap

func (o ReactorFormula) ToMap() (map[string]interface{}, error)

func (*ReactorFormula) UnsetCode

func (o *ReactorFormula) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

func (*ReactorFormula) UnsetCreatedAt

func (o *ReactorFormula) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*ReactorFormula) UnsetCreatedBy

func (o *ReactorFormula) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*ReactorFormula) UnsetDescription

func (o *ReactorFormula) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*ReactorFormula) UnsetIcon

func (o *ReactorFormula) UnsetIcon()

UnsetIcon ensures that no value is present for Icon, not even an explicit nil

func (*ReactorFormula) UnsetModifiedAt

func (o *ReactorFormula) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*ReactorFormula) UnsetModifiedBy

func (o *ReactorFormula) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*ReactorFormula) UnsetName

func (o *ReactorFormula) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*ReactorFormula) UnsetStatus

func (o *ReactorFormula) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*ReactorFormula) UnsetType

func (o *ReactorFormula) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type ReactorFormulaConfiguration

type ReactorFormulaConfiguration struct {
	Name        string         `json:"name"`
	Description NullableString `json:"description,omitempty"`
	Type        string         `json:"type"`
}

ReactorFormulaConfiguration struct for ReactorFormulaConfiguration

func NewReactorFormulaConfiguration

func NewReactorFormulaConfiguration(name string, type_ string) *ReactorFormulaConfiguration

NewReactorFormulaConfiguration instantiates a new ReactorFormulaConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReactorFormulaConfigurationWithDefaults

func NewReactorFormulaConfigurationWithDefaults() *ReactorFormulaConfiguration

NewReactorFormulaConfigurationWithDefaults instantiates a new ReactorFormulaConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReactorFormulaConfiguration) GetDescription

func (o *ReactorFormulaConfiguration) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormulaConfiguration) GetDescriptionOk

func (o *ReactorFormulaConfiguration) 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 (*ReactorFormulaConfiguration) GetName

func (o *ReactorFormulaConfiguration) GetName() string

GetName returns the Name field value

func (*ReactorFormulaConfiguration) GetNameOk

func (o *ReactorFormulaConfiguration) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ReactorFormulaConfiguration) GetType

func (o *ReactorFormulaConfiguration) GetType() string

GetType returns the Type field value

func (*ReactorFormulaConfiguration) GetTypeOk

func (o *ReactorFormulaConfiguration) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ReactorFormulaConfiguration) HasDescription

func (o *ReactorFormulaConfiguration) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (ReactorFormulaConfiguration) MarshalJSON

func (o ReactorFormulaConfiguration) MarshalJSON() ([]byte, error)

func (*ReactorFormulaConfiguration) SetDescription

func (o *ReactorFormulaConfiguration) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*ReactorFormulaConfiguration) SetDescriptionNil

func (o *ReactorFormulaConfiguration) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormulaConfiguration) SetName

func (o *ReactorFormulaConfiguration) SetName(v string)

SetName sets field value

func (*ReactorFormulaConfiguration) SetType

func (o *ReactorFormulaConfiguration) SetType(v string)

SetType sets field value

func (ReactorFormulaConfiguration) ToMap

func (o ReactorFormulaConfiguration) ToMap() (map[string]interface{}, error)

func (*ReactorFormulaConfiguration) UnsetDescription

func (o *ReactorFormulaConfiguration) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type ReactorFormulaPaginatedList

type ReactorFormulaPaginatedList struct {
	Pagination *Pagination      `json:"pagination,omitempty"`
	Data       []ReactorFormula `json:"data,omitempty"`
}

ReactorFormulaPaginatedList struct for ReactorFormulaPaginatedList

func NewReactorFormulaPaginatedList

func NewReactorFormulaPaginatedList() *ReactorFormulaPaginatedList

NewReactorFormulaPaginatedList instantiates a new ReactorFormulaPaginatedList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReactorFormulaPaginatedListWithDefaults

func NewReactorFormulaPaginatedListWithDefaults() *ReactorFormulaPaginatedList

NewReactorFormulaPaginatedListWithDefaults instantiates a new ReactorFormulaPaginatedList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReactorFormulaPaginatedList) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormulaPaginatedList) GetDataOk

func (o *ReactorFormulaPaginatedList) GetDataOk() ([]ReactorFormula, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactorFormulaPaginatedList) GetPagination

func (o *ReactorFormulaPaginatedList) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ReactorFormulaPaginatedList) GetPaginationOk

func (o *ReactorFormulaPaginatedList) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReactorFormulaPaginatedList) HasData

func (o *ReactorFormulaPaginatedList) HasData() bool

HasData returns a boolean if a field is not nil.

func (*ReactorFormulaPaginatedList) HasPagination

func (o *ReactorFormulaPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field is not nil.

func (ReactorFormulaPaginatedList) MarshalJSON

func (o ReactorFormulaPaginatedList) MarshalJSON() ([]byte, error)

func (*ReactorFormulaPaginatedList) SetData

SetData gets a reference to the given []ReactorFormula and assigns it to the Data field.

func (*ReactorFormulaPaginatedList) SetPagination

func (o *ReactorFormulaPaginatedList) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (ReactorFormulaPaginatedList) ToMap

func (o ReactorFormulaPaginatedList) ToMap() (map[string]interface{}, error)

type ReactorFormulaRequestParameter

type ReactorFormulaRequestParameter struct {
	Name        string         `json:"name"`
	Description NullableString `json:"description,omitempty"`
	Type        string         `json:"type"`
	Optional    *bool          `json:"optional,omitempty"`
}

ReactorFormulaRequestParameter struct for ReactorFormulaRequestParameter

func NewReactorFormulaRequestParameter

func NewReactorFormulaRequestParameter(name string, type_ string) *ReactorFormulaRequestParameter

NewReactorFormulaRequestParameter instantiates a new ReactorFormulaRequestParameter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReactorFormulaRequestParameterWithDefaults

func NewReactorFormulaRequestParameterWithDefaults() *ReactorFormulaRequestParameter

NewReactorFormulaRequestParameterWithDefaults instantiates a new ReactorFormulaRequestParameter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReactorFormulaRequestParameter) GetDescription

func (o *ReactorFormulaRequestParameter) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorFormulaRequestParameter) GetDescriptionOk

func (o *ReactorFormulaRequestParameter) 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 (*ReactorFormulaRequestParameter) GetName

GetName returns the Name field value

func (*ReactorFormulaRequestParameter) GetNameOk

func (o *ReactorFormulaRequestParameter) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ReactorFormulaRequestParameter) GetOptional

func (o *ReactorFormulaRequestParameter) GetOptional() bool

GetOptional returns the Optional field value if set, zero value otherwise.

func (*ReactorFormulaRequestParameter) GetOptionalOk

func (o *ReactorFormulaRequestParameter) GetOptionalOk() (*bool, bool)

GetOptionalOk returns a tuple with the Optional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReactorFormulaRequestParameter) GetType

GetType returns the Type field value

func (*ReactorFormulaRequestParameter) GetTypeOk

func (o *ReactorFormulaRequestParameter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ReactorFormulaRequestParameter) HasDescription

func (o *ReactorFormulaRequestParameter) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*ReactorFormulaRequestParameter) HasOptional

func (o *ReactorFormulaRequestParameter) HasOptional() bool

HasOptional returns a boolean if a field is not nil.

func (ReactorFormulaRequestParameter) MarshalJSON

func (o ReactorFormulaRequestParameter) MarshalJSON() ([]byte, error)

func (*ReactorFormulaRequestParameter) SetDescription

func (o *ReactorFormulaRequestParameter) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*ReactorFormulaRequestParameter) SetDescriptionNil

func (o *ReactorFormulaRequestParameter) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormulaRequestParameter) SetName

func (o *ReactorFormulaRequestParameter) SetName(v string)

SetName sets field value

func (*ReactorFormulaRequestParameter) SetOptional

func (o *ReactorFormulaRequestParameter) SetOptional(v bool)

SetOptional gets a reference to the given bool and assigns it to the Optional field.

func (*ReactorFormulaRequestParameter) SetType

func (o *ReactorFormulaRequestParameter) SetType(v string)

SetType sets field value

func (ReactorFormulaRequestParameter) ToMap

func (o ReactorFormulaRequestParameter) ToMap() (map[string]interface{}, error)

func (*ReactorFormulaRequestParameter) UnsetDescription

func (o *ReactorFormulaRequestParameter) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type ReactorFormulasApiCreateRequest

type ReactorFormulasApiCreateRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ReactorFormulasApiCreateRequest) CreateReactorFormulaRequest

func (r ReactorFormulasApiCreateRequest) CreateReactorFormulaRequest(createReactorFormulaRequest CreateReactorFormulaRequest) ReactorFormulasApiCreateRequest

func (ReactorFormulasApiCreateRequest) Execute

type ReactorFormulasApiDeleteRequest

type ReactorFormulasApiDeleteRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ReactorFormulasApiDeleteRequest) Execute

type ReactorFormulasApiGetByIdRequest

type ReactorFormulasApiGetByIdRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ReactorFormulasApiGetByIdRequest) Execute

type ReactorFormulasApiGetRequest

type ReactorFormulasApiGetRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ReactorFormulasApiGetRequest) Execute

func (ReactorFormulasApiGetRequest) Name

func (ReactorFormulasApiGetRequest) Page

func (ReactorFormulasApiGetRequest) Size

func (ReactorFormulasApiGetRequest) Start

type ReactorFormulasApiService

type ReactorFormulasApiService service

ReactorFormulasApiService ReactorFormulasApi service

func (*ReactorFormulasApiService) Create

Create Method for Create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ReactorFormulasApiCreateRequest

func (*ReactorFormulasApiService) CreateExecute

Execute executes the request

@return ReactorFormula

func (*ReactorFormulasApiService) Delete

Delete Method for Delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ReactorFormulasApiDeleteRequest

func (*ReactorFormulasApiService) DeleteExecute

Execute executes the request

func (*ReactorFormulasApiService) Get

Get Method for Get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ReactorFormulasApiGetRequest

func (*ReactorFormulasApiService) GetById

GetById Method for GetById

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ReactorFormulasApiGetByIdRequest

func (*ReactorFormulasApiService) GetByIdExecute

Execute executes the request

@return ReactorFormula

func (*ReactorFormulasApiService) GetExecute

Execute executes the request

@return ReactorFormulaPaginatedList

func (*ReactorFormulasApiService) Update

Update Method for Update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ReactorFormulasApiUpdateRequest

func (*ReactorFormulasApiService) UpdateExecute

Execute executes the request

@return ReactorFormula

type ReactorFormulasApiUpdateRequest

type ReactorFormulasApiUpdateRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ReactorFormulasApiUpdateRequest) Execute

func (ReactorFormulasApiUpdateRequest) UpdateReactorFormulaRequest

func (r ReactorFormulasApiUpdateRequest) UpdateReactorFormulaRequest(updateReactorFormulaRequest UpdateReactorFormulaRequest) ReactorFormulasApiUpdateRequest

type ReactorPaginatedList

type ReactorPaginatedList struct {
	Pagination *Pagination `json:"pagination,omitempty"`
	Data       []Reactor   `json:"data,omitempty"`
}

ReactorPaginatedList struct for ReactorPaginatedList

func NewReactorPaginatedList

func NewReactorPaginatedList() *ReactorPaginatedList

NewReactorPaginatedList instantiates a new ReactorPaginatedList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReactorPaginatedListWithDefaults

func NewReactorPaginatedListWithDefaults() *ReactorPaginatedList

NewReactorPaginatedListWithDefaults instantiates a new ReactorPaginatedList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReactorPaginatedList) GetData

func (o *ReactorPaginatedList) GetData() []Reactor

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReactorPaginatedList) GetDataOk

func (o *ReactorPaginatedList) GetDataOk() ([]Reactor, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReactorPaginatedList) GetPagination

func (o *ReactorPaginatedList) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ReactorPaginatedList) GetPaginationOk

func (o *ReactorPaginatedList) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReactorPaginatedList) HasData

func (o *ReactorPaginatedList) HasData() bool

HasData returns a boolean if a field is not nil.

func (*ReactorPaginatedList) HasPagination

func (o *ReactorPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field is not nil.

func (ReactorPaginatedList) MarshalJSON

func (o ReactorPaginatedList) MarshalJSON() ([]byte, error)

func (*ReactorPaginatedList) SetData

func (o *ReactorPaginatedList) SetData(v []Reactor)

SetData gets a reference to the given []Reactor and assigns it to the Data field.

func (*ReactorPaginatedList) SetPagination

func (o *ReactorPaginatedList) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (ReactorPaginatedList) ToMap

func (o ReactorPaginatedList) ToMap() (map[string]interface{}, error)

type ReactorsApiCreateRequest

type ReactorsApiCreateRequest struct {
	ApiService *ReactorsApiService
	// contains filtered or unexported fields
}

func (ReactorsApiCreateRequest) CreateReactorRequest

func (r ReactorsApiCreateRequest) CreateReactorRequest(createReactorRequest CreateReactorRequest) ReactorsApiCreateRequest

func (ReactorsApiCreateRequest) Execute

type ReactorsApiDeleteRequest

type ReactorsApiDeleteRequest struct {
	ApiService *ReactorsApiService
	// contains filtered or unexported fields
}

func (ReactorsApiDeleteRequest) Execute

func (r ReactorsApiDeleteRequest) Execute() (*http.Response, error)

type ReactorsApiGetByIdRequest

type ReactorsApiGetByIdRequest struct {
	ApiService *ReactorsApiService
	// contains filtered or unexported fields
}

func (ReactorsApiGetByIdRequest) Execute

type ReactorsApiGetRequest

type ReactorsApiGetRequest struct {
	ApiService *ReactorsApiService
	// contains filtered or unexported fields
}

func (ReactorsApiGetRequest) Execute

func (ReactorsApiGetRequest) Id

func (ReactorsApiGetRequest) Name

func (ReactorsApiGetRequest) Page

func (ReactorsApiGetRequest) Size

func (ReactorsApiGetRequest) Start

type ReactorsApiPatchRequest

type ReactorsApiPatchRequest struct {
	ApiService *ReactorsApiService
	// contains filtered or unexported fields
}

func (ReactorsApiPatchRequest) Execute

func (r ReactorsApiPatchRequest) Execute() (*http.Response, error)

func (ReactorsApiPatchRequest) PatchReactorRequest

func (r ReactorsApiPatchRequest) PatchReactorRequest(patchReactorRequest PatchReactorRequest) ReactorsApiPatchRequest

type ReactorsApiReactRequest

type ReactorsApiReactRequest struct {
	ApiService *ReactorsApiService
	// contains filtered or unexported fields
}

func (ReactorsApiReactRequest) Execute

func (ReactorsApiReactRequest) ReactRequest

func (r ReactorsApiReactRequest) ReactRequest(reactRequest ReactRequest) ReactorsApiReactRequest

type ReactorsApiService

type ReactorsApiService service

ReactorsApiService ReactorsApi service

func (*ReactorsApiService) Create

Create Method for Create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ReactorsApiCreateRequest

func (*ReactorsApiService) CreateExecute

Execute executes the request

@return Reactor

func (*ReactorsApiService) Delete

Delete Method for Delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ReactorsApiDeleteRequest

func (*ReactorsApiService) DeleteExecute

Execute executes the request

func (*ReactorsApiService) Get

Get Method for Get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ReactorsApiGetRequest

func (*ReactorsApiService) GetById

GetById Method for GetById

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ReactorsApiGetByIdRequest

func (*ReactorsApiService) GetByIdExecute

Execute executes the request

@return Reactor

func (*ReactorsApiService) GetExecute

Execute executes the request

@return ReactorPaginatedList

func (*ReactorsApiService) Patch

Patch Method for Patch

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ReactorsApiPatchRequest

func (*ReactorsApiService) PatchExecute

Execute executes the request

func (*ReactorsApiService) React

React Method for React

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ReactorsApiReactRequest

func (*ReactorsApiService) ReactExecute

Execute executes the request

@return ReactResponse

func (*ReactorsApiService) Update

Update Method for Update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ReactorsApiUpdateRequest

func (*ReactorsApiService) UpdateExecute

Execute executes the request

@return Reactor

type ReactorsApiUpdateRequest

type ReactorsApiUpdateRequest struct {
	ApiService *ReactorsApiService
	// contains filtered or unexported fields
}

func (ReactorsApiUpdateRequest) Execute

func (ReactorsApiUpdateRequest) UpdateReactorRequest

func (r ReactorsApiUpdateRequest) UpdateReactorRequest(updateReactorRequest UpdateReactorRequest) ReactorsApiUpdateRequest

type SearchTokensRequest

type SearchTokensRequest struct {
	Query NullableString `json:"query,omitempty"`
	Page  NullableInt32  `json:"page,omitempty"`
	Start NullableString `json:"start,omitempty"`
	Size  NullableInt32  `json:"size,omitempty"`
}

SearchTokensRequest struct for SearchTokensRequest

func NewSearchTokensRequest

func NewSearchTokensRequest() *SearchTokensRequest

NewSearchTokensRequest instantiates a new SearchTokensRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchTokensRequestWithDefaults

func NewSearchTokensRequestWithDefaults() *SearchTokensRequest

NewSearchTokensRequestWithDefaults instantiates a new SearchTokensRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchTokensRequest) GetPage

func (o *SearchTokensRequest) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SearchTokensRequest) GetPageOk

func (o *SearchTokensRequest) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page 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 (*SearchTokensRequest) GetQuery

func (o *SearchTokensRequest) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SearchTokensRequest) GetQueryOk

func (o *SearchTokensRequest) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query 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 (*SearchTokensRequest) GetSize

func (o *SearchTokensRequest) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SearchTokensRequest) GetSizeOk

func (o *SearchTokensRequest) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size 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 (*SearchTokensRequest) GetStart

func (o *SearchTokensRequest) GetStart() string

GetStart returns the Start field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SearchTokensRequest) GetStartOk

func (o *SearchTokensRequest) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start 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 (*SearchTokensRequest) HasPage

func (o *SearchTokensRequest) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*SearchTokensRequest) HasQuery

func (o *SearchTokensRequest) HasQuery() bool

HasQuery returns a boolean if a field is not nil.

func (*SearchTokensRequest) HasSize

func (o *SearchTokensRequest) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*SearchTokensRequest) HasStart

func (o *SearchTokensRequest) HasStart() bool

HasStart returns a boolean if a field is not nil.

func (SearchTokensRequest) MarshalJSON

func (o SearchTokensRequest) MarshalJSON() ([]byte, error)

func (*SearchTokensRequest) SetPage

func (o *SearchTokensRequest) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*SearchTokensRequest) SetPageNil

func (o *SearchTokensRequest) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*SearchTokensRequest) SetQuery

func (o *SearchTokensRequest) SetQuery(v string)

SetQuery gets a reference to the given NullableString and assigns it to the Query field.

func (*SearchTokensRequest) SetQueryNil

func (o *SearchTokensRequest) SetQueryNil()

SetQueryNil sets the value for Query to be an explicit nil

func (*SearchTokensRequest) SetSize

func (o *SearchTokensRequest) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*SearchTokensRequest) SetSizeNil

func (o *SearchTokensRequest) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*SearchTokensRequest) SetStart

func (o *SearchTokensRequest) SetStart(v string)

SetStart gets a reference to the given NullableString and assigns it to the Start field.

func (*SearchTokensRequest) SetStartNil

func (o *SearchTokensRequest) SetStartNil()

SetStartNil sets the value for Start to be an explicit nil

func (SearchTokensRequest) ToMap

func (o SearchTokensRequest) ToMap() (map[string]interface{}, error)

func (*SearchTokensRequest) UnsetPage

func (o *SearchTokensRequest) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*SearchTokensRequest) UnsetQuery

func (o *SearchTokensRequest) UnsetQuery()

UnsetQuery ensures that no value is present for Query, not even an explicit nil

func (*SearchTokensRequest) UnsetSize

func (o *SearchTokensRequest) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*SearchTokensRequest) UnsetStart

func (o *SearchTokensRequest) UnsetStart()

UnsetStart ensures that no value is present for Start, 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 SessionsApiAuthorizeRequest

type SessionsApiAuthorizeRequest struct {
	ApiService *SessionsApiService
	// contains filtered or unexported fields
}

func (SessionsApiAuthorizeRequest) AuthorizeSessionRequest

func (r SessionsApiAuthorizeRequest) AuthorizeSessionRequest(authorizeSessionRequest AuthorizeSessionRequest) SessionsApiAuthorizeRequest

func (SessionsApiAuthorizeRequest) Execute

type SessionsApiCreateRequest

type SessionsApiCreateRequest struct {
	ApiService *SessionsApiService
	// contains filtered or unexported fields
}

func (SessionsApiCreateRequest) Execute

type SessionsApiService

type SessionsApiService service

SessionsApiService SessionsApi service

func (*SessionsApiService) Authorize

Authorize Method for Authorize

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SessionsApiAuthorizeRequest

func (*SessionsApiService) AuthorizeExecute

Execute executes the request

func (*SessionsApiService) Create

Create Method for Create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SessionsApiCreateRequest

func (*SessionsApiService) CreateExecute

Execute executes the request

@return CreateSessionResponse

type StringStringKeyValuePair

type StringStringKeyValuePair struct {
	Key   string `json:"key"`
	Value string `json:"value"`
}

StringStringKeyValuePair struct for StringStringKeyValuePair

func NewStringStringKeyValuePair

func NewStringStringKeyValuePair(key string, value string) *StringStringKeyValuePair

NewStringStringKeyValuePair instantiates a new StringStringKeyValuePair object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStringStringKeyValuePairWithDefaults

func NewStringStringKeyValuePairWithDefaults() *StringStringKeyValuePair

NewStringStringKeyValuePairWithDefaults instantiates a new StringStringKeyValuePair object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StringStringKeyValuePair) GetKey

func (o *StringStringKeyValuePair) GetKey() string

GetKey returns the Key field value

func (*StringStringKeyValuePair) GetKeyOk

func (o *StringStringKeyValuePair) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*StringStringKeyValuePair) GetValue

func (o *StringStringKeyValuePair) GetValue() string

GetValue returns the Value field value

func (*StringStringKeyValuePair) GetValueOk

func (o *StringStringKeyValuePair) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (StringStringKeyValuePair) MarshalJSON

func (o StringStringKeyValuePair) MarshalJSON() ([]byte, error)

func (*StringStringKeyValuePair) SetKey

func (o *StringStringKeyValuePair) SetKey(v string)

SetKey sets field value

func (*StringStringKeyValuePair) SetValue

func (o *StringStringKeyValuePair) SetValue(v string)

SetValue sets field value

func (StringStringKeyValuePair) ToMap

func (o StringStringKeyValuePair) ToMap() (map[string]interface{}, error)

type Tenant

type Tenant struct {
	Id         *string           `json:"id,omitempty"`
	OwnerId    *string           `json:"owner_id,omitempty"`
	Name       NullableString    `json:"name,omitempty"`
	Type       NullableString    `json:"type,omitempty"`
	CreatedBy  NullableString    `json:"created_by,omitempty"`
	CreatedAt  NullableTime      `json:"created_at,omitempty"`
	ModifiedBy NullableString    `json:"modified_by,omitempty"`
	ModifiedAt NullableTime      `json:"modified_at,omitempty"`
	Settings   map[string]string `json:"settings,omitempty"`
}

Tenant struct for Tenant

func NewTenant

func NewTenant() *Tenant

NewTenant instantiates a new Tenant object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantWithDefaults

func NewTenantWithDefaults() *Tenant

NewTenantWithDefaults instantiates a new Tenant object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tenant) GetCreatedAt

func (o *Tenant) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetCreatedAtOk

func (o *Tenant) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetCreatedBy

func (o *Tenant) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetCreatedByOk

func (o *Tenant) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetId

func (o *Tenant) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Tenant) GetIdOk

func (o *Tenant) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetModifiedAt

func (o *Tenant) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetModifiedAtOk

func (o *Tenant) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*Tenant) GetModifiedBy

func (o *Tenant) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetModifiedByOk

func (o *Tenant) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*Tenant) GetName

func (o *Tenant) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetNameOk

func (o *Tenant) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetOwnerId

func (o *Tenant) GetOwnerId() string

GetOwnerId returns the OwnerId field value if set, zero value otherwise.

func (*Tenant) GetOwnerIdOk

func (o *Tenant) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetSettings

func (o *Tenant) GetSettings() map[string]string

GetSettings returns the Settings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetSettingsOk

func (o *Tenant) GetSettingsOk() (*map[string]string, bool)

GetSettingsOk returns a tuple with the Settings 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 (*Tenant) GetType

func (o *Tenant) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetTypeOk

func (o *Tenant) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) HasCreatedAt

func (o *Tenant) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*Tenant) HasCreatedBy

func (o *Tenant) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*Tenant) HasId

func (o *Tenant) HasId() bool

HasId returns a boolean if a field is not nil.

func (*Tenant) HasModifiedAt

func (o *Tenant) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*Tenant) HasModifiedBy

func (o *Tenant) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*Tenant) HasName

func (o *Tenant) HasName() bool

HasName returns a boolean if a field is not nil.

func (*Tenant) HasOwnerId

func (o *Tenant) HasOwnerId() bool

HasOwnerId returns a boolean if a field is not nil.

func (*Tenant) HasSettings

func (o *Tenant) HasSettings() bool

HasSettings returns a boolean if a field is not nil.

func (*Tenant) HasType

func (o *Tenant) HasType() bool

HasType returns a boolean if a field is not nil.

func (Tenant) MarshalJSON

func (o Tenant) MarshalJSON() ([]byte, error)

func (*Tenant) SetCreatedAt

func (o *Tenant) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given NullableTime and assigns it to the CreatedAt field.

func (*Tenant) SetCreatedAtNil

func (o *Tenant) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Tenant) SetCreatedBy

func (o *Tenant) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*Tenant) SetCreatedByNil

func (o *Tenant) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Tenant) SetId

func (o *Tenant) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Tenant) SetModifiedAt

func (o *Tenant) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*Tenant) SetModifiedAtNil

func (o *Tenant) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*Tenant) SetModifiedBy

func (o *Tenant) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*Tenant) SetModifiedByNil

func (o *Tenant) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Tenant) SetName

func (o *Tenant) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*Tenant) SetNameNil

func (o *Tenant) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Tenant) SetOwnerId

func (o *Tenant) SetOwnerId(v string)

SetOwnerId gets a reference to the given string and assigns it to the OwnerId field.

func (*Tenant) SetSettings

func (o *Tenant) SetSettings(v map[string]string)

SetSettings gets a reference to the given map[string]string and assigns it to the Settings field.

func (*Tenant) SetType

func (o *Tenant) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*Tenant) SetTypeNil

func (o *Tenant) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (Tenant) ToMap

func (o Tenant) ToMap() (map[string]interface{}, error)

func (*Tenant) UnsetCreatedAt

func (o *Tenant) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*Tenant) UnsetCreatedBy

func (o *Tenant) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*Tenant) UnsetModifiedAt

func (o *Tenant) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*Tenant) UnsetModifiedBy

func (o *Tenant) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*Tenant) UnsetName

func (o *Tenant) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*Tenant) UnsetType

func (o *Tenant) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type TenantInvitationResponse

type TenantInvitationResponse struct {
	Id         *string                 `json:"id,omitempty"`
	TenantId   *string                 `json:"tenant_id,omitempty"`
	Email      NullableString          `json:"email,omitempty"`
	Status     *TenantInvitationStatus `json:"status,omitempty"`
	ExpiresAt  *time.Time              `json:"expires_at,omitempty"`
	CreatedBy  NullableString          `json:"created_by,omitempty"`
	CreatedAt  NullableTime            `json:"created_at,omitempty"`
	ModifiedBy NullableString          `json:"modified_by,omitempty"`
	ModifiedAt NullableTime            `json:"modified_at,omitempty"`
}

TenantInvitationResponse struct for TenantInvitationResponse

func NewTenantInvitationResponse

func NewTenantInvitationResponse() *TenantInvitationResponse

NewTenantInvitationResponse instantiates a new TenantInvitationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantInvitationResponseWithDefaults

func NewTenantInvitationResponseWithDefaults() *TenantInvitationResponse

NewTenantInvitationResponseWithDefaults instantiates a new TenantInvitationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantInvitationResponse) GetCreatedAt

func (o *TenantInvitationResponse) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantInvitationResponse) GetCreatedAtOk

func (o *TenantInvitationResponse) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantInvitationResponse) GetCreatedBy

func (o *TenantInvitationResponse) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantInvitationResponse) GetCreatedByOk

func (o *TenantInvitationResponse) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantInvitationResponse) GetEmail

func (o *TenantInvitationResponse) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantInvitationResponse) GetEmailOk

func (o *TenantInvitationResponse) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantInvitationResponse) GetExpiresAt

func (o *TenantInvitationResponse) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*TenantInvitationResponse) GetExpiresAtOk

func (o *TenantInvitationResponse) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantInvitationResponse) GetId

func (o *TenantInvitationResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TenantInvitationResponse) GetIdOk

func (o *TenantInvitationResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantInvitationResponse) GetModifiedAt

func (o *TenantInvitationResponse) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantInvitationResponse) GetModifiedAtOk

func (o *TenantInvitationResponse) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*TenantInvitationResponse) GetModifiedBy

func (o *TenantInvitationResponse) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantInvitationResponse) GetModifiedByOk

func (o *TenantInvitationResponse) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*TenantInvitationResponse) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*TenantInvitationResponse) GetStatusOk

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 (*TenantInvitationResponse) GetTenantId

func (o *TenantInvitationResponse) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*TenantInvitationResponse) GetTenantIdOk

func (o *TenantInvitationResponse) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantInvitationResponse) HasCreatedAt

func (o *TenantInvitationResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*TenantInvitationResponse) HasCreatedBy

func (o *TenantInvitationResponse) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*TenantInvitationResponse) HasEmail

func (o *TenantInvitationResponse) HasEmail() bool

HasEmail returns a boolean if a field is not nil.

func (*TenantInvitationResponse) HasExpiresAt

func (o *TenantInvitationResponse) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*TenantInvitationResponse) HasId

func (o *TenantInvitationResponse) HasId() bool

HasId returns a boolean if a field is not nil.

func (*TenantInvitationResponse) HasModifiedAt

func (o *TenantInvitationResponse) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*TenantInvitationResponse) HasModifiedBy

func (o *TenantInvitationResponse) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*TenantInvitationResponse) HasStatus

func (o *TenantInvitationResponse) HasStatus() bool

HasStatus returns a boolean if a field is not nil.

func (*TenantInvitationResponse) HasTenantId

func (o *TenantInvitationResponse) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (TenantInvitationResponse) MarshalJSON

func (o TenantInvitationResponse) MarshalJSON() ([]byte, error)

func (*TenantInvitationResponse) SetCreatedAt

func (o *TenantInvitationResponse) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given NullableTime and assigns it to the CreatedAt field.

func (*TenantInvitationResponse) SetCreatedAtNil

func (o *TenantInvitationResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*TenantInvitationResponse) SetCreatedBy

func (o *TenantInvitationResponse) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*TenantInvitationResponse) SetCreatedByNil

func (o *TenantInvitationResponse) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*TenantInvitationResponse) SetEmail

func (o *TenantInvitationResponse) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*TenantInvitationResponse) SetEmailNil

func (o *TenantInvitationResponse) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*TenantInvitationResponse) SetExpiresAt

func (o *TenantInvitationResponse) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*TenantInvitationResponse) SetId

func (o *TenantInvitationResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TenantInvitationResponse) SetModifiedAt

func (o *TenantInvitationResponse) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*TenantInvitationResponse) SetModifiedAtNil

func (o *TenantInvitationResponse) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*TenantInvitationResponse) SetModifiedBy

func (o *TenantInvitationResponse) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*TenantInvitationResponse) SetModifiedByNil

func (o *TenantInvitationResponse) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*TenantInvitationResponse) SetStatus

SetStatus gets a reference to the given TenantInvitationStatus and assigns it to the Status field.

func (*TenantInvitationResponse) SetTenantId

func (o *TenantInvitationResponse) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (TenantInvitationResponse) ToMap

func (o TenantInvitationResponse) ToMap() (map[string]interface{}, error)

func (*TenantInvitationResponse) UnsetCreatedAt

func (o *TenantInvitationResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*TenantInvitationResponse) UnsetCreatedBy

func (o *TenantInvitationResponse) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*TenantInvitationResponse) UnsetEmail

func (o *TenantInvitationResponse) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*TenantInvitationResponse) UnsetModifiedAt

func (o *TenantInvitationResponse) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*TenantInvitationResponse) UnsetModifiedBy

func (o *TenantInvitationResponse) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

type TenantInvitationResponsePaginatedList

type TenantInvitationResponsePaginatedList struct {
	Pagination *Pagination                `json:"pagination,omitempty"`
	Data       []TenantInvitationResponse `json:"data,omitempty"`
}

TenantInvitationResponsePaginatedList struct for TenantInvitationResponsePaginatedList

func NewTenantInvitationResponsePaginatedList

func NewTenantInvitationResponsePaginatedList() *TenantInvitationResponsePaginatedList

NewTenantInvitationResponsePaginatedList instantiates a new TenantInvitationResponsePaginatedList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantInvitationResponsePaginatedListWithDefaults

func NewTenantInvitationResponsePaginatedListWithDefaults() *TenantInvitationResponsePaginatedList

NewTenantInvitationResponsePaginatedListWithDefaults instantiates a new TenantInvitationResponsePaginatedList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantInvitationResponsePaginatedList) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantInvitationResponsePaginatedList) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantInvitationResponsePaginatedList) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*TenantInvitationResponsePaginatedList) GetPaginationOk

func (o *TenantInvitationResponsePaginatedList) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantInvitationResponsePaginatedList) HasData

HasData returns a boolean if a field is not nil.

func (*TenantInvitationResponsePaginatedList) HasPagination

func (o *TenantInvitationResponsePaginatedList) HasPagination() bool

HasPagination returns a boolean if a field is not nil.

func (TenantInvitationResponsePaginatedList) MarshalJSON

func (o TenantInvitationResponsePaginatedList) MarshalJSON() ([]byte, error)

func (*TenantInvitationResponsePaginatedList) SetData

SetData gets a reference to the given []TenantInvitationResponse and assigns it to the Data field.

func (*TenantInvitationResponsePaginatedList) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (TenantInvitationResponsePaginatedList) ToMap

func (o TenantInvitationResponsePaginatedList) ToMap() (map[string]interface{}, error)

type TenantInvitationStatus

type TenantInvitationStatus string

TenantInvitationStatus the model 'TenantInvitationStatus'

const (
	PENDING TenantInvitationStatus = "PENDING"
	EXPIRED TenantInvitationStatus = "EXPIRED"
)

List of TenantInvitationStatus

func NewTenantInvitationStatusFromValue

func NewTenantInvitationStatusFromValue(v string) (*TenantInvitationStatus, error)

NewTenantInvitationStatusFromValue returns a pointer to a valid TenantInvitationStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TenantInvitationStatus) IsValid

func (v TenantInvitationStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TenantInvitationStatus) Ptr

Ptr returns reference to TenantInvitationStatus value

func (*TenantInvitationStatus) UnmarshalJSON

func (v *TenantInvitationStatus) UnmarshalJSON(src []byte) error

type TenantMemberResponse

type TenantMemberResponse struct {
	Id          *string        `json:"id,omitempty"`
	TenantId    *string        `json:"tenant_id,omitempty"`
	User        *User          `json:"user,omitempty"`
	Role        NullableString `json:"role,omitempty"`
	CreatedBy   NullableString `json:"created_by,omitempty"`
	CreatedDate NullableTime   `json:"created_date,omitempty"`
	ModifiedBy  NullableString `json:"modified_by,omitempty"`
	ModifiedAt  NullableTime   `json:"modified_at,omitempty"`
}

TenantMemberResponse struct for TenantMemberResponse

func NewTenantMemberResponse

func NewTenantMemberResponse() *TenantMemberResponse

NewTenantMemberResponse instantiates a new TenantMemberResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantMemberResponseWithDefaults

func NewTenantMemberResponseWithDefaults() *TenantMemberResponse

NewTenantMemberResponseWithDefaults instantiates a new TenantMemberResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantMemberResponse) GetCreatedBy

func (o *TenantMemberResponse) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantMemberResponse) GetCreatedByOk

func (o *TenantMemberResponse) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantMemberResponse) GetCreatedDate

func (o *TenantMemberResponse) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantMemberResponse) GetCreatedDateOk

func (o *TenantMemberResponse) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate 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 (*TenantMemberResponse) GetId

func (o *TenantMemberResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TenantMemberResponse) GetIdOk

func (o *TenantMemberResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantMemberResponse) GetModifiedAt

func (o *TenantMemberResponse) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantMemberResponse) GetModifiedAtOk

func (o *TenantMemberResponse) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*TenantMemberResponse) GetModifiedBy

func (o *TenantMemberResponse) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantMemberResponse) GetModifiedByOk

func (o *TenantMemberResponse) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*TenantMemberResponse) GetRole

func (o *TenantMemberResponse) GetRole() string

GetRole returns the Role field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantMemberResponse) GetRoleOk

func (o *TenantMemberResponse) GetRoleOk() (*string, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantMemberResponse) GetTenantId

func (o *TenantMemberResponse) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*TenantMemberResponse) GetTenantIdOk

func (o *TenantMemberResponse) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantMemberResponse) GetUser

func (o *TenantMemberResponse) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*TenantMemberResponse) GetUserOk

func (o *TenantMemberResponse) GetUserOk() (*User, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantMemberResponse) HasCreatedBy

func (o *TenantMemberResponse) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*TenantMemberResponse) HasCreatedDate

func (o *TenantMemberResponse) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field is not nil.

func (*TenantMemberResponse) HasId

func (o *TenantMemberResponse) HasId() bool

HasId returns a boolean if a field is not nil.

func (*TenantMemberResponse) HasModifiedAt

func (o *TenantMemberResponse) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*TenantMemberResponse) HasModifiedBy

func (o *TenantMemberResponse) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*TenantMemberResponse) HasRole

func (o *TenantMemberResponse) HasRole() bool

HasRole returns a boolean if a field is not nil.

func (*TenantMemberResponse) HasTenantId

func (o *TenantMemberResponse) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (*TenantMemberResponse) HasUser

func (o *TenantMemberResponse) HasUser() bool

HasUser returns a boolean if a field is not nil.

func (TenantMemberResponse) MarshalJSON

func (o TenantMemberResponse) MarshalJSON() ([]byte, error)

func (*TenantMemberResponse) SetCreatedBy

func (o *TenantMemberResponse) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*TenantMemberResponse) SetCreatedByNil

func (o *TenantMemberResponse) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*TenantMemberResponse) SetCreatedDate

func (o *TenantMemberResponse) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given NullableTime and assigns it to the CreatedDate field.

func (*TenantMemberResponse) SetCreatedDateNil

func (o *TenantMemberResponse) SetCreatedDateNil()

SetCreatedDateNil sets the value for CreatedDate to be an explicit nil

func (*TenantMemberResponse) SetId

func (o *TenantMemberResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TenantMemberResponse) SetModifiedAt

func (o *TenantMemberResponse) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*TenantMemberResponse) SetModifiedAtNil

func (o *TenantMemberResponse) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*TenantMemberResponse) SetModifiedBy

func (o *TenantMemberResponse) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*TenantMemberResponse) SetModifiedByNil

func (o *TenantMemberResponse) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*TenantMemberResponse) SetRole

func (o *TenantMemberResponse) SetRole(v string)

SetRole gets a reference to the given NullableString and assigns it to the Role field.

func (*TenantMemberResponse) SetRoleNil

func (o *TenantMemberResponse) SetRoleNil()

SetRoleNil sets the value for Role to be an explicit nil

func (*TenantMemberResponse) SetTenantId

func (o *TenantMemberResponse) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*TenantMemberResponse) SetUser

func (o *TenantMemberResponse) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

func (TenantMemberResponse) ToMap

func (o TenantMemberResponse) ToMap() (map[string]interface{}, error)

func (*TenantMemberResponse) UnsetCreatedBy

func (o *TenantMemberResponse) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*TenantMemberResponse) UnsetCreatedDate

func (o *TenantMemberResponse) UnsetCreatedDate()

UnsetCreatedDate ensures that no value is present for CreatedDate, not even an explicit nil

func (*TenantMemberResponse) UnsetModifiedAt

func (o *TenantMemberResponse) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*TenantMemberResponse) UnsetModifiedBy

func (o *TenantMemberResponse) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*TenantMemberResponse) UnsetRole

func (o *TenantMemberResponse) UnsetRole()

UnsetRole ensures that no value is present for Role, not even an explicit nil

type TenantMemberResponsePaginatedList

type TenantMemberResponsePaginatedList struct {
	Pagination *Pagination            `json:"pagination,omitempty"`
	Data       []TenantMemberResponse `json:"data,omitempty"`
}

TenantMemberResponsePaginatedList struct for TenantMemberResponsePaginatedList

func NewTenantMemberResponsePaginatedList

func NewTenantMemberResponsePaginatedList() *TenantMemberResponsePaginatedList

NewTenantMemberResponsePaginatedList instantiates a new TenantMemberResponsePaginatedList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantMemberResponsePaginatedListWithDefaults

func NewTenantMemberResponsePaginatedListWithDefaults() *TenantMemberResponsePaginatedList

NewTenantMemberResponsePaginatedListWithDefaults instantiates a new TenantMemberResponsePaginatedList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantMemberResponsePaginatedList) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantMemberResponsePaginatedList) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantMemberResponsePaginatedList) GetPagination

func (o *TenantMemberResponsePaginatedList) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*TenantMemberResponsePaginatedList) GetPaginationOk

func (o *TenantMemberResponsePaginatedList) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantMemberResponsePaginatedList) HasData

HasData returns a boolean if a field is not nil.

func (*TenantMemberResponsePaginatedList) HasPagination

func (o *TenantMemberResponsePaginatedList) HasPagination() bool

HasPagination returns a boolean if a field is not nil.

func (TenantMemberResponsePaginatedList) MarshalJSON

func (o TenantMemberResponsePaginatedList) MarshalJSON() ([]byte, error)

func (*TenantMemberResponsePaginatedList) SetData

SetData gets a reference to the given []TenantMemberResponse and assigns it to the Data field.

func (*TenantMemberResponsePaginatedList) SetPagination

func (o *TenantMemberResponsePaginatedList) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (TenantMemberResponsePaginatedList) ToMap

func (o TenantMemberResponsePaginatedList) ToMap() (map[string]interface{}, error)

type TenantUsageReport

type TenantUsageReport struct {
	TokenReport *TokenReport `json:"token_report,omitempty"`
}

TenantUsageReport struct for TenantUsageReport

func NewTenantUsageReport

func NewTenantUsageReport() *TenantUsageReport

NewTenantUsageReport instantiates a new TenantUsageReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantUsageReportWithDefaults

func NewTenantUsageReportWithDefaults() *TenantUsageReport

NewTenantUsageReportWithDefaults instantiates a new TenantUsageReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantUsageReport) GetTokenReport

func (o *TenantUsageReport) GetTokenReport() TokenReport

GetTokenReport returns the TokenReport field value if set, zero value otherwise.

func (*TenantUsageReport) GetTokenReportOk

func (o *TenantUsageReport) GetTokenReportOk() (*TokenReport, bool)

GetTokenReportOk returns a tuple with the TokenReport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantUsageReport) HasTokenReport

func (o *TenantUsageReport) HasTokenReport() bool

HasTokenReport returns a boolean if a field is not nil.

func (TenantUsageReport) MarshalJSON

func (o TenantUsageReport) MarshalJSON() ([]byte, error)

func (*TenantUsageReport) SetTokenReport

func (o *TenantUsageReport) SetTokenReport(v TokenReport)

SetTokenReport gets a reference to the given TokenReport and assigns it to the TokenReport field.

func (TenantUsageReport) ToMap

func (o TenantUsageReport) ToMap() (map[string]interface{}, error)

type TenantsApiCreateInvitationRequest

type TenantsApiCreateInvitationRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiCreateInvitationRequest) CreateTenantInvitationRequest

func (r TenantsApiCreateInvitationRequest) CreateTenantInvitationRequest(createTenantInvitationRequest CreateTenantInvitationRequest) TenantsApiCreateInvitationRequest

func (TenantsApiCreateInvitationRequest) Execute

type TenantsApiDeleteInvitationRequest

type TenantsApiDeleteInvitationRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiDeleteInvitationRequest) Execute

type TenantsApiDeleteMemberRequest

type TenantsApiDeleteMemberRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiDeleteMemberRequest) Execute

type TenantsApiDeleteRequest

type TenantsApiDeleteRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiDeleteRequest) Execute

func (r TenantsApiDeleteRequest) Execute() (*http.Response, error)

type TenantsApiGetInvitationsRequest

type TenantsApiGetInvitationsRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiGetInvitationsRequest) Execute

func (TenantsApiGetInvitationsRequest) Page

func (TenantsApiGetInvitationsRequest) Size

func (TenantsApiGetInvitationsRequest) Start

func (TenantsApiGetInvitationsRequest) Status

type TenantsApiGetMembersRequest

type TenantsApiGetMembersRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiGetMembersRequest) Execute

func (TenantsApiGetMembersRequest) Page

func (TenantsApiGetMembersRequest) Size

func (TenantsApiGetMembersRequest) Start

func (TenantsApiGetMembersRequest) UserId

type TenantsApiGetRequest

type TenantsApiGetRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiGetRequest) Execute

func (r TenantsApiGetRequest) Execute() (*Tenant, *http.Response, error)

type TenantsApiGetTenantUsageReportRequest

type TenantsApiGetTenantUsageReportRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiGetTenantUsageReportRequest) Execute

type TenantsApiResendInvitationRequest

type TenantsApiResendInvitationRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiResendInvitationRequest) Execute

type TenantsApiService

type TenantsApiService service

TenantsApiService TenantsApi service

func (*TenantsApiService) CreateInvitation

CreateInvitation Method for CreateInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TenantsApiCreateInvitationRequest

func (*TenantsApiService) CreateInvitationExecute

Execute executes the request

@return TenantInvitationResponse

func (*TenantsApiService) Delete

Delete Method for Delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TenantsApiDeleteRequest

func (*TenantsApiService) DeleteExecute

Execute executes the request

func (*TenantsApiService) DeleteInvitation

func (a *TenantsApiService) DeleteInvitation(ctx context.Context, invitationId string) TenantsApiDeleteInvitationRequest

DeleteInvitation Method for DeleteInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param invitationId
@return TenantsApiDeleteInvitationRequest

func (*TenantsApiService) DeleteInvitationExecute

func (a *TenantsApiService) DeleteInvitationExecute(r TenantsApiDeleteInvitationRequest) (*http.Response, error)

Execute executes the request

func (*TenantsApiService) DeleteMember

func (a *TenantsApiService) DeleteMember(ctx context.Context, memberId string) TenantsApiDeleteMemberRequest

DeleteMember Method for DeleteMember

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberId
@return TenantsApiDeleteMemberRequest

func (*TenantsApiService) DeleteMemberExecute

func (a *TenantsApiService) DeleteMemberExecute(r TenantsApiDeleteMemberRequest) (*http.Response, error)

Execute executes the request

func (*TenantsApiService) Get

Get Method for Get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TenantsApiGetRequest

func (*TenantsApiService) GetExecute

Execute executes the request

@return Tenant

func (*TenantsApiService) GetInvitations

GetInvitations Method for GetInvitations

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TenantsApiGetInvitationsRequest

func (*TenantsApiService) GetInvitationsExecute

Execute executes the request

@return TenantInvitationResponsePaginatedList

func (*TenantsApiService) GetMembers

GetMembers Method for GetMembers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TenantsApiGetMembersRequest

func (*TenantsApiService) GetMembersExecute

Execute executes the request

@return TenantMemberResponsePaginatedList

func (*TenantsApiService) GetTenantUsageReport

GetTenantUsageReport Method for GetTenantUsageReport

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TenantsApiGetTenantUsageReportRequest

func (*TenantsApiService) GetTenantUsageReportExecute

Execute executes the request

@return TenantUsageReport

func (*TenantsApiService) ResendInvitation

func (a *TenantsApiService) ResendInvitation(ctx context.Context, invitationId string) TenantsApiResendInvitationRequest

ResendInvitation Method for ResendInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param invitationId
@return TenantsApiResendInvitationRequest

func (*TenantsApiService) ResendInvitationExecute

Execute executes the request

@return TenantInvitationResponse

func (*TenantsApiService) Update

Update Method for Update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TenantsApiUpdateRequest

func (*TenantsApiService) UpdateExecute

Execute executes the request

@return Tenant

type TenantsApiUpdateRequest

type TenantsApiUpdateRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiUpdateRequest) Execute

func (r TenantsApiUpdateRequest) Execute() (*Tenant, *http.Response, error)

func (TenantsApiUpdateRequest) UpdateTenantRequest

func (r TenantsApiUpdateRequest) UpdateTenantRequest(updateTenantRequest UpdateTenantRequest) TenantsApiUpdateRequest

type ThreeDSAcsRenderingType

type ThreeDSAcsRenderingType struct {
	AcsInterface  NullableString `json:"acsInterface,omitempty"`
	AcsUiTemplate NullableString `json:"acsUiTemplate,omitempty"`
}

ThreeDSAcsRenderingType struct for ThreeDSAcsRenderingType

func NewThreeDSAcsRenderingType

func NewThreeDSAcsRenderingType() *ThreeDSAcsRenderingType

NewThreeDSAcsRenderingType instantiates a new ThreeDSAcsRenderingType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSAcsRenderingTypeWithDefaults

func NewThreeDSAcsRenderingTypeWithDefaults() *ThreeDSAcsRenderingType

NewThreeDSAcsRenderingTypeWithDefaults instantiates a new ThreeDSAcsRenderingType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSAcsRenderingType) GetAcsInterface

func (o *ThreeDSAcsRenderingType) GetAcsInterface() string

GetAcsInterface returns the AcsInterface field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAcsRenderingType) GetAcsInterfaceOk

func (o *ThreeDSAcsRenderingType) GetAcsInterfaceOk() (*string, bool)

GetAcsInterfaceOk returns a tuple with the AcsInterface 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 (*ThreeDSAcsRenderingType) GetAcsUiTemplate

func (o *ThreeDSAcsRenderingType) GetAcsUiTemplate() string

GetAcsUiTemplate returns the AcsUiTemplate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAcsRenderingType) GetAcsUiTemplateOk

func (o *ThreeDSAcsRenderingType) GetAcsUiTemplateOk() (*string, bool)

GetAcsUiTemplateOk returns a tuple with the AcsUiTemplate 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 (*ThreeDSAcsRenderingType) HasAcsInterface

func (o *ThreeDSAcsRenderingType) HasAcsInterface() bool

HasAcsInterface returns a boolean if a field is not nil.

func (*ThreeDSAcsRenderingType) HasAcsUiTemplate

func (o *ThreeDSAcsRenderingType) HasAcsUiTemplate() bool

HasAcsUiTemplate returns a boolean if a field is not nil.

func (ThreeDSAcsRenderingType) MarshalJSON

func (o ThreeDSAcsRenderingType) MarshalJSON() ([]byte, error)

func (*ThreeDSAcsRenderingType) SetAcsInterface

func (o *ThreeDSAcsRenderingType) SetAcsInterface(v string)

SetAcsInterface gets a reference to the given NullableString and assigns it to the AcsInterface field.

func (*ThreeDSAcsRenderingType) SetAcsInterfaceNil

func (o *ThreeDSAcsRenderingType) SetAcsInterfaceNil()

SetAcsInterfaceNil sets the value for AcsInterface to be an explicit nil

func (*ThreeDSAcsRenderingType) SetAcsUiTemplate

func (o *ThreeDSAcsRenderingType) SetAcsUiTemplate(v string)

SetAcsUiTemplate gets a reference to the given NullableString and assigns it to the AcsUiTemplate field.

func (*ThreeDSAcsRenderingType) SetAcsUiTemplateNil

func (o *ThreeDSAcsRenderingType) SetAcsUiTemplateNil()

SetAcsUiTemplateNil sets the value for AcsUiTemplate to be an explicit nil

func (ThreeDSAcsRenderingType) ToMap

func (o ThreeDSAcsRenderingType) ToMap() (map[string]interface{}, error)

func (*ThreeDSAcsRenderingType) UnsetAcsInterface

func (o *ThreeDSAcsRenderingType) UnsetAcsInterface()

UnsetAcsInterface ensures that no value is present for AcsInterface, not even an explicit nil

func (*ThreeDSAcsRenderingType) UnsetAcsUiTemplate

func (o *ThreeDSAcsRenderingType) UnsetAcsUiTemplate()

UnsetAcsUiTemplate ensures that no value is present for AcsUiTemplate, not even an explicit nil

type ThreeDSAddress

type ThreeDSAddress struct {
	Line1       NullableString `json:"line1,omitempty"`
	Line2       NullableString `json:"line2,omitempty"`
	Line3       NullableString `json:"line3,omitempty"`
	PostalCode  NullableString `json:"postal_code,omitempty"`
	City        NullableString `json:"city,omitempty"`
	StateCode   NullableString `json:"state_code,omitempty"`
	CountryCode NullableString `json:"country_code,omitempty"`
}

ThreeDSAddress struct for ThreeDSAddress

func NewThreeDSAddress

func NewThreeDSAddress() *ThreeDSAddress

NewThreeDSAddress instantiates a new ThreeDSAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSAddressWithDefaults

func NewThreeDSAddressWithDefaults() *ThreeDSAddress

NewThreeDSAddressWithDefaults instantiates a new ThreeDSAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSAddress) GetCity

func (o *ThreeDSAddress) GetCity() string

GetCity returns the City field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAddress) GetCityOk

func (o *ThreeDSAddress) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City 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 (*ThreeDSAddress) GetCountryCode

func (o *ThreeDSAddress) GetCountryCode() string

GetCountryCode returns the CountryCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAddress) GetCountryCodeOk

func (o *ThreeDSAddress) GetCountryCodeOk() (*string, bool)

GetCountryCodeOk returns a tuple with the CountryCode 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 (*ThreeDSAddress) GetLine1

func (o *ThreeDSAddress) GetLine1() string

GetLine1 returns the Line1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAddress) GetLine1Ok

func (o *ThreeDSAddress) GetLine1Ok() (*string, bool)

GetLine1Ok returns a tuple with the Line1 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 (*ThreeDSAddress) GetLine2

func (o *ThreeDSAddress) GetLine2() string

GetLine2 returns the Line2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAddress) GetLine2Ok

func (o *ThreeDSAddress) GetLine2Ok() (*string, bool)

GetLine2Ok returns a tuple with the Line2 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 (*ThreeDSAddress) GetLine3

func (o *ThreeDSAddress) GetLine3() string

GetLine3 returns the Line3 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAddress) GetLine3Ok

func (o *ThreeDSAddress) GetLine3Ok() (*string, bool)

GetLine3Ok returns a tuple with the Line3 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 (*ThreeDSAddress) GetPostalCode

func (o *ThreeDSAddress) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAddress) GetPostalCodeOk

func (o *ThreeDSAddress) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode 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 (*ThreeDSAddress) GetStateCode

func (o *ThreeDSAddress) GetStateCode() string

GetStateCode returns the StateCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAddress) GetStateCodeOk

func (o *ThreeDSAddress) GetStateCodeOk() (*string, bool)

GetStateCodeOk returns a tuple with the StateCode 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 (*ThreeDSAddress) HasCity

func (o *ThreeDSAddress) HasCity() bool

HasCity returns a boolean if a field is not nil.

func (*ThreeDSAddress) HasCountryCode

func (o *ThreeDSAddress) HasCountryCode() bool

HasCountryCode returns a boolean if a field is not nil.

func (*ThreeDSAddress) HasLine1

func (o *ThreeDSAddress) HasLine1() bool

HasLine1 returns a boolean if a field is not nil.

func (*ThreeDSAddress) HasLine2

func (o *ThreeDSAddress) HasLine2() bool

HasLine2 returns a boolean if a field is not nil.

func (*ThreeDSAddress) HasLine3

func (o *ThreeDSAddress) HasLine3() bool

HasLine3 returns a boolean if a field is not nil.

func (*ThreeDSAddress) HasPostalCode

func (o *ThreeDSAddress) HasPostalCode() bool

HasPostalCode returns a boolean if a field is not nil.

func (*ThreeDSAddress) HasStateCode

func (o *ThreeDSAddress) HasStateCode() bool

HasStateCode returns a boolean if a field is not nil.

func (ThreeDSAddress) MarshalJSON

func (o ThreeDSAddress) MarshalJSON() ([]byte, error)

func (*ThreeDSAddress) SetCity

func (o *ThreeDSAddress) SetCity(v string)

SetCity gets a reference to the given NullableString and assigns it to the City field.

func (*ThreeDSAddress) SetCityNil

func (o *ThreeDSAddress) SetCityNil()

SetCityNil sets the value for City to be an explicit nil

func (*ThreeDSAddress) SetCountryCode

func (o *ThreeDSAddress) SetCountryCode(v string)

SetCountryCode gets a reference to the given NullableString and assigns it to the CountryCode field.

func (*ThreeDSAddress) SetCountryCodeNil

func (o *ThreeDSAddress) SetCountryCodeNil()

SetCountryCodeNil sets the value for CountryCode to be an explicit nil

func (*ThreeDSAddress) SetLine1

func (o *ThreeDSAddress) SetLine1(v string)

SetLine1 gets a reference to the given NullableString and assigns it to the Line1 field.

func (*ThreeDSAddress) SetLine1Nil

func (o *ThreeDSAddress) SetLine1Nil()

SetLine1Nil sets the value for Line1 to be an explicit nil

func (*ThreeDSAddress) SetLine2

func (o *ThreeDSAddress) SetLine2(v string)

SetLine2 gets a reference to the given NullableString and assigns it to the Line2 field.

func (*ThreeDSAddress) SetLine2Nil

func (o *ThreeDSAddress) SetLine2Nil()

SetLine2Nil sets the value for Line2 to be an explicit nil

func (*ThreeDSAddress) SetLine3

func (o *ThreeDSAddress) SetLine3(v string)

SetLine3 gets a reference to the given NullableString and assigns it to the Line3 field.

func (*ThreeDSAddress) SetLine3Nil

func (o *ThreeDSAddress) SetLine3Nil()

SetLine3Nil sets the value for Line3 to be an explicit nil

func (*ThreeDSAddress) SetPostalCode

func (o *ThreeDSAddress) SetPostalCode(v string)

SetPostalCode gets a reference to the given NullableString and assigns it to the PostalCode field.

func (*ThreeDSAddress) SetPostalCodeNil

func (o *ThreeDSAddress) SetPostalCodeNil()

SetPostalCodeNil sets the value for PostalCode to be an explicit nil

func (*ThreeDSAddress) SetStateCode

func (o *ThreeDSAddress) SetStateCode(v string)

SetStateCode gets a reference to the given NullableString and assigns it to the StateCode field.

func (*ThreeDSAddress) SetStateCodeNil

func (o *ThreeDSAddress) SetStateCodeNil()

SetStateCodeNil sets the value for StateCode to be an explicit nil

func (ThreeDSAddress) ToMap

func (o ThreeDSAddress) ToMap() (map[string]interface{}, error)

func (*ThreeDSAddress) UnsetCity

func (o *ThreeDSAddress) UnsetCity()

UnsetCity ensures that no value is present for City, not even an explicit nil

func (*ThreeDSAddress) UnsetCountryCode

func (o *ThreeDSAddress) UnsetCountryCode()

UnsetCountryCode ensures that no value is present for CountryCode, not even an explicit nil

func (*ThreeDSAddress) UnsetLine1

func (o *ThreeDSAddress) UnsetLine1()

UnsetLine1 ensures that no value is present for Line1, not even an explicit nil

func (*ThreeDSAddress) UnsetLine2

func (o *ThreeDSAddress) UnsetLine2()

UnsetLine2 ensures that no value is present for Line2, not even an explicit nil

func (*ThreeDSAddress) UnsetLine3

func (o *ThreeDSAddress) UnsetLine3()

UnsetLine3 ensures that no value is present for Line3, not even an explicit nil

func (*ThreeDSAddress) UnsetPostalCode

func (o *ThreeDSAddress) UnsetPostalCode()

UnsetPostalCode ensures that no value is present for PostalCode, not even an explicit nil

func (*ThreeDSAddress) UnsetStateCode

func (o *ThreeDSAddress) UnsetStateCode()

UnsetStateCode ensures that no value is present for StateCode, not even an explicit nil

type ThreeDSApiService

type ThreeDSApiService service

ThreeDSApiService ThreeDSApi service

func (*ThreeDSApiService) ThreeDSAuthenticateSession

func (a *ThreeDSApiService) ThreeDSAuthenticateSession(ctx context.Context, sessionId string) ThreeDSApiThreeDSAuthenticateSessionRequest

ThreeDSAuthenticateSession Method for ThreeDSAuthenticateSession

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId
@return ThreeDSApiThreeDSAuthenticateSessionRequest

func (*ThreeDSApiService) ThreeDSAuthenticateSessionExecute

Execute executes the request

@return ThreeDSAuthentication

func (*ThreeDSApiService) ThreeDSGetChallengeResult

func (a *ThreeDSApiService) ThreeDSGetChallengeResult(ctx context.Context, sessionId string) ThreeDSApiThreeDSGetChallengeResultRequest

ThreeDSGetChallengeResult Method for ThreeDSGetChallengeResult

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId
@return ThreeDSApiThreeDSGetChallengeResultRequest

func (*ThreeDSApiService) ThreeDSGetChallengeResultExecute

Execute executes the request

@return ThreeDSAuthentication

func (*ThreeDSApiService) ThreeDSGetSessionById

ThreeDSGetSessionById Method for ThreeDSGetSessionById

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ThreeDSApiThreeDSGetSessionByIdRequest

func (*ThreeDSApiService) ThreeDSGetSessionByIdExecute

Execute executes the request

@return ThreeDSSession

type ThreeDSApiThreeDSAuthenticateSessionRequest

type ThreeDSApiThreeDSAuthenticateSessionRequest struct {
	ApiService *ThreeDSApiService
	// contains filtered or unexported fields
}

func (ThreeDSApiThreeDSAuthenticateSessionRequest) AuthenticateThreeDSSessionRequest

func (r ThreeDSApiThreeDSAuthenticateSessionRequest) AuthenticateThreeDSSessionRequest(authenticateThreeDSSessionRequest AuthenticateThreeDSSessionRequest) ThreeDSApiThreeDSAuthenticateSessionRequest

func (ThreeDSApiThreeDSAuthenticateSessionRequest) Execute

type ThreeDSApiThreeDSGetChallengeResultRequest

type ThreeDSApiThreeDSGetChallengeResultRequest struct {
	ApiService *ThreeDSApiService
	// contains filtered or unexported fields
}

func (ThreeDSApiThreeDSGetChallengeResultRequest) Execute

type ThreeDSApiThreeDSGetSessionByIdRequest

type ThreeDSApiThreeDSGetSessionByIdRequest struct {
	ApiService *ThreeDSApiService
	// contains filtered or unexported fields
}

func (ThreeDSApiThreeDSGetSessionByIdRequest) Execute

type ThreeDSAuthentication

type ThreeDSAuthentication struct {
	ThreedsVersion              NullableString            `json:"threeds_version,omitempty"`
	AcsTransactionId            NullableString            `json:"acs_transaction_id,omitempty"`
	DsTransactionId             NullableString            `json:"ds_transaction_id,omitempty"`
	SdkTransactionId            NullableString            `json:"sdk_transaction_id,omitempty"`
	AcsReferenceNumber          NullableString            `json:"acs_reference_number,omitempty"`
	DsReferenceNumber           NullableString            `json:"ds_reference_number,omitempty"`
	AuthenticationValue         NullableString            `json:"authentication_value,omitempty"`
	AuthenticationStatus        NullableString            `json:"authentication_status,omitempty"`
	AuthenticationStatusReason  NullableString            `json:"authentication_status_reason,omitempty"`
	Eci                         NullableString            `json:"eci,omitempty"`
	AcsChallengeMandated        NullableString            `json:"acs_challenge_mandated,omitempty"`
	AcsDecoupledAuthentication  NullableString            `json:"acs_decoupled_authentication,omitempty"`
	AuthenticationChallengeType NullableString            `json:"authentication_challenge_type,omitempty"`
	AcsRenderingType            *ThreeDSAcsRenderingType  `json:"acs_rendering_type,omitempty"`
	AcsSignedContent            NullableString            `json:"acs_signed_content,omitempty"`
	AcsChallengeUrl             NullableString            `json:"acs_challenge_url,omitempty"`
	ChallengeAttempts           NullableString            `json:"challenge_attempts,omitempty"`
	ChallengeCancelReason       NullableString            `json:"challenge_cancel_reason,omitempty"`
	CardholderInfo              NullableString            `json:"cardholder_info,omitempty"`
	WhitelistStatus             NullableString            `json:"whitelist_status,omitempty"`
	WhitelistStatusSource       NullableString            `json:"whitelist_status_source,omitempty"`
	MessageExtensions           []ThreeDSMessageExtension `json:"message_extensions,omitempty"`
}

ThreeDSAuthentication struct for ThreeDSAuthentication

func NewThreeDSAuthentication

func NewThreeDSAuthentication() *ThreeDSAuthentication

NewThreeDSAuthentication instantiates a new ThreeDSAuthentication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSAuthenticationWithDefaults

func NewThreeDSAuthenticationWithDefaults() *ThreeDSAuthentication

NewThreeDSAuthenticationWithDefaults instantiates a new ThreeDSAuthentication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSAuthentication) GetAcsChallengeMandated

func (o *ThreeDSAuthentication) GetAcsChallengeMandated() string

GetAcsChallengeMandated returns the AcsChallengeMandated field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAcsChallengeMandatedOk

func (o *ThreeDSAuthentication) GetAcsChallengeMandatedOk() (*string, bool)

GetAcsChallengeMandatedOk returns a tuple with the AcsChallengeMandated 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 (*ThreeDSAuthentication) GetAcsChallengeUrl

func (o *ThreeDSAuthentication) GetAcsChallengeUrl() string

GetAcsChallengeUrl returns the AcsChallengeUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAcsChallengeUrlOk

func (o *ThreeDSAuthentication) GetAcsChallengeUrlOk() (*string, bool)

GetAcsChallengeUrlOk returns a tuple with the AcsChallengeUrl 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 (*ThreeDSAuthentication) GetAcsDecoupledAuthentication

func (o *ThreeDSAuthentication) GetAcsDecoupledAuthentication() string

GetAcsDecoupledAuthentication returns the AcsDecoupledAuthentication field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAcsDecoupledAuthenticationOk

func (o *ThreeDSAuthentication) GetAcsDecoupledAuthenticationOk() (*string, bool)

GetAcsDecoupledAuthenticationOk returns a tuple with the AcsDecoupledAuthentication 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 (*ThreeDSAuthentication) GetAcsReferenceNumber

func (o *ThreeDSAuthentication) GetAcsReferenceNumber() string

GetAcsReferenceNumber returns the AcsReferenceNumber field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAcsReferenceNumberOk

func (o *ThreeDSAuthentication) GetAcsReferenceNumberOk() (*string, bool)

GetAcsReferenceNumberOk returns a tuple with the AcsReferenceNumber 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 (*ThreeDSAuthentication) GetAcsRenderingType

func (o *ThreeDSAuthentication) GetAcsRenderingType() ThreeDSAcsRenderingType

GetAcsRenderingType returns the AcsRenderingType field value if set, zero value otherwise.

func (*ThreeDSAuthentication) GetAcsRenderingTypeOk

func (o *ThreeDSAuthentication) GetAcsRenderingTypeOk() (*ThreeDSAcsRenderingType, bool)

GetAcsRenderingTypeOk returns a tuple with the AcsRenderingType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSAuthentication) GetAcsSignedContent

func (o *ThreeDSAuthentication) GetAcsSignedContent() string

GetAcsSignedContent returns the AcsSignedContent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAcsSignedContentOk

func (o *ThreeDSAuthentication) GetAcsSignedContentOk() (*string, bool)

GetAcsSignedContentOk returns a tuple with the AcsSignedContent 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 (*ThreeDSAuthentication) GetAcsTransactionId

func (o *ThreeDSAuthentication) GetAcsTransactionId() string

GetAcsTransactionId returns the AcsTransactionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAcsTransactionIdOk

func (o *ThreeDSAuthentication) GetAcsTransactionIdOk() (*string, bool)

GetAcsTransactionIdOk returns a tuple with the AcsTransactionId 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 (*ThreeDSAuthentication) GetAuthenticationChallengeType

func (o *ThreeDSAuthentication) GetAuthenticationChallengeType() string

GetAuthenticationChallengeType returns the AuthenticationChallengeType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAuthenticationChallengeTypeOk

func (o *ThreeDSAuthentication) GetAuthenticationChallengeTypeOk() (*string, bool)

GetAuthenticationChallengeTypeOk returns a tuple with the AuthenticationChallengeType 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 (*ThreeDSAuthentication) GetAuthenticationStatus

func (o *ThreeDSAuthentication) GetAuthenticationStatus() string

GetAuthenticationStatus returns the AuthenticationStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAuthenticationStatusOk

func (o *ThreeDSAuthentication) GetAuthenticationStatusOk() (*string, bool)

GetAuthenticationStatusOk returns a tuple with the AuthenticationStatus 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 (*ThreeDSAuthentication) GetAuthenticationStatusReason

func (o *ThreeDSAuthentication) GetAuthenticationStatusReason() string

GetAuthenticationStatusReason returns the AuthenticationStatusReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAuthenticationStatusReasonOk

func (o *ThreeDSAuthentication) GetAuthenticationStatusReasonOk() (*string, bool)

GetAuthenticationStatusReasonOk returns a tuple with the AuthenticationStatusReason 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 (*ThreeDSAuthentication) GetAuthenticationValue

func (o *ThreeDSAuthentication) GetAuthenticationValue() string

GetAuthenticationValue returns the AuthenticationValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetAuthenticationValueOk

func (o *ThreeDSAuthentication) GetAuthenticationValueOk() (*string, bool)

GetAuthenticationValueOk returns a tuple with the AuthenticationValue 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 (*ThreeDSAuthentication) GetCardholderInfo

func (o *ThreeDSAuthentication) GetCardholderInfo() string

GetCardholderInfo returns the CardholderInfo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetCardholderInfoOk

func (o *ThreeDSAuthentication) GetCardholderInfoOk() (*string, bool)

GetCardholderInfoOk returns a tuple with the CardholderInfo 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 (*ThreeDSAuthentication) GetChallengeAttempts

func (o *ThreeDSAuthentication) GetChallengeAttempts() string

GetChallengeAttempts returns the ChallengeAttempts field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetChallengeAttemptsOk

func (o *ThreeDSAuthentication) GetChallengeAttemptsOk() (*string, bool)

GetChallengeAttemptsOk returns a tuple with the ChallengeAttempts 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 (*ThreeDSAuthentication) GetChallengeCancelReason

func (o *ThreeDSAuthentication) GetChallengeCancelReason() string

GetChallengeCancelReason returns the ChallengeCancelReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetChallengeCancelReasonOk

func (o *ThreeDSAuthentication) GetChallengeCancelReasonOk() (*string, bool)

GetChallengeCancelReasonOk returns a tuple with the ChallengeCancelReason 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 (*ThreeDSAuthentication) GetDsReferenceNumber

func (o *ThreeDSAuthentication) GetDsReferenceNumber() string

GetDsReferenceNumber returns the DsReferenceNumber field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetDsReferenceNumberOk

func (o *ThreeDSAuthentication) GetDsReferenceNumberOk() (*string, bool)

GetDsReferenceNumberOk returns a tuple with the DsReferenceNumber 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 (*ThreeDSAuthentication) GetDsTransactionId

func (o *ThreeDSAuthentication) GetDsTransactionId() string

GetDsTransactionId returns the DsTransactionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetDsTransactionIdOk

func (o *ThreeDSAuthentication) GetDsTransactionIdOk() (*string, bool)

GetDsTransactionIdOk returns a tuple with the DsTransactionId 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 (*ThreeDSAuthentication) GetEci

func (o *ThreeDSAuthentication) GetEci() string

GetEci returns the Eci field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetEciOk

func (o *ThreeDSAuthentication) GetEciOk() (*string, bool)

GetEciOk returns a tuple with the Eci 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 (*ThreeDSAuthentication) GetMessageExtensions

func (o *ThreeDSAuthentication) GetMessageExtensions() []ThreeDSMessageExtension

GetMessageExtensions returns the MessageExtensions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetMessageExtensionsOk

func (o *ThreeDSAuthentication) GetMessageExtensionsOk() ([]ThreeDSMessageExtension, bool)

GetMessageExtensionsOk returns a tuple with the MessageExtensions 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 (*ThreeDSAuthentication) GetSdkTransactionId

func (o *ThreeDSAuthentication) GetSdkTransactionId() string

GetSdkTransactionId returns the SdkTransactionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetSdkTransactionIdOk

func (o *ThreeDSAuthentication) GetSdkTransactionIdOk() (*string, bool)

GetSdkTransactionIdOk returns a tuple with the SdkTransactionId 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 (*ThreeDSAuthentication) GetThreedsVersion

func (o *ThreeDSAuthentication) GetThreedsVersion() string

GetThreedsVersion returns the ThreedsVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetThreedsVersionOk

func (o *ThreeDSAuthentication) GetThreedsVersionOk() (*string, bool)

GetThreedsVersionOk returns a tuple with the ThreedsVersion 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 (*ThreeDSAuthentication) GetWhitelistStatus

func (o *ThreeDSAuthentication) GetWhitelistStatus() string

GetWhitelistStatus returns the WhitelistStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetWhitelistStatusOk

func (o *ThreeDSAuthentication) GetWhitelistStatusOk() (*string, bool)

GetWhitelistStatusOk returns a tuple with the WhitelistStatus 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 (*ThreeDSAuthentication) GetWhitelistStatusSource

func (o *ThreeDSAuthentication) GetWhitelistStatusSource() string

GetWhitelistStatusSource returns the WhitelistStatusSource field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSAuthentication) GetWhitelistStatusSourceOk

func (o *ThreeDSAuthentication) GetWhitelistStatusSourceOk() (*string, bool)

GetWhitelistStatusSourceOk returns a tuple with the WhitelistStatusSource 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 (*ThreeDSAuthentication) HasAcsChallengeMandated

func (o *ThreeDSAuthentication) HasAcsChallengeMandated() bool

HasAcsChallengeMandated returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAcsChallengeUrl

func (o *ThreeDSAuthentication) HasAcsChallengeUrl() bool

HasAcsChallengeUrl returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAcsDecoupledAuthentication

func (o *ThreeDSAuthentication) HasAcsDecoupledAuthentication() bool

HasAcsDecoupledAuthentication returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAcsReferenceNumber

func (o *ThreeDSAuthentication) HasAcsReferenceNumber() bool

HasAcsReferenceNumber returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAcsRenderingType

func (o *ThreeDSAuthentication) HasAcsRenderingType() bool

HasAcsRenderingType returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAcsSignedContent

func (o *ThreeDSAuthentication) HasAcsSignedContent() bool

HasAcsSignedContent returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAcsTransactionId

func (o *ThreeDSAuthentication) HasAcsTransactionId() bool

HasAcsTransactionId returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAuthenticationChallengeType

func (o *ThreeDSAuthentication) HasAuthenticationChallengeType() bool

HasAuthenticationChallengeType returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAuthenticationStatus

func (o *ThreeDSAuthentication) HasAuthenticationStatus() bool

HasAuthenticationStatus returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAuthenticationStatusReason

func (o *ThreeDSAuthentication) HasAuthenticationStatusReason() bool

HasAuthenticationStatusReason returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasAuthenticationValue

func (o *ThreeDSAuthentication) HasAuthenticationValue() bool

HasAuthenticationValue returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasCardholderInfo

func (o *ThreeDSAuthentication) HasCardholderInfo() bool

HasCardholderInfo returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasChallengeAttempts

func (o *ThreeDSAuthentication) HasChallengeAttempts() bool

HasChallengeAttempts returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasChallengeCancelReason

func (o *ThreeDSAuthentication) HasChallengeCancelReason() bool

HasChallengeCancelReason returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasDsReferenceNumber

func (o *ThreeDSAuthentication) HasDsReferenceNumber() bool

HasDsReferenceNumber returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasDsTransactionId

func (o *ThreeDSAuthentication) HasDsTransactionId() bool

HasDsTransactionId returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasEci

func (o *ThreeDSAuthentication) HasEci() bool

HasEci returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasMessageExtensions

func (o *ThreeDSAuthentication) HasMessageExtensions() bool

HasMessageExtensions returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasSdkTransactionId

func (o *ThreeDSAuthentication) HasSdkTransactionId() bool

HasSdkTransactionId returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasThreedsVersion

func (o *ThreeDSAuthentication) HasThreedsVersion() bool

HasThreedsVersion returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasWhitelistStatus

func (o *ThreeDSAuthentication) HasWhitelistStatus() bool

HasWhitelistStatus returns a boolean if a field is not nil.

func (*ThreeDSAuthentication) HasWhitelistStatusSource

func (o *ThreeDSAuthentication) HasWhitelistStatusSource() bool

HasWhitelistStatusSource returns a boolean if a field is not nil.

func (ThreeDSAuthentication) MarshalJSON

func (o ThreeDSAuthentication) MarshalJSON() ([]byte, error)

func (*ThreeDSAuthentication) SetAcsChallengeMandated

func (o *ThreeDSAuthentication) SetAcsChallengeMandated(v string)

SetAcsChallengeMandated gets a reference to the given NullableString and assigns it to the AcsChallengeMandated field.

func (*ThreeDSAuthentication) SetAcsChallengeMandatedNil

func (o *ThreeDSAuthentication) SetAcsChallengeMandatedNil()

SetAcsChallengeMandatedNil sets the value for AcsChallengeMandated to be an explicit nil

func (*ThreeDSAuthentication) SetAcsChallengeUrl

func (o *ThreeDSAuthentication) SetAcsChallengeUrl(v string)

SetAcsChallengeUrl gets a reference to the given NullableString and assigns it to the AcsChallengeUrl field.

func (*ThreeDSAuthentication) SetAcsChallengeUrlNil

func (o *ThreeDSAuthentication) SetAcsChallengeUrlNil()

SetAcsChallengeUrlNil sets the value for AcsChallengeUrl to be an explicit nil

func (*ThreeDSAuthentication) SetAcsDecoupledAuthentication

func (o *ThreeDSAuthentication) SetAcsDecoupledAuthentication(v string)

SetAcsDecoupledAuthentication gets a reference to the given NullableString and assigns it to the AcsDecoupledAuthentication field.

func (*ThreeDSAuthentication) SetAcsDecoupledAuthenticationNil

func (o *ThreeDSAuthentication) SetAcsDecoupledAuthenticationNil()

SetAcsDecoupledAuthenticationNil sets the value for AcsDecoupledAuthentication to be an explicit nil

func (*ThreeDSAuthentication) SetAcsReferenceNumber

func (o *ThreeDSAuthentication) SetAcsReferenceNumber(v string)

SetAcsReferenceNumber gets a reference to the given NullableString and assigns it to the AcsReferenceNumber field.

func (*ThreeDSAuthentication) SetAcsReferenceNumberNil

func (o *ThreeDSAuthentication) SetAcsReferenceNumberNil()

SetAcsReferenceNumberNil sets the value for AcsReferenceNumber to be an explicit nil

func (*ThreeDSAuthentication) SetAcsRenderingType

func (o *ThreeDSAuthentication) SetAcsRenderingType(v ThreeDSAcsRenderingType)

SetAcsRenderingType gets a reference to the given ThreeDSAcsRenderingType and assigns it to the AcsRenderingType field.

func (*ThreeDSAuthentication) SetAcsSignedContent

func (o *ThreeDSAuthentication) SetAcsSignedContent(v string)

SetAcsSignedContent gets a reference to the given NullableString and assigns it to the AcsSignedContent field.

func (*ThreeDSAuthentication) SetAcsSignedContentNil

func (o *ThreeDSAuthentication) SetAcsSignedContentNil()

SetAcsSignedContentNil sets the value for AcsSignedContent to be an explicit nil

func (*ThreeDSAuthentication) SetAcsTransactionId

func (o *ThreeDSAuthentication) SetAcsTransactionId(v string)

SetAcsTransactionId gets a reference to the given NullableString and assigns it to the AcsTransactionId field.

func (*ThreeDSAuthentication) SetAcsTransactionIdNil

func (o *ThreeDSAuthentication) SetAcsTransactionIdNil()

SetAcsTransactionIdNil sets the value for AcsTransactionId to be an explicit nil

func (*ThreeDSAuthentication) SetAuthenticationChallengeType

func (o *ThreeDSAuthentication) SetAuthenticationChallengeType(v string)

SetAuthenticationChallengeType gets a reference to the given NullableString and assigns it to the AuthenticationChallengeType field.

func (*ThreeDSAuthentication) SetAuthenticationChallengeTypeNil

func (o *ThreeDSAuthentication) SetAuthenticationChallengeTypeNil()

SetAuthenticationChallengeTypeNil sets the value for AuthenticationChallengeType to be an explicit nil

func (*ThreeDSAuthentication) SetAuthenticationStatus

func (o *ThreeDSAuthentication) SetAuthenticationStatus(v string)

SetAuthenticationStatus gets a reference to the given NullableString and assigns it to the AuthenticationStatus field.

func (*ThreeDSAuthentication) SetAuthenticationStatusNil

func (o *ThreeDSAuthentication) SetAuthenticationStatusNil()

SetAuthenticationStatusNil sets the value for AuthenticationStatus to be an explicit nil

func (*ThreeDSAuthentication) SetAuthenticationStatusReason

func (o *ThreeDSAuthentication) SetAuthenticationStatusReason(v string)

SetAuthenticationStatusReason gets a reference to the given NullableString and assigns it to the AuthenticationStatusReason field.

func (*ThreeDSAuthentication) SetAuthenticationStatusReasonNil

func (o *ThreeDSAuthentication) SetAuthenticationStatusReasonNil()

SetAuthenticationStatusReasonNil sets the value for AuthenticationStatusReason to be an explicit nil

func (*ThreeDSAuthentication) SetAuthenticationValue

func (o *ThreeDSAuthentication) SetAuthenticationValue(v string)

SetAuthenticationValue gets a reference to the given NullableString and assigns it to the AuthenticationValue field.

func (*ThreeDSAuthentication) SetAuthenticationValueNil

func (o *ThreeDSAuthentication) SetAuthenticationValueNil()

SetAuthenticationValueNil sets the value for AuthenticationValue to be an explicit nil

func (*ThreeDSAuthentication) SetCardholderInfo

func (o *ThreeDSAuthentication) SetCardholderInfo(v string)

SetCardholderInfo gets a reference to the given NullableString and assigns it to the CardholderInfo field.

func (*ThreeDSAuthentication) SetCardholderInfoNil

func (o *ThreeDSAuthentication) SetCardholderInfoNil()

SetCardholderInfoNil sets the value for CardholderInfo to be an explicit nil

func (*ThreeDSAuthentication) SetChallengeAttempts

func (o *ThreeDSAuthentication) SetChallengeAttempts(v string)

SetChallengeAttempts gets a reference to the given NullableString and assigns it to the ChallengeAttempts field.

func (*ThreeDSAuthentication) SetChallengeAttemptsNil

func (o *ThreeDSAuthentication) SetChallengeAttemptsNil()

SetChallengeAttemptsNil sets the value for ChallengeAttempts to be an explicit nil

func (*ThreeDSAuthentication) SetChallengeCancelReason

func (o *ThreeDSAuthentication) SetChallengeCancelReason(v string)

SetChallengeCancelReason gets a reference to the given NullableString and assigns it to the ChallengeCancelReason field.

func (*ThreeDSAuthentication) SetChallengeCancelReasonNil

func (o *ThreeDSAuthentication) SetChallengeCancelReasonNil()

SetChallengeCancelReasonNil sets the value for ChallengeCancelReason to be an explicit nil

func (*ThreeDSAuthentication) SetDsReferenceNumber

func (o *ThreeDSAuthentication) SetDsReferenceNumber(v string)

SetDsReferenceNumber gets a reference to the given NullableString and assigns it to the DsReferenceNumber field.

func (*ThreeDSAuthentication) SetDsReferenceNumberNil

func (o *ThreeDSAuthentication) SetDsReferenceNumberNil()

SetDsReferenceNumberNil sets the value for DsReferenceNumber to be an explicit nil

func (*ThreeDSAuthentication) SetDsTransactionId

func (o *ThreeDSAuthentication) SetDsTransactionId(v string)

SetDsTransactionId gets a reference to the given NullableString and assigns it to the DsTransactionId field.

func (*ThreeDSAuthentication) SetDsTransactionIdNil

func (o *ThreeDSAuthentication) SetDsTransactionIdNil()

SetDsTransactionIdNil sets the value for DsTransactionId to be an explicit nil

func (*ThreeDSAuthentication) SetEci

func (o *ThreeDSAuthentication) SetEci(v string)

SetEci gets a reference to the given NullableString and assigns it to the Eci field.

func (*ThreeDSAuthentication) SetEciNil

func (o *ThreeDSAuthentication) SetEciNil()

SetEciNil sets the value for Eci to be an explicit nil

func (*ThreeDSAuthentication) SetMessageExtensions

func (o *ThreeDSAuthentication) SetMessageExtensions(v []ThreeDSMessageExtension)

SetMessageExtensions gets a reference to the given []ThreeDSMessageExtension and assigns it to the MessageExtensions field.

func (*ThreeDSAuthentication) SetSdkTransactionId

func (o *ThreeDSAuthentication) SetSdkTransactionId(v string)

SetSdkTransactionId gets a reference to the given NullableString and assigns it to the SdkTransactionId field.

func (*ThreeDSAuthentication) SetSdkTransactionIdNil

func (o *ThreeDSAuthentication) SetSdkTransactionIdNil()

SetSdkTransactionIdNil sets the value for SdkTransactionId to be an explicit nil

func (*ThreeDSAuthentication) SetThreedsVersion

func (o *ThreeDSAuthentication) SetThreedsVersion(v string)

SetThreedsVersion gets a reference to the given NullableString and assigns it to the ThreedsVersion field.

func (*ThreeDSAuthentication) SetThreedsVersionNil

func (o *ThreeDSAuthentication) SetThreedsVersionNil()

SetThreedsVersionNil sets the value for ThreedsVersion to be an explicit nil

func (*ThreeDSAuthentication) SetWhitelistStatus

func (o *ThreeDSAuthentication) SetWhitelistStatus(v string)

SetWhitelistStatus gets a reference to the given NullableString and assigns it to the WhitelistStatus field.

func (*ThreeDSAuthentication) SetWhitelistStatusNil

func (o *ThreeDSAuthentication) SetWhitelistStatusNil()

SetWhitelistStatusNil sets the value for WhitelistStatus to be an explicit nil

func (*ThreeDSAuthentication) SetWhitelistStatusSource

func (o *ThreeDSAuthentication) SetWhitelistStatusSource(v string)

SetWhitelistStatusSource gets a reference to the given NullableString and assigns it to the WhitelistStatusSource field.

func (*ThreeDSAuthentication) SetWhitelistStatusSourceNil

func (o *ThreeDSAuthentication) SetWhitelistStatusSourceNil()

SetWhitelistStatusSourceNil sets the value for WhitelistStatusSource to be an explicit nil

func (ThreeDSAuthentication) ToMap

func (o ThreeDSAuthentication) ToMap() (map[string]interface{}, error)

func (*ThreeDSAuthentication) UnsetAcsChallengeMandated

func (o *ThreeDSAuthentication) UnsetAcsChallengeMandated()

UnsetAcsChallengeMandated ensures that no value is present for AcsChallengeMandated, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAcsChallengeUrl

func (o *ThreeDSAuthentication) UnsetAcsChallengeUrl()

UnsetAcsChallengeUrl ensures that no value is present for AcsChallengeUrl, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAcsDecoupledAuthentication

func (o *ThreeDSAuthentication) UnsetAcsDecoupledAuthentication()

UnsetAcsDecoupledAuthentication ensures that no value is present for AcsDecoupledAuthentication, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAcsReferenceNumber

func (o *ThreeDSAuthentication) UnsetAcsReferenceNumber()

UnsetAcsReferenceNumber ensures that no value is present for AcsReferenceNumber, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAcsSignedContent

func (o *ThreeDSAuthentication) UnsetAcsSignedContent()

UnsetAcsSignedContent ensures that no value is present for AcsSignedContent, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAcsTransactionId

func (o *ThreeDSAuthentication) UnsetAcsTransactionId()

UnsetAcsTransactionId ensures that no value is present for AcsTransactionId, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAuthenticationChallengeType

func (o *ThreeDSAuthentication) UnsetAuthenticationChallengeType()

UnsetAuthenticationChallengeType ensures that no value is present for AuthenticationChallengeType, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAuthenticationStatus

func (o *ThreeDSAuthentication) UnsetAuthenticationStatus()

UnsetAuthenticationStatus ensures that no value is present for AuthenticationStatus, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAuthenticationStatusReason

func (o *ThreeDSAuthentication) UnsetAuthenticationStatusReason()

UnsetAuthenticationStatusReason ensures that no value is present for AuthenticationStatusReason, not even an explicit nil

func (*ThreeDSAuthentication) UnsetAuthenticationValue

func (o *ThreeDSAuthentication) UnsetAuthenticationValue()

UnsetAuthenticationValue ensures that no value is present for AuthenticationValue, not even an explicit nil

func (*ThreeDSAuthentication) UnsetCardholderInfo

func (o *ThreeDSAuthentication) UnsetCardholderInfo()

UnsetCardholderInfo ensures that no value is present for CardholderInfo, not even an explicit nil

func (*ThreeDSAuthentication) UnsetChallengeAttempts

func (o *ThreeDSAuthentication) UnsetChallengeAttempts()

UnsetChallengeAttempts ensures that no value is present for ChallengeAttempts, not even an explicit nil

func (*ThreeDSAuthentication) UnsetChallengeCancelReason

func (o *ThreeDSAuthentication) UnsetChallengeCancelReason()

UnsetChallengeCancelReason ensures that no value is present for ChallengeCancelReason, not even an explicit nil

func (*ThreeDSAuthentication) UnsetDsReferenceNumber

func (o *ThreeDSAuthentication) UnsetDsReferenceNumber()

UnsetDsReferenceNumber ensures that no value is present for DsReferenceNumber, not even an explicit nil

func (*ThreeDSAuthentication) UnsetDsTransactionId

func (o *ThreeDSAuthentication) UnsetDsTransactionId()

UnsetDsTransactionId ensures that no value is present for DsTransactionId, not even an explicit nil

func (*ThreeDSAuthentication) UnsetEci

func (o *ThreeDSAuthentication) UnsetEci()

UnsetEci ensures that no value is present for Eci, not even an explicit nil

func (*ThreeDSAuthentication) UnsetSdkTransactionId

func (o *ThreeDSAuthentication) UnsetSdkTransactionId()

UnsetSdkTransactionId ensures that no value is present for SdkTransactionId, not even an explicit nil

func (*ThreeDSAuthentication) UnsetThreedsVersion

func (o *ThreeDSAuthentication) UnsetThreedsVersion()

UnsetThreedsVersion ensures that no value is present for ThreedsVersion, not even an explicit nil

func (*ThreeDSAuthentication) UnsetWhitelistStatus

func (o *ThreeDSAuthentication) UnsetWhitelistStatus()

UnsetWhitelistStatus ensures that no value is present for WhitelistStatus, not even an explicit nil

func (*ThreeDSAuthentication) UnsetWhitelistStatusSource

func (o *ThreeDSAuthentication) UnsetWhitelistStatusSource()

UnsetWhitelistStatusSource ensures that no value is present for WhitelistStatusSource, not even an explicit nil

type ThreeDSCardholderAccountInfo

type ThreeDSCardholderAccountInfo struct {
	AccountAge                 NullableString `json:"account_age,omitempty"`
	AccountLastChanged         NullableString `json:"account_last_changed,omitempty"`
	AccountChangeDate          NullableString `json:"account_change_date,omitempty"`
	AccountCreatedDate         NullableString `json:"account_created_date,omitempty"`
	AccountPwdLastChanged      NullableString `json:"account_pwd_last_changed,omitempty"`
	AccountPwdChangeDate       NullableString `json:"account_pwd_change_date,omitempty"`
	PurchaseCountHalfYear      NullableString `json:"purchase_count_half_year,omitempty"`
	TransactionCountDay        NullableString `json:"transaction_count_day,omitempty"`
	PaymentAccountAge          NullableString `json:"payment_account_age,omitempty"`
	TransactionCountYear       NullableString `json:"transaction_count_year,omitempty"`
	PaymentAccountCreated      NullableString `json:"payment_account_created,omitempty"`
	ShippingAddressFirstUsed   NullableString `json:"shipping_address_first_used,omitempty"`
	ShippingAddressUsageDate   NullableString `json:"shipping_address_usage_date,omitempty"`
	ShippingAccountNameMatch   NullableBool   `json:"shipping_account_name_match,omitempty"`
	SuspiciousActivityObserved NullableBool   `json:"suspicious_activity_observed,omitempty"`
}

ThreeDSCardholderAccountInfo struct for ThreeDSCardholderAccountInfo

func NewThreeDSCardholderAccountInfo

func NewThreeDSCardholderAccountInfo() *ThreeDSCardholderAccountInfo

NewThreeDSCardholderAccountInfo instantiates a new ThreeDSCardholderAccountInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSCardholderAccountInfoWithDefaults

func NewThreeDSCardholderAccountInfoWithDefaults() *ThreeDSCardholderAccountInfo

NewThreeDSCardholderAccountInfoWithDefaults instantiates a new ThreeDSCardholderAccountInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSCardholderAccountInfo) GetAccountAge

func (o *ThreeDSCardholderAccountInfo) GetAccountAge() string

GetAccountAge returns the AccountAge field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetAccountAgeOk

func (o *ThreeDSCardholderAccountInfo) GetAccountAgeOk() (*string, bool)

GetAccountAgeOk returns a tuple with the AccountAge 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 (*ThreeDSCardholderAccountInfo) GetAccountChangeDate

func (o *ThreeDSCardholderAccountInfo) GetAccountChangeDate() string

GetAccountChangeDate returns the AccountChangeDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetAccountChangeDateOk

func (o *ThreeDSCardholderAccountInfo) GetAccountChangeDateOk() (*string, bool)

GetAccountChangeDateOk returns a tuple with the AccountChangeDate 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 (*ThreeDSCardholderAccountInfo) GetAccountCreatedDate

func (o *ThreeDSCardholderAccountInfo) GetAccountCreatedDate() string

GetAccountCreatedDate returns the AccountCreatedDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetAccountCreatedDateOk

func (o *ThreeDSCardholderAccountInfo) GetAccountCreatedDateOk() (*string, bool)

GetAccountCreatedDateOk returns a tuple with the AccountCreatedDate 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 (*ThreeDSCardholderAccountInfo) GetAccountLastChanged

func (o *ThreeDSCardholderAccountInfo) GetAccountLastChanged() string

GetAccountLastChanged returns the AccountLastChanged field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetAccountLastChangedOk

func (o *ThreeDSCardholderAccountInfo) GetAccountLastChangedOk() (*string, bool)

GetAccountLastChangedOk returns a tuple with the AccountLastChanged 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 (*ThreeDSCardholderAccountInfo) GetAccountPwdChangeDate

func (o *ThreeDSCardholderAccountInfo) GetAccountPwdChangeDate() string

GetAccountPwdChangeDate returns the AccountPwdChangeDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetAccountPwdChangeDateOk

func (o *ThreeDSCardholderAccountInfo) GetAccountPwdChangeDateOk() (*string, bool)

GetAccountPwdChangeDateOk returns a tuple with the AccountPwdChangeDate 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 (*ThreeDSCardholderAccountInfo) GetAccountPwdLastChanged

func (o *ThreeDSCardholderAccountInfo) GetAccountPwdLastChanged() string

GetAccountPwdLastChanged returns the AccountPwdLastChanged field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetAccountPwdLastChangedOk

func (o *ThreeDSCardholderAccountInfo) GetAccountPwdLastChangedOk() (*string, bool)

GetAccountPwdLastChangedOk returns a tuple with the AccountPwdLastChanged 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 (*ThreeDSCardholderAccountInfo) GetPaymentAccountAge

func (o *ThreeDSCardholderAccountInfo) GetPaymentAccountAge() string

GetPaymentAccountAge returns the PaymentAccountAge field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetPaymentAccountAgeOk

func (o *ThreeDSCardholderAccountInfo) GetPaymentAccountAgeOk() (*string, bool)

GetPaymentAccountAgeOk returns a tuple with the PaymentAccountAge 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 (*ThreeDSCardholderAccountInfo) GetPaymentAccountCreated

func (o *ThreeDSCardholderAccountInfo) GetPaymentAccountCreated() string

GetPaymentAccountCreated returns the PaymentAccountCreated field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetPaymentAccountCreatedOk

func (o *ThreeDSCardholderAccountInfo) GetPaymentAccountCreatedOk() (*string, bool)

GetPaymentAccountCreatedOk returns a tuple with the PaymentAccountCreated 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 (*ThreeDSCardholderAccountInfo) GetPurchaseCountHalfYear

func (o *ThreeDSCardholderAccountInfo) GetPurchaseCountHalfYear() string

GetPurchaseCountHalfYear returns the PurchaseCountHalfYear field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetPurchaseCountHalfYearOk

func (o *ThreeDSCardholderAccountInfo) GetPurchaseCountHalfYearOk() (*string, bool)

GetPurchaseCountHalfYearOk returns a tuple with the PurchaseCountHalfYear 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 (*ThreeDSCardholderAccountInfo) GetShippingAccountNameMatch

func (o *ThreeDSCardholderAccountInfo) GetShippingAccountNameMatch() bool

GetShippingAccountNameMatch returns the ShippingAccountNameMatch field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetShippingAccountNameMatchOk

func (o *ThreeDSCardholderAccountInfo) GetShippingAccountNameMatchOk() (*bool, bool)

GetShippingAccountNameMatchOk returns a tuple with the ShippingAccountNameMatch 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 (*ThreeDSCardholderAccountInfo) GetShippingAddressFirstUsed

func (o *ThreeDSCardholderAccountInfo) GetShippingAddressFirstUsed() string

GetShippingAddressFirstUsed returns the ShippingAddressFirstUsed field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetShippingAddressFirstUsedOk

func (o *ThreeDSCardholderAccountInfo) GetShippingAddressFirstUsedOk() (*string, bool)

GetShippingAddressFirstUsedOk returns a tuple with the ShippingAddressFirstUsed 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 (*ThreeDSCardholderAccountInfo) GetShippingAddressUsageDate

func (o *ThreeDSCardholderAccountInfo) GetShippingAddressUsageDate() string

GetShippingAddressUsageDate returns the ShippingAddressUsageDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetShippingAddressUsageDateOk

func (o *ThreeDSCardholderAccountInfo) GetShippingAddressUsageDateOk() (*string, bool)

GetShippingAddressUsageDateOk returns a tuple with the ShippingAddressUsageDate 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 (*ThreeDSCardholderAccountInfo) GetSuspiciousActivityObserved

func (o *ThreeDSCardholderAccountInfo) GetSuspiciousActivityObserved() bool

GetSuspiciousActivityObserved returns the SuspiciousActivityObserved field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetSuspiciousActivityObservedOk

func (o *ThreeDSCardholderAccountInfo) GetSuspiciousActivityObservedOk() (*bool, bool)

GetSuspiciousActivityObservedOk returns a tuple with the SuspiciousActivityObserved 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 (*ThreeDSCardholderAccountInfo) GetTransactionCountDay

func (o *ThreeDSCardholderAccountInfo) GetTransactionCountDay() string

GetTransactionCountDay returns the TransactionCountDay field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetTransactionCountDayOk

func (o *ThreeDSCardholderAccountInfo) GetTransactionCountDayOk() (*string, bool)

GetTransactionCountDayOk returns a tuple with the TransactionCountDay 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 (*ThreeDSCardholderAccountInfo) GetTransactionCountYear

func (o *ThreeDSCardholderAccountInfo) GetTransactionCountYear() string

GetTransactionCountYear returns the TransactionCountYear field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAccountInfo) GetTransactionCountYearOk

func (o *ThreeDSCardholderAccountInfo) GetTransactionCountYearOk() (*string, bool)

GetTransactionCountYearOk returns a tuple with the TransactionCountYear 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 (*ThreeDSCardholderAccountInfo) HasAccountAge

func (o *ThreeDSCardholderAccountInfo) HasAccountAge() bool

HasAccountAge returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasAccountChangeDate

func (o *ThreeDSCardholderAccountInfo) HasAccountChangeDate() bool

HasAccountChangeDate returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasAccountCreatedDate

func (o *ThreeDSCardholderAccountInfo) HasAccountCreatedDate() bool

HasAccountCreatedDate returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasAccountLastChanged

func (o *ThreeDSCardholderAccountInfo) HasAccountLastChanged() bool

HasAccountLastChanged returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasAccountPwdChangeDate

func (o *ThreeDSCardholderAccountInfo) HasAccountPwdChangeDate() bool

HasAccountPwdChangeDate returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasAccountPwdLastChanged

func (o *ThreeDSCardholderAccountInfo) HasAccountPwdLastChanged() bool

HasAccountPwdLastChanged returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasPaymentAccountAge

func (o *ThreeDSCardholderAccountInfo) HasPaymentAccountAge() bool

HasPaymentAccountAge returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasPaymentAccountCreated

func (o *ThreeDSCardholderAccountInfo) HasPaymentAccountCreated() bool

HasPaymentAccountCreated returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasPurchaseCountHalfYear

func (o *ThreeDSCardholderAccountInfo) HasPurchaseCountHalfYear() bool

HasPurchaseCountHalfYear returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasShippingAccountNameMatch

func (o *ThreeDSCardholderAccountInfo) HasShippingAccountNameMatch() bool

HasShippingAccountNameMatch returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasShippingAddressFirstUsed

func (o *ThreeDSCardholderAccountInfo) HasShippingAddressFirstUsed() bool

HasShippingAddressFirstUsed returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasShippingAddressUsageDate

func (o *ThreeDSCardholderAccountInfo) HasShippingAddressUsageDate() bool

HasShippingAddressUsageDate returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasSuspiciousActivityObserved

func (o *ThreeDSCardholderAccountInfo) HasSuspiciousActivityObserved() bool

HasSuspiciousActivityObserved returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasTransactionCountDay

func (o *ThreeDSCardholderAccountInfo) HasTransactionCountDay() bool

HasTransactionCountDay returns a boolean if a field is not nil.

func (*ThreeDSCardholderAccountInfo) HasTransactionCountYear

func (o *ThreeDSCardholderAccountInfo) HasTransactionCountYear() bool

HasTransactionCountYear returns a boolean if a field is not nil.

func (ThreeDSCardholderAccountInfo) MarshalJSON

func (o ThreeDSCardholderAccountInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSCardholderAccountInfo) SetAccountAge

func (o *ThreeDSCardholderAccountInfo) SetAccountAge(v string)

SetAccountAge gets a reference to the given NullableString and assigns it to the AccountAge field.

func (*ThreeDSCardholderAccountInfo) SetAccountAgeNil

func (o *ThreeDSCardholderAccountInfo) SetAccountAgeNil()

SetAccountAgeNil sets the value for AccountAge to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetAccountChangeDate

func (o *ThreeDSCardholderAccountInfo) SetAccountChangeDate(v string)

SetAccountChangeDate gets a reference to the given NullableString and assigns it to the AccountChangeDate field.

func (*ThreeDSCardholderAccountInfo) SetAccountChangeDateNil

func (o *ThreeDSCardholderAccountInfo) SetAccountChangeDateNil()

SetAccountChangeDateNil sets the value for AccountChangeDate to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetAccountCreatedDate

func (o *ThreeDSCardholderAccountInfo) SetAccountCreatedDate(v string)

SetAccountCreatedDate gets a reference to the given NullableString and assigns it to the AccountCreatedDate field.

func (*ThreeDSCardholderAccountInfo) SetAccountCreatedDateNil

func (o *ThreeDSCardholderAccountInfo) SetAccountCreatedDateNil()

SetAccountCreatedDateNil sets the value for AccountCreatedDate to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetAccountLastChanged

func (o *ThreeDSCardholderAccountInfo) SetAccountLastChanged(v string)

SetAccountLastChanged gets a reference to the given NullableString and assigns it to the AccountLastChanged field.

func (*ThreeDSCardholderAccountInfo) SetAccountLastChangedNil

func (o *ThreeDSCardholderAccountInfo) SetAccountLastChangedNil()

SetAccountLastChangedNil sets the value for AccountLastChanged to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetAccountPwdChangeDate

func (o *ThreeDSCardholderAccountInfo) SetAccountPwdChangeDate(v string)

SetAccountPwdChangeDate gets a reference to the given NullableString and assigns it to the AccountPwdChangeDate field.

func (*ThreeDSCardholderAccountInfo) SetAccountPwdChangeDateNil

func (o *ThreeDSCardholderAccountInfo) SetAccountPwdChangeDateNil()

SetAccountPwdChangeDateNil sets the value for AccountPwdChangeDate to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetAccountPwdLastChanged

func (o *ThreeDSCardholderAccountInfo) SetAccountPwdLastChanged(v string)

SetAccountPwdLastChanged gets a reference to the given NullableString and assigns it to the AccountPwdLastChanged field.

func (*ThreeDSCardholderAccountInfo) SetAccountPwdLastChangedNil

func (o *ThreeDSCardholderAccountInfo) SetAccountPwdLastChangedNil()

SetAccountPwdLastChangedNil sets the value for AccountPwdLastChanged to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetPaymentAccountAge

func (o *ThreeDSCardholderAccountInfo) SetPaymentAccountAge(v string)

SetPaymentAccountAge gets a reference to the given NullableString and assigns it to the PaymentAccountAge field.

func (*ThreeDSCardholderAccountInfo) SetPaymentAccountAgeNil

func (o *ThreeDSCardholderAccountInfo) SetPaymentAccountAgeNil()

SetPaymentAccountAgeNil sets the value for PaymentAccountAge to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetPaymentAccountCreated

func (o *ThreeDSCardholderAccountInfo) SetPaymentAccountCreated(v string)

SetPaymentAccountCreated gets a reference to the given NullableString and assigns it to the PaymentAccountCreated field.

func (*ThreeDSCardholderAccountInfo) SetPaymentAccountCreatedNil

func (o *ThreeDSCardholderAccountInfo) SetPaymentAccountCreatedNil()

SetPaymentAccountCreatedNil sets the value for PaymentAccountCreated to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetPurchaseCountHalfYear

func (o *ThreeDSCardholderAccountInfo) SetPurchaseCountHalfYear(v string)

SetPurchaseCountHalfYear gets a reference to the given NullableString and assigns it to the PurchaseCountHalfYear field.

func (*ThreeDSCardholderAccountInfo) SetPurchaseCountHalfYearNil

func (o *ThreeDSCardholderAccountInfo) SetPurchaseCountHalfYearNil()

SetPurchaseCountHalfYearNil sets the value for PurchaseCountHalfYear to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetShippingAccountNameMatch

func (o *ThreeDSCardholderAccountInfo) SetShippingAccountNameMatch(v bool)

SetShippingAccountNameMatch gets a reference to the given NullableBool and assigns it to the ShippingAccountNameMatch field.

func (*ThreeDSCardholderAccountInfo) SetShippingAccountNameMatchNil

func (o *ThreeDSCardholderAccountInfo) SetShippingAccountNameMatchNil()

SetShippingAccountNameMatchNil sets the value for ShippingAccountNameMatch to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetShippingAddressFirstUsed

func (o *ThreeDSCardholderAccountInfo) SetShippingAddressFirstUsed(v string)

SetShippingAddressFirstUsed gets a reference to the given NullableString and assigns it to the ShippingAddressFirstUsed field.

func (*ThreeDSCardholderAccountInfo) SetShippingAddressFirstUsedNil

func (o *ThreeDSCardholderAccountInfo) SetShippingAddressFirstUsedNil()

SetShippingAddressFirstUsedNil sets the value for ShippingAddressFirstUsed to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetShippingAddressUsageDate

func (o *ThreeDSCardholderAccountInfo) SetShippingAddressUsageDate(v string)

SetShippingAddressUsageDate gets a reference to the given NullableString and assigns it to the ShippingAddressUsageDate field.

func (*ThreeDSCardholderAccountInfo) SetShippingAddressUsageDateNil

func (o *ThreeDSCardholderAccountInfo) SetShippingAddressUsageDateNil()

SetShippingAddressUsageDateNil sets the value for ShippingAddressUsageDate to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetSuspiciousActivityObserved

func (o *ThreeDSCardholderAccountInfo) SetSuspiciousActivityObserved(v bool)

SetSuspiciousActivityObserved gets a reference to the given NullableBool and assigns it to the SuspiciousActivityObserved field.

func (*ThreeDSCardholderAccountInfo) SetSuspiciousActivityObservedNil

func (o *ThreeDSCardholderAccountInfo) SetSuspiciousActivityObservedNil()

SetSuspiciousActivityObservedNil sets the value for SuspiciousActivityObserved to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetTransactionCountDay

func (o *ThreeDSCardholderAccountInfo) SetTransactionCountDay(v string)

SetTransactionCountDay gets a reference to the given NullableString and assigns it to the TransactionCountDay field.

func (*ThreeDSCardholderAccountInfo) SetTransactionCountDayNil

func (o *ThreeDSCardholderAccountInfo) SetTransactionCountDayNil()

SetTransactionCountDayNil sets the value for TransactionCountDay to be an explicit nil

func (*ThreeDSCardholderAccountInfo) SetTransactionCountYear

func (o *ThreeDSCardholderAccountInfo) SetTransactionCountYear(v string)

SetTransactionCountYear gets a reference to the given NullableString and assigns it to the TransactionCountYear field.

func (*ThreeDSCardholderAccountInfo) SetTransactionCountYearNil

func (o *ThreeDSCardholderAccountInfo) SetTransactionCountYearNil()

SetTransactionCountYearNil sets the value for TransactionCountYear to be an explicit nil

func (ThreeDSCardholderAccountInfo) ToMap

func (o ThreeDSCardholderAccountInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSCardholderAccountInfo) UnsetAccountAge

func (o *ThreeDSCardholderAccountInfo) UnsetAccountAge()

UnsetAccountAge ensures that no value is present for AccountAge, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetAccountChangeDate

func (o *ThreeDSCardholderAccountInfo) UnsetAccountChangeDate()

UnsetAccountChangeDate ensures that no value is present for AccountChangeDate, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetAccountCreatedDate

func (o *ThreeDSCardholderAccountInfo) UnsetAccountCreatedDate()

UnsetAccountCreatedDate ensures that no value is present for AccountCreatedDate, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetAccountLastChanged

func (o *ThreeDSCardholderAccountInfo) UnsetAccountLastChanged()

UnsetAccountLastChanged ensures that no value is present for AccountLastChanged, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetAccountPwdChangeDate

func (o *ThreeDSCardholderAccountInfo) UnsetAccountPwdChangeDate()

UnsetAccountPwdChangeDate ensures that no value is present for AccountPwdChangeDate, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetAccountPwdLastChanged

func (o *ThreeDSCardholderAccountInfo) UnsetAccountPwdLastChanged()

UnsetAccountPwdLastChanged ensures that no value is present for AccountPwdLastChanged, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetPaymentAccountAge

func (o *ThreeDSCardholderAccountInfo) UnsetPaymentAccountAge()

UnsetPaymentAccountAge ensures that no value is present for PaymentAccountAge, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetPaymentAccountCreated

func (o *ThreeDSCardholderAccountInfo) UnsetPaymentAccountCreated()

UnsetPaymentAccountCreated ensures that no value is present for PaymentAccountCreated, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetPurchaseCountHalfYear

func (o *ThreeDSCardholderAccountInfo) UnsetPurchaseCountHalfYear()

UnsetPurchaseCountHalfYear ensures that no value is present for PurchaseCountHalfYear, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetShippingAccountNameMatch

func (o *ThreeDSCardholderAccountInfo) UnsetShippingAccountNameMatch()

UnsetShippingAccountNameMatch ensures that no value is present for ShippingAccountNameMatch, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetShippingAddressFirstUsed

func (o *ThreeDSCardholderAccountInfo) UnsetShippingAddressFirstUsed()

UnsetShippingAddressFirstUsed ensures that no value is present for ShippingAddressFirstUsed, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetShippingAddressUsageDate

func (o *ThreeDSCardholderAccountInfo) UnsetShippingAddressUsageDate()

UnsetShippingAddressUsageDate ensures that no value is present for ShippingAddressUsageDate, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetSuspiciousActivityObserved

func (o *ThreeDSCardholderAccountInfo) UnsetSuspiciousActivityObserved()

UnsetSuspiciousActivityObserved ensures that no value is present for SuspiciousActivityObserved, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetTransactionCountDay

func (o *ThreeDSCardholderAccountInfo) UnsetTransactionCountDay()

UnsetTransactionCountDay ensures that no value is present for TransactionCountDay, not even an explicit nil

func (*ThreeDSCardholderAccountInfo) UnsetTransactionCountYear

func (o *ThreeDSCardholderAccountInfo) UnsetTransactionCountYear()

UnsetTransactionCountYear ensures that no value is present for TransactionCountYear, not even an explicit nil

type ThreeDSCardholderAuthenticationInfo

type ThreeDSCardholderAuthenticationInfo struct {
	Method    NullableString `json:"method,omitempty"`
	Timestamp NullableString `json:"timestamp,omitempty"`
	Data      NullableString `json:"data,omitempty"`
}

ThreeDSCardholderAuthenticationInfo struct for ThreeDSCardholderAuthenticationInfo

func NewThreeDSCardholderAuthenticationInfo

func NewThreeDSCardholderAuthenticationInfo() *ThreeDSCardholderAuthenticationInfo

NewThreeDSCardholderAuthenticationInfo instantiates a new ThreeDSCardholderAuthenticationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSCardholderAuthenticationInfoWithDefaults

func NewThreeDSCardholderAuthenticationInfoWithDefaults() *ThreeDSCardholderAuthenticationInfo

NewThreeDSCardholderAuthenticationInfoWithDefaults instantiates a new ThreeDSCardholderAuthenticationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSCardholderAuthenticationInfo) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAuthenticationInfo) GetDataOk

func (o *ThreeDSCardholderAuthenticationInfo) GetDataOk() (*string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSCardholderAuthenticationInfo) GetMethod

GetMethod returns the Method field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAuthenticationInfo) GetMethodOk

func (o *ThreeDSCardholderAuthenticationInfo) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method 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 (*ThreeDSCardholderAuthenticationInfo) GetTimestamp

func (o *ThreeDSCardholderAuthenticationInfo) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderAuthenticationInfo) GetTimestampOk

func (o *ThreeDSCardholderAuthenticationInfo) GetTimestampOk() (*string, bool)

GetTimestampOk returns a tuple with the Timestamp 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 (*ThreeDSCardholderAuthenticationInfo) HasData

HasData returns a boolean if a field is not nil.

func (*ThreeDSCardholderAuthenticationInfo) HasMethod

HasMethod returns a boolean if a field is not nil.

func (*ThreeDSCardholderAuthenticationInfo) HasTimestamp

func (o *ThreeDSCardholderAuthenticationInfo) HasTimestamp() bool

HasTimestamp returns a boolean if a field is not nil.

func (ThreeDSCardholderAuthenticationInfo) MarshalJSON

func (o ThreeDSCardholderAuthenticationInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSCardholderAuthenticationInfo) SetData

SetData gets a reference to the given NullableString and assigns it to the Data field.

func (*ThreeDSCardholderAuthenticationInfo) SetDataNil

func (o *ThreeDSCardholderAuthenticationInfo) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*ThreeDSCardholderAuthenticationInfo) SetMethod

SetMethod gets a reference to the given NullableString and assigns it to the Method field.

func (*ThreeDSCardholderAuthenticationInfo) SetMethodNil

func (o *ThreeDSCardholderAuthenticationInfo) SetMethodNil()

SetMethodNil sets the value for Method to be an explicit nil

func (*ThreeDSCardholderAuthenticationInfo) SetTimestamp

func (o *ThreeDSCardholderAuthenticationInfo) SetTimestamp(v string)

SetTimestamp gets a reference to the given NullableString and assigns it to the Timestamp field.

func (*ThreeDSCardholderAuthenticationInfo) SetTimestampNil

func (o *ThreeDSCardholderAuthenticationInfo) SetTimestampNil()

SetTimestampNil sets the value for Timestamp to be an explicit nil

func (ThreeDSCardholderAuthenticationInfo) ToMap

func (o ThreeDSCardholderAuthenticationInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSCardholderAuthenticationInfo) UnsetData

func (o *ThreeDSCardholderAuthenticationInfo) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

func (*ThreeDSCardholderAuthenticationInfo) UnsetMethod

func (o *ThreeDSCardholderAuthenticationInfo) UnsetMethod()

UnsetMethod ensures that no value is present for Method, not even an explicit nil

func (*ThreeDSCardholderAuthenticationInfo) UnsetTimestamp

func (o *ThreeDSCardholderAuthenticationInfo) UnsetTimestamp()

UnsetTimestamp ensures that no value is present for Timestamp, not even an explicit nil

type ThreeDSCardholderInfo

type ThreeDSCardholderInfo struct {
	AccountId                   NullableString                       `json:"account_id,omitempty"`
	AccountType                 NullableString                       `json:"account_type,omitempty"`
	AccountInfo                 *ThreeDSCardholderAccountInfo        `json:"account_info,omitempty"`
	AuthenticationInfo          *ThreeDSCardholderAuthenticationInfo `json:"authentication_info,omitempty"`
	PriorAuthenticationInfo     *ThreeDSPriorAuthenticationInfo      `json:"prior_authentication_info,omitempty"`
	Name                        NullableString                       `json:"name,omitempty"`
	Email                       NullableString                       `json:"email,omitempty"`
	PhoneNumber                 *ThreeDSCardholderPhoneNumber        `json:"phone_number,omitempty"`
	MobilePhoneNumber           *ThreeDSCardholderPhoneNumber        `json:"mobile_phone_number,omitempty"`
	WorkPhoneNumber             *ThreeDSCardholderPhoneNumber        `json:"work_phone_number,omitempty"`
	BillingShippingAddressMatch NullableString                       `json:"billing_shipping_address_match,omitempty"`
	BillingAddress              *ThreeDSAddress                      `json:"billing_address,omitempty"`
	ShippingAddress             *ThreeDSAddress                      `json:"shipping_address,omitempty"`
}

ThreeDSCardholderInfo struct for ThreeDSCardholderInfo

func NewThreeDSCardholderInfo

func NewThreeDSCardholderInfo() *ThreeDSCardholderInfo

NewThreeDSCardholderInfo instantiates a new ThreeDSCardholderInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSCardholderInfoWithDefaults

func NewThreeDSCardholderInfoWithDefaults() *ThreeDSCardholderInfo

NewThreeDSCardholderInfoWithDefaults instantiates a new ThreeDSCardholderInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSCardholderInfo) GetAccountId

func (o *ThreeDSCardholderInfo) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderInfo) GetAccountIdOk

func (o *ThreeDSCardholderInfo) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId 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 (*ThreeDSCardholderInfo) GetAccountInfo

GetAccountInfo returns the AccountInfo field value if set, zero value otherwise.

func (*ThreeDSCardholderInfo) GetAccountInfoOk

func (o *ThreeDSCardholderInfo) GetAccountInfoOk() (*ThreeDSCardholderAccountInfo, bool)

GetAccountInfoOk returns a tuple with the AccountInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSCardholderInfo) GetAccountType

func (o *ThreeDSCardholderInfo) GetAccountType() string

GetAccountType returns the AccountType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderInfo) GetAccountTypeOk

func (o *ThreeDSCardholderInfo) GetAccountTypeOk() (*string, bool)

GetAccountTypeOk returns a tuple with the AccountType 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 (*ThreeDSCardholderInfo) GetAuthenticationInfo

GetAuthenticationInfo returns the AuthenticationInfo field value if set, zero value otherwise.

func (*ThreeDSCardholderInfo) GetAuthenticationInfoOk

func (o *ThreeDSCardholderInfo) GetAuthenticationInfoOk() (*ThreeDSCardholderAuthenticationInfo, bool)

GetAuthenticationInfoOk returns a tuple with the AuthenticationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSCardholderInfo) GetBillingAddress

func (o *ThreeDSCardholderInfo) GetBillingAddress() ThreeDSAddress

GetBillingAddress returns the BillingAddress field value if set, zero value otherwise.

func (*ThreeDSCardholderInfo) GetBillingAddressOk

func (o *ThreeDSCardholderInfo) GetBillingAddressOk() (*ThreeDSAddress, bool)

GetBillingAddressOk returns a tuple with the BillingAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSCardholderInfo) GetBillingShippingAddressMatch

func (o *ThreeDSCardholderInfo) GetBillingShippingAddressMatch() string

GetBillingShippingAddressMatch returns the BillingShippingAddressMatch field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderInfo) GetBillingShippingAddressMatchOk

func (o *ThreeDSCardholderInfo) GetBillingShippingAddressMatchOk() (*string, bool)

GetBillingShippingAddressMatchOk returns a tuple with the BillingShippingAddressMatch 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 (*ThreeDSCardholderInfo) GetEmail

func (o *ThreeDSCardholderInfo) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderInfo) GetEmailOk

func (o *ThreeDSCardholderInfo) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSCardholderInfo) GetMobilePhoneNumber

func (o *ThreeDSCardholderInfo) GetMobilePhoneNumber() ThreeDSCardholderPhoneNumber

GetMobilePhoneNumber returns the MobilePhoneNumber field value if set, zero value otherwise.

func (*ThreeDSCardholderInfo) GetMobilePhoneNumberOk

func (o *ThreeDSCardholderInfo) GetMobilePhoneNumberOk() (*ThreeDSCardholderPhoneNumber, bool)

GetMobilePhoneNumberOk returns a tuple with the MobilePhoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSCardholderInfo) GetName

func (o *ThreeDSCardholderInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderInfo) GetNameOk

func (o *ThreeDSCardholderInfo) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSCardholderInfo) GetPhoneNumber

GetPhoneNumber returns the PhoneNumber field value if set, zero value otherwise.

func (*ThreeDSCardholderInfo) GetPhoneNumberOk

func (o *ThreeDSCardholderInfo) GetPhoneNumberOk() (*ThreeDSCardholderPhoneNumber, bool)

GetPhoneNumberOk returns a tuple with the PhoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSCardholderInfo) GetPriorAuthenticationInfo

func (o *ThreeDSCardholderInfo) GetPriorAuthenticationInfo() ThreeDSPriorAuthenticationInfo

GetPriorAuthenticationInfo returns the PriorAuthenticationInfo field value if set, zero value otherwise.

func (*ThreeDSCardholderInfo) GetPriorAuthenticationInfoOk

func (o *ThreeDSCardholderInfo) GetPriorAuthenticationInfoOk() (*ThreeDSPriorAuthenticationInfo, bool)

GetPriorAuthenticationInfoOk returns a tuple with the PriorAuthenticationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSCardholderInfo) GetShippingAddress

func (o *ThreeDSCardholderInfo) GetShippingAddress() ThreeDSAddress

GetShippingAddress returns the ShippingAddress field value if set, zero value otherwise.

func (*ThreeDSCardholderInfo) GetShippingAddressOk

func (o *ThreeDSCardholderInfo) GetShippingAddressOk() (*ThreeDSAddress, bool)

GetShippingAddressOk returns a tuple with the ShippingAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSCardholderInfo) GetWorkPhoneNumber

func (o *ThreeDSCardholderInfo) GetWorkPhoneNumber() ThreeDSCardholderPhoneNumber

GetWorkPhoneNumber returns the WorkPhoneNumber field value if set, zero value otherwise.

func (*ThreeDSCardholderInfo) GetWorkPhoneNumberOk

func (o *ThreeDSCardholderInfo) GetWorkPhoneNumberOk() (*ThreeDSCardholderPhoneNumber, bool)

GetWorkPhoneNumberOk returns a tuple with the WorkPhoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSCardholderInfo) HasAccountId

func (o *ThreeDSCardholderInfo) HasAccountId() bool

HasAccountId returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasAccountInfo

func (o *ThreeDSCardholderInfo) HasAccountInfo() bool

HasAccountInfo returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasAccountType

func (o *ThreeDSCardholderInfo) HasAccountType() bool

HasAccountType returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasAuthenticationInfo

func (o *ThreeDSCardholderInfo) HasAuthenticationInfo() bool

HasAuthenticationInfo returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasBillingAddress

func (o *ThreeDSCardholderInfo) HasBillingAddress() bool

HasBillingAddress returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasBillingShippingAddressMatch

func (o *ThreeDSCardholderInfo) HasBillingShippingAddressMatch() bool

HasBillingShippingAddressMatch returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasEmail

func (o *ThreeDSCardholderInfo) HasEmail() bool

HasEmail returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasMobilePhoneNumber

func (o *ThreeDSCardholderInfo) HasMobilePhoneNumber() bool

HasMobilePhoneNumber returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasName

func (o *ThreeDSCardholderInfo) HasName() bool

HasName returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasPhoneNumber

func (o *ThreeDSCardholderInfo) HasPhoneNumber() bool

HasPhoneNumber returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasPriorAuthenticationInfo

func (o *ThreeDSCardholderInfo) HasPriorAuthenticationInfo() bool

HasPriorAuthenticationInfo returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasShippingAddress

func (o *ThreeDSCardholderInfo) HasShippingAddress() bool

HasShippingAddress returns a boolean if a field is not nil.

func (*ThreeDSCardholderInfo) HasWorkPhoneNumber

func (o *ThreeDSCardholderInfo) HasWorkPhoneNumber() bool

HasWorkPhoneNumber returns a boolean if a field is not nil.

func (ThreeDSCardholderInfo) MarshalJSON

func (o ThreeDSCardholderInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSCardholderInfo) SetAccountId

func (o *ThreeDSCardholderInfo) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*ThreeDSCardholderInfo) SetAccountIdNil

func (o *ThreeDSCardholderInfo) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*ThreeDSCardholderInfo) SetAccountInfo

SetAccountInfo gets a reference to the given ThreeDSCardholderAccountInfo and assigns it to the AccountInfo field.

func (*ThreeDSCardholderInfo) SetAccountType

func (o *ThreeDSCardholderInfo) SetAccountType(v string)

SetAccountType gets a reference to the given NullableString and assigns it to the AccountType field.

func (*ThreeDSCardholderInfo) SetAccountTypeNil

func (o *ThreeDSCardholderInfo) SetAccountTypeNil()

SetAccountTypeNil sets the value for AccountType to be an explicit nil

func (*ThreeDSCardholderInfo) SetAuthenticationInfo

func (o *ThreeDSCardholderInfo) SetAuthenticationInfo(v ThreeDSCardholderAuthenticationInfo)

SetAuthenticationInfo gets a reference to the given ThreeDSCardholderAuthenticationInfo and assigns it to the AuthenticationInfo field.

func (*ThreeDSCardholderInfo) SetBillingAddress

func (o *ThreeDSCardholderInfo) SetBillingAddress(v ThreeDSAddress)

SetBillingAddress gets a reference to the given ThreeDSAddress and assigns it to the BillingAddress field.

func (*ThreeDSCardholderInfo) SetBillingShippingAddressMatch

func (o *ThreeDSCardholderInfo) SetBillingShippingAddressMatch(v string)

SetBillingShippingAddressMatch gets a reference to the given NullableString and assigns it to the BillingShippingAddressMatch field.

func (*ThreeDSCardholderInfo) SetBillingShippingAddressMatchNil

func (o *ThreeDSCardholderInfo) SetBillingShippingAddressMatchNil()

SetBillingShippingAddressMatchNil sets the value for BillingShippingAddressMatch to be an explicit nil

func (*ThreeDSCardholderInfo) SetEmail

func (o *ThreeDSCardholderInfo) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*ThreeDSCardholderInfo) SetEmailNil

func (o *ThreeDSCardholderInfo) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*ThreeDSCardholderInfo) SetMobilePhoneNumber

func (o *ThreeDSCardholderInfo) SetMobilePhoneNumber(v ThreeDSCardholderPhoneNumber)

SetMobilePhoneNumber gets a reference to the given ThreeDSCardholderPhoneNumber and assigns it to the MobilePhoneNumber field.

func (*ThreeDSCardholderInfo) SetName

func (o *ThreeDSCardholderInfo) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*ThreeDSCardholderInfo) SetNameNil

func (o *ThreeDSCardholderInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ThreeDSCardholderInfo) SetPhoneNumber

SetPhoneNumber gets a reference to the given ThreeDSCardholderPhoneNumber and assigns it to the PhoneNumber field.

func (*ThreeDSCardholderInfo) SetPriorAuthenticationInfo

func (o *ThreeDSCardholderInfo) SetPriorAuthenticationInfo(v ThreeDSPriorAuthenticationInfo)

SetPriorAuthenticationInfo gets a reference to the given ThreeDSPriorAuthenticationInfo and assigns it to the PriorAuthenticationInfo field.

func (*ThreeDSCardholderInfo) SetShippingAddress

func (o *ThreeDSCardholderInfo) SetShippingAddress(v ThreeDSAddress)

SetShippingAddress gets a reference to the given ThreeDSAddress and assigns it to the ShippingAddress field.

func (*ThreeDSCardholderInfo) SetWorkPhoneNumber

func (o *ThreeDSCardholderInfo) SetWorkPhoneNumber(v ThreeDSCardholderPhoneNumber)

SetWorkPhoneNumber gets a reference to the given ThreeDSCardholderPhoneNumber and assigns it to the WorkPhoneNumber field.

func (ThreeDSCardholderInfo) ToMap

func (o ThreeDSCardholderInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSCardholderInfo) UnsetAccountId

func (o *ThreeDSCardholderInfo) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

func (*ThreeDSCardholderInfo) UnsetAccountType

func (o *ThreeDSCardholderInfo) UnsetAccountType()

UnsetAccountType ensures that no value is present for AccountType, not even an explicit nil

func (*ThreeDSCardholderInfo) UnsetBillingShippingAddressMatch

func (o *ThreeDSCardholderInfo) UnsetBillingShippingAddressMatch()

UnsetBillingShippingAddressMatch ensures that no value is present for BillingShippingAddressMatch, not even an explicit nil

func (*ThreeDSCardholderInfo) UnsetEmail

func (o *ThreeDSCardholderInfo) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*ThreeDSCardholderInfo) UnsetName

func (o *ThreeDSCardholderInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type ThreeDSCardholderPhoneNumber

type ThreeDSCardholderPhoneNumber struct {
	CountryCode NullableString `json:"country_code,omitempty"`
	Number      NullableString `json:"number,omitempty"`
}

ThreeDSCardholderPhoneNumber struct for ThreeDSCardholderPhoneNumber

func NewThreeDSCardholderPhoneNumber

func NewThreeDSCardholderPhoneNumber() *ThreeDSCardholderPhoneNumber

NewThreeDSCardholderPhoneNumber instantiates a new ThreeDSCardholderPhoneNumber object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSCardholderPhoneNumberWithDefaults

func NewThreeDSCardholderPhoneNumberWithDefaults() *ThreeDSCardholderPhoneNumber

NewThreeDSCardholderPhoneNumberWithDefaults instantiates a new ThreeDSCardholderPhoneNumber object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSCardholderPhoneNumber) GetCountryCode

func (o *ThreeDSCardholderPhoneNumber) GetCountryCode() string

GetCountryCode returns the CountryCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderPhoneNumber) GetCountryCodeOk

func (o *ThreeDSCardholderPhoneNumber) GetCountryCodeOk() (*string, bool)

GetCountryCodeOk returns a tuple with the CountryCode 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 (*ThreeDSCardholderPhoneNumber) GetNumber

func (o *ThreeDSCardholderPhoneNumber) GetNumber() string

GetNumber returns the Number field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSCardholderPhoneNumber) GetNumberOk

func (o *ThreeDSCardholderPhoneNumber) GetNumberOk() (*string, bool)

GetNumberOk returns a tuple with the Number 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 (*ThreeDSCardholderPhoneNumber) HasCountryCode

func (o *ThreeDSCardholderPhoneNumber) HasCountryCode() bool

HasCountryCode returns a boolean if a field is not nil.

func (*ThreeDSCardholderPhoneNumber) HasNumber

func (o *ThreeDSCardholderPhoneNumber) HasNumber() bool

HasNumber returns a boolean if a field is not nil.

func (ThreeDSCardholderPhoneNumber) MarshalJSON

func (o ThreeDSCardholderPhoneNumber) MarshalJSON() ([]byte, error)

func (*ThreeDSCardholderPhoneNumber) SetCountryCode

func (o *ThreeDSCardholderPhoneNumber) SetCountryCode(v string)

SetCountryCode gets a reference to the given NullableString and assigns it to the CountryCode field.

func (*ThreeDSCardholderPhoneNumber) SetCountryCodeNil

func (o *ThreeDSCardholderPhoneNumber) SetCountryCodeNil()

SetCountryCodeNil sets the value for CountryCode to be an explicit nil

func (*ThreeDSCardholderPhoneNumber) SetNumber

func (o *ThreeDSCardholderPhoneNumber) SetNumber(v string)

SetNumber gets a reference to the given NullableString and assigns it to the Number field.

func (*ThreeDSCardholderPhoneNumber) SetNumberNil

func (o *ThreeDSCardholderPhoneNumber) SetNumberNil()

SetNumberNil sets the value for Number to be an explicit nil

func (ThreeDSCardholderPhoneNumber) ToMap

func (o ThreeDSCardholderPhoneNumber) ToMap() (map[string]interface{}, error)

func (*ThreeDSCardholderPhoneNumber) UnsetCountryCode

func (o *ThreeDSCardholderPhoneNumber) UnsetCountryCode()

UnsetCountryCode ensures that no value is present for CountryCode, not even an explicit nil

func (*ThreeDSCardholderPhoneNumber) UnsetNumber

func (o *ThreeDSCardholderPhoneNumber) UnsetNumber()

UnsetNumber ensures that no value is present for Number, not even an explicit nil

type ThreeDSDeviceInfo

type ThreeDSDeviceInfo struct {
	BrowserAcceptHeader      NullableString                 `json:"browser_accept_header,omitempty"`
	BrowserIp                NullableString                 `json:"browser_ip,omitempty"`
	BrowserJavascriptEnabled NullableBool                   `json:"browser_javascript_enabled,omitempty"`
	BrowserJavaEnabled       NullableBool                   `json:"browser_java_enabled,omitempty"`
	BrowserLanguage          NullableString                 `json:"browser_language,omitempty"`
	BrowserColorDepth        NullableString                 `json:"browser_color_depth,omitempty"`
	BrowserScreenHeight      NullableString                 `json:"browser_screen_height,omitempty"`
	BrowserScreenWidth       NullableString                 `json:"browser_screen_width,omitempty"`
	BrowserTz                NullableString                 `json:"browser_tz,omitempty"`
	BrowserUserAgent         NullableString                 `json:"browser_user_agent,omitempty"`
	SdkTransactionId         NullableString                 `json:"sdk_transaction_id,omitempty"`
	SdkApplicationId         NullableString                 `json:"sdk_application_id,omitempty"`
	SdkEncryptionData        NullableString                 `json:"sdk_encryption_data,omitempty"`
	SdkEphemeralPublicKey    NullableString                 `json:"sdk_ephemeral_public_key,omitempty"`
	SdkMaxTimeout            NullableString                 `json:"sdk_max_timeout,omitempty"`
	SdkReferenceNumber       NullableString                 `json:"sdk_reference_number,omitempty"`
	SdkRenderOptions         *ThreeDSMobileSdkRenderOptions `json:"sdk_render_options,omitempty"`
}

ThreeDSDeviceInfo struct for ThreeDSDeviceInfo

func NewThreeDSDeviceInfo

func NewThreeDSDeviceInfo() *ThreeDSDeviceInfo

NewThreeDSDeviceInfo instantiates a new ThreeDSDeviceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSDeviceInfoWithDefaults

func NewThreeDSDeviceInfoWithDefaults() *ThreeDSDeviceInfo

NewThreeDSDeviceInfoWithDefaults instantiates a new ThreeDSDeviceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSDeviceInfo) GetBrowserAcceptHeader

func (o *ThreeDSDeviceInfo) GetBrowserAcceptHeader() string

GetBrowserAcceptHeader returns the BrowserAcceptHeader field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserAcceptHeaderOk

func (o *ThreeDSDeviceInfo) GetBrowserAcceptHeaderOk() (*string, bool)

GetBrowserAcceptHeaderOk returns a tuple with the BrowserAcceptHeader 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 (*ThreeDSDeviceInfo) GetBrowserColorDepth

func (o *ThreeDSDeviceInfo) GetBrowserColorDepth() string

GetBrowserColorDepth returns the BrowserColorDepth field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserColorDepthOk

func (o *ThreeDSDeviceInfo) GetBrowserColorDepthOk() (*string, bool)

GetBrowserColorDepthOk returns a tuple with the BrowserColorDepth 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 (*ThreeDSDeviceInfo) GetBrowserIp

func (o *ThreeDSDeviceInfo) GetBrowserIp() string

GetBrowserIp returns the BrowserIp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserIpOk

func (o *ThreeDSDeviceInfo) GetBrowserIpOk() (*string, bool)

GetBrowserIpOk returns a tuple with the BrowserIp 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 (*ThreeDSDeviceInfo) GetBrowserJavaEnabled

func (o *ThreeDSDeviceInfo) GetBrowserJavaEnabled() bool

GetBrowserJavaEnabled returns the BrowserJavaEnabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserJavaEnabledOk

func (o *ThreeDSDeviceInfo) GetBrowserJavaEnabledOk() (*bool, bool)

GetBrowserJavaEnabledOk returns a tuple with the BrowserJavaEnabled 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 (*ThreeDSDeviceInfo) GetBrowserJavascriptEnabled

func (o *ThreeDSDeviceInfo) GetBrowserJavascriptEnabled() bool

GetBrowserJavascriptEnabled returns the BrowserJavascriptEnabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserJavascriptEnabledOk

func (o *ThreeDSDeviceInfo) GetBrowserJavascriptEnabledOk() (*bool, bool)

GetBrowserJavascriptEnabledOk returns a tuple with the BrowserJavascriptEnabled 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 (*ThreeDSDeviceInfo) GetBrowserLanguage

func (o *ThreeDSDeviceInfo) GetBrowserLanguage() string

GetBrowserLanguage returns the BrowserLanguage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserLanguageOk

func (o *ThreeDSDeviceInfo) GetBrowserLanguageOk() (*string, bool)

GetBrowserLanguageOk returns a tuple with the BrowserLanguage 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 (*ThreeDSDeviceInfo) GetBrowserScreenHeight

func (o *ThreeDSDeviceInfo) GetBrowserScreenHeight() string

GetBrowserScreenHeight returns the BrowserScreenHeight field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserScreenHeightOk

func (o *ThreeDSDeviceInfo) GetBrowserScreenHeightOk() (*string, bool)

GetBrowserScreenHeightOk returns a tuple with the BrowserScreenHeight 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 (*ThreeDSDeviceInfo) GetBrowserScreenWidth

func (o *ThreeDSDeviceInfo) GetBrowserScreenWidth() string

GetBrowserScreenWidth returns the BrowserScreenWidth field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserScreenWidthOk

func (o *ThreeDSDeviceInfo) GetBrowserScreenWidthOk() (*string, bool)

GetBrowserScreenWidthOk returns a tuple with the BrowserScreenWidth 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 (*ThreeDSDeviceInfo) GetBrowserTz

func (o *ThreeDSDeviceInfo) GetBrowserTz() string

GetBrowserTz returns the BrowserTz field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserTzOk

func (o *ThreeDSDeviceInfo) GetBrowserTzOk() (*string, bool)

GetBrowserTzOk returns a tuple with the BrowserTz 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 (*ThreeDSDeviceInfo) GetBrowserUserAgent

func (o *ThreeDSDeviceInfo) GetBrowserUserAgent() string

GetBrowserUserAgent returns the BrowserUserAgent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetBrowserUserAgentOk

func (o *ThreeDSDeviceInfo) GetBrowserUserAgentOk() (*string, bool)

GetBrowserUserAgentOk returns a tuple with the BrowserUserAgent 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 (*ThreeDSDeviceInfo) GetSdkApplicationId

func (o *ThreeDSDeviceInfo) GetSdkApplicationId() string

GetSdkApplicationId returns the SdkApplicationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetSdkApplicationIdOk

func (o *ThreeDSDeviceInfo) GetSdkApplicationIdOk() (*string, bool)

GetSdkApplicationIdOk returns a tuple with the SdkApplicationId 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 (*ThreeDSDeviceInfo) GetSdkEncryptionData

func (o *ThreeDSDeviceInfo) GetSdkEncryptionData() string

GetSdkEncryptionData returns the SdkEncryptionData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetSdkEncryptionDataOk

func (o *ThreeDSDeviceInfo) GetSdkEncryptionDataOk() (*string, bool)

GetSdkEncryptionDataOk returns a tuple with the SdkEncryptionData 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 (*ThreeDSDeviceInfo) GetSdkEphemeralPublicKey

func (o *ThreeDSDeviceInfo) GetSdkEphemeralPublicKey() string

GetSdkEphemeralPublicKey returns the SdkEphemeralPublicKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetSdkEphemeralPublicKeyOk

func (o *ThreeDSDeviceInfo) GetSdkEphemeralPublicKeyOk() (*string, bool)

GetSdkEphemeralPublicKeyOk returns a tuple with the SdkEphemeralPublicKey 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 (*ThreeDSDeviceInfo) GetSdkMaxTimeout

func (o *ThreeDSDeviceInfo) GetSdkMaxTimeout() string

GetSdkMaxTimeout returns the SdkMaxTimeout field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetSdkMaxTimeoutOk

func (o *ThreeDSDeviceInfo) GetSdkMaxTimeoutOk() (*string, bool)

GetSdkMaxTimeoutOk returns a tuple with the SdkMaxTimeout 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 (*ThreeDSDeviceInfo) GetSdkReferenceNumber

func (o *ThreeDSDeviceInfo) GetSdkReferenceNumber() string

GetSdkReferenceNumber returns the SdkReferenceNumber field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetSdkReferenceNumberOk

func (o *ThreeDSDeviceInfo) GetSdkReferenceNumberOk() (*string, bool)

GetSdkReferenceNumberOk returns a tuple with the SdkReferenceNumber 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 (*ThreeDSDeviceInfo) GetSdkRenderOptions

func (o *ThreeDSDeviceInfo) GetSdkRenderOptions() ThreeDSMobileSdkRenderOptions

GetSdkRenderOptions returns the SdkRenderOptions field value if set, zero value otherwise.

func (*ThreeDSDeviceInfo) GetSdkRenderOptionsOk

func (o *ThreeDSDeviceInfo) GetSdkRenderOptionsOk() (*ThreeDSMobileSdkRenderOptions, bool)

GetSdkRenderOptionsOk returns a tuple with the SdkRenderOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSDeviceInfo) GetSdkTransactionId

func (o *ThreeDSDeviceInfo) GetSdkTransactionId() string

GetSdkTransactionId returns the SdkTransactionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSDeviceInfo) GetSdkTransactionIdOk

func (o *ThreeDSDeviceInfo) GetSdkTransactionIdOk() (*string, bool)

GetSdkTransactionIdOk returns a tuple with the SdkTransactionId 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 (*ThreeDSDeviceInfo) HasBrowserAcceptHeader

func (o *ThreeDSDeviceInfo) HasBrowserAcceptHeader() bool

HasBrowserAcceptHeader returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserColorDepth

func (o *ThreeDSDeviceInfo) HasBrowserColorDepth() bool

HasBrowserColorDepth returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserIp

func (o *ThreeDSDeviceInfo) HasBrowserIp() bool

HasBrowserIp returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserJavaEnabled

func (o *ThreeDSDeviceInfo) HasBrowserJavaEnabled() bool

HasBrowserJavaEnabled returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserJavascriptEnabled

func (o *ThreeDSDeviceInfo) HasBrowserJavascriptEnabled() bool

HasBrowserJavascriptEnabled returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserLanguage

func (o *ThreeDSDeviceInfo) HasBrowserLanguage() bool

HasBrowserLanguage returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserScreenHeight

func (o *ThreeDSDeviceInfo) HasBrowserScreenHeight() bool

HasBrowserScreenHeight returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserScreenWidth

func (o *ThreeDSDeviceInfo) HasBrowserScreenWidth() bool

HasBrowserScreenWidth returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserTz

func (o *ThreeDSDeviceInfo) HasBrowserTz() bool

HasBrowserTz returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasBrowserUserAgent

func (o *ThreeDSDeviceInfo) HasBrowserUserAgent() bool

HasBrowserUserAgent returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasSdkApplicationId

func (o *ThreeDSDeviceInfo) HasSdkApplicationId() bool

HasSdkApplicationId returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasSdkEncryptionData

func (o *ThreeDSDeviceInfo) HasSdkEncryptionData() bool

HasSdkEncryptionData returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasSdkEphemeralPublicKey

func (o *ThreeDSDeviceInfo) HasSdkEphemeralPublicKey() bool

HasSdkEphemeralPublicKey returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasSdkMaxTimeout

func (o *ThreeDSDeviceInfo) HasSdkMaxTimeout() bool

HasSdkMaxTimeout returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasSdkReferenceNumber

func (o *ThreeDSDeviceInfo) HasSdkReferenceNumber() bool

HasSdkReferenceNumber returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasSdkRenderOptions

func (o *ThreeDSDeviceInfo) HasSdkRenderOptions() bool

HasSdkRenderOptions returns a boolean if a field is not nil.

func (*ThreeDSDeviceInfo) HasSdkTransactionId

func (o *ThreeDSDeviceInfo) HasSdkTransactionId() bool

HasSdkTransactionId returns a boolean if a field is not nil.

func (ThreeDSDeviceInfo) MarshalJSON

func (o ThreeDSDeviceInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSDeviceInfo) SetBrowserAcceptHeader

func (o *ThreeDSDeviceInfo) SetBrowserAcceptHeader(v string)

SetBrowserAcceptHeader gets a reference to the given NullableString and assigns it to the BrowserAcceptHeader field.

func (*ThreeDSDeviceInfo) SetBrowserAcceptHeaderNil

func (o *ThreeDSDeviceInfo) SetBrowserAcceptHeaderNil()

SetBrowserAcceptHeaderNil sets the value for BrowserAcceptHeader to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserColorDepth

func (o *ThreeDSDeviceInfo) SetBrowserColorDepth(v string)

SetBrowserColorDepth gets a reference to the given NullableString and assigns it to the BrowserColorDepth field.

func (*ThreeDSDeviceInfo) SetBrowserColorDepthNil

func (o *ThreeDSDeviceInfo) SetBrowserColorDepthNil()

SetBrowserColorDepthNil sets the value for BrowserColorDepth to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserIp

func (o *ThreeDSDeviceInfo) SetBrowserIp(v string)

SetBrowserIp gets a reference to the given NullableString and assigns it to the BrowserIp field.

func (*ThreeDSDeviceInfo) SetBrowserIpNil

func (o *ThreeDSDeviceInfo) SetBrowserIpNil()

SetBrowserIpNil sets the value for BrowserIp to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserJavaEnabled

func (o *ThreeDSDeviceInfo) SetBrowserJavaEnabled(v bool)

SetBrowserJavaEnabled gets a reference to the given NullableBool and assigns it to the BrowserJavaEnabled field.

func (*ThreeDSDeviceInfo) SetBrowserJavaEnabledNil

func (o *ThreeDSDeviceInfo) SetBrowserJavaEnabledNil()

SetBrowserJavaEnabledNil sets the value for BrowserJavaEnabled to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserJavascriptEnabled

func (o *ThreeDSDeviceInfo) SetBrowserJavascriptEnabled(v bool)

SetBrowserJavascriptEnabled gets a reference to the given NullableBool and assigns it to the BrowserJavascriptEnabled field.

func (*ThreeDSDeviceInfo) SetBrowserJavascriptEnabledNil

func (o *ThreeDSDeviceInfo) SetBrowserJavascriptEnabledNil()

SetBrowserJavascriptEnabledNil sets the value for BrowserJavascriptEnabled to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserLanguage

func (o *ThreeDSDeviceInfo) SetBrowserLanguage(v string)

SetBrowserLanguage gets a reference to the given NullableString and assigns it to the BrowserLanguage field.

func (*ThreeDSDeviceInfo) SetBrowserLanguageNil

func (o *ThreeDSDeviceInfo) SetBrowserLanguageNil()

SetBrowserLanguageNil sets the value for BrowserLanguage to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserScreenHeight

func (o *ThreeDSDeviceInfo) SetBrowserScreenHeight(v string)

SetBrowserScreenHeight gets a reference to the given NullableString and assigns it to the BrowserScreenHeight field.

func (*ThreeDSDeviceInfo) SetBrowserScreenHeightNil

func (o *ThreeDSDeviceInfo) SetBrowserScreenHeightNil()

SetBrowserScreenHeightNil sets the value for BrowserScreenHeight to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserScreenWidth

func (o *ThreeDSDeviceInfo) SetBrowserScreenWidth(v string)

SetBrowserScreenWidth gets a reference to the given NullableString and assigns it to the BrowserScreenWidth field.

func (*ThreeDSDeviceInfo) SetBrowserScreenWidthNil

func (o *ThreeDSDeviceInfo) SetBrowserScreenWidthNil()

SetBrowserScreenWidthNil sets the value for BrowserScreenWidth to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserTz

func (o *ThreeDSDeviceInfo) SetBrowserTz(v string)

SetBrowserTz gets a reference to the given NullableString and assigns it to the BrowserTz field.

func (*ThreeDSDeviceInfo) SetBrowserTzNil

func (o *ThreeDSDeviceInfo) SetBrowserTzNil()

SetBrowserTzNil sets the value for BrowserTz to be an explicit nil

func (*ThreeDSDeviceInfo) SetBrowserUserAgent

func (o *ThreeDSDeviceInfo) SetBrowserUserAgent(v string)

SetBrowserUserAgent gets a reference to the given NullableString and assigns it to the BrowserUserAgent field.

func (*ThreeDSDeviceInfo) SetBrowserUserAgentNil

func (o *ThreeDSDeviceInfo) SetBrowserUserAgentNil()

SetBrowserUserAgentNil sets the value for BrowserUserAgent to be an explicit nil

func (*ThreeDSDeviceInfo) SetSdkApplicationId

func (o *ThreeDSDeviceInfo) SetSdkApplicationId(v string)

SetSdkApplicationId gets a reference to the given NullableString and assigns it to the SdkApplicationId field.

func (*ThreeDSDeviceInfo) SetSdkApplicationIdNil

func (o *ThreeDSDeviceInfo) SetSdkApplicationIdNil()

SetSdkApplicationIdNil sets the value for SdkApplicationId to be an explicit nil

func (*ThreeDSDeviceInfo) SetSdkEncryptionData

func (o *ThreeDSDeviceInfo) SetSdkEncryptionData(v string)

SetSdkEncryptionData gets a reference to the given NullableString and assigns it to the SdkEncryptionData field.

func (*ThreeDSDeviceInfo) SetSdkEncryptionDataNil

func (o *ThreeDSDeviceInfo) SetSdkEncryptionDataNil()

SetSdkEncryptionDataNil sets the value for SdkEncryptionData to be an explicit nil

func (*ThreeDSDeviceInfo) SetSdkEphemeralPublicKey

func (o *ThreeDSDeviceInfo) SetSdkEphemeralPublicKey(v string)

SetSdkEphemeralPublicKey gets a reference to the given NullableString and assigns it to the SdkEphemeralPublicKey field.

func (*ThreeDSDeviceInfo) SetSdkEphemeralPublicKeyNil

func (o *ThreeDSDeviceInfo) SetSdkEphemeralPublicKeyNil()

SetSdkEphemeralPublicKeyNil sets the value for SdkEphemeralPublicKey to be an explicit nil

func (*ThreeDSDeviceInfo) SetSdkMaxTimeout

func (o *ThreeDSDeviceInfo) SetSdkMaxTimeout(v string)

SetSdkMaxTimeout gets a reference to the given NullableString and assigns it to the SdkMaxTimeout field.

func (*ThreeDSDeviceInfo) SetSdkMaxTimeoutNil

func (o *ThreeDSDeviceInfo) SetSdkMaxTimeoutNil()

SetSdkMaxTimeoutNil sets the value for SdkMaxTimeout to be an explicit nil

func (*ThreeDSDeviceInfo) SetSdkReferenceNumber

func (o *ThreeDSDeviceInfo) SetSdkReferenceNumber(v string)

SetSdkReferenceNumber gets a reference to the given NullableString and assigns it to the SdkReferenceNumber field.

func (*ThreeDSDeviceInfo) SetSdkReferenceNumberNil

func (o *ThreeDSDeviceInfo) SetSdkReferenceNumberNil()

SetSdkReferenceNumberNil sets the value for SdkReferenceNumber to be an explicit nil

func (*ThreeDSDeviceInfo) SetSdkRenderOptions

func (o *ThreeDSDeviceInfo) SetSdkRenderOptions(v ThreeDSMobileSdkRenderOptions)

SetSdkRenderOptions gets a reference to the given ThreeDSMobileSdkRenderOptions and assigns it to the SdkRenderOptions field.

func (*ThreeDSDeviceInfo) SetSdkTransactionId

func (o *ThreeDSDeviceInfo) SetSdkTransactionId(v string)

SetSdkTransactionId gets a reference to the given NullableString and assigns it to the SdkTransactionId field.

func (*ThreeDSDeviceInfo) SetSdkTransactionIdNil

func (o *ThreeDSDeviceInfo) SetSdkTransactionIdNil()

SetSdkTransactionIdNil sets the value for SdkTransactionId to be an explicit nil

func (ThreeDSDeviceInfo) ToMap

func (o ThreeDSDeviceInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSDeviceInfo) UnsetBrowserAcceptHeader

func (o *ThreeDSDeviceInfo) UnsetBrowserAcceptHeader()

UnsetBrowserAcceptHeader ensures that no value is present for BrowserAcceptHeader, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserColorDepth

func (o *ThreeDSDeviceInfo) UnsetBrowserColorDepth()

UnsetBrowserColorDepth ensures that no value is present for BrowserColorDepth, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserIp

func (o *ThreeDSDeviceInfo) UnsetBrowserIp()

UnsetBrowserIp ensures that no value is present for BrowserIp, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserJavaEnabled

func (o *ThreeDSDeviceInfo) UnsetBrowserJavaEnabled()

UnsetBrowserJavaEnabled ensures that no value is present for BrowserJavaEnabled, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserJavascriptEnabled

func (o *ThreeDSDeviceInfo) UnsetBrowserJavascriptEnabled()

UnsetBrowserJavascriptEnabled ensures that no value is present for BrowserJavascriptEnabled, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserLanguage

func (o *ThreeDSDeviceInfo) UnsetBrowserLanguage()

UnsetBrowserLanguage ensures that no value is present for BrowserLanguage, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserScreenHeight

func (o *ThreeDSDeviceInfo) UnsetBrowserScreenHeight()

UnsetBrowserScreenHeight ensures that no value is present for BrowserScreenHeight, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserScreenWidth

func (o *ThreeDSDeviceInfo) UnsetBrowserScreenWidth()

UnsetBrowserScreenWidth ensures that no value is present for BrowserScreenWidth, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserTz

func (o *ThreeDSDeviceInfo) UnsetBrowserTz()

UnsetBrowserTz ensures that no value is present for BrowserTz, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetBrowserUserAgent

func (o *ThreeDSDeviceInfo) UnsetBrowserUserAgent()

UnsetBrowserUserAgent ensures that no value is present for BrowserUserAgent, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetSdkApplicationId

func (o *ThreeDSDeviceInfo) UnsetSdkApplicationId()

UnsetSdkApplicationId ensures that no value is present for SdkApplicationId, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetSdkEncryptionData

func (o *ThreeDSDeviceInfo) UnsetSdkEncryptionData()

UnsetSdkEncryptionData ensures that no value is present for SdkEncryptionData, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetSdkEphemeralPublicKey

func (o *ThreeDSDeviceInfo) UnsetSdkEphemeralPublicKey()

UnsetSdkEphemeralPublicKey ensures that no value is present for SdkEphemeralPublicKey, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetSdkMaxTimeout

func (o *ThreeDSDeviceInfo) UnsetSdkMaxTimeout()

UnsetSdkMaxTimeout ensures that no value is present for SdkMaxTimeout, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetSdkReferenceNumber

func (o *ThreeDSDeviceInfo) UnsetSdkReferenceNumber()

UnsetSdkReferenceNumber ensures that no value is present for SdkReferenceNumber, not even an explicit nil

func (*ThreeDSDeviceInfo) UnsetSdkTransactionId

func (o *ThreeDSDeviceInfo) UnsetSdkTransactionId()

UnsetSdkTransactionId ensures that no value is present for SdkTransactionId, not even an explicit nil

type ThreeDSMerchantInfo

type ThreeDSMerchantInfo struct {
	Mid          NullableString           `json:"mid,omitempty"`
	AcquirerBin  NullableString           `json:"acquirer_bin,omitempty"`
	Name         NullableString           `json:"name,omitempty"`
	CountryCode  NullableString           `json:"country_code,omitempty"`
	CategoryCode NullableString           `json:"category_code,omitempty"`
	RiskInfo     *ThreeDSMerchantRiskInfo `json:"risk_info,omitempty"`
}

ThreeDSMerchantInfo struct for ThreeDSMerchantInfo

func NewThreeDSMerchantInfo

func NewThreeDSMerchantInfo() *ThreeDSMerchantInfo

NewThreeDSMerchantInfo instantiates a new ThreeDSMerchantInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSMerchantInfoWithDefaults

func NewThreeDSMerchantInfoWithDefaults() *ThreeDSMerchantInfo

NewThreeDSMerchantInfoWithDefaults instantiates a new ThreeDSMerchantInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSMerchantInfo) GetAcquirerBin

func (o *ThreeDSMerchantInfo) GetAcquirerBin() string

GetAcquirerBin returns the AcquirerBin field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantInfo) GetAcquirerBinOk

func (o *ThreeDSMerchantInfo) GetAcquirerBinOk() (*string, bool)

GetAcquirerBinOk returns a tuple with the AcquirerBin 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 (*ThreeDSMerchantInfo) GetCategoryCode

func (o *ThreeDSMerchantInfo) GetCategoryCode() string

GetCategoryCode returns the CategoryCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantInfo) GetCategoryCodeOk

func (o *ThreeDSMerchantInfo) GetCategoryCodeOk() (*string, bool)

GetCategoryCodeOk returns a tuple with the CategoryCode 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 (*ThreeDSMerchantInfo) GetCountryCode

func (o *ThreeDSMerchantInfo) GetCountryCode() string

GetCountryCode returns the CountryCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantInfo) GetCountryCodeOk

func (o *ThreeDSMerchantInfo) GetCountryCodeOk() (*string, bool)

GetCountryCodeOk returns a tuple with the CountryCode 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 (*ThreeDSMerchantInfo) GetMid

func (o *ThreeDSMerchantInfo) GetMid() string

GetMid returns the Mid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantInfo) GetMidOk

func (o *ThreeDSMerchantInfo) GetMidOk() (*string, bool)

GetMidOk returns a tuple with the Mid 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 (*ThreeDSMerchantInfo) GetName

func (o *ThreeDSMerchantInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantInfo) GetNameOk

func (o *ThreeDSMerchantInfo) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSMerchantInfo) GetRiskInfo

GetRiskInfo returns the RiskInfo field value if set, zero value otherwise.

func (*ThreeDSMerchantInfo) GetRiskInfoOk

func (o *ThreeDSMerchantInfo) GetRiskInfoOk() (*ThreeDSMerchantRiskInfo, bool)

GetRiskInfoOk returns a tuple with the RiskInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSMerchantInfo) HasAcquirerBin

func (o *ThreeDSMerchantInfo) HasAcquirerBin() bool

HasAcquirerBin returns a boolean if a field is not nil.

func (*ThreeDSMerchantInfo) HasCategoryCode

func (o *ThreeDSMerchantInfo) HasCategoryCode() bool

HasCategoryCode returns a boolean if a field is not nil.

func (*ThreeDSMerchantInfo) HasCountryCode

func (o *ThreeDSMerchantInfo) HasCountryCode() bool

HasCountryCode returns a boolean if a field is not nil.

func (*ThreeDSMerchantInfo) HasMid

func (o *ThreeDSMerchantInfo) HasMid() bool

HasMid returns a boolean if a field is not nil.

func (*ThreeDSMerchantInfo) HasName

func (o *ThreeDSMerchantInfo) HasName() bool

HasName returns a boolean if a field is not nil.

func (*ThreeDSMerchantInfo) HasRiskInfo

func (o *ThreeDSMerchantInfo) HasRiskInfo() bool

HasRiskInfo returns a boolean if a field is not nil.

func (ThreeDSMerchantInfo) MarshalJSON

func (o ThreeDSMerchantInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSMerchantInfo) SetAcquirerBin

func (o *ThreeDSMerchantInfo) SetAcquirerBin(v string)

SetAcquirerBin gets a reference to the given NullableString and assigns it to the AcquirerBin field.

func (*ThreeDSMerchantInfo) SetAcquirerBinNil

func (o *ThreeDSMerchantInfo) SetAcquirerBinNil()

SetAcquirerBinNil sets the value for AcquirerBin to be an explicit nil

func (*ThreeDSMerchantInfo) SetCategoryCode

func (o *ThreeDSMerchantInfo) SetCategoryCode(v string)

SetCategoryCode gets a reference to the given NullableString and assigns it to the CategoryCode field.

func (*ThreeDSMerchantInfo) SetCategoryCodeNil

func (o *ThreeDSMerchantInfo) SetCategoryCodeNil()

SetCategoryCodeNil sets the value for CategoryCode to be an explicit nil

func (*ThreeDSMerchantInfo) SetCountryCode

func (o *ThreeDSMerchantInfo) SetCountryCode(v string)

SetCountryCode gets a reference to the given NullableString and assigns it to the CountryCode field.

func (*ThreeDSMerchantInfo) SetCountryCodeNil

func (o *ThreeDSMerchantInfo) SetCountryCodeNil()

SetCountryCodeNil sets the value for CountryCode to be an explicit nil

func (*ThreeDSMerchantInfo) SetMid

func (o *ThreeDSMerchantInfo) SetMid(v string)

SetMid gets a reference to the given NullableString and assigns it to the Mid field.

func (*ThreeDSMerchantInfo) SetMidNil

func (o *ThreeDSMerchantInfo) SetMidNil()

SetMidNil sets the value for Mid to be an explicit nil

func (*ThreeDSMerchantInfo) SetName

func (o *ThreeDSMerchantInfo) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*ThreeDSMerchantInfo) SetNameNil

func (o *ThreeDSMerchantInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ThreeDSMerchantInfo) SetRiskInfo

func (o *ThreeDSMerchantInfo) SetRiskInfo(v ThreeDSMerchantRiskInfo)

SetRiskInfo gets a reference to the given ThreeDSMerchantRiskInfo and assigns it to the RiskInfo field.

func (ThreeDSMerchantInfo) ToMap

func (o ThreeDSMerchantInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSMerchantInfo) UnsetAcquirerBin

func (o *ThreeDSMerchantInfo) UnsetAcquirerBin()

UnsetAcquirerBin ensures that no value is present for AcquirerBin, not even an explicit nil

func (*ThreeDSMerchantInfo) UnsetCategoryCode

func (o *ThreeDSMerchantInfo) UnsetCategoryCode()

UnsetCategoryCode ensures that no value is present for CategoryCode, not even an explicit nil

func (*ThreeDSMerchantInfo) UnsetCountryCode

func (o *ThreeDSMerchantInfo) UnsetCountryCode()

UnsetCountryCode ensures that no value is present for CountryCode, not even an explicit nil

func (*ThreeDSMerchantInfo) UnsetMid

func (o *ThreeDSMerchantInfo) UnsetMid()

UnsetMid ensures that no value is present for Mid, not even an explicit nil

func (*ThreeDSMerchantInfo) UnsetName

func (o *ThreeDSMerchantInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type ThreeDSMerchantRiskInfo

type ThreeDSMerchantRiskInfo struct {
	DeliveryEmail     NullableString `json:"delivery_email,omitempty"`
	DeliveryTimeFrame NullableString `json:"delivery_time_frame,omitempty"`
	GiftCardAmount    NullableString `json:"gift_card_amount,omitempty"`
	GiftCardCount     NullableString `json:"gift_card_count,omitempty"`
	GiftCardCurrency  NullableString `json:"gift_card_currency,omitempty"`
	PreOrderPurchase  NullableBool   `json:"pre_order_purchase,omitempty"`
	PreOrderDate      NullableString `json:"pre_order_date,omitempty"`
	ReorderedPurchase NullableBool   `json:"reordered_purchase,omitempty"`
	ShippingMethod    NullableString `json:"shipping_method,omitempty"`
}

ThreeDSMerchantRiskInfo struct for ThreeDSMerchantRiskInfo

func NewThreeDSMerchantRiskInfo

func NewThreeDSMerchantRiskInfo() *ThreeDSMerchantRiskInfo

NewThreeDSMerchantRiskInfo instantiates a new ThreeDSMerchantRiskInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSMerchantRiskInfoWithDefaults

func NewThreeDSMerchantRiskInfoWithDefaults() *ThreeDSMerchantRiskInfo

NewThreeDSMerchantRiskInfoWithDefaults instantiates a new ThreeDSMerchantRiskInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSMerchantRiskInfo) GetDeliveryEmail

func (o *ThreeDSMerchantRiskInfo) GetDeliveryEmail() string

GetDeliveryEmail returns the DeliveryEmail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetDeliveryEmailOk

func (o *ThreeDSMerchantRiskInfo) GetDeliveryEmailOk() (*string, bool)

GetDeliveryEmailOk returns a tuple with the DeliveryEmail 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 (*ThreeDSMerchantRiskInfo) GetDeliveryTimeFrame

func (o *ThreeDSMerchantRiskInfo) GetDeliveryTimeFrame() string

GetDeliveryTimeFrame returns the DeliveryTimeFrame field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetDeliveryTimeFrameOk

func (o *ThreeDSMerchantRiskInfo) GetDeliveryTimeFrameOk() (*string, bool)

GetDeliveryTimeFrameOk returns a tuple with the DeliveryTimeFrame 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 (*ThreeDSMerchantRiskInfo) GetGiftCardAmount

func (o *ThreeDSMerchantRiskInfo) GetGiftCardAmount() string

GetGiftCardAmount returns the GiftCardAmount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetGiftCardAmountOk

func (o *ThreeDSMerchantRiskInfo) GetGiftCardAmountOk() (*string, bool)

GetGiftCardAmountOk returns a tuple with the GiftCardAmount 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 (*ThreeDSMerchantRiskInfo) GetGiftCardCount

func (o *ThreeDSMerchantRiskInfo) GetGiftCardCount() string

GetGiftCardCount returns the GiftCardCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetGiftCardCountOk

func (o *ThreeDSMerchantRiskInfo) GetGiftCardCountOk() (*string, bool)

GetGiftCardCountOk returns a tuple with the GiftCardCount 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 (*ThreeDSMerchantRiskInfo) GetGiftCardCurrency

func (o *ThreeDSMerchantRiskInfo) GetGiftCardCurrency() string

GetGiftCardCurrency returns the GiftCardCurrency field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetGiftCardCurrencyOk

func (o *ThreeDSMerchantRiskInfo) GetGiftCardCurrencyOk() (*string, bool)

GetGiftCardCurrencyOk returns a tuple with the GiftCardCurrency 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 (*ThreeDSMerchantRiskInfo) GetPreOrderDate

func (o *ThreeDSMerchantRiskInfo) GetPreOrderDate() string

GetPreOrderDate returns the PreOrderDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetPreOrderDateOk

func (o *ThreeDSMerchantRiskInfo) GetPreOrderDateOk() (*string, bool)

GetPreOrderDateOk returns a tuple with the PreOrderDate 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 (*ThreeDSMerchantRiskInfo) GetPreOrderPurchase

func (o *ThreeDSMerchantRiskInfo) GetPreOrderPurchase() bool

GetPreOrderPurchase returns the PreOrderPurchase field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetPreOrderPurchaseOk

func (o *ThreeDSMerchantRiskInfo) GetPreOrderPurchaseOk() (*bool, bool)

GetPreOrderPurchaseOk returns a tuple with the PreOrderPurchase 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 (*ThreeDSMerchantRiskInfo) GetReorderedPurchase

func (o *ThreeDSMerchantRiskInfo) GetReorderedPurchase() bool

GetReorderedPurchase returns the ReorderedPurchase field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetReorderedPurchaseOk

func (o *ThreeDSMerchantRiskInfo) GetReorderedPurchaseOk() (*bool, bool)

GetReorderedPurchaseOk returns a tuple with the ReorderedPurchase 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 (*ThreeDSMerchantRiskInfo) GetShippingMethod

func (o *ThreeDSMerchantRiskInfo) GetShippingMethod() string

GetShippingMethod returns the ShippingMethod field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMerchantRiskInfo) GetShippingMethodOk

func (o *ThreeDSMerchantRiskInfo) GetShippingMethodOk() (*string, bool)

GetShippingMethodOk returns a tuple with the ShippingMethod 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 (*ThreeDSMerchantRiskInfo) HasDeliveryEmail

func (o *ThreeDSMerchantRiskInfo) HasDeliveryEmail() bool

HasDeliveryEmail returns a boolean if a field is not nil.

func (*ThreeDSMerchantRiskInfo) HasDeliveryTimeFrame

func (o *ThreeDSMerchantRiskInfo) HasDeliveryTimeFrame() bool

HasDeliveryTimeFrame returns a boolean if a field is not nil.

func (*ThreeDSMerchantRiskInfo) HasGiftCardAmount

func (o *ThreeDSMerchantRiskInfo) HasGiftCardAmount() bool

HasGiftCardAmount returns a boolean if a field is not nil.

func (*ThreeDSMerchantRiskInfo) HasGiftCardCount

func (o *ThreeDSMerchantRiskInfo) HasGiftCardCount() bool

HasGiftCardCount returns a boolean if a field is not nil.

func (*ThreeDSMerchantRiskInfo) HasGiftCardCurrency

func (o *ThreeDSMerchantRiskInfo) HasGiftCardCurrency() bool

HasGiftCardCurrency returns a boolean if a field is not nil.

func (*ThreeDSMerchantRiskInfo) HasPreOrderDate

func (o *ThreeDSMerchantRiskInfo) HasPreOrderDate() bool

HasPreOrderDate returns a boolean if a field is not nil.

func (*ThreeDSMerchantRiskInfo) HasPreOrderPurchase

func (o *ThreeDSMerchantRiskInfo) HasPreOrderPurchase() bool

HasPreOrderPurchase returns a boolean if a field is not nil.

func (*ThreeDSMerchantRiskInfo) HasReorderedPurchase

func (o *ThreeDSMerchantRiskInfo) HasReorderedPurchase() bool

HasReorderedPurchase returns a boolean if a field is not nil.

func (*ThreeDSMerchantRiskInfo) HasShippingMethod

func (o *ThreeDSMerchantRiskInfo) HasShippingMethod() bool

HasShippingMethod returns a boolean if a field is not nil.

func (ThreeDSMerchantRiskInfo) MarshalJSON

func (o ThreeDSMerchantRiskInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSMerchantRiskInfo) SetDeliveryEmail

func (o *ThreeDSMerchantRiskInfo) SetDeliveryEmail(v string)

SetDeliveryEmail gets a reference to the given NullableString and assigns it to the DeliveryEmail field.

func (*ThreeDSMerchantRiskInfo) SetDeliveryEmailNil

func (o *ThreeDSMerchantRiskInfo) SetDeliveryEmailNil()

SetDeliveryEmailNil sets the value for DeliveryEmail to be an explicit nil

func (*ThreeDSMerchantRiskInfo) SetDeliveryTimeFrame

func (o *ThreeDSMerchantRiskInfo) SetDeliveryTimeFrame(v string)

SetDeliveryTimeFrame gets a reference to the given NullableString and assigns it to the DeliveryTimeFrame field.

func (*ThreeDSMerchantRiskInfo) SetDeliveryTimeFrameNil

func (o *ThreeDSMerchantRiskInfo) SetDeliveryTimeFrameNil()

SetDeliveryTimeFrameNil sets the value for DeliveryTimeFrame to be an explicit nil

func (*ThreeDSMerchantRiskInfo) SetGiftCardAmount

func (o *ThreeDSMerchantRiskInfo) SetGiftCardAmount(v string)

SetGiftCardAmount gets a reference to the given NullableString and assigns it to the GiftCardAmount field.

func (*ThreeDSMerchantRiskInfo) SetGiftCardAmountNil

func (o *ThreeDSMerchantRiskInfo) SetGiftCardAmountNil()

SetGiftCardAmountNil sets the value for GiftCardAmount to be an explicit nil

func (*ThreeDSMerchantRiskInfo) SetGiftCardCount

func (o *ThreeDSMerchantRiskInfo) SetGiftCardCount(v string)

SetGiftCardCount gets a reference to the given NullableString and assigns it to the GiftCardCount field.

func (*ThreeDSMerchantRiskInfo) SetGiftCardCountNil

func (o *ThreeDSMerchantRiskInfo) SetGiftCardCountNil()

SetGiftCardCountNil sets the value for GiftCardCount to be an explicit nil

func (*ThreeDSMerchantRiskInfo) SetGiftCardCurrency

func (o *ThreeDSMerchantRiskInfo) SetGiftCardCurrency(v string)

SetGiftCardCurrency gets a reference to the given NullableString and assigns it to the GiftCardCurrency field.

func (*ThreeDSMerchantRiskInfo) SetGiftCardCurrencyNil

func (o *ThreeDSMerchantRiskInfo) SetGiftCardCurrencyNil()

SetGiftCardCurrencyNil sets the value for GiftCardCurrency to be an explicit nil

func (*ThreeDSMerchantRiskInfo) SetPreOrderDate

func (o *ThreeDSMerchantRiskInfo) SetPreOrderDate(v string)

SetPreOrderDate gets a reference to the given NullableString and assigns it to the PreOrderDate field.

func (*ThreeDSMerchantRiskInfo) SetPreOrderDateNil

func (o *ThreeDSMerchantRiskInfo) SetPreOrderDateNil()

SetPreOrderDateNil sets the value for PreOrderDate to be an explicit nil

func (*ThreeDSMerchantRiskInfo) SetPreOrderPurchase

func (o *ThreeDSMerchantRiskInfo) SetPreOrderPurchase(v bool)

SetPreOrderPurchase gets a reference to the given NullableBool and assigns it to the PreOrderPurchase field.

func (*ThreeDSMerchantRiskInfo) SetPreOrderPurchaseNil

func (o *ThreeDSMerchantRiskInfo) SetPreOrderPurchaseNil()

SetPreOrderPurchaseNil sets the value for PreOrderPurchase to be an explicit nil

func (*ThreeDSMerchantRiskInfo) SetReorderedPurchase

func (o *ThreeDSMerchantRiskInfo) SetReorderedPurchase(v bool)

SetReorderedPurchase gets a reference to the given NullableBool and assigns it to the ReorderedPurchase field.

func (*ThreeDSMerchantRiskInfo) SetReorderedPurchaseNil

func (o *ThreeDSMerchantRiskInfo) SetReorderedPurchaseNil()

SetReorderedPurchaseNil sets the value for ReorderedPurchase to be an explicit nil

func (*ThreeDSMerchantRiskInfo) SetShippingMethod

func (o *ThreeDSMerchantRiskInfo) SetShippingMethod(v string)

SetShippingMethod gets a reference to the given NullableString and assigns it to the ShippingMethod field.

func (*ThreeDSMerchantRiskInfo) SetShippingMethodNil

func (o *ThreeDSMerchantRiskInfo) SetShippingMethodNil()

SetShippingMethodNil sets the value for ShippingMethod to be an explicit nil

func (ThreeDSMerchantRiskInfo) ToMap

func (o ThreeDSMerchantRiskInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSMerchantRiskInfo) UnsetDeliveryEmail

func (o *ThreeDSMerchantRiskInfo) UnsetDeliveryEmail()

UnsetDeliveryEmail ensures that no value is present for DeliveryEmail, not even an explicit nil

func (*ThreeDSMerchantRiskInfo) UnsetDeliveryTimeFrame

func (o *ThreeDSMerchantRiskInfo) UnsetDeliveryTimeFrame()

UnsetDeliveryTimeFrame ensures that no value is present for DeliveryTimeFrame, not even an explicit nil

func (*ThreeDSMerchantRiskInfo) UnsetGiftCardAmount

func (o *ThreeDSMerchantRiskInfo) UnsetGiftCardAmount()

UnsetGiftCardAmount ensures that no value is present for GiftCardAmount, not even an explicit nil

func (*ThreeDSMerchantRiskInfo) UnsetGiftCardCount

func (o *ThreeDSMerchantRiskInfo) UnsetGiftCardCount()

UnsetGiftCardCount ensures that no value is present for GiftCardCount, not even an explicit nil

func (*ThreeDSMerchantRiskInfo) UnsetGiftCardCurrency

func (o *ThreeDSMerchantRiskInfo) UnsetGiftCardCurrency()

UnsetGiftCardCurrency ensures that no value is present for GiftCardCurrency, not even an explicit nil

func (*ThreeDSMerchantRiskInfo) UnsetPreOrderDate

func (o *ThreeDSMerchantRiskInfo) UnsetPreOrderDate()

UnsetPreOrderDate ensures that no value is present for PreOrderDate, not even an explicit nil

func (*ThreeDSMerchantRiskInfo) UnsetPreOrderPurchase

func (o *ThreeDSMerchantRiskInfo) UnsetPreOrderPurchase()

UnsetPreOrderPurchase ensures that no value is present for PreOrderPurchase, not even an explicit nil

func (*ThreeDSMerchantRiskInfo) UnsetReorderedPurchase

func (o *ThreeDSMerchantRiskInfo) UnsetReorderedPurchase()

UnsetReorderedPurchase ensures that no value is present for ReorderedPurchase, not even an explicit nil

func (*ThreeDSMerchantRiskInfo) UnsetShippingMethod

func (o *ThreeDSMerchantRiskInfo) UnsetShippingMethod()

UnsetShippingMethod ensures that no value is present for ShippingMethod, not even an explicit nil

type ThreeDSMessageExtension

type ThreeDSMessageExtension struct {
	Id       NullableString `json:"id,omitempty"`
	Name     NullableString `json:"name,omitempty"`
	Critical NullableBool   `json:"critical,omitempty"`
	Data     interface{}    `json:"data,omitempty"`
}

ThreeDSMessageExtension struct for ThreeDSMessageExtension

func NewThreeDSMessageExtension

func NewThreeDSMessageExtension() *ThreeDSMessageExtension

NewThreeDSMessageExtension instantiates a new ThreeDSMessageExtension object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSMessageExtensionWithDefaults

func NewThreeDSMessageExtensionWithDefaults() *ThreeDSMessageExtension

NewThreeDSMessageExtensionWithDefaults instantiates a new ThreeDSMessageExtension object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSMessageExtension) GetCritical

func (o *ThreeDSMessageExtension) GetCritical() bool

GetCritical returns the Critical field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMessageExtension) GetCriticalOk

func (o *ThreeDSMessageExtension) GetCriticalOk() (*bool, bool)

GetCriticalOk returns a tuple with the Critical 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 (*ThreeDSMessageExtension) GetData

func (o *ThreeDSMessageExtension) GetData() interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMessageExtension) GetDataOk

func (o *ThreeDSMessageExtension) GetDataOk() (*interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSMessageExtension) GetId

func (o *ThreeDSMessageExtension) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMessageExtension) GetIdOk

func (o *ThreeDSMessageExtension) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSMessageExtension) GetName

func (o *ThreeDSMessageExtension) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMessageExtension) GetNameOk

func (o *ThreeDSMessageExtension) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSMessageExtension) HasCritical

func (o *ThreeDSMessageExtension) HasCritical() bool

HasCritical returns a boolean if a field is not nil.

func (*ThreeDSMessageExtension) HasData

func (o *ThreeDSMessageExtension) HasData() bool

HasData returns a boolean if a field is not nil.

func (*ThreeDSMessageExtension) HasId

func (o *ThreeDSMessageExtension) HasId() bool

HasId returns a boolean if a field is not nil.

func (*ThreeDSMessageExtension) HasName

func (o *ThreeDSMessageExtension) HasName() bool

HasName returns a boolean if a field is not nil.

func (ThreeDSMessageExtension) MarshalJSON

func (o ThreeDSMessageExtension) MarshalJSON() ([]byte, error)

func (*ThreeDSMessageExtension) SetCritical

func (o *ThreeDSMessageExtension) SetCritical(v bool)

SetCritical gets a reference to the given NullableBool and assigns it to the Critical field.

func (*ThreeDSMessageExtension) SetCriticalNil

func (o *ThreeDSMessageExtension) SetCriticalNil()

SetCriticalNil sets the value for Critical to be an explicit nil

func (*ThreeDSMessageExtension) SetData

func (o *ThreeDSMessageExtension) SetData(v interface{})

SetData gets a reference to the given interface{} and assigns it to the Data field.

func (*ThreeDSMessageExtension) SetId

func (o *ThreeDSMessageExtension) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*ThreeDSMessageExtension) SetIdNil

func (o *ThreeDSMessageExtension) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*ThreeDSMessageExtension) SetName

func (o *ThreeDSMessageExtension) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*ThreeDSMessageExtension) SetNameNil

func (o *ThreeDSMessageExtension) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (ThreeDSMessageExtension) ToMap

func (o ThreeDSMessageExtension) ToMap() (map[string]interface{}, error)

func (*ThreeDSMessageExtension) UnsetCritical

func (o *ThreeDSMessageExtension) UnsetCritical()

UnsetCritical ensures that no value is present for Critical, not even an explicit nil

func (*ThreeDSMessageExtension) UnsetId

func (o *ThreeDSMessageExtension) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*ThreeDSMessageExtension) UnsetName

func (o *ThreeDSMessageExtension) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type ThreeDSMethod

type ThreeDSMethod struct {
	MethodUrl                 NullableString `json:"method_url,omitempty"`
	MethodCompletionIndicator NullableString `json:"method_completion_indicator,omitempty"`
}

ThreeDSMethod struct for ThreeDSMethod

func NewThreeDSMethod

func NewThreeDSMethod() *ThreeDSMethod

NewThreeDSMethod instantiates a new ThreeDSMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSMethodWithDefaults

func NewThreeDSMethodWithDefaults() *ThreeDSMethod

NewThreeDSMethodWithDefaults instantiates a new ThreeDSMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSMethod) GetMethodCompletionIndicator

func (o *ThreeDSMethod) GetMethodCompletionIndicator() string

GetMethodCompletionIndicator returns the MethodCompletionIndicator field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMethod) GetMethodCompletionIndicatorOk

func (o *ThreeDSMethod) GetMethodCompletionIndicatorOk() (*string, bool)

GetMethodCompletionIndicatorOk returns a tuple with the MethodCompletionIndicator 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 (*ThreeDSMethod) GetMethodUrl

func (o *ThreeDSMethod) GetMethodUrl() string

GetMethodUrl returns the MethodUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMethod) GetMethodUrlOk

func (o *ThreeDSMethod) GetMethodUrlOk() (*string, bool)

GetMethodUrlOk returns a tuple with the MethodUrl 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 (*ThreeDSMethod) HasMethodCompletionIndicator

func (o *ThreeDSMethod) HasMethodCompletionIndicator() bool

HasMethodCompletionIndicator returns a boolean if a field is not nil.

func (*ThreeDSMethod) HasMethodUrl

func (o *ThreeDSMethod) HasMethodUrl() bool

HasMethodUrl returns a boolean if a field is not nil.

func (ThreeDSMethod) MarshalJSON

func (o ThreeDSMethod) MarshalJSON() ([]byte, error)

func (*ThreeDSMethod) SetMethodCompletionIndicator

func (o *ThreeDSMethod) SetMethodCompletionIndicator(v string)

SetMethodCompletionIndicator gets a reference to the given NullableString and assigns it to the MethodCompletionIndicator field.

func (*ThreeDSMethod) SetMethodCompletionIndicatorNil

func (o *ThreeDSMethod) SetMethodCompletionIndicatorNil()

SetMethodCompletionIndicatorNil sets the value for MethodCompletionIndicator to be an explicit nil

func (*ThreeDSMethod) SetMethodUrl

func (o *ThreeDSMethod) SetMethodUrl(v string)

SetMethodUrl gets a reference to the given NullableString and assigns it to the MethodUrl field.

func (*ThreeDSMethod) SetMethodUrlNil

func (o *ThreeDSMethod) SetMethodUrlNil()

SetMethodUrlNil sets the value for MethodUrl to be an explicit nil

func (ThreeDSMethod) ToMap

func (o ThreeDSMethod) ToMap() (map[string]interface{}, error)

func (*ThreeDSMethod) UnsetMethodCompletionIndicator

func (o *ThreeDSMethod) UnsetMethodCompletionIndicator()

UnsetMethodCompletionIndicator ensures that no value is present for MethodCompletionIndicator, not even an explicit nil

func (*ThreeDSMethod) UnsetMethodUrl

func (o *ThreeDSMethod) UnsetMethodUrl()

UnsetMethodUrl ensures that no value is present for MethodUrl, not even an explicit nil

type ThreeDSMobileSdkRenderOptions

type ThreeDSMobileSdkRenderOptions struct {
	SdkInterface NullableString `json:"sdk_interface,omitempty"`
	SdkUiType    []string       `json:"sdk_ui_type,omitempty"`
}

ThreeDSMobileSdkRenderOptions struct for ThreeDSMobileSdkRenderOptions

func NewThreeDSMobileSdkRenderOptions

func NewThreeDSMobileSdkRenderOptions() *ThreeDSMobileSdkRenderOptions

NewThreeDSMobileSdkRenderOptions instantiates a new ThreeDSMobileSdkRenderOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSMobileSdkRenderOptionsWithDefaults

func NewThreeDSMobileSdkRenderOptionsWithDefaults() *ThreeDSMobileSdkRenderOptions

NewThreeDSMobileSdkRenderOptionsWithDefaults instantiates a new ThreeDSMobileSdkRenderOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSMobileSdkRenderOptions) GetSdkInterface

func (o *ThreeDSMobileSdkRenderOptions) GetSdkInterface() string

GetSdkInterface returns the SdkInterface field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMobileSdkRenderOptions) GetSdkInterfaceOk

func (o *ThreeDSMobileSdkRenderOptions) GetSdkInterfaceOk() (*string, bool)

GetSdkInterfaceOk returns a tuple with the SdkInterface 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 (*ThreeDSMobileSdkRenderOptions) GetSdkUiType

func (o *ThreeDSMobileSdkRenderOptions) GetSdkUiType() []string

GetSdkUiType returns the SdkUiType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSMobileSdkRenderOptions) GetSdkUiTypeOk

func (o *ThreeDSMobileSdkRenderOptions) GetSdkUiTypeOk() ([]string, bool)

GetSdkUiTypeOk returns a tuple with the SdkUiType 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 (*ThreeDSMobileSdkRenderOptions) HasSdkInterface

func (o *ThreeDSMobileSdkRenderOptions) HasSdkInterface() bool

HasSdkInterface returns a boolean if a field is not nil.

func (*ThreeDSMobileSdkRenderOptions) HasSdkUiType

func (o *ThreeDSMobileSdkRenderOptions) HasSdkUiType() bool

HasSdkUiType returns a boolean if a field is not nil.

func (ThreeDSMobileSdkRenderOptions) MarshalJSON

func (o ThreeDSMobileSdkRenderOptions) MarshalJSON() ([]byte, error)

func (*ThreeDSMobileSdkRenderOptions) SetSdkInterface

func (o *ThreeDSMobileSdkRenderOptions) SetSdkInterface(v string)

SetSdkInterface gets a reference to the given NullableString and assigns it to the SdkInterface field.

func (*ThreeDSMobileSdkRenderOptions) SetSdkInterfaceNil

func (o *ThreeDSMobileSdkRenderOptions) SetSdkInterfaceNil()

SetSdkInterfaceNil sets the value for SdkInterface to be an explicit nil

func (*ThreeDSMobileSdkRenderOptions) SetSdkUiType

func (o *ThreeDSMobileSdkRenderOptions) SetSdkUiType(v []string)

SetSdkUiType gets a reference to the given []string and assigns it to the SdkUiType field.

func (ThreeDSMobileSdkRenderOptions) ToMap

func (o ThreeDSMobileSdkRenderOptions) ToMap() (map[string]interface{}, error)

func (*ThreeDSMobileSdkRenderOptions) UnsetSdkInterface

func (o *ThreeDSMobileSdkRenderOptions) UnsetSdkInterface()

UnsetSdkInterface ensures that no value is present for SdkInterface, not even an explicit nil

type ThreeDSPriorAuthenticationInfo

type ThreeDSPriorAuthenticationInfo struct {
	Method      NullableString `json:"method,omitempty"`
	Timestamp   NullableString `json:"timestamp,omitempty"`
	ReferenceId NullableString `json:"reference_id,omitempty"`
	Data        NullableString `json:"data,omitempty"`
}

ThreeDSPriorAuthenticationInfo struct for ThreeDSPriorAuthenticationInfo

func NewThreeDSPriorAuthenticationInfo

func NewThreeDSPriorAuthenticationInfo() *ThreeDSPriorAuthenticationInfo

NewThreeDSPriorAuthenticationInfo instantiates a new ThreeDSPriorAuthenticationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSPriorAuthenticationInfoWithDefaults

func NewThreeDSPriorAuthenticationInfoWithDefaults() *ThreeDSPriorAuthenticationInfo

NewThreeDSPriorAuthenticationInfoWithDefaults instantiates a new ThreeDSPriorAuthenticationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSPriorAuthenticationInfo) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPriorAuthenticationInfo) GetDataOk

func (o *ThreeDSPriorAuthenticationInfo) GetDataOk() (*string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSPriorAuthenticationInfo) GetMethod

func (o *ThreeDSPriorAuthenticationInfo) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPriorAuthenticationInfo) GetMethodOk

func (o *ThreeDSPriorAuthenticationInfo) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method 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 (*ThreeDSPriorAuthenticationInfo) GetReferenceId

func (o *ThreeDSPriorAuthenticationInfo) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPriorAuthenticationInfo) GetReferenceIdOk

func (o *ThreeDSPriorAuthenticationInfo) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId 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 (*ThreeDSPriorAuthenticationInfo) GetTimestamp

func (o *ThreeDSPriorAuthenticationInfo) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPriorAuthenticationInfo) GetTimestampOk

func (o *ThreeDSPriorAuthenticationInfo) GetTimestampOk() (*string, bool)

GetTimestampOk returns a tuple with the Timestamp 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 (*ThreeDSPriorAuthenticationInfo) HasData

func (o *ThreeDSPriorAuthenticationInfo) HasData() bool

HasData returns a boolean if a field is not nil.

func (*ThreeDSPriorAuthenticationInfo) HasMethod

func (o *ThreeDSPriorAuthenticationInfo) HasMethod() bool

HasMethod returns a boolean if a field is not nil.

func (*ThreeDSPriorAuthenticationInfo) HasReferenceId

func (o *ThreeDSPriorAuthenticationInfo) HasReferenceId() bool

HasReferenceId returns a boolean if a field is not nil.

func (*ThreeDSPriorAuthenticationInfo) HasTimestamp

func (o *ThreeDSPriorAuthenticationInfo) HasTimestamp() bool

HasTimestamp returns a boolean if a field is not nil.

func (ThreeDSPriorAuthenticationInfo) MarshalJSON

func (o ThreeDSPriorAuthenticationInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSPriorAuthenticationInfo) SetData

func (o *ThreeDSPriorAuthenticationInfo) SetData(v string)

SetData gets a reference to the given NullableString and assigns it to the Data field.

func (*ThreeDSPriorAuthenticationInfo) SetDataNil

func (o *ThreeDSPriorAuthenticationInfo) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*ThreeDSPriorAuthenticationInfo) SetMethod

func (o *ThreeDSPriorAuthenticationInfo) SetMethod(v string)

SetMethod gets a reference to the given NullableString and assigns it to the Method field.

func (*ThreeDSPriorAuthenticationInfo) SetMethodNil

func (o *ThreeDSPriorAuthenticationInfo) SetMethodNil()

SetMethodNil sets the value for Method to be an explicit nil

func (*ThreeDSPriorAuthenticationInfo) SetReferenceId

func (o *ThreeDSPriorAuthenticationInfo) SetReferenceId(v string)

SetReferenceId gets a reference to the given NullableString and assigns it to the ReferenceId field.

func (*ThreeDSPriorAuthenticationInfo) SetReferenceIdNil

func (o *ThreeDSPriorAuthenticationInfo) SetReferenceIdNil()

SetReferenceIdNil sets the value for ReferenceId to be an explicit nil

func (*ThreeDSPriorAuthenticationInfo) SetTimestamp

func (o *ThreeDSPriorAuthenticationInfo) SetTimestamp(v string)

SetTimestamp gets a reference to the given NullableString and assigns it to the Timestamp field.

func (*ThreeDSPriorAuthenticationInfo) SetTimestampNil

func (o *ThreeDSPriorAuthenticationInfo) SetTimestampNil()

SetTimestampNil sets the value for Timestamp to be an explicit nil

func (ThreeDSPriorAuthenticationInfo) ToMap

func (o ThreeDSPriorAuthenticationInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSPriorAuthenticationInfo) UnsetData

func (o *ThreeDSPriorAuthenticationInfo) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

func (*ThreeDSPriorAuthenticationInfo) UnsetMethod

func (o *ThreeDSPriorAuthenticationInfo) UnsetMethod()

UnsetMethod ensures that no value is present for Method, not even an explicit nil

func (*ThreeDSPriorAuthenticationInfo) UnsetReferenceId

func (o *ThreeDSPriorAuthenticationInfo) UnsetReferenceId()

UnsetReferenceId ensures that no value is present for ReferenceId, not even an explicit nil

func (*ThreeDSPriorAuthenticationInfo) UnsetTimestamp

func (o *ThreeDSPriorAuthenticationInfo) UnsetTimestamp()

UnsetTimestamp ensures that no value is present for Timestamp, not even an explicit nil

type ThreeDSPurchaseInfo

type ThreeDSPurchaseInfo struct {
	Amount              NullableString `json:"amount,omitempty"`
	Currency            NullableString `json:"currency,omitempty"`
	Exponent            NullableString `json:"exponent,omitempty"`
	Date                NullableString `json:"date,omitempty"`
	TransactionType     NullableString `json:"transaction_type,omitempty"`
	InstallmentCount    NullableString `json:"installment_count,omitempty"`
	RecurringExpiration NullableString `json:"recurring_expiration,omitempty"`
	RecurringFrequency  NullableString `json:"recurring_frequency,omitempty"`
}

ThreeDSPurchaseInfo struct for ThreeDSPurchaseInfo

func NewThreeDSPurchaseInfo

func NewThreeDSPurchaseInfo() *ThreeDSPurchaseInfo

NewThreeDSPurchaseInfo instantiates a new ThreeDSPurchaseInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSPurchaseInfoWithDefaults

func NewThreeDSPurchaseInfoWithDefaults() *ThreeDSPurchaseInfo

NewThreeDSPurchaseInfoWithDefaults instantiates a new ThreeDSPurchaseInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSPurchaseInfo) GetAmount

func (o *ThreeDSPurchaseInfo) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPurchaseInfo) GetAmountOk

func (o *ThreeDSPurchaseInfo) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSPurchaseInfo) GetCurrency

func (o *ThreeDSPurchaseInfo) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPurchaseInfo) GetCurrencyOk

func (o *ThreeDSPurchaseInfo) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency 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 (*ThreeDSPurchaseInfo) GetDate

func (o *ThreeDSPurchaseInfo) GetDate() string

GetDate returns the Date field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPurchaseInfo) GetDateOk

func (o *ThreeDSPurchaseInfo) GetDateOk() (*string, bool)

GetDateOk returns a tuple with the Date field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSPurchaseInfo) GetExponent

func (o *ThreeDSPurchaseInfo) GetExponent() string

GetExponent returns the Exponent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPurchaseInfo) GetExponentOk

func (o *ThreeDSPurchaseInfo) GetExponentOk() (*string, bool)

GetExponentOk returns a tuple with the Exponent 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 (*ThreeDSPurchaseInfo) GetInstallmentCount

func (o *ThreeDSPurchaseInfo) GetInstallmentCount() string

GetInstallmentCount returns the InstallmentCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPurchaseInfo) GetInstallmentCountOk

func (o *ThreeDSPurchaseInfo) GetInstallmentCountOk() (*string, bool)

GetInstallmentCountOk returns a tuple with the InstallmentCount 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 (*ThreeDSPurchaseInfo) GetRecurringExpiration

func (o *ThreeDSPurchaseInfo) GetRecurringExpiration() string

GetRecurringExpiration returns the RecurringExpiration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPurchaseInfo) GetRecurringExpirationOk

func (o *ThreeDSPurchaseInfo) GetRecurringExpirationOk() (*string, bool)

GetRecurringExpirationOk returns a tuple with the RecurringExpiration 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 (*ThreeDSPurchaseInfo) GetRecurringFrequency

func (o *ThreeDSPurchaseInfo) GetRecurringFrequency() string

GetRecurringFrequency returns the RecurringFrequency field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPurchaseInfo) GetRecurringFrequencyOk

func (o *ThreeDSPurchaseInfo) GetRecurringFrequencyOk() (*string, bool)

GetRecurringFrequencyOk returns a tuple with the RecurringFrequency 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 (*ThreeDSPurchaseInfo) GetTransactionType

func (o *ThreeDSPurchaseInfo) GetTransactionType() string

GetTransactionType returns the TransactionType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSPurchaseInfo) GetTransactionTypeOk

func (o *ThreeDSPurchaseInfo) GetTransactionTypeOk() (*string, bool)

GetTransactionTypeOk returns a tuple with the TransactionType 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 (*ThreeDSPurchaseInfo) HasAmount

func (o *ThreeDSPurchaseInfo) HasAmount() bool

HasAmount returns a boolean if a field is not nil.

func (*ThreeDSPurchaseInfo) HasCurrency

func (o *ThreeDSPurchaseInfo) HasCurrency() bool

HasCurrency returns a boolean if a field is not nil.

func (*ThreeDSPurchaseInfo) HasDate

func (o *ThreeDSPurchaseInfo) HasDate() bool

HasDate returns a boolean if a field is not nil.

func (*ThreeDSPurchaseInfo) HasExponent

func (o *ThreeDSPurchaseInfo) HasExponent() bool

HasExponent returns a boolean if a field is not nil.

func (*ThreeDSPurchaseInfo) HasInstallmentCount

func (o *ThreeDSPurchaseInfo) HasInstallmentCount() bool

HasInstallmentCount returns a boolean if a field is not nil.

func (*ThreeDSPurchaseInfo) HasRecurringExpiration

func (o *ThreeDSPurchaseInfo) HasRecurringExpiration() bool

HasRecurringExpiration returns a boolean if a field is not nil.

func (*ThreeDSPurchaseInfo) HasRecurringFrequency

func (o *ThreeDSPurchaseInfo) HasRecurringFrequency() bool

HasRecurringFrequency returns a boolean if a field is not nil.

func (*ThreeDSPurchaseInfo) HasTransactionType

func (o *ThreeDSPurchaseInfo) HasTransactionType() bool

HasTransactionType returns a boolean if a field is not nil.

func (ThreeDSPurchaseInfo) MarshalJSON

func (o ThreeDSPurchaseInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSPurchaseInfo) SetAmount

func (o *ThreeDSPurchaseInfo) SetAmount(v string)

SetAmount gets a reference to the given NullableString and assigns it to the Amount field.

func (*ThreeDSPurchaseInfo) SetAmountNil

func (o *ThreeDSPurchaseInfo) SetAmountNil()

SetAmountNil sets the value for Amount to be an explicit nil

func (*ThreeDSPurchaseInfo) SetCurrency

func (o *ThreeDSPurchaseInfo) SetCurrency(v string)

SetCurrency gets a reference to the given NullableString and assigns it to the Currency field.

func (*ThreeDSPurchaseInfo) SetCurrencyNil

func (o *ThreeDSPurchaseInfo) SetCurrencyNil()

SetCurrencyNil sets the value for Currency to be an explicit nil

func (*ThreeDSPurchaseInfo) SetDate

func (o *ThreeDSPurchaseInfo) SetDate(v string)

SetDate gets a reference to the given NullableString and assigns it to the Date field.

func (*ThreeDSPurchaseInfo) SetDateNil

func (o *ThreeDSPurchaseInfo) SetDateNil()

SetDateNil sets the value for Date to be an explicit nil

func (*ThreeDSPurchaseInfo) SetExponent

func (o *ThreeDSPurchaseInfo) SetExponent(v string)

SetExponent gets a reference to the given NullableString and assigns it to the Exponent field.

func (*ThreeDSPurchaseInfo) SetExponentNil

func (o *ThreeDSPurchaseInfo) SetExponentNil()

SetExponentNil sets the value for Exponent to be an explicit nil

func (*ThreeDSPurchaseInfo) SetInstallmentCount

func (o *ThreeDSPurchaseInfo) SetInstallmentCount(v string)

SetInstallmentCount gets a reference to the given NullableString and assigns it to the InstallmentCount field.

func (*ThreeDSPurchaseInfo) SetInstallmentCountNil

func (o *ThreeDSPurchaseInfo) SetInstallmentCountNil()

SetInstallmentCountNil sets the value for InstallmentCount to be an explicit nil

func (*ThreeDSPurchaseInfo) SetRecurringExpiration

func (o *ThreeDSPurchaseInfo) SetRecurringExpiration(v string)

SetRecurringExpiration gets a reference to the given NullableString and assigns it to the RecurringExpiration field.

func (*ThreeDSPurchaseInfo) SetRecurringExpirationNil

func (o *ThreeDSPurchaseInfo) SetRecurringExpirationNil()

SetRecurringExpirationNil sets the value for RecurringExpiration to be an explicit nil

func (*ThreeDSPurchaseInfo) SetRecurringFrequency

func (o *ThreeDSPurchaseInfo) SetRecurringFrequency(v string)

SetRecurringFrequency gets a reference to the given NullableString and assigns it to the RecurringFrequency field.

func (*ThreeDSPurchaseInfo) SetRecurringFrequencyNil

func (o *ThreeDSPurchaseInfo) SetRecurringFrequencyNil()

SetRecurringFrequencyNil sets the value for RecurringFrequency to be an explicit nil

func (*ThreeDSPurchaseInfo) SetTransactionType

func (o *ThreeDSPurchaseInfo) SetTransactionType(v string)

SetTransactionType gets a reference to the given NullableString and assigns it to the TransactionType field.

func (*ThreeDSPurchaseInfo) SetTransactionTypeNil

func (o *ThreeDSPurchaseInfo) SetTransactionTypeNil()

SetTransactionTypeNil sets the value for TransactionType to be an explicit nil

func (ThreeDSPurchaseInfo) ToMap

func (o ThreeDSPurchaseInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSPurchaseInfo) UnsetAmount

func (o *ThreeDSPurchaseInfo) UnsetAmount()

UnsetAmount ensures that no value is present for Amount, not even an explicit nil

func (*ThreeDSPurchaseInfo) UnsetCurrency

func (o *ThreeDSPurchaseInfo) UnsetCurrency()

UnsetCurrency ensures that no value is present for Currency, not even an explicit nil

func (*ThreeDSPurchaseInfo) UnsetDate

func (o *ThreeDSPurchaseInfo) UnsetDate()

UnsetDate ensures that no value is present for Date, not even an explicit nil

func (*ThreeDSPurchaseInfo) UnsetExponent

func (o *ThreeDSPurchaseInfo) UnsetExponent()

UnsetExponent ensures that no value is present for Exponent, not even an explicit nil

func (*ThreeDSPurchaseInfo) UnsetInstallmentCount

func (o *ThreeDSPurchaseInfo) UnsetInstallmentCount()

UnsetInstallmentCount ensures that no value is present for InstallmentCount, not even an explicit nil

func (*ThreeDSPurchaseInfo) UnsetRecurringExpiration

func (o *ThreeDSPurchaseInfo) UnsetRecurringExpiration()

UnsetRecurringExpiration ensures that no value is present for RecurringExpiration, not even an explicit nil

func (*ThreeDSPurchaseInfo) UnsetRecurringFrequency

func (o *ThreeDSPurchaseInfo) UnsetRecurringFrequency()

UnsetRecurringFrequency ensures that no value is present for RecurringFrequency, not even an explicit nil

func (*ThreeDSPurchaseInfo) UnsetTransactionType

func (o *ThreeDSPurchaseInfo) UnsetTransactionType()

UnsetTransactionType ensures that no value is present for TransactionType, not even an explicit nil

type ThreeDSRequestorInfo

type ThreeDSRequestorInfo struct {
	Id   NullableString `json:"id,omitempty"`
	Name NullableString `json:"name,omitempty"`
	Url  NullableString `json:"url,omitempty"`
}

ThreeDSRequestorInfo struct for ThreeDSRequestorInfo

func NewThreeDSRequestorInfo

func NewThreeDSRequestorInfo() *ThreeDSRequestorInfo

NewThreeDSRequestorInfo instantiates a new ThreeDSRequestorInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSRequestorInfoWithDefaults

func NewThreeDSRequestorInfoWithDefaults() *ThreeDSRequestorInfo

NewThreeDSRequestorInfoWithDefaults instantiates a new ThreeDSRequestorInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSRequestorInfo) GetId

func (o *ThreeDSRequestorInfo) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSRequestorInfo) GetIdOk

func (o *ThreeDSRequestorInfo) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSRequestorInfo) GetName

func (o *ThreeDSRequestorInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSRequestorInfo) GetNameOk

func (o *ThreeDSRequestorInfo) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSRequestorInfo) GetUrl

func (o *ThreeDSRequestorInfo) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSRequestorInfo) GetUrlOk

func (o *ThreeDSRequestorInfo) 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 (*ThreeDSRequestorInfo) HasId

func (o *ThreeDSRequestorInfo) HasId() bool

HasId returns a boolean if a field is not nil.

func (*ThreeDSRequestorInfo) HasName

func (o *ThreeDSRequestorInfo) HasName() bool

HasName returns a boolean if a field is not nil.

func (*ThreeDSRequestorInfo) HasUrl

func (o *ThreeDSRequestorInfo) HasUrl() bool

HasUrl returns a boolean if a field is not nil.

func (ThreeDSRequestorInfo) MarshalJSON

func (o ThreeDSRequestorInfo) MarshalJSON() ([]byte, error)

func (*ThreeDSRequestorInfo) SetId

func (o *ThreeDSRequestorInfo) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*ThreeDSRequestorInfo) SetIdNil

func (o *ThreeDSRequestorInfo) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*ThreeDSRequestorInfo) SetName

func (o *ThreeDSRequestorInfo) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*ThreeDSRequestorInfo) SetNameNil

func (o *ThreeDSRequestorInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ThreeDSRequestorInfo) SetUrl

func (o *ThreeDSRequestorInfo) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*ThreeDSRequestorInfo) SetUrlNil

func (o *ThreeDSRequestorInfo) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (ThreeDSRequestorInfo) ToMap

func (o ThreeDSRequestorInfo) ToMap() (map[string]interface{}, error)

func (*ThreeDSRequestorInfo) UnsetId

func (o *ThreeDSRequestorInfo) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*ThreeDSRequestorInfo) UnsetName

func (o *ThreeDSRequestorInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*ThreeDSRequestorInfo) UnsetUrl

func (o *ThreeDSRequestorInfo) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type ThreeDSSession

type ThreeDSSession struct {
	Id             *string                `json:"id,omitempty"`
	TenantId       *string                `json:"tenant_id,omitempty"`
	PanTokenId     NullableString         `json:"pan_token_id,omitempty"`
	CardBrand      NullableString         `json:"card_brand,omitempty"`
	ExpirationDate *time.Time             `json:"expiration_date,omitempty"`
	CreatedDate    NullableTime           `json:"created_date,omitempty"`
	CreatedBy      NullableString         `json:"created_by,omitempty"`
	ModifiedDate   NullableTime           `json:"modified_date,omitempty"`
	ModifiedBy     NullableString         `json:"modified_by,omitempty"`
	Device         NullableString         `json:"device,omitempty"`
	DeviceInfo     *ThreeDSDeviceInfo     `json:"device_info,omitempty"`
	Version        *ThreeDSVersion        `json:"version,omitempty"`
	Method         *ThreeDSMethod         `json:"method,omitempty"`
	Authentication *ThreeDSAuthentication `json:"authentication,omitempty"`
}

ThreeDSSession struct for ThreeDSSession

func NewThreeDSSession

func NewThreeDSSession() *ThreeDSSession

NewThreeDSSession instantiates a new ThreeDSSession object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSSessionWithDefaults

func NewThreeDSSessionWithDefaults() *ThreeDSSession

NewThreeDSSessionWithDefaults instantiates a new ThreeDSSession object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSSession) GetAuthentication

func (o *ThreeDSSession) GetAuthentication() ThreeDSAuthentication

GetAuthentication returns the Authentication field value if set, zero value otherwise.

func (*ThreeDSSession) GetAuthenticationOk

func (o *ThreeDSSession) GetAuthenticationOk() (*ThreeDSAuthentication, bool)

GetAuthenticationOk returns a tuple with the Authentication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSSession) GetCardBrand

func (o *ThreeDSSession) GetCardBrand() string

GetCardBrand returns the CardBrand field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSSession) GetCardBrandOk

func (o *ThreeDSSession) GetCardBrandOk() (*string, bool)

GetCardBrandOk returns a tuple with the CardBrand 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 (*ThreeDSSession) GetCreatedBy

func (o *ThreeDSSession) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSSession) GetCreatedByOk

func (o *ThreeDSSession) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSSession) GetCreatedDate

func (o *ThreeDSSession) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSSession) GetCreatedDateOk

func (o *ThreeDSSession) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate 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 (*ThreeDSSession) GetDevice

func (o *ThreeDSSession) GetDevice() string

GetDevice returns the Device field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSSession) GetDeviceInfo

func (o *ThreeDSSession) GetDeviceInfo() ThreeDSDeviceInfo

GetDeviceInfo returns the DeviceInfo field value if set, zero value otherwise.

func (*ThreeDSSession) GetDeviceInfoOk

func (o *ThreeDSSession) GetDeviceInfoOk() (*ThreeDSDeviceInfo, bool)

GetDeviceInfoOk returns a tuple with the DeviceInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSSession) GetDeviceOk

func (o *ThreeDSSession) GetDeviceOk() (*string, bool)

GetDeviceOk returns a tuple with the Device field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThreeDSSession) GetExpirationDate

func (o *ThreeDSSession) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*ThreeDSSession) GetExpirationDateOk

func (o *ThreeDSSession) GetExpirationDateOk() (*time.Time, bool)

GetExpirationDateOk returns a tuple with the ExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSSession) GetId

func (o *ThreeDSSession) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ThreeDSSession) GetIdOk

func (o *ThreeDSSession) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSSession) GetMethod

func (o *ThreeDSSession) GetMethod() ThreeDSMethod

GetMethod returns the Method field value if set, zero value otherwise.

func (*ThreeDSSession) GetMethodOk

func (o *ThreeDSSession) GetMethodOk() (*ThreeDSMethod, bool)

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSSession) GetModifiedBy

func (o *ThreeDSSession) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSSession) GetModifiedByOk

func (o *ThreeDSSession) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*ThreeDSSession) GetModifiedDate

func (o *ThreeDSSession) GetModifiedDate() time.Time

GetModifiedDate returns the ModifiedDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSSession) GetModifiedDateOk

func (o *ThreeDSSession) GetModifiedDateOk() (*time.Time, bool)

GetModifiedDateOk returns a tuple with the ModifiedDate 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 (*ThreeDSSession) GetPanTokenId

func (o *ThreeDSSession) GetPanTokenId() string

GetPanTokenId returns the PanTokenId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSSession) GetPanTokenIdOk

func (o *ThreeDSSession) GetPanTokenIdOk() (*string, bool)

GetPanTokenIdOk returns a tuple with the PanTokenId 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 (*ThreeDSSession) GetTenantId

func (o *ThreeDSSession) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ThreeDSSession) GetTenantIdOk

func (o *ThreeDSSession) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSSession) GetVersion

func (o *ThreeDSSession) GetVersion() ThreeDSVersion

GetVersion returns the Version field value if set, zero value otherwise.

func (*ThreeDSSession) GetVersionOk

func (o *ThreeDSSession) GetVersionOk() (*ThreeDSVersion, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThreeDSSession) HasAuthentication

func (o *ThreeDSSession) HasAuthentication() bool

HasAuthentication returns a boolean if a field is not nil.

func (*ThreeDSSession) HasCardBrand

func (o *ThreeDSSession) HasCardBrand() bool

HasCardBrand returns a boolean if a field is not nil.

func (*ThreeDSSession) HasCreatedBy

func (o *ThreeDSSession) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*ThreeDSSession) HasCreatedDate

func (o *ThreeDSSession) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field is not nil.

func (*ThreeDSSession) HasDevice

func (o *ThreeDSSession) HasDevice() bool

HasDevice returns a boolean if a field is not nil.

func (*ThreeDSSession) HasDeviceInfo

func (o *ThreeDSSession) HasDeviceInfo() bool

HasDeviceInfo returns a boolean if a field is not nil.

func (*ThreeDSSession) HasExpirationDate

func (o *ThreeDSSession) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field is not nil.

func (*ThreeDSSession) HasId

func (o *ThreeDSSession) HasId() bool

HasId returns a boolean if a field is not nil.

func (*ThreeDSSession) HasMethod

func (o *ThreeDSSession) HasMethod() bool

HasMethod returns a boolean if a field is not nil.

func (*ThreeDSSession) HasModifiedBy

func (o *ThreeDSSession) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*ThreeDSSession) HasModifiedDate

func (o *ThreeDSSession) HasModifiedDate() bool

HasModifiedDate returns a boolean if a field is not nil.

func (*ThreeDSSession) HasPanTokenId

func (o *ThreeDSSession) HasPanTokenId() bool

HasPanTokenId returns a boolean if a field is not nil.

func (*ThreeDSSession) HasTenantId

func (o *ThreeDSSession) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (*ThreeDSSession) HasVersion

func (o *ThreeDSSession) HasVersion() bool

HasVersion returns a boolean if a field is not nil.

func (ThreeDSSession) MarshalJSON

func (o ThreeDSSession) MarshalJSON() ([]byte, error)

func (*ThreeDSSession) SetAuthentication

func (o *ThreeDSSession) SetAuthentication(v ThreeDSAuthentication)

SetAuthentication gets a reference to the given ThreeDSAuthentication and assigns it to the Authentication field.

func (*ThreeDSSession) SetCardBrand

func (o *ThreeDSSession) SetCardBrand(v string)

SetCardBrand gets a reference to the given NullableString and assigns it to the CardBrand field.

func (*ThreeDSSession) SetCardBrandNil

func (o *ThreeDSSession) SetCardBrandNil()

SetCardBrandNil sets the value for CardBrand to be an explicit nil

func (*ThreeDSSession) SetCreatedBy

func (o *ThreeDSSession) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*ThreeDSSession) SetCreatedByNil

func (o *ThreeDSSession) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ThreeDSSession) SetCreatedDate

func (o *ThreeDSSession) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given NullableTime and assigns it to the CreatedDate field.

func (*ThreeDSSession) SetCreatedDateNil

func (o *ThreeDSSession) SetCreatedDateNil()

SetCreatedDateNil sets the value for CreatedDate to be an explicit nil

func (*ThreeDSSession) SetDevice

func (o *ThreeDSSession) SetDevice(v string)

SetDevice gets a reference to the given NullableString and assigns it to the Device field.

func (*ThreeDSSession) SetDeviceInfo

func (o *ThreeDSSession) SetDeviceInfo(v ThreeDSDeviceInfo)

SetDeviceInfo gets a reference to the given ThreeDSDeviceInfo and assigns it to the DeviceInfo field.

func (*ThreeDSSession) SetDeviceNil

func (o *ThreeDSSession) SetDeviceNil()

SetDeviceNil sets the value for Device to be an explicit nil

func (*ThreeDSSession) SetExpirationDate

func (o *ThreeDSSession) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*ThreeDSSession) SetId

func (o *ThreeDSSession) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ThreeDSSession) SetMethod

func (o *ThreeDSSession) SetMethod(v ThreeDSMethod)

SetMethod gets a reference to the given ThreeDSMethod and assigns it to the Method field.

func (*ThreeDSSession) SetModifiedBy

func (o *ThreeDSSession) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*ThreeDSSession) SetModifiedByNil

func (o *ThreeDSSession) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*ThreeDSSession) SetModifiedDate

func (o *ThreeDSSession) SetModifiedDate(v time.Time)

SetModifiedDate gets a reference to the given NullableTime and assigns it to the ModifiedDate field.

func (*ThreeDSSession) SetModifiedDateNil

func (o *ThreeDSSession) SetModifiedDateNil()

SetModifiedDateNil sets the value for ModifiedDate to be an explicit nil

func (*ThreeDSSession) SetPanTokenId

func (o *ThreeDSSession) SetPanTokenId(v string)

SetPanTokenId gets a reference to the given NullableString and assigns it to the PanTokenId field.

func (*ThreeDSSession) SetPanTokenIdNil

func (o *ThreeDSSession) SetPanTokenIdNil()

SetPanTokenIdNil sets the value for PanTokenId to be an explicit nil

func (*ThreeDSSession) SetTenantId

func (o *ThreeDSSession) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*ThreeDSSession) SetVersion

func (o *ThreeDSSession) SetVersion(v ThreeDSVersion)

SetVersion gets a reference to the given ThreeDSVersion and assigns it to the Version field.

func (ThreeDSSession) ToMap

func (o ThreeDSSession) ToMap() (map[string]interface{}, error)

func (*ThreeDSSession) UnsetCardBrand

func (o *ThreeDSSession) UnsetCardBrand()

UnsetCardBrand ensures that no value is present for CardBrand, not even an explicit nil

func (*ThreeDSSession) UnsetCreatedBy

func (o *ThreeDSSession) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*ThreeDSSession) UnsetCreatedDate

func (o *ThreeDSSession) UnsetCreatedDate()

UnsetCreatedDate ensures that no value is present for CreatedDate, not even an explicit nil

func (*ThreeDSSession) UnsetDevice

func (o *ThreeDSSession) UnsetDevice()

UnsetDevice ensures that no value is present for Device, not even an explicit nil

func (*ThreeDSSession) UnsetModifiedBy

func (o *ThreeDSSession) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*ThreeDSSession) UnsetModifiedDate

func (o *ThreeDSSession) UnsetModifiedDate()

UnsetModifiedDate ensures that no value is present for ModifiedDate, not even an explicit nil

func (*ThreeDSSession) UnsetPanTokenId

func (o *ThreeDSSession) UnsetPanTokenId()

UnsetPanTokenId ensures that no value is present for PanTokenId, not even an explicit nil

type ThreeDSVersion

type ThreeDSVersion struct {
	RecommendedVersion          NullableString `json:"recommended_version,omitempty"`
	AvailableVersion            []string       `json:"available_version,omitempty"`
	EarliestAcsSupportedVersion NullableString `json:"earliest_acs_supported_version,omitempty"`
	EarliestDsSupportedVersion  NullableString `json:"earliest_ds_supported_version,omitempty"`
	LatestAcsSupportedVersion   NullableString `json:"latest_acs_supported_version,omitempty"`
	LatestDsSupportedVersion    NullableString `json:"latest_ds_supported_version,omitempty"`
	AcsInformation              []string       `json:"acs_information,omitempty"`
}

ThreeDSVersion struct for ThreeDSVersion

func NewThreeDSVersion

func NewThreeDSVersion() *ThreeDSVersion

NewThreeDSVersion instantiates a new ThreeDSVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThreeDSVersionWithDefaults

func NewThreeDSVersionWithDefaults() *ThreeDSVersion

NewThreeDSVersionWithDefaults instantiates a new ThreeDSVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThreeDSVersion) GetAcsInformation

func (o *ThreeDSVersion) GetAcsInformation() []string

GetAcsInformation returns the AcsInformation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSVersion) GetAcsInformationOk

func (o *ThreeDSVersion) GetAcsInformationOk() ([]string, bool)

GetAcsInformationOk returns a tuple with the AcsInformation 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 (*ThreeDSVersion) GetAvailableVersion

func (o *ThreeDSVersion) GetAvailableVersion() []string

GetAvailableVersion returns the AvailableVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSVersion) GetAvailableVersionOk

func (o *ThreeDSVersion) GetAvailableVersionOk() ([]string, bool)

GetAvailableVersionOk returns a tuple with the AvailableVersion 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 (*ThreeDSVersion) GetEarliestAcsSupportedVersion

func (o *ThreeDSVersion) GetEarliestAcsSupportedVersion() string

GetEarliestAcsSupportedVersion returns the EarliestAcsSupportedVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSVersion) GetEarliestAcsSupportedVersionOk

func (o *ThreeDSVersion) GetEarliestAcsSupportedVersionOk() (*string, bool)

GetEarliestAcsSupportedVersionOk returns a tuple with the EarliestAcsSupportedVersion 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 (*ThreeDSVersion) GetEarliestDsSupportedVersion

func (o *ThreeDSVersion) GetEarliestDsSupportedVersion() string

GetEarliestDsSupportedVersion returns the EarliestDsSupportedVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSVersion) GetEarliestDsSupportedVersionOk

func (o *ThreeDSVersion) GetEarliestDsSupportedVersionOk() (*string, bool)

GetEarliestDsSupportedVersionOk returns a tuple with the EarliestDsSupportedVersion 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 (*ThreeDSVersion) GetLatestAcsSupportedVersion

func (o *ThreeDSVersion) GetLatestAcsSupportedVersion() string

GetLatestAcsSupportedVersion returns the LatestAcsSupportedVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSVersion) GetLatestAcsSupportedVersionOk

func (o *ThreeDSVersion) GetLatestAcsSupportedVersionOk() (*string, bool)

GetLatestAcsSupportedVersionOk returns a tuple with the LatestAcsSupportedVersion 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 (*ThreeDSVersion) GetLatestDsSupportedVersion

func (o *ThreeDSVersion) GetLatestDsSupportedVersion() string

GetLatestDsSupportedVersion returns the LatestDsSupportedVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSVersion) GetLatestDsSupportedVersionOk

func (o *ThreeDSVersion) GetLatestDsSupportedVersionOk() (*string, bool)

GetLatestDsSupportedVersionOk returns a tuple with the LatestDsSupportedVersion 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 (*ThreeDSVersion) GetRecommendedVersion

func (o *ThreeDSVersion) GetRecommendedVersion() string

GetRecommendedVersion returns the RecommendedVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThreeDSVersion) GetRecommendedVersionOk

func (o *ThreeDSVersion) GetRecommendedVersionOk() (*string, bool)

GetRecommendedVersionOk returns a tuple with the RecommendedVersion 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 (*ThreeDSVersion) HasAcsInformation

func (o *ThreeDSVersion) HasAcsInformation() bool

HasAcsInformation returns a boolean if a field is not nil.

func (*ThreeDSVersion) HasAvailableVersion

func (o *ThreeDSVersion) HasAvailableVersion() bool

HasAvailableVersion returns a boolean if a field is not nil.

func (*ThreeDSVersion) HasEarliestAcsSupportedVersion

func (o *ThreeDSVersion) HasEarliestAcsSupportedVersion() bool

HasEarliestAcsSupportedVersion returns a boolean if a field is not nil.

func (*ThreeDSVersion) HasEarliestDsSupportedVersion

func (o *ThreeDSVersion) HasEarliestDsSupportedVersion() bool

HasEarliestDsSupportedVersion returns a boolean if a field is not nil.

func (*ThreeDSVersion) HasLatestAcsSupportedVersion

func (o *ThreeDSVersion) HasLatestAcsSupportedVersion() bool

HasLatestAcsSupportedVersion returns a boolean if a field is not nil.

func (*ThreeDSVersion) HasLatestDsSupportedVersion

func (o *ThreeDSVersion) HasLatestDsSupportedVersion() bool

HasLatestDsSupportedVersion returns a boolean if a field is not nil.

func (*ThreeDSVersion) HasRecommendedVersion

func (o *ThreeDSVersion) HasRecommendedVersion() bool

HasRecommendedVersion returns a boolean if a field is not nil.

func (ThreeDSVersion) MarshalJSON

func (o ThreeDSVersion) MarshalJSON() ([]byte, error)

func (*ThreeDSVersion) SetAcsInformation

func (o *ThreeDSVersion) SetAcsInformation(v []string)

SetAcsInformation gets a reference to the given []string and assigns it to the AcsInformation field.

func (*ThreeDSVersion) SetAvailableVersion

func (o *ThreeDSVersion) SetAvailableVersion(v []string)

SetAvailableVersion gets a reference to the given []string and assigns it to the AvailableVersion field.

func (*ThreeDSVersion) SetEarliestAcsSupportedVersion

func (o *ThreeDSVersion) SetEarliestAcsSupportedVersion(v string)

SetEarliestAcsSupportedVersion gets a reference to the given NullableString and assigns it to the EarliestAcsSupportedVersion field.

func (*ThreeDSVersion) SetEarliestAcsSupportedVersionNil

func (o *ThreeDSVersion) SetEarliestAcsSupportedVersionNil()

SetEarliestAcsSupportedVersionNil sets the value for EarliestAcsSupportedVersion to be an explicit nil

func (*ThreeDSVersion) SetEarliestDsSupportedVersion

func (o *ThreeDSVersion) SetEarliestDsSupportedVersion(v string)

SetEarliestDsSupportedVersion gets a reference to the given NullableString and assigns it to the EarliestDsSupportedVersion field.

func (*ThreeDSVersion) SetEarliestDsSupportedVersionNil

func (o *ThreeDSVersion) SetEarliestDsSupportedVersionNil()

SetEarliestDsSupportedVersionNil sets the value for EarliestDsSupportedVersion to be an explicit nil

func (*ThreeDSVersion) SetLatestAcsSupportedVersion

func (o *ThreeDSVersion) SetLatestAcsSupportedVersion(v string)

SetLatestAcsSupportedVersion gets a reference to the given NullableString and assigns it to the LatestAcsSupportedVersion field.

func (*ThreeDSVersion) SetLatestAcsSupportedVersionNil

func (o *ThreeDSVersion) SetLatestAcsSupportedVersionNil()

SetLatestAcsSupportedVersionNil sets the value for LatestAcsSupportedVersion to be an explicit nil

func (*ThreeDSVersion) SetLatestDsSupportedVersion

func (o *ThreeDSVersion) SetLatestDsSupportedVersion(v string)

SetLatestDsSupportedVersion gets a reference to the given NullableString and assigns it to the LatestDsSupportedVersion field.

func (*ThreeDSVersion) SetLatestDsSupportedVersionNil

func (o *ThreeDSVersion) SetLatestDsSupportedVersionNil()

SetLatestDsSupportedVersionNil sets the value for LatestDsSupportedVersion to be an explicit nil

func (*ThreeDSVersion) SetRecommendedVersion

func (o *ThreeDSVersion) SetRecommendedVersion(v string)

SetRecommendedVersion gets a reference to the given NullableString and assigns it to the RecommendedVersion field.

func (*ThreeDSVersion) SetRecommendedVersionNil

func (o *ThreeDSVersion) SetRecommendedVersionNil()

SetRecommendedVersionNil sets the value for RecommendedVersion to be an explicit nil

func (ThreeDSVersion) ToMap

func (o ThreeDSVersion) ToMap() (map[string]interface{}, error)

func (*ThreeDSVersion) UnsetEarliestAcsSupportedVersion

func (o *ThreeDSVersion) UnsetEarliestAcsSupportedVersion()

UnsetEarliestAcsSupportedVersion ensures that no value is present for EarliestAcsSupportedVersion, not even an explicit nil

func (*ThreeDSVersion) UnsetEarliestDsSupportedVersion

func (o *ThreeDSVersion) UnsetEarliestDsSupportedVersion()

UnsetEarliestDsSupportedVersion ensures that no value is present for EarliestDsSupportedVersion, not even an explicit nil

func (*ThreeDSVersion) UnsetLatestAcsSupportedVersion

func (o *ThreeDSVersion) UnsetLatestAcsSupportedVersion()

UnsetLatestAcsSupportedVersion ensures that no value is present for LatestAcsSupportedVersion, not even an explicit nil

func (*ThreeDSVersion) UnsetLatestDsSupportedVersion

func (o *ThreeDSVersion) UnsetLatestDsSupportedVersion()

UnsetLatestDsSupportedVersion ensures that no value is present for LatestDsSupportedVersion, not even an explicit nil

func (*ThreeDSVersion) UnsetRecommendedVersion

func (o *ThreeDSVersion) UnsetRecommendedVersion()

UnsetRecommendedVersion ensures that no value is present for RecommendedVersion, not even an explicit nil

type Token

type Token struct {
	Id                    *string           `json:"id,omitempty"`
	Type                  *string           `json:"type,omitempty"`
	TenantId              *string           `json:"tenant_id,omitempty"`
	Data                  interface{}       `json:"data,omitempty"`
	Metadata              map[string]string `json:"metadata,omitempty"`
	Enrichments           *TokenEnrichments `json:"enrichments,omitempty"`
	CreatedBy             NullableString    `json:"created_by,omitempty"`
	CreatedAt             NullableTime      `json:"created_at,omitempty"`
	ModifiedBy            NullableString    `json:"modified_by,omitempty"`
	ModifiedAt            NullableTime      `json:"modified_at,omitempty"`
	Fingerprint           NullableString    `json:"fingerprint,omitempty"`
	FingerprintExpression NullableString    `json:"fingerprint_expression,omitempty"`
	Mask                  interface{}       `json:"mask,omitempty"`
	Privacy               *Privacy          `json:"privacy,omitempty"`
	SearchIndexes         []string          `json:"search_indexes,omitempty"`
	ExpiresAt             NullableTime      `json:"expires_at,omitempty"`
	Containers            []string          `json:"containers,omitempty"`
	Aliases               []string          `json:"aliases,omitempty"`
}

Token struct for Token

func NewToken

func NewToken() *Token

NewToken instantiates a new Token object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTokenWithDefaults

func NewTokenWithDefaults() *Token

NewTokenWithDefaults instantiates a new Token object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Token) GetAliases

func (o *Token) GetAliases() []string

GetAliases returns the Aliases field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetAliasesOk

func (o *Token) GetAliasesOk() ([]string, bool)

GetAliasesOk returns a tuple with the Aliases 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 (*Token) GetContainers

func (o *Token) GetContainers() []string

GetContainers returns the Containers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetContainersOk

func (o *Token) GetContainersOk() ([]string, bool)

GetContainersOk returns a tuple with the Containers 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 (*Token) GetCreatedAt

func (o *Token) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetCreatedAtOk

func (o *Token) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Token) GetCreatedBy

func (o *Token) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetCreatedByOk

func (o *Token) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Token) GetData

func (o *Token) GetData() interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetDataOk

func (o *Token) GetDataOk() (*interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Token) GetEnrichments

func (o *Token) GetEnrichments() TokenEnrichments

GetEnrichments returns the Enrichments field value if set, zero value otherwise.

func (*Token) GetEnrichmentsOk

func (o *Token) GetEnrichmentsOk() (*TokenEnrichments, bool)

GetEnrichmentsOk returns a tuple with the Enrichments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Token) GetExpiresAt

func (o *Token) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetExpiresAtOk

func (o *Token) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Token) GetFingerprint

func (o *Token) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetFingerprintExpression

func (o *Token) GetFingerprintExpression() string

GetFingerprintExpression returns the FingerprintExpression field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetFingerprintExpressionOk

func (o *Token) GetFingerprintExpressionOk() (*string, bool)

GetFingerprintExpressionOk returns a tuple with the FingerprintExpression 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 (*Token) GetFingerprintOk

func (o *Token) GetFingerprintOk() (*string, bool)

GetFingerprintOk returns a tuple with the Fingerprint 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 (*Token) GetId

func (o *Token) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Token) GetIdOk

func (o *Token) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Token) GetMask

func (o *Token) GetMask() interface{}

GetMask returns the Mask field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetMaskOk

func (o *Token) GetMaskOk() (*interface{}, bool)

GetMaskOk returns a tuple with the Mask 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 (*Token) GetMetadata

func (o *Token) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetMetadataOk

func (o *Token) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Token) GetModifiedAt

func (o *Token) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetModifiedAtOk

func (o *Token) GetModifiedAtOk() (*time.Time, bool)

GetModifiedAtOk returns a tuple with the ModifiedAt 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 (*Token) GetModifiedBy

func (o *Token) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetModifiedByOk

func (o *Token) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy 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 (*Token) GetPrivacy

func (o *Token) GetPrivacy() Privacy

GetPrivacy returns the Privacy field value if set, zero value otherwise.

func (*Token) GetPrivacyOk

func (o *Token) GetPrivacyOk() (*Privacy, bool)

GetPrivacyOk returns a tuple with the Privacy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Token) GetSearchIndexes

func (o *Token) GetSearchIndexes() []string

GetSearchIndexes returns the SearchIndexes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Token) GetSearchIndexesOk

func (o *Token) GetSearchIndexesOk() ([]string, bool)

GetSearchIndexesOk returns a tuple with the SearchIndexes 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 (*Token) GetTenantId

func (o *Token) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Token) GetTenantIdOk

func (o *Token) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Token) GetType

func (o *Token) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Token) GetTypeOk

func (o *Token) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Token) HasAliases

func (o *Token) HasAliases() bool

HasAliases returns a boolean if a field is not nil.

func (*Token) HasContainers

func (o *Token) HasContainers() bool

HasContainers returns a boolean if a field is not nil.

func (*Token) HasCreatedAt

func (o *Token) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*Token) HasCreatedBy

func (o *Token) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*Token) HasData

func (o *Token) HasData() bool

HasData returns a boolean if a field is not nil.

func (*Token) HasEnrichments

func (o *Token) HasEnrichments() bool

HasEnrichments returns a boolean if a field is not nil.

func (*Token) HasExpiresAt

func (o *Token) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*Token) HasFingerprint

func (o *Token) HasFingerprint() bool

HasFingerprint returns a boolean if a field is not nil.

func (*Token) HasFingerprintExpression

func (o *Token) HasFingerprintExpression() bool

HasFingerprintExpression returns a boolean if a field is not nil.

func (*Token) HasId

func (o *Token) HasId() bool

HasId returns a boolean if a field is not nil.

func (*Token) HasMask

func (o *Token) HasMask() bool

HasMask returns a boolean if a field is not nil.

func (*Token) HasMetadata

func (o *Token) HasMetadata() bool

HasMetadata returns a boolean if a field is not nil.

func (*Token) HasModifiedAt

func (o *Token) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field is not nil.

func (*Token) HasModifiedBy

func (o *Token) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field is not nil.

func (*Token) HasPrivacy

func (o *Token) HasPrivacy() bool

HasPrivacy returns a boolean if a field is not nil.

func (*Token) HasSearchIndexes

func (o *Token) HasSearchIndexes() bool

HasSearchIndexes returns a boolean if a field is not nil.

func (*Token) HasTenantId

func (o *Token) HasTenantId() bool

HasTenantId returns a boolean if a field is not nil.

func (*Token) HasType

func (o *Token) HasType() bool

HasType returns a boolean if a field is not nil.

func (Token) MarshalJSON

func (o Token) MarshalJSON() ([]byte, error)

func (*Token) SetAliases

func (o *Token) SetAliases(v []string)

SetAliases gets a reference to the given []string and assigns it to the Aliases field.

func (*Token) SetContainers

func (o *Token) SetContainers(v []string)

SetContainers gets a reference to the given []string and assigns it to the Containers field.

func (*Token) SetCreatedAt

func (o *Token) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given NullableTime and assigns it to the CreatedAt field.

func (*Token) SetCreatedAtNil

func (o *Token) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Token) SetCreatedBy

func (o *Token) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*Token) SetCreatedByNil

func (o *Token) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Token) SetData

func (o *Token) SetData(v interface{})

SetData gets a reference to the given interface{} and assigns it to the Data field.

func (*Token) SetEnrichments

func (o *Token) SetEnrichments(v TokenEnrichments)

SetEnrichments gets a reference to the given TokenEnrichments and assigns it to the Enrichments field.

func (*Token) SetExpiresAt

func (o *Token) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given NullableTime and assigns it to the ExpiresAt field.

func (*Token) SetExpiresAtNil

func (o *Token) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*Token) SetFingerprint

func (o *Token) SetFingerprint(v string)

SetFingerprint gets a reference to the given NullableString and assigns it to the Fingerprint field.

func (*Token) SetFingerprintExpression

func (o *Token) SetFingerprintExpression(v string)

SetFingerprintExpression gets a reference to the given NullableString and assigns it to the FingerprintExpression field.

func (*Token) SetFingerprintExpressionNil

func (o *Token) SetFingerprintExpressionNil()

SetFingerprintExpressionNil sets the value for FingerprintExpression to be an explicit nil

func (*Token) SetFingerprintNil

func (o *Token) SetFingerprintNil()

SetFingerprintNil sets the value for Fingerprint to be an explicit nil

func (*Token) SetId

func (o *Token) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Token) SetMask

func (o *Token) SetMask(v interface{})

SetMask gets a reference to the given interface{} and assigns it to the Mask field.

func (*Token) SetMetadata

func (o *Token) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*Token) SetModifiedAt

func (o *Token) SetModifiedAt(v time.Time)

SetModifiedAt gets a reference to the given NullableTime and assigns it to the ModifiedAt field.

func (*Token) SetModifiedAtNil

func (o *Token) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*Token) SetModifiedBy

func (o *Token) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*Token) SetModifiedByNil

func (o *Token) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Token) SetPrivacy

func (o *Token) SetPrivacy(v Privacy)

SetPrivacy gets a reference to the given Privacy and assigns it to the Privacy field.

func (*Token) SetSearchIndexes

func (o *Token) SetSearchIndexes(v []string)

SetSearchIndexes gets a reference to the given []string and assigns it to the SearchIndexes field.

func (*Token) SetTenantId

func (o *Token) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Token) SetType

func (o *Token) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Token) ToMap

func (o Token) ToMap() (map[string]interface{}, error)

func (*Token) UnsetCreatedAt

func (o *Token) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*Token) UnsetCreatedBy

func (o *Token) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*Token) UnsetExpiresAt

func (o *Token) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

func (*Token) UnsetFingerprint

func (o *Token) UnsetFingerprint()

UnsetFingerprint ensures that no value is present for Fingerprint, not even an explicit nil

func (*Token) UnsetFingerprintExpression

func (o *Token) UnsetFingerprintExpression()

UnsetFingerprintExpression ensures that no value is present for FingerprintExpression, not even an explicit nil

func (*Token) UnsetModifiedAt

func (o *Token) UnsetModifiedAt()

UnsetModifiedAt ensures that no value is present for ModifiedAt, not even an explicit nil

func (*Token) UnsetModifiedBy

func (o *Token) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

type TokenEnrichments

type TokenEnrichments struct {
	BinDetails *BinDetails `json:"bin_details,omitempty"`
}

TokenEnrichments struct for TokenEnrichments

func NewTokenEnrichments

func NewTokenEnrichments() *TokenEnrichments

NewTokenEnrichments instantiates a new TokenEnrichments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTokenEnrichmentsWithDefaults

func NewTokenEnrichmentsWithDefaults() *TokenEnrichments

NewTokenEnrichmentsWithDefaults instantiates a new TokenEnrichments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TokenEnrichments) GetBinDetails

func (o *TokenEnrichments) GetBinDetails() BinDetails

GetBinDetails returns the BinDetails field value if set, zero value otherwise.

func (*TokenEnrichments) GetBinDetailsOk

func (o *TokenEnrichments) GetBinDetailsOk() (*BinDetails, bool)

GetBinDetailsOk returns a tuple with the BinDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenEnrichments) HasBinDetails

func (o *TokenEnrichments) HasBinDetails() bool

HasBinDetails returns a boolean if a field is not nil.

func (TokenEnrichments) MarshalJSON

func (o TokenEnrichments) MarshalJSON() ([]byte, error)

func (*TokenEnrichments) SetBinDetails

func (o *TokenEnrichments) SetBinDetails(v BinDetails)

SetBinDetails gets a reference to the given BinDetails and assigns it to the BinDetails field.

func (TokenEnrichments) ToMap

func (o TokenEnrichments) ToMap() (map[string]interface{}, error)

type TokenMetrics

type TokenMetrics struct {
	Count         *int64       `json:"count,omitempty"`
	LastCreatedAt NullableTime `json:"last_created_at,omitempty"`
}

TokenMetrics struct for TokenMetrics

func NewTokenMetrics

func NewTokenMetrics() *TokenMetrics

NewTokenMetrics instantiates a new TokenMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTokenMetricsWithDefaults

func NewTokenMetricsWithDefaults() *TokenMetrics

NewTokenMetricsWithDefaults instantiates a new TokenMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TokenMetrics) GetCount

func (o *TokenMetrics) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*TokenMetrics) GetCountOk

func (o *TokenMetrics) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenMetrics) GetLastCreatedAt

func (o *TokenMetrics) GetLastCreatedAt() time.Time

GetLastCreatedAt returns the LastCreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenMetrics) GetLastCreatedAtOk

func (o *TokenMetrics) GetLastCreatedAtOk() (*time.Time, bool)

GetLastCreatedAtOk returns a tuple with the LastCreatedAt 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 (*TokenMetrics) HasCount

func (o *TokenMetrics) HasCount() bool

HasCount returns a boolean if a field is not nil.

func (*TokenMetrics) HasLastCreatedAt

func (o *TokenMetrics) HasLastCreatedAt() bool

HasLastCreatedAt returns a boolean if a field is not nil.

func (TokenMetrics) MarshalJSON

func (o TokenMetrics) MarshalJSON() ([]byte, error)

func (*TokenMetrics) SetCount

func (o *TokenMetrics) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*TokenMetrics) SetLastCreatedAt

func (o *TokenMetrics) SetLastCreatedAt(v time.Time)

SetLastCreatedAt gets a reference to the given NullableTime and assigns it to the LastCreatedAt field.

func (*TokenMetrics) SetLastCreatedAtNil

func (o *TokenMetrics) SetLastCreatedAtNil()

SetLastCreatedAtNil sets the value for LastCreatedAt to be an explicit nil

func (TokenMetrics) ToMap

func (o TokenMetrics) ToMap() (map[string]interface{}, error)

func (*TokenMetrics) UnsetLastCreatedAt

func (o *TokenMetrics) UnsetLastCreatedAt()

UnsetLastCreatedAt ensures that no value is present for LastCreatedAt, not even an explicit nil

type TokenPaginatedList

type TokenPaginatedList struct {
	Pagination *Pagination `json:"pagination,omitempty"`
	Data       []Token     `json:"data,omitempty"`
}

TokenPaginatedList struct for TokenPaginatedList

func NewTokenPaginatedList

func NewTokenPaginatedList() *TokenPaginatedList

NewTokenPaginatedList instantiates a new TokenPaginatedList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTokenPaginatedListWithDefaults

func NewTokenPaginatedListWithDefaults() *TokenPaginatedList

NewTokenPaginatedListWithDefaults instantiates a new TokenPaginatedList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TokenPaginatedList) GetData

func (o *TokenPaginatedList) GetData() []Token

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenPaginatedList) GetDataOk

func (o *TokenPaginatedList) GetDataOk() ([]Token, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TokenPaginatedList) GetPagination

func (o *TokenPaginatedList) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*TokenPaginatedList) GetPaginationOk

func (o *TokenPaginatedList) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenPaginatedList) HasData

func (o *TokenPaginatedList) HasData() bool

HasData returns a boolean if a field is not nil.

func (*TokenPaginatedList) HasPagination

func (o *TokenPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field is not nil.

func (TokenPaginatedList) MarshalJSON

func (o TokenPaginatedList) MarshalJSON() ([]byte, error)

func (*TokenPaginatedList) SetData

func (o *TokenPaginatedList) SetData(v []Token)

SetData gets a reference to the given []Token and assigns it to the Data field.

func (*TokenPaginatedList) SetPagination

func (o *TokenPaginatedList) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (TokenPaginatedList) ToMap

func (o TokenPaginatedList) ToMap() (map[string]interface{}, error)

type TokenReport

type TokenReport struct {
	IncludedMonthlyActiveTokens *int64                  `json:"included_monthly_active_tokens,omitempty"`
	MonthlyActiveTokens         *int64                  `json:"monthly_active_tokens,omitempty"`
	MetricsByType               map[string]TokenMetrics `json:"metrics_by_type,omitempty"`
}

TokenReport struct for TokenReport

func NewTokenReport

func NewTokenReport() *TokenReport

NewTokenReport instantiates a new TokenReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTokenReportWithDefaults

func NewTokenReportWithDefaults() *TokenReport

NewTokenReportWithDefaults instantiates a new TokenReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TokenReport) GetIncludedMonthlyActiveTokens

func (o *TokenReport) GetIncludedMonthlyActiveTokens() int64

GetIncludedMonthlyActiveTokens returns the IncludedMonthlyActiveTokens field value if set, zero value otherwise.

func (*TokenReport) GetIncludedMonthlyActiveTokensOk

func (o *TokenReport) GetIncludedMonthlyActiveTokensOk() (*int64, bool)

GetIncludedMonthlyActiveTokensOk returns a tuple with the IncludedMonthlyActiveTokens field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenReport) GetMetricsByType

func (o *TokenReport) GetMetricsByType() map[string]TokenMetrics

GetMetricsByType returns the MetricsByType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenReport) GetMetricsByTypeOk

func (o *TokenReport) GetMetricsByTypeOk() (*map[string]TokenMetrics, bool)

GetMetricsByTypeOk returns a tuple with the MetricsByType 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 (*TokenReport) GetMonthlyActiveTokens

func (o *TokenReport) GetMonthlyActiveTokens() int64

GetMonthlyActiveTokens returns the MonthlyActiveTokens field value if set, zero value otherwise.

func (*TokenReport) GetMonthlyActiveTokensOk

func (o *TokenReport) GetMonthlyActiveTokensOk() (*int64, bool)

GetMonthlyActiveTokensOk returns a tuple with the MonthlyActiveTokens field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenReport) HasIncludedMonthlyActiveTokens

func (o *TokenReport) HasIncludedMonthlyActiveTokens() bool

HasIncludedMonthlyActiveTokens returns a boolean if a field is not nil.

func (*TokenReport) HasMetricsByType

func (o *TokenReport) HasMetricsByType() bool

HasMetricsByType returns a boolean if a field is not nil.

func (*TokenReport) HasMonthlyActiveTokens

func (o *TokenReport) HasMonthlyActiveTokens() bool

HasMonthlyActiveTokens returns a boolean if a field is not nil.

func (TokenReport) MarshalJSON

func (o TokenReport) MarshalJSON() ([]byte, error)

func (*TokenReport) SetIncludedMonthlyActiveTokens

func (o *TokenReport) SetIncludedMonthlyActiveTokens(v int64)

SetIncludedMonthlyActiveTokens gets a reference to the given int64 and assigns it to the IncludedMonthlyActiveTokens field.

func (*TokenReport) SetMetricsByType

func (o *TokenReport) SetMetricsByType(v map[string]TokenMetrics)

SetMetricsByType gets a reference to the given map[string]TokenMetrics and assigns it to the MetricsByType field.

func (*TokenReport) SetMonthlyActiveTokens

func (o *TokenReport) SetMonthlyActiveTokens(v int64)

SetMonthlyActiveTokens gets a reference to the given int64 and assigns it to the MonthlyActiveTokens field.

func (TokenReport) ToMap

func (o TokenReport) ToMap() (map[string]interface{}, error)

type TokenizeApiService

type TokenizeApiService service

TokenizeApiService TokenizeApi service

func (*TokenizeApiService) Tokenize

Tokenize Method for Tokenize

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TokenizeApiTokenizeRequest

func (*TokenizeApiService) TokenizeExecute

func (a *TokenizeApiService) TokenizeExecute(r TokenizeApiTokenizeRequest) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

type TokenizeApiTokenizeRequest

type TokenizeApiTokenizeRequest struct {
	ApiService *TokenizeApiService
	// contains filtered or unexported fields
}

func (TokenizeApiTokenizeRequest) Body

func (r TokenizeApiTokenizeRequest) Body(body interface{}) TokenizeApiTokenizeRequest

func (TokenizeApiTokenizeRequest) Execute

func (r TokenizeApiTokenizeRequest) Execute() (interface{}, *http.Response, error)

type TokensApiCreateRequest

type TokensApiCreateRequest struct {
	ApiService *TokensApiService
	// contains filtered or unexported fields
}

func (TokensApiCreateRequest) CreateTokenRequest

func (r TokensApiCreateRequest) CreateTokenRequest(createTokenRequest CreateTokenRequest) TokensApiCreateRequest

func (TokensApiCreateRequest) Execute

func (r TokensApiCreateRequest) Execute() (*Token, *http.Response, error)

type TokensApiDeleteRequest

type TokensApiDeleteRequest struct {
	ApiService *TokensApiService
	// contains filtered or unexported fields
}

func (TokensApiDeleteRequest) Execute

func (r TokensApiDeleteRequest) Execute() (*http.Response, error)

type TokensApiGetByIdRequest

type TokensApiGetByIdRequest struct {
	ApiService *TokensApiService
	// contains filtered or unexported fields
}

func (TokensApiGetByIdRequest) Execute

func (r TokensApiGetByIdRequest) Execute() (*Token, *http.Response, error)

type TokensApiGetRequest

type TokensApiGetRequest struct {
	ApiService *TokensApiService
	// contains filtered or unexported fields
}

func (TokensApiGetRequest) Execute

func (TokensApiGetRequest) Id

func (TokensApiGetRequest) Metadata

func (r TokensApiGetRequest) Metadata(metadata map[string]string) TokensApiGetRequest

func (TokensApiGetRequest) Page

func (TokensApiGetRequest) Size

func (TokensApiGetRequest) Start

type TokensApiSearchRequest

type TokensApiSearchRequest struct {
	ApiService *TokensApiService
	// contains filtered or unexported fields
}

func (TokensApiSearchRequest) Execute

func (TokensApiSearchRequest) SearchTokensRequest

func (r TokensApiSearchRequest) SearchTokensRequest(searchTokensRequest SearchTokensRequest) TokensApiSearchRequest

type TokensApiService

type TokensApiService service

TokensApiService TokensApi service

func (*TokensApiService) Create

Create Method for Create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TokensApiCreateRequest

func (*TokensApiService) CreateExecute

func (a *TokensApiService) CreateExecute(r TokensApiCreateRequest) (*Token, *http.Response, error)

Execute executes the request

@return Token

func (*TokensApiService) Delete

Delete Method for Delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return TokensApiDeleteRequest

func (*TokensApiService) DeleteExecute

func (a *TokensApiService) DeleteExecute(r TokensApiDeleteRequest) (*http.Response, error)

Execute executes the request

func (*TokensApiService) Get

Get Method for Get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TokensApiGetRequest

func (*TokensApiService) GetById

GetById Method for GetById

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return TokensApiGetByIdRequest

func (*TokensApiService) GetByIdExecute

func (a *TokensApiService) GetByIdExecute(r TokensApiGetByIdRequest) (*Token, *http.Response, error)

Execute executes the request

@return Token

func (*TokensApiService) GetExecute

Execute executes the request

@return TokenPaginatedList

func (*TokensApiService) Search

Search Method for Search

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TokensApiSearchRequest

func (*TokensApiService) SearchExecute

Execute executes the request

@return TokenPaginatedList

func (*TokensApiService) Update

Update Method for Update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return TokensApiUpdateRequest

func (*TokensApiService) UpdateExecute

func (a *TokensApiService) UpdateExecute(r TokensApiUpdateRequest) (*Token, *http.Response, error)

Execute executes the request

@return Token

type TokensApiUpdateRequest

type TokensApiUpdateRequest struct {
	ApiService *TokensApiService
	// contains filtered or unexported fields
}

func (TokensApiUpdateRequest) Execute

func (r TokensApiUpdateRequest) Execute() (*Token, *http.Response, error)

func (TokensApiUpdateRequest) UpdateTokenRequest

func (r TokensApiUpdateRequest) UpdateTokenRequest(updateTokenRequest UpdateTokenRequest) TokensApiUpdateRequest

type UpdateApplicationRequest

type UpdateApplicationRequest struct {
	Name        string       `json:"name"`
	Permissions []string     `json:"permissions,omitempty"`
	Rules       []AccessRule `json:"rules,omitempty"`
}

UpdateApplicationRequest struct for UpdateApplicationRequest

func NewUpdateApplicationRequest

func NewUpdateApplicationRequest(name string) *UpdateApplicationRequest

NewUpdateApplicationRequest instantiates a new UpdateApplicationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateApplicationRequestWithDefaults

func NewUpdateApplicationRequestWithDefaults() *UpdateApplicationRequest

NewUpdateApplicationRequestWithDefaults instantiates a new UpdateApplicationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateApplicationRequest) GetName

func (o *UpdateApplicationRequest) GetName() string

GetName returns the Name field value

func (*UpdateApplicationRequest) GetNameOk

func (o *UpdateApplicationRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateApplicationRequest) GetPermissions

func (o *UpdateApplicationRequest) GetPermissions() []string

GetPermissions returns the Permissions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateApplicationRequest) GetPermissionsOk

func (o *UpdateApplicationRequest) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions 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 (*UpdateApplicationRequest) GetRules

func (o *UpdateApplicationRequest) GetRules() []AccessRule

GetRules returns the Rules field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateApplicationRequest) GetRulesOk

func (o *UpdateApplicationRequest) GetRulesOk() ([]AccessRule, bool)

GetRulesOk returns a tuple with the Rules 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 (*UpdateApplicationRequest) HasPermissions

func (o *UpdateApplicationRequest) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*UpdateApplicationRequest) HasRules

func (o *UpdateApplicationRequest) HasRules() bool

HasRules returns a boolean if a field is not nil.

func (UpdateApplicationRequest) MarshalJSON

func (o UpdateApplicationRequest) MarshalJSON() ([]byte, error)

func (*UpdateApplicationRequest) SetName

func (o *UpdateApplicationRequest) SetName(v string)

SetName sets field value

func (*UpdateApplicationRequest) SetPermissions

func (o *UpdateApplicationRequest) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*UpdateApplicationRequest) SetRules

func (o *UpdateApplicationRequest) SetRules(v []AccessRule)

SetRules gets a reference to the given []AccessRule and assigns it to the Rules field.

func (UpdateApplicationRequest) ToMap

func (o UpdateApplicationRequest) ToMap() (map[string]interface{}, error)

type UpdatePrivacy

type UpdatePrivacy struct {
	ImpactLevel       NullableString `json:"impact_level,omitempty"`
	RestrictionPolicy NullableString `json:"restriction_policy,omitempty"`
}

UpdatePrivacy struct for UpdatePrivacy

func NewUpdatePrivacy

func NewUpdatePrivacy() *UpdatePrivacy

NewUpdatePrivacy instantiates a new UpdatePrivacy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePrivacyWithDefaults

func NewUpdatePrivacyWithDefaults() *UpdatePrivacy

NewUpdatePrivacyWithDefaults instantiates a new UpdatePrivacy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePrivacy) GetImpactLevel

func (o *UpdatePrivacy) GetImpactLevel() string

GetImpactLevel returns the ImpactLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePrivacy) GetImpactLevelOk

func (o *UpdatePrivacy) GetImpactLevelOk() (*string, bool)

GetImpactLevelOk returns a tuple with the ImpactLevel 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 (*UpdatePrivacy) GetRestrictionPolicy

func (o *UpdatePrivacy) GetRestrictionPolicy() string

GetRestrictionPolicy returns the RestrictionPolicy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePrivacy) GetRestrictionPolicyOk

func (o *UpdatePrivacy) GetRestrictionPolicyOk() (*string, bool)

GetRestrictionPolicyOk returns a tuple with the RestrictionPolicy 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 (*UpdatePrivacy) HasImpactLevel

func (o *UpdatePrivacy) HasImpactLevel() bool

HasImpactLevel returns a boolean if a field is not nil.

func (*UpdatePrivacy) HasRestrictionPolicy

func (o *UpdatePrivacy) HasRestrictionPolicy() bool

HasRestrictionPolicy returns a boolean if a field is not nil.

func (UpdatePrivacy) MarshalJSON

func (o UpdatePrivacy) MarshalJSON() ([]byte, error)

func (*UpdatePrivacy) SetImpactLevel

func (o *UpdatePrivacy) SetImpactLevel(v string)

SetImpactLevel gets a reference to the given NullableString and assigns it to the ImpactLevel field.

func (*UpdatePrivacy) SetImpactLevelNil

func (o *UpdatePrivacy) SetImpactLevelNil()

SetImpactLevelNil sets the value for ImpactLevel to be an explicit nil

func (*UpdatePrivacy) SetRestrictionPolicy

func (o *UpdatePrivacy) SetRestrictionPolicy(v string)

SetRestrictionPolicy gets a reference to the given NullableString and assigns it to the RestrictionPolicy field.

func (*UpdatePrivacy) SetRestrictionPolicyNil

func (o *UpdatePrivacy) SetRestrictionPolicyNil()

SetRestrictionPolicyNil sets the value for RestrictionPolicy to be an explicit nil

func (UpdatePrivacy) ToMap

func (o UpdatePrivacy) ToMap() (map[string]interface{}, error)

func (*UpdatePrivacy) UnsetImpactLevel

func (o *UpdatePrivacy) UnsetImpactLevel()

UnsetImpactLevel ensures that no value is present for ImpactLevel, not even an explicit nil

func (*UpdatePrivacy) UnsetRestrictionPolicy

func (o *UpdatePrivacy) UnsetRestrictionPolicy()

UnsetRestrictionPolicy ensures that no value is present for RestrictionPolicy, not even an explicit nil

type UpdateProxyRequest

type UpdateProxyRequest struct {
	Name              string            `json:"name"`
	DestinationUrl    string            `json:"destination_url"`
	RequestReactorId  NullableString    `json:"request_reactor_id,omitempty"`
	ResponseReactorId NullableString    `json:"response_reactor_id,omitempty"`
	RequestTransform  *ProxyTransform   `json:"request_transform,omitempty"`
	ResponseTransform *ProxyTransform   `json:"response_transform,omitempty"`
	Application       *Application      `json:"application,omitempty"`
	Configuration     map[string]string `json:"configuration,omitempty"`
	RequireAuth       NullableBool      `json:"require_auth,omitempty"`
}

UpdateProxyRequest struct for UpdateProxyRequest

func NewUpdateProxyRequest

func NewUpdateProxyRequest(name string, destinationUrl string) *UpdateProxyRequest

NewUpdateProxyRequest instantiates a new UpdateProxyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateProxyRequestWithDefaults

func NewUpdateProxyRequestWithDefaults() *UpdateProxyRequest

NewUpdateProxyRequestWithDefaults instantiates a new UpdateProxyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateProxyRequest) GetApplication

func (o *UpdateProxyRequest) GetApplication() Application

GetApplication returns the Application field value if set, zero value otherwise.

func (*UpdateProxyRequest) GetApplicationOk

func (o *UpdateProxyRequest) GetApplicationOk() (*Application, bool)

GetApplicationOk returns a tuple with the Application field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateProxyRequest) GetConfiguration

func (o *UpdateProxyRequest) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateProxyRequest) GetConfigurationOk

func (o *UpdateProxyRequest) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*UpdateProxyRequest) GetDestinationUrl

func (o *UpdateProxyRequest) GetDestinationUrl() string

GetDestinationUrl returns the DestinationUrl field value

func (*UpdateProxyRequest) GetDestinationUrlOk

func (o *UpdateProxyRequest) GetDestinationUrlOk() (*string, bool)

GetDestinationUrlOk returns a tuple with the DestinationUrl field value and a boolean to check if the value has been set.

func (*UpdateProxyRequest) GetName

func (o *UpdateProxyRequest) GetName() string

GetName returns the Name field value

func (*UpdateProxyRequest) GetNameOk

func (o *UpdateProxyRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateProxyRequest) GetRequestReactorId

func (o *UpdateProxyRequest) GetRequestReactorId() string

GetRequestReactorId returns the RequestReactorId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateProxyRequest) GetRequestReactorIdOk

func (o *UpdateProxyRequest) GetRequestReactorIdOk() (*string, bool)

GetRequestReactorIdOk returns a tuple with the RequestReactorId 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 (*UpdateProxyRequest) GetRequestTransform

func (o *UpdateProxyRequest) GetRequestTransform() ProxyTransform

GetRequestTransform returns the RequestTransform field value if set, zero value otherwise.

func (*UpdateProxyRequest) GetRequestTransformOk

func (o *UpdateProxyRequest) GetRequestTransformOk() (*ProxyTransform, bool)

GetRequestTransformOk returns a tuple with the RequestTransform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateProxyRequest) GetRequireAuth

func (o *UpdateProxyRequest) GetRequireAuth() bool

GetRequireAuth returns the RequireAuth field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateProxyRequest) GetRequireAuthOk

func (o *UpdateProxyRequest) GetRequireAuthOk() (*bool, bool)

GetRequireAuthOk returns a tuple with the RequireAuth 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 (*UpdateProxyRequest) GetResponseReactorId

func (o *UpdateProxyRequest) GetResponseReactorId() string

GetResponseReactorId returns the ResponseReactorId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateProxyRequest) GetResponseReactorIdOk

func (o *UpdateProxyRequest) GetResponseReactorIdOk() (*string, bool)

GetResponseReactorIdOk returns a tuple with the ResponseReactorId 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 (*UpdateProxyRequest) GetResponseTransform

func (o *UpdateProxyRequest) GetResponseTransform() ProxyTransform

GetResponseTransform returns the ResponseTransform field value if set, zero value otherwise.

func (*UpdateProxyRequest) GetResponseTransformOk

func (o *UpdateProxyRequest) GetResponseTransformOk() (*ProxyTransform, bool)

GetResponseTransformOk returns a tuple with the ResponseTransform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateProxyRequest) HasApplication

func (o *UpdateProxyRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*UpdateProxyRequest) HasConfiguration

func (o *UpdateProxyRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*UpdateProxyRequest) HasRequestReactorId

func (o *UpdateProxyRequest) HasRequestReactorId() bool

HasRequestReactorId returns a boolean if a field is not nil.

func (*UpdateProxyRequest) HasRequestTransform

func (o *UpdateProxyRequest) HasRequestTransform() bool

HasRequestTransform returns a boolean if a field is not nil.

func (*UpdateProxyRequest) HasRequireAuth

func (o *UpdateProxyRequest) HasRequireAuth() bool

HasRequireAuth returns a boolean if a field is not nil.

func (*UpdateProxyRequest) HasResponseReactorId

func (o *UpdateProxyRequest) HasResponseReactorId() bool

HasResponseReactorId returns a boolean if a field is not nil.

func (*UpdateProxyRequest) HasResponseTransform

func (o *UpdateProxyRequest) HasResponseTransform() bool

HasResponseTransform returns a boolean if a field is not nil.

func (UpdateProxyRequest) MarshalJSON

func (o UpdateProxyRequest) MarshalJSON() ([]byte, error)

func (*UpdateProxyRequest) SetApplication

func (o *UpdateProxyRequest) SetApplication(v Application)

SetApplication gets a reference to the given Application and assigns it to the Application field.

func (*UpdateProxyRequest) SetConfiguration

func (o *UpdateProxyRequest) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*UpdateProxyRequest) SetDestinationUrl

func (o *UpdateProxyRequest) SetDestinationUrl(v string)

SetDestinationUrl sets field value

func (*UpdateProxyRequest) SetName

func (o *UpdateProxyRequest) SetName(v string)

SetName sets field value

func (*UpdateProxyRequest) SetRequestReactorId

func (o *UpdateProxyRequest) SetRequestReactorId(v string)

SetRequestReactorId gets a reference to the given NullableString and assigns it to the RequestReactorId field.

func (*UpdateProxyRequest) SetRequestReactorIdNil

func (o *UpdateProxyRequest) SetRequestReactorIdNil()

SetRequestReactorIdNil sets the value for RequestReactorId to be an explicit nil

func (*UpdateProxyRequest) SetRequestTransform

func (o *UpdateProxyRequest) SetRequestTransform(v ProxyTransform)

SetRequestTransform gets a reference to the given ProxyTransform and assigns it to the RequestTransform field.

func (*UpdateProxyRequest) SetRequireAuth

func (o *UpdateProxyRequest) SetRequireAuth(v bool)

SetRequireAuth gets a reference to the given NullableBool and assigns it to the RequireAuth field.

func (*UpdateProxyRequest) SetRequireAuthNil

func (o *UpdateProxyRequest) SetRequireAuthNil()

SetRequireAuthNil sets the value for RequireAuth to be an explicit nil

func (*UpdateProxyRequest) SetResponseReactorId

func (o *UpdateProxyRequest) SetResponseReactorId(v string)

SetResponseReactorId gets a reference to the given NullableString and assigns it to the ResponseReactorId field.

func (*UpdateProxyRequest) SetResponseReactorIdNil

func (o *UpdateProxyRequest) SetResponseReactorIdNil()

SetResponseReactorIdNil sets the value for ResponseReactorId to be an explicit nil

func (*UpdateProxyRequest) SetResponseTransform

func (o *UpdateProxyRequest) SetResponseTransform(v ProxyTransform)

SetResponseTransform gets a reference to the given ProxyTransform and assigns it to the ResponseTransform field.

func (UpdateProxyRequest) ToMap

func (o UpdateProxyRequest) ToMap() (map[string]interface{}, error)

func (*UpdateProxyRequest) UnsetRequestReactorId

func (o *UpdateProxyRequest) UnsetRequestReactorId()

UnsetRequestReactorId ensures that no value is present for RequestReactorId, not even an explicit nil

func (*UpdateProxyRequest) UnsetRequireAuth

func (o *UpdateProxyRequest) UnsetRequireAuth()

UnsetRequireAuth ensures that no value is present for RequireAuth, not even an explicit nil

func (*UpdateProxyRequest) UnsetResponseReactorId

func (o *UpdateProxyRequest) UnsetResponseReactorId()

UnsetResponseReactorId ensures that no value is present for ResponseReactorId, not even an explicit nil

type UpdateReactorFormulaRequest

type UpdateReactorFormulaRequest struct {
	Type              string                           `json:"type"`
	Name              string                           `json:"name"`
	Description       NullableString                   `json:"description,omitempty"`
	Icon              NullableString                   `json:"icon,omitempty"`
	Code              NullableString                   `json:"code,omitempty"`
	Configuration     []ReactorFormulaConfiguration    `json:"configuration,omitempty"`
	RequestParameters []ReactorFormulaRequestParameter `json:"request_parameters,omitempty"`
}

UpdateReactorFormulaRequest struct for UpdateReactorFormulaRequest

func NewUpdateReactorFormulaRequest

func NewUpdateReactorFormulaRequest(type_ string, name string) *UpdateReactorFormulaRequest

NewUpdateReactorFormulaRequest instantiates a new UpdateReactorFormulaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateReactorFormulaRequestWithDefaults

func NewUpdateReactorFormulaRequestWithDefaults() *UpdateReactorFormulaRequest

NewUpdateReactorFormulaRequestWithDefaults instantiates a new UpdateReactorFormulaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateReactorFormulaRequest) GetCode

func (o *UpdateReactorFormulaRequest) GetCode() string

GetCode returns the Code field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateReactorFormulaRequest) GetCodeOk

func (o *UpdateReactorFormulaRequest) GetCodeOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateReactorFormulaRequest) GetConfiguration

GetConfiguration returns the Configuration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateReactorFormulaRequest) GetConfigurationOk

func (o *UpdateReactorFormulaRequest) GetConfigurationOk() ([]ReactorFormulaConfiguration, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*UpdateReactorFormulaRequest) GetDescription

func (o *UpdateReactorFormulaRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateReactorFormulaRequest) GetDescriptionOk

func (o *UpdateReactorFormulaRequest) 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 (*UpdateReactorFormulaRequest) GetIcon

func (o *UpdateReactorFormulaRequest) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateReactorFormulaRequest) GetIconOk

func (o *UpdateReactorFormulaRequest) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon 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 (*UpdateReactorFormulaRequest) GetName

func (o *UpdateReactorFormulaRequest) GetName() string

GetName returns the Name field value

func (*UpdateReactorFormulaRequest) GetNameOk

func (o *UpdateReactorFormulaRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateReactorFormulaRequest) GetRequestParameters

func (o *UpdateReactorFormulaRequest) GetRequestParameters() []ReactorFormulaRequestParameter

GetRequestParameters returns the RequestParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateReactorFormulaRequest) GetRequestParametersOk

func (o *UpdateReactorFormulaRequest) GetRequestParametersOk() ([]ReactorFormulaRequestParameter, bool)

GetRequestParametersOk returns a tuple with the RequestParameters 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 (*UpdateReactorFormulaRequest) GetType

func (o *UpdateReactorFormulaRequest) GetType() string

GetType returns the Type field value

func (*UpdateReactorFormulaRequest) GetTypeOk

func (o *UpdateReactorFormulaRequest) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*UpdateReactorFormulaRequest) HasCode

func (o *UpdateReactorFormulaRequest) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (*UpdateReactorFormulaRequest) HasConfiguration

func (o *UpdateReactorFormulaRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*UpdateReactorFormulaRequest) HasDescription

func (o *UpdateReactorFormulaRequest) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*UpdateReactorFormulaRequest) HasIcon

func (o *UpdateReactorFormulaRequest) HasIcon() bool

HasIcon returns a boolean if a field is not nil.

func (*UpdateReactorFormulaRequest) HasRequestParameters

func (o *UpdateReactorFormulaRequest) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field is not nil.

func (UpdateReactorFormulaRequest) MarshalJSON

func (o UpdateReactorFormulaRequest) MarshalJSON() ([]byte, error)

func (*UpdateReactorFormulaRequest) SetCode

func (o *UpdateReactorFormulaRequest) SetCode(v string)

SetCode gets a reference to the given NullableString and assigns it to the Code field.

func (*UpdateReactorFormulaRequest) SetCodeNil

func (o *UpdateReactorFormulaRequest) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*UpdateReactorFormulaRequest) SetConfiguration

SetConfiguration gets a reference to the given []ReactorFormulaConfiguration and assigns it to the Configuration field.

func (*UpdateReactorFormulaRequest) SetDescription

func (o *UpdateReactorFormulaRequest) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*UpdateReactorFormulaRequest) SetDescriptionNil

func (o *UpdateReactorFormulaRequest) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*UpdateReactorFormulaRequest) SetIcon

func (o *UpdateReactorFormulaRequest) SetIcon(v string)

SetIcon gets a reference to the given NullableString and assigns it to the Icon field.

func (*UpdateReactorFormulaRequest) SetIconNil

func (o *UpdateReactorFormulaRequest) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*UpdateReactorFormulaRequest) SetName

func (o *UpdateReactorFormulaRequest) SetName(v string)

SetName sets field value

func (*UpdateReactorFormulaRequest) SetRequestParameters

func (o *UpdateReactorFormulaRequest) SetRequestParameters(v []ReactorFormulaRequestParameter)

SetRequestParameters gets a reference to the given []ReactorFormulaRequestParameter and assigns it to the RequestParameters field.

func (*UpdateReactorFormulaRequest) SetType

func (o *UpdateReactorFormulaRequest) SetType(v string)

SetType sets field value

func (UpdateReactorFormulaRequest) ToMap

func (o UpdateReactorFormulaRequest) ToMap() (map[string]interface{}, error)

func (*UpdateReactorFormulaRequest) UnsetCode

func (o *UpdateReactorFormulaRequest) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

func (*UpdateReactorFormulaRequest) UnsetDescription

func (o *UpdateReactorFormulaRequest) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*UpdateReactorFormulaRequest) UnsetIcon

func (o *UpdateReactorFormulaRequest) UnsetIcon()

UnsetIcon ensures that no value is present for Icon, not even an explicit nil

type UpdateReactorRequest

type UpdateReactorRequest struct {
	Name          string            `json:"name"`
	Application   *Application      `json:"application,omitempty"`
	Code          string            `json:"code"`
	Configuration map[string]string `json:"configuration,omitempty"`
}

UpdateReactorRequest struct for UpdateReactorRequest

func NewUpdateReactorRequest

func NewUpdateReactorRequest(name string, code string) *UpdateReactorRequest

NewUpdateReactorRequest instantiates a new UpdateReactorRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateReactorRequestWithDefaults

func NewUpdateReactorRequestWithDefaults() *UpdateReactorRequest

NewUpdateReactorRequestWithDefaults instantiates a new UpdateReactorRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateReactorRequest) GetApplication

func (o *UpdateReactorRequest) GetApplication() Application

GetApplication returns the Application field value if set, zero value otherwise.

func (*UpdateReactorRequest) GetApplicationOk

func (o *UpdateReactorRequest) GetApplicationOk() (*Application, bool)

GetApplicationOk returns a tuple with the Application field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReactorRequest) GetCode

func (o *UpdateReactorRequest) GetCode() string

GetCode returns the Code field value

func (*UpdateReactorRequest) GetCodeOk

func (o *UpdateReactorRequest) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*UpdateReactorRequest) GetConfiguration

func (o *UpdateReactorRequest) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateReactorRequest) GetConfigurationOk

func (o *UpdateReactorRequest) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration 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 (*UpdateReactorRequest) GetName

func (o *UpdateReactorRequest) GetName() string

GetName returns the Name field value

func (*UpdateReactorRequest) GetNameOk

func (o *UpdateReactorRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateReactorRequest) HasApplication

func (o *UpdateReactorRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*UpdateReactorRequest) HasConfiguration

func (o *UpdateReactorRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (UpdateReactorRequest) MarshalJSON

func (o UpdateReactorRequest) MarshalJSON() ([]byte, error)

func (*UpdateReactorRequest) SetApplication

func (o *UpdateReactorRequest) SetApplication(v Application)

SetApplication gets a reference to the given Application and assigns it to the Application field.

func (*UpdateReactorRequest) SetCode

func (o *UpdateReactorRequest) SetCode(v string)

SetCode sets field value

func (*UpdateReactorRequest) SetConfiguration

func (o *UpdateReactorRequest) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*UpdateReactorRequest) SetName

func (o *UpdateReactorRequest) SetName(v string)

SetName sets field value

func (UpdateReactorRequest) ToMap

func (o UpdateReactorRequest) ToMap() (map[string]interface{}, error)

type UpdateTenantRequest

type UpdateTenantRequest struct {
	Name     string            `json:"name"`
	Settings map[string]string `json:"settings,omitempty"`
}

UpdateTenantRequest struct for UpdateTenantRequest

func NewUpdateTenantRequest

func NewUpdateTenantRequest(name string) *UpdateTenantRequest

NewUpdateTenantRequest instantiates a new UpdateTenantRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTenantRequestWithDefaults

func NewUpdateTenantRequestWithDefaults() *UpdateTenantRequest

NewUpdateTenantRequestWithDefaults instantiates a new UpdateTenantRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTenantRequest) GetName

func (o *UpdateTenantRequest) GetName() string

GetName returns the Name field value

func (*UpdateTenantRequest) GetNameOk

func (o *UpdateTenantRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateTenantRequest) GetSettings

func (o *UpdateTenantRequest) GetSettings() map[string]string

GetSettings returns the Settings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTenantRequest) GetSettingsOk

func (o *UpdateTenantRequest) GetSettingsOk() (*map[string]string, bool)

GetSettingsOk returns a tuple with the Settings 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 (*UpdateTenantRequest) HasSettings

func (o *UpdateTenantRequest) HasSettings() bool

HasSettings returns a boolean if a field is not nil.

func (UpdateTenantRequest) MarshalJSON

func (o UpdateTenantRequest) MarshalJSON() ([]byte, error)

func (*UpdateTenantRequest) SetName

func (o *UpdateTenantRequest) SetName(v string)

SetName sets field value

func (*UpdateTenantRequest) SetSettings

func (o *UpdateTenantRequest) SetSettings(v map[string]string)

SetSettings gets a reference to the given map[string]string and assigns it to the Settings field.

func (UpdateTenantRequest) ToMap

func (o UpdateTenantRequest) ToMap() (map[string]interface{}, error)

type UpdateTokenRequest

type UpdateTokenRequest struct {
	Data                  interface{}         `json:"data,omitempty"`
	Encryption            *EncryptionMetadata `json:"encryption,omitempty"`
	Privacy               *UpdatePrivacy      `json:"privacy,omitempty"`
	Metadata              map[string]string   `json:"metadata,omitempty"`
	SearchIndexes         []string            `json:"search_indexes,omitempty"`
	FingerprintExpression NullableString      `json:"fingerprint_expression,omitempty"`
	Mask                  interface{}         `json:"mask,omitempty"`
	ExpiresAt             NullableString      `json:"expires_at,omitempty"`
	DeduplicateToken      NullableBool        `json:"deduplicate_token,omitempty"`
	Containers            []string            `json:"containers,omitempty"`
}

UpdateTokenRequest struct for UpdateTokenRequest

func NewUpdateTokenRequest

func NewUpdateTokenRequest() *UpdateTokenRequest

NewUpdateTokenRequest instantiates a new UpdateTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTokenRequestWithDefaults

func NewUpdateTokenRequestWithDefaults() *UpdateTokenRequest

NewUpdateTokenRequestWithDefaults instantiates a new UpdateTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTokenRequest) GetContainers

func (o *UpdateTokenRequest) GetContainers() []string

GetContainers returns the Containers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTokenRequest) GetContainersOk

func (o *UpdateTokenRequest) GetContainersOk() ([]string, bool)

GetContainersOk returns a tuple with the Containers 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 (*UpdateTokenRequest) GetData

func (o *UpdateTokenRequest) GetData() interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTokenRequest) GetDataOk

func (o *UpdateTokenRequest) GetDataOk() (*interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateTokenRequest) GetDeduplicateToken

func (o *UpdateTokenRequest) GetDeduplicateToken() bool

GetDeduplicateToken returns the DeduplicateToken field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTokenRequest) GetDeduplicateTokenOk

func (o *UpdateTokenRequest) GetDeduplicateTokenOk() (*bool, bool)

GetDeduplicateTokenOk returns a tuple with the DeduplicateToken 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 (*UpdateTokenRequest) GetEncryption

func (o *UpdateTokenRequest) GetEncryption() EncryptionMetadata

GetEncryption returns the Encryption field value if set, zero value otherwise.

func (*UpdateTokenRequest) GetEncryptionOk

func (o *UpdateTokenRequest) GetEncryptionOk() (*EncryptionMetadata, bool)

GetEncryptionOk returns a tuple with the Encryption field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTokenRequest) GetExpiresAt

func (o *UpdateTokenRequest) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTokenRequest) GetExpiresAtOk

func (o *UpdateTokenRequest) GetExpiresAtOk() (*string, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateTokenRequest) GetFingerprintExpression

func (o *UpdateTokenRequest) GetFingerprintExpression() string

GetFingerprintExpression returns the FingerprintExpression field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTokenRequest) GetFingerprintExpressionOk

func (o *UpdateTokenRequest) GetFingerprintExpressionOk() (*string, bool)

GetFingerprintExpressionOk returns a tuple with the FingerprintExpression 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 (*UpdateTokenRequest) GetMask

func (o *UpdateTokenRequest) GetMask() interface{}

GetMask returns the Mask field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTokenRequest) GetMaskOk

func (o *UpdateTokenRequest) GetMaskOk() (*interface{}, bool)

GetMaskOk returns a tuple with the Mask 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 (*UpdateTokenRequest) GetMetadata

func (o *UpdateTokenRequest) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTokenRequest) GetMetadataOk

func (o *UpdateTokenRequest) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateTokenRequest) GetPrivacy

func (o *UpdateTokenRequest) GetPrivacy() UpdatePrivacy

GetPrivacy returns the Privacy field value if set, zero value otherwise.

func (*UpdateTokenRequest) GetPrivacyOk

func (o *UpdateTokenRequest) GetPrivacyOk() (*UpdatePrivacy, bool)

GetPrivacyOk returns a tuple with the Privacy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTokenRequest) GetSearchIndexes

func (o *UpdateTokenRequest) GetSearchIndexes() []string

GetSearchIndexes returns the SearchIndexes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTokenRequest) GetSearchIndexesOk

func (o *UpdateTokenRequest) GetSearchIndexesOk() ([]string, bool)

GetSearchIndexesOk returns a tuple with the SearchIndexes 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 (*UpdateTokenRequest) HasContainers

func (o *UpdateTokenRequest) HasContainers() bool

HasContainers returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasData

func (o *UpdateTokenRequest) HasData() bool

HasData returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasDeduplicateToken

func (o *UpdateTokenRequest) HasDeduplicateToken() bool

HasDeduplicateToken returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasEncryption

func (o *UpdateTokenRequest) HasEncryption() bool

HasEncryption returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasExpiresAt

func (o *UpdateTokenRequest) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasFingerprintExpression

func (o *UpdateTokenRequest) HasFingerprintExpression() bool

HasFingerprintExpression returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasMask

func (o *UpdateTokenRequest) HasMask() bool

HasMask returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasMetadata

func (o *UpdateTokenRequest) HasMetadata() bool

HasMetadata returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasPrivacy

func (o *UpdateTokenRequest) HasPrivacy() bool

HasPrivacy returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasSearchIndexes

func (o *UpdateTokenRequest) HasSearchIndexes() bool

HasSearchIndexes returns a boolean if a field is not nil.

func (UpdateTokenRequest) MarshalJSON

func (o UpdateTokenRequest) MarshalJSON() ([]byte, error)

func (*UpdateTokenRequest) SetContainers

func (o *UpdateTokenRequest) SetContainers(v []string)

SetContainers gets a reference to the given []string and assigns it to the Containers field.

func (*UpdateTokenRequest) SetData

func (o *UpdateTokenRequest) SetData(v interface{})

SetData gets a reference to the given interface{} and assigns it to the Data field.

func (*UpdateTokenRequest) SetDeduplicateToken

func (o *UpdateTokenRequest) SetDeduplicateToken(v bool)

SetDeduplicateToken gets a reference to the given NullableBool and assigns it to the DeduplicateToken field.

func (*UpdateTokenRequest) SetDeduplicateTokenNil

func (o *UpdateTokenRequest) SetDeduplicateTokenNil()

SetDeduplicateTokenNil sets the value for DeduplicateToken to be an explicit nil

func (*UpdateTokenRequest) SetEncryption

func (o *UpdateTokenRequest) SetEncryption(v EncryptionMetadata)

SetEncryption gets a reference to the given EncryptionMetadata and assigns it to the Encryption field.

func (*UpdateTokenRequest) SetExpiresAt

func (o *UpdateTokenRequest) SetExpiresAt(v string)

SetExpiresAt gets a reference to the given NullableString and assigns it to the ExpiresAt field.

func (*UpdateTokenRequest) SetExpiresAtNil

func (o *UpdateTokenRequest) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*UpdateTokenRequest) SetFingerprintExpression

func (o *UpdateTokenRequest) SetFingerprintExpression(v string)

SetFingerprintExpression gets a reference to the given NullableString and assigns it to the FingerprintExpression field.

func (*UpdateTokenRequest) SetFingerprintExpressionNil

func (o *UpdateTokenRequest) SetFingerprintExpressionNil()

SetFingerprintExpressionNil sets the value for FingerprintExpression to be an explicit nil

func (*UpdateTokenRequest) SetMask

func (o *UpdateTokenRequest) SetMask(v interface{})

SetMask gets a reference to the given interface{} and assigns it to the Mask field.

func (*UpdateTokenRequest) SetMetadata

func (o *UpdateTokenRequest) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*UpdateTokenRequest) SetPrivacy

func (o *UpdateTokenRequest) SetPrivacy(v UpdatePrivacy)

SetPrivacy gets a reference to the given UpdatePrivacy and assigns it to the Privacy field.

func (*UpdateTokenRequest) SetSearchIndexes

func (o *UpdateTokenRequest) SetSearchIndexes(v []string)

SetSearchIndexes gets a reference to the given []string and assigns it to the SearchIndexes field.

func (UpdateTokenRequest) ToMap

func (o UpdateTokenRequest) ToMap() (map[string]interface{}, error)

func (*UpdateTokenRequest) UnsetDeduplicateToken

func (o *UpdateTokenRequest) UnsetDeduplicateToken()

UnsetDeduplicateToken ensures that no value is present for DeduplicateToken, not even an explicit nil

func (*UpdateTokenRequest) UnsetExpiresAt

func (o *UpdateTokenRequest) UnsetExpiresAt()

UnsetExpiresAt ensures that no value is present for ExpiresAt, not even an explicit nil

func (*UpdateTokenRequest) UnsetFingerprintExpression

func (o *UpdateTokenRequest) UnsetFingerprintExpression()

UnsetFingerprintExpression ensures that no value is present for FingerprintExpression, not even an explicit nil

type User

type User struct {
	Id        *string        `json:"id,omitempty"`
	Email     NullableString `json:"email,omitempty"`
	FirstName NullableString `json:"first_name,omitempty"`
	LastName  NullableString `json:"last_name,omitempty"`
	Picture   NullableString `json:"picture,omitempty"`
}

User struct for User

func NewUser

func NewUser() *User

NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserWithDefaults

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*User) GetEmail

func (o *User) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetEmailOk

func (o *User) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*User) GetFirstName

func (o *User) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetFirstNameOk

func (o *User) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName 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 (*User) GetId

func (o *User) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*User) GetIdOk

func (o *User) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetLastName

func (o *User) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetLastNameOk

func (o *User) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName 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 (*User) GetPicture

func (o *User) GetPicture() string

GetPicture returns the Picture field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetPictureOk

func (o *User) GetPictureOk() (*string, bool)

GetPictureOk returns a tuple with the Picture 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 (*User) HasEmail

func (o *User) HasEmail() bool

HasEmail returns a boolean if a field is not nil.

func (*User) HasFirstName

func (o *User) HasFirstName() bool

HasFirstName returns a boolean if a field is not nil.

func (*User) HasId

func (o *User) HasId() bool

HasId returns a boolean if a field is not nil.

func (*User) HasLastName

func (o *User) HasLastName() bool

HasLastName returns a boolean if a field is not nil.

func (*User) HasPicture

func (o *User) HasPicture() bool

HasPicture returns a boolean if a field is not nil.

func (User) MarshalJSON

func (o User) MarshalJSON() ([]byte, error)

func (*User) SetEmail

func (o *User) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*User) SetEmailNil

func (o *User) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*User) SetFirstName

func (o *User) SetFirstName(v string)

SetFirstName gets a reference to the given NullableString and assigns it to the FirstName field.

func (*User) SetFirstNameNil

func (o *User) SetFirstNameNil()

SetFirstNameNil sets the value for FirstName to be an explicit nil

func (*User) SetId

func (o *User) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*User) SetLastName

func (o *User) SetLastName(v string)

SetLastName gets a reference to the given NullableString and assigns it to the LastName field.

func (*User) SetLastNameNil

func (o *User) SetLastNameNil()

SetLastNameNil sets the value for LastName to be an explicit nil

func (*User) SetPicture

func (o *User) SetPicture(v string)

SetPicture gets a reference to the given NullableString and assigns it to the Picture field.

func (*User) SetPictureNil

func (o *User) SetPictureNil()

SetPictureNil sets the value for Picture to be an explicit nil

func (User) ToMap

func (o User) ToMap() (map[string]interface{}, error)

func (*User) UnsetEmail

func (o *User) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*User) UnsetFirstName

func (o *User) UnsetFirstName()

UnsetFirstName ensures that no value is present for FirstName, not even an explicit nil

func (*User) UnsetLastName

func (o *User) UnsetLastName()

UnsetLastName ensures that no value is present for LastName, not even an explicit nil

func (*User) UnsetPicture

func (o *User) UnsetPicture()

UnsetPicture ensures that no value is present for Picture, not even an explicit nil

type ValidationProblemDetails

type ValidationProblemDetails struct {
	Errors   map[string][]string `json:"errors,omitempty"`
	Type     NullableString      `json:"type,omitempty"`
	Title    NullableString      `json:"title,omitempty"`
	Status   NullableInt32       `json:"status,omitempty"`
	Detail   NullableString      `json:"detail,omitempty"`
	Instance NullableString      `json:"instance,omitempty"`
}

ValidationProblemDetails struct for ValidationProblemDetails

func NewValidationProblemDetails

func NewValidationProblemDetails() *ValidationProblemDetails

NewValidationProblemDetails instantiates a new ValidationProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidationProblemDetailsWithDefaults

func NewValidationProblemDetailsWithDefaults() *ValidationProblemDetails

NewValidationProblemDetailsWithDefaults instantiates a new ValidationProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidationProblemDetails) GetDetail

func (o *ValidationProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ValidationProblemDetails) GetDetailOk

func (o *ValidationProblemDetails) 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 (*ValidationProblemDetails) GetErrors

func (o *ValidationProblemDetails) GetErrors() map[string][]string

GetErrors returns the Errors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ValidationProblemDetails) GetErrorsOk

func (o *ValidationProblemDetails) GetErrorsOk() (*map[string][]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ValidationProblemDetails) GetInstance

func (o *ValidationProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ValidationProblemDetails) GetInstanceOk

func (o *ValidationProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance 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 (*ValidationProblemDetails) GetStatus

func (o *ValidationProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ValidationProblemDetails) GetStatusOk

func (o *ValidationProblemDetails) GetStatusOk() (*int32, 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 (*ValidationProblemDetails) GetTitle

func (o *ValidationProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ValidationProblemDetails) GetTitleOk

func (o *ValidationProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title 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 (*ValidationProblemDetails) GetType

func (o *ValidationProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ValidationProblemDetails) GetTypeOk

func (o *ValidationProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ValidationProblemDetails) HasDetail

func (o *ValidationProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field is not nil.

func (*ValidationProblemDetails) HasErrors

func (o *ValidationProblemDetails) HasErrors() bool

HasErrors returns a boolean if a field is not nil.

func (*ValidationProblemDetails) HasInstance

func (o *ValidationProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field is not nil.

func (*ValidationProblemDetails) HasStatus

func (o *ValidationProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field is not nil.

func (*ValidationProblemDetails) HasTitle

func (o *ValidationProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field is not nil.

func (*ValidationProblemDetails) HasType

func (o *ValidationProblemDetails) HasType() bool

HasType returns a boolean if a field is not nil.

func (ValidationProblemDetails) MarshalJSON

func (o ValidationProblemDetails) MarshalJSON() ([]byte, error)

func (*ValidationProblemDetails) SetDetail

func (o *ValidationProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*ValidationProblemDetails) SetDetailNil

func (o *ValidationProblemDetails) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*ValidationProblemDetails) SetErrors

func (o *ValidationProblemDetails) SetErrors(v map[string][]string)

SetErrors gets a reference to the given map[string][]string and assigns it to the Errors field.

func (*ValidationProblemDetails) SetInstance

func (o *ValidationProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given NullableString and assigns it to the Instance field.

func (*ValidationProblemDetails) SetInstanceNil

func (o *ValidationProblemDetails) SetInstanceNil()

SetInstanceNil sets the value for Instance to be an explicit nil

func (*ValidationProblemDetails) SetStatus

func (o *ValidationProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given NullableInt32 and assigns it to the Status field.

func (*ValidationProblemDetails) SetStatusNil

func (o *ValidationProblemDetails) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*ValidationProblemDetails) SetTitle

func (o *ValidationProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*ValidationProblemDetails) SetTitleNil

func (o *ValidationProblemDetails) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ValidationProblemDetails) SetType

func (o *ValidationProblemDetails) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*ValidationProblemDetails) SetTypeNil

func (o *ValidationProblemDetails) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ValidationProblemDetails) ToMap

func (o ValidationProblemDetails) ToMap() (map[string]interface{}, error)

func (*ValidationProblemDetails) UnsetDetail

func (o *ValidationProblemDetails) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

func (*ValidationProblemDetails) UnsetInstance

func (o *ValidationProblemDetails) UnsetInstance()

UnsetInstance ensures that no value is present for Instance, not even an explicit nil

func (*ValidationProblemDetails) UnsetStatus

func (o *ValidationProblemDetails) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*ValidationProblemDetails) UnsetTitle

func (o *ValidationProblemDetails) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*ValidationProblemDetails) UnsetType

func (o *ValidationProblemDetails) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

Source Files

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL