basistheory

package module
v3.13.0 Latest Latest
Warning

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

Go to latest
Published: Oct 11, 2023 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/v3"

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
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 GetTenantOperationReport Get /tenants/self/reports/operations
TenantsApi GetTenantUsageReport Get /tenants/self/reports/usage
TenantsApi ResendInvitation Post /tenants/self/invitations/{invitationId}/resend
TenantsApi Update Put /tenants/self
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}
TransactionsApi Commit Post /transactions/{id}/commit
TransactionsApi Create Post /transactions
TransactionsApi Rollback Post /transactions/{id}/rollback

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 added in v3.11.0

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 {
	ApplicationTemplatesApi *ApplicationTemplatesApiService

	ApplicationsApi *ApplicationsApiService

	LogsApi *LogsApiService

	PermissionsApi *PermissionsApiService

	ProxiesApi *ProxiesApiService

	ReactorFormulasApi *ReactorFormulasApiService

	ReactorsApi *ReactorsApiService

	SessionsApi *SessionsApiService

	TenantsApi *TenantsApiService

	TokenizeApi *TokenizeApiService

	TokensApi *TokensApiService

	TransactionsApi *TransactionsApiService
	// 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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.8.0

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 added in v3.8.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.8.0

func (o *AccessRule) HasConditions() bool

HasConditions returns a boolean if a field is not nil.

func (*AccessRule) HasContainer added in v3.7.0

func (o *AccessRule) HasContainer() bool

HasContainer returns a boolean if a field is not nil.

func (*AccessRule) HasDescription added in v3.7.0

func (o *AccessRule) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*AccessRule) HasPermissions added in v3.7.0

func (o *AccessRule) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*AccessRule) HasPriority added in v3.7.0

func (o *AccessRule) HasPriority() bool

HasPriority returns a boolean if a field is not nil.

func (*AccessRule) HasTransform added in v3.7.0

func (o *AccessRule) HasTransform() bool

HasTransform returns a boolean if a field is not nil.

func (AccessRule) MarshalJSON added in v3.7.0

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

func (*AccessRule) SetConditions added in v3.8.0

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

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

func (*AccessRule) SetContainer added in v3.7.0

func (o *AccessRule) SetContainer(v string)

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

func (*AccessRule) SetContainerNil added in v3.7.0

func (o *AccessRule) SetContainerNil()

SetContainerNil sets the value for Container to be an explicit nil

func (*AccessRule) SetDescription added in v3.7.0

func (o *AccessRule) SetDescription(v string)

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

func (*AccessRule) SetDescriptionNil added in v3.7.0

func (o *AccessRule) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*AccessRule) SetPermissions added in v3.7.0

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

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

func (*AccessRule) SetPriority added in v3.7.0

func (o *AccessRule) SetPriority(v int32)

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

func (*AccessRule) SetPriorityNil added in v3.7.0

func (o *AccessRule) SetPriorityNil()

SetPriorityNil sets the value for Priority to be an explicit nil

func (*AccessRule) SetTransform added in v3.7.0

func (o *AccessRule) SetTransform(v string)

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

func (*AccessRule) SetTransformNil added in v3.7.0

func (o *AccessRule) SetTransformNil()

SetTransformNil sets the value for Transform to be an explicit nil

func (AccessRule) ToMap added in v3.11.0

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

func (*AccessRule) UnsetContainer added in v3.7.0

func (o *AccessRule) UnsetContainer()

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

func (*AccessRule) UnsetDescription added in v3.7.0

func (o *AccessRule) UnsetDescription()

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

func (*AccessRule) UnsetPriority added in v3.7.0

func (o *AccessRule) UnsetPriority()

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

func (*AccessRule) UnsetTransform added in v3.7.0

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"`
	Key         NullableString `json:"key,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 added in v3.8.0

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 added in v3.8.0

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

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

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.8.0

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) 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 added in v3.7.0

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 added in v3.8.0

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 added in v3.8.0

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.

func (*Application) SetKeyNil

func (o *Application) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

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 added in v3.7.0

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 added in v3.11.0

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 added in v3.8.0

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 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 added in v3.11.0

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

type ApplicationTemplate added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

func (o *ApplicationTemplate) GetId() string

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

func (*ApplicationTemplate) GetIdOk added in v3.7.0

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 added in v3.7.0

func (o *ApplicationTemplate) GetIsStarter() bool

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

func (*ApplicationTemplate) GetIsStarterOk added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

func (o *ApplicationTemplate) HasApplicationType() bool

HasApplicationType returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasDescription added in v3.7.0

func (o *ApplicationTemplate) HasDescription() bool

HasDescription returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasId added in v3.7.0

func (o *ApplicationTemplate) HasId() bool

HasId returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasIsStarter added in v3.7.0

func (o *ApplicationTemplate) HasIsStarter() bool

HasIsStarter returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasName added in v3.7.0

func (o *ApplicationTemplate) HasName() bool

HasName returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasPermissions added in v3.7.0

func (o *ApplicationTemplate) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasRules added in v3.7.0

func (o *ApplicationTemplate) HasRules() bool

HasRules returns a boolean if a field is not nil.

func (*ApplicationTemplate) HasTemplateType added in v3.7.0

func (o *ApplicationTemplate) HasTemplateType() bool

HasTemplateType returns a boolean if a field is not nil.

func (ApplicationTemplate) MarshalJSON added in v3.7.0

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

func (*ApplicationTemplate) SetApplicationType added in v3.7.0

func (o *ApplicationTemplate) SetApplicationType(v string)

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

func (*ApplicationTemplate) SetApplicationTypeNil added in v3.7.0

func (o *ApplicationTemplate) SetApplicationTypeNil()

SetApplicationTypeNil sets the value for ApplicationType to be an explicit nil

func (*ApplicationTemplate) SetDescription added in v3.7.0

func (o *ApplicationTemplate) SetDescription(v string)

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

func (*ApplicationTemplate) SetDescriptionNil added in v3.7.0

func (o *ApplicationTemplate) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ApplicationTemplate) SetId added in v3.7.0

func (o *ApplicationTemplate) SetId(v string)

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

func (*ApplicationTemplate) SetIsStarter added in v3.7.0

func (o *ApplicationTemplate) SetIsStarter(v bool)

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

func (*ApplicationTemplate) SetName added in v3.7.0

func (o *ApplicationTemplate) SetName(v string)

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

func (*ApplicationTemplate) SetNameNil added in v3.7.0

func (o *ApplicationTemplate) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ApplicationTemplate) SetPermissions added in v3.7.0

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

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

func (*ApplicationTemplate) SetRules added in v3.7.0

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

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

func (*ApplicationTemplate) SetTemplateType added in v3.7.0

func (o *ApplicationTemplate) SetTemplateType(v string)

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

func (*ApplicationTemplate) SetTemplateTypeNil added in v3.7.0

func (o *ApplicationTemplate) SetTemplateTypeNil()

SetTemplateTypeNil sets the value for TemplateType to be an explicit nil

func (ApplicationTemplate) ToMap added in v3.11.0

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

func (*ApplicationTemplate) UnsetApplicationType added in v3.7.0

func (o *ApplicationTemplate) UnsetApplicationType()

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

func (*ApplicationTemplate) UnsetDescription added in v3.7.0

func (o *ApplicationTemplate) UnsetDescription()

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

func (*ApplicationTemplate) UnsetName added in v3.7.0

func (o *ApplicationTemplate) UnsetName()

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

func (*ApplicationTemplate) UnsetTemplateType added in v3.7.0

func (o *ApplicationTemplate) UnsetTemplateType()

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

type ApplicationTemplatesApiGetByIdRequest added in v3.7.0

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

func (ApplicationTemplatesApiGetByIdRequest) Execute added in v3.7.0

type ApplicationTemplatesApiGetRequest added in v3.7.0

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

func (ApplicationTemplatesApiGetRequest) Execute added in v3.7.0

type ApplicationTemplatesApiService added in v3.7.0

type ApplicationTemplatesApiService service

ApplicationTemplatesApiService ApplicationTemplatesApi service

func (*ApplicationTemplatesApiService) Get added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

Execute executes the request

@return ApplicationTemplate

func (*ApplicationTemplatesApiService) GetExecute added in v3.7.0

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) Type_ added in v3.8.0

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

func (*ApplicationsApiService) RegenerateKeyExecute

Execute executes the request

@return Application

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 AuthorizeSessionRequest added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

func (o *AuthorizeSessionRequest) GetNonce() string

GetNonce returns the Nonce field value

func (*AuthorizeSessionRequest) GetNonceOk added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

func (o *AuthorizeSessionRequest) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*AuthorizeSessionRequest) HasPermissions added in v3.10.0

func (o *AuthorizeSessionRequest) HasPermissions() bool

HasPermissions returns a boolean if a field is not nil.

func (*AuthorizeSessionRequest) HasRules added in v3.10.0

func (o *AuthorizeSessionRequest) HasRules() bool

HasRules returns a boolean if a field is not nil.

func (AuthorizeSessionRequest) MarshalJSON added in v3.10.0

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

func (*AuthorizeSessionRequest) SetExpiresAt added in v3.10.0

func (o *AuthorizeSessionRequest) SetExpiresAt(v string)

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

func (*AuthorizeSessionRequest) SetExpiresAtNil added in v3.10.0

func (o *AuthorizeSessionRequest) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*AuthorizeSessionRequest) SetNonce added in v3.10.0

func (o *AuthorizeSessionRequest) SetNonce(v string)

SetNonce sets field value

func (*AuthorizeSessionRequest) SetPermissions added in v3.10.0

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

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

func (*AuthorizeSessionRequest) SetRules added in v3.10.0

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

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

func (AuthorizeSessionRequest) ToMap added in v3.11.0

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

func (*AuthorizeSessionRequest) UnsetExpiresAt added in v3.10.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *BinDetails) GetBank() BinDetailsBank

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

func (*BinDetails) GetBankOk added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *BinDetails) GetCountry() BinDetailsCountry

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

func (*BinDetails) GetCountryOk added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *BinDetails) GetProduct() BinDetailsProduct

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

func (*BinDetails) GetProductOk added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *BinDetails) HasAccountUpdater() bool

HasAccountUpdater returns a boolean if a field is not nil.

func (*BinDetails) HasAlm added in v3.12.0

func (o *BinDetails) HasAlm() bool

HasAlm returns a boolean if a field is not nil.

func (*BinDetails) HasAuthentication added in v3.12.0

func (o *BinDetails) HasAuthentication() bool

HasAuthentication returns a boolean if a field is not nil.

func (*BinDetails) HasBank added in v3.12.0

func (o *BinDetails) HasBank() bool

HasBank returns a boolean if a field is not nil.

func (*BinDetails) HasBinLength added in v3.12.0

func (o *BinDetails) HasBinLength() bool

HasBinLength returns a boolean if a field is not nil.

func (*BinDetails) HasCardBrand added in v3.12.0

func (o *BinDetails) HasCardBrand() bool

HasCardBrand returns a boolean if a field is not nil.

func (*BinDetails) HasCardSegmentType added in v3.12.0

func (o *BinDetails) HasCardSegmentType() bool

HasCardSegmentType returns a boolean if a field is not nil.

func (*BinDetails) HasComboCard added in v3.12.0

func (o *BinDetails) HasComboCard() bool

HasComboCard returns a boolean if a field is not nil.

func (*BinDetails) HasCost added in v3.12.0

func (o *BinDetails) HasCost() bool

HasCost returns a boolean if a field is not nil.

func (*BinDetails) HasCountry added in v3.12.0

func (o *BinDetails) HasCountry() bool

HasCountry returns a boolean if a field is not nil.

func (*BinDetails) HasDomesticOnly added in v3.12.0

func (o *BinDetails) HasDomesticOnly() bool

HasDomesticOnly returns a boolean if a field is not nil.

func (*BinDetails) HasGamblingBlocked added in v3.12.0

func (o *BinDetails) HasGamblingBlocked() bool

HasGamblingBlocked returns a boolean if a field is not nil.

func (*BinDetails) HasIssuerCurrency added in v3.12.0

func (o *BinDetails) HasIssuerCurrency() bool

HasIssuerCurrency returns a boolean if a field is not nil.

func (*BinDetails) HasLevel2 added in v3.12.0

func (o *BinDetails) HasLevel2() bool

HasLevel2 returns a boolean if a field is not nil.

func (*BinDetails) HasLevel3 added in v3.12.0

func (o *BinDetails) HasLevel3() bool

HasLevel3 returns a boolean if a field is not nil.

func (*BinDetails) HasPanOrToken added in v3.12.0

func (o *BinDetails) HasPanOrToken() bool

HasPanOrToken returns a boolean if a field is not nil.

func (*BinDetails) HasPrepaid added in v3.12.0

func (o *BinDetails) HasPrepaid() bool

HasPrepaid returns a boolean if a field is not nil.

func (*BinDetails) HasProduct added in v3.12.0

func (o *BinDetails) HasProduct() bool

HasProduct returns a boolean if a field is not nil.

func (*BinDetails) HasReloadable added in v3.12.0

func (o *BinDetails) HasReloadable() bool

HasReloadable returns a boolean if a field is not nil.

func (*BinDetails) HasType added in v3.12.0

func (o *BinDetails) HasType() bool

HasType returns a boolean if a field is not nil.

func (BinDetails) MarshalJSON added in v3.12.0

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

func (*BinDetails) SetAccountUpdater added in v3.12.0

func (o *BinDetails) SetAccountUpdater(v bool)

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

func (*BinDetails) SetAccountUpdaterNil added in v3.12.0

func (o *BinDetails) SetAccountUpdaterNil()

SetAccountUpdaterNil sets the value for AccountUpdater to be an explicit nil

func (*BinDetails) SetAlm added in v3.12.0

func (o *BinDetails) SetAlm(v bool)

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

func (*BinDetails) SetAlmNil added in v3.12.0

func (o *BinDetails) SetAlmNil()

SetAlmNil sets the value for Alm to be an explicit nil

func (*BinDetails) SetAuthentication added in v3.12.0

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

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

func (*BinDetails) SetBank added in v3.12.0

func (o *BinDetails) SetBank(v BinDetailsBank)

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

func (*BinDetails) SetBinLength added in v3.12.0

func (o *BinDetails) SetBinLength(v int32)

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

func (*BinDetails) SetBinLengthNil added in v3.12.0

func (o *BinDetails) SetBinLengthNil()

SetBinLengthNil sets the value for BinLength to be an explicit nil

func (*BinDetails) SetCardBrand added in v3.12.0

func (o *BinDetails) SetCardBrand(v string)

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

func (*BinDetails) SetCardBrandNil added in v3.12.0

func (o *BinDetails) SetCardBrandNil()

SetCardBrandNil sets the value for CardBrand to be an explicit nil

func (*BinDetails) SetCardSegmentType added in v3.12.0

func (o *BinDetails) SetCardSegmentType(v string)

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

func (*BinDetails) SetCardSegmentTypeNil added in v3.12.0

func (o *BinDetails) SetCardSegmentTypeNil()

SetCardSegmentTypeNil sets the value for CardSegmentType to be an explicit nil

func (*BinDetails) SetComboCard added in v3.12.0

func (o *BinDetails) SetComboCard(v string)

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

func (*BinDetails) SetComboCardNil added in v3.12.0

func (o *BinDetails) SetComboCardNil()

SetComboCardNil sets the value for ComboCard to be an explicit nil

func (*BinDetails) SetCost added in v3.12.0

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

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

func (*BinDetails) SetCountry added in v3.12.0

func (o *BinDetails) SetCountry(v BinDetailsCountry)

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

func (*BinDetails) SetDomesticOnly added in v3.12.0

func (o *BinDetails) SetDomesticOnly(v bool)

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

func (*BinDetails) SetDomesticOnlyNil added in v3.12.0

func (o *BinDetails) SetDomesticOnlyNil()

SetDomesticOnlyNil sets the value for DomesticOnly to be an explicit nil

func (*BinDetails) SetGamblingBlocked added in v3.12.0

func (o *BinDetails) SetGamblingBlocked(v bool)

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

func (*BinDetails) SetGamblingBlockedNil added in v3.12.0

func (o *BinDetails) SetGamblingBlockedNil()

SetGamblingBlockedNil sets the value for GamblingBlocked to be an explicit nil

func (*BinDetails) SetIssuerCurrency added in v3.12.0

func (o *BinDetails) SetIssuerCurrency(v string)

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

func (*BinDetails) SetIssuerCurrencyNil added in v3.12.0

func (o *BinDetails) SetIssuerCurrencyNil()

SetIssuerCurrencyNil sets the value for IssuerCurrency to be an explicit nil

func (*BinDetails) SetLevel2 added in v3.12.0

func (o *BinDetails) SetLevel2(v bool)

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

func (*BinDetails) SetLevel2Nil added in v3.12.0

func (o *BinDetails) SetLevel2Nil()

SetLevel2Nil sets the value for Level2 to be an explicit nil

func (*BinDetails) SetLevel3 added in v3.12.0

func (o *BinDetails) SetLevel3(v bool)

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

func (*BinDetails) SetLevel3Nil added in v3.12.0

func (o *BinDetails) SetLevel3Nil()

SetLevel3Nil sets the value for Level3 to be an explicit nil

func (*BinDetails) SetPanOrToken added in v3.12.0

func (o *BinDetails) SetPanOrToken(v string)

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

func (*BinDetails) SetPanOrTokenNil added in v3.12.0

func (o *BinDetails) SetPanOrTokenNil()

SetPanOrTokenNil sets the value for PanOrToken to be an explicit nil

func (*BinDetails) SetPrepaid added in v3.12.0

func (o *BinDetails) SetPrepaid(v bool)

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

func (*BinDetails) SetPrepaidNil added in v3.12.0

func (o *BinDetails) SetPrepaidNil()

SetPrepaidNil sets the value for Prepaid to be an explicit nil

func (*BinDetails) SetProduct added in v3.12.0

func (o *BinDetails) SetProduct(v BinDetailsProduct)

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

func (*BinDetails) SetReloadable added in v3.12.0

func (o *BinDetails) SetReloadable(v bool)

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

func (*BinDetails) SetReloadableNil added in v3.12.0

func (o *BinDetails) SetReloadableNil()

SetReloadableNil sets the value for Reloadable to be an explicit nil

func (*BinDetails) SetType added in v3.12.0

func (o *BinDetails) SetType(v string)

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

func (*BinDetails) SetTypeNil added in v3.12.0

func (o *BinDetails) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (BinDetails) ToMap added in v3.12.0

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

func (*BinDetails) UnsetAccountUpdater added in v3.12.0

func (o *BinDetails) UnsetAccountUpdater()

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

func (*BinDetails) UnsetAlm added in v3.12.0

func (o *BinDetails) UnsetAlm()

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

func (*BinDetails) UnsetBinLength added in v3.12.0

func (o *BinDetails) UnsetBinLength()

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

func (*BinDetails) UnsetCardBrand added in v3.12.0

func (o *BinDetails) UnsetCardBrand()

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

func (*BinDetails) UnsetCardSegmentType added in v3.12.0

func (o *BinDetails) UnsetCardSegmentType()

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

func (*BinDetails) UnsetComboCard added in v3.12.0

func (o *BinDetails) UnsetComboCard()

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

func (*BinDetails) UnsetDomesticOnly added in v3.12.0

func (o *BinDetails) UnsetDomesticOnly()

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

func (*BinDetails) UnsetGamblingBlocked added in v3.12.0

func (o *BinDetails) UnsetGamblingBlocked()

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

func (*BinDetails) UnsetIssuerCurrency added in v3.12.0

func (o *BinDetails) UnsetIssuerCurrency()

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

func (*BinDetails) UnsetLevel2 added in v3.12.0

func (o *BinDetails) UnsetLevel2()

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

func (*BinDetails) UnsetLevel3 added in v3.12.0

func (o *BinDetails) UnsetLevel3()

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

func (*BinDetails) UnsetPanOrToken added in v3.12.0

func (o *BinDetails) UnsetPanOrToken()

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

func (*BinDetails) UnsetPrepaid added in v3.12.0

func (o *BinDetails) UnsetPrepaid()

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

func (*BinDetails) UnsetReloadable added in v3.12.0

func (o *BinDetails) UnsetReloadable()

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

func (*BinDetails) UnsetType added in v3.12.0

func (o *BinDetails) UnsetType()

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

type BinDetailsBank added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *BinDetailsBank) HasCleanName() bool

HasCleanName returns a boolean if a field is not nil.

func (*BinDetailsBank) HasName added in v3.12.0

func (o *BinDetailsBank) HasName() bool

HasName returns a boolean if a field is not nil.

func (*BinDetailsBank) HasPhone added in v3.12.0

func (o *BinDetailsBank) HasPhone() bool

HasPhone returns a boolean if a field is not nil.

func (*BinDetailsBank) HasUrl added in v3.12.0

func (o *BinDetailsBank) HasUrl() bool

HasUrl returns a boolean if a field is not nil.

func (BinDetailsBank) MarshalJSON added in v3.12.0

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

func (*BinDetailsBank) SetCleanName added in v3.12.0

func (o *BinDetailsBank) SetCleanName(v string)

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

func (*BinDetailsBank) SetCleanNameNil added in v3.12.0

func (o *BinDetailsBank) SetCleanNameNil()

SetCleanNameNil sets the value for CleanName to be an explicit nil

func (*BinDetailsBank) SetName added in v3.12.0

func (o *BinDetailsBank) SetName(v string)

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

func (*BinDetailsBank) SetNameNil added in v3.12.0

func (o *BinDetailsBank) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*BinDetailsBank) SetPhone added in v3.12.0

func (o *BinDetailsBank) SetPhone(v string)

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

func (*BinDetailsBank) SetPhoneNil added in v3.12.0

func (o *BinDetailsBank) SetPhoneNil()

SetPhoneNil sets the value for Phone to be an explicit nil

func (*BinDetailsBank) SetUrl added in v3.12.0

func (o *BinDetailsBank) SetUrl(v string)

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

func (*BinDetailsBank) SetUrlNil added in v3.12.0

func (o *BinDetailsBank) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (BinDetailsBank) ToMap added in v3.12.0

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

func (*BinDetailsBank) UnsetCleanName added in v3.12.0

func (o *BinDetailsBank) UnsetCleanName()

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

func (*BinDetailsBank) UnsetName added in v3.12.0

func (o *BinDetailsBank) UnsetName()

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

func (*BinDetailsBank) UnsetPhone added in v3.12.0

func (o *BinDetailsBank) UnsetPhone()

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

func (*BinDetailsBank) UnsetUrl added in v3.12.0

func (o *BinDetailsBank) UnsetUrl()

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

type BinDetailsCountry added in v3.12.0

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

BinDetailsCountry struct for BinDetailsCountry

func NewBinDetailsCountry added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *BinDetailsCountry) HasAlpha2() bool

HasAlpha2 returns a boolean if a field is not nil.

func (*BinDetailsCountry) HasName added in v3.12.0

func (o *BinDetailsCountry) HasName() bool

HasName returns a boolean if a field is not nil.

func (*BinDetailsCountry) HasNumeric added in v3.12.0

func (o *BinDetailsCountry) HasNumeric() bool

HasNumeric returns a boolean if a field is not nil.

func (BinDetailsCountry) MarshalJSON added in v3.12.0

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

func (*BinDetailsCountry) SetAlpha2 added in v3.12.0

func (o *BinDetailsCountry) SetAlpha2(v string)

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

func (*BinDetailsCountry) SetAlpha2Nil added in v3.12.0

func (o *BinDetailsCountry) SetAlpha2Nil()

SetAlpha2Nil sets the value for Alpha2 to be an explicit nil

func (*BinDetailsCountry) SetName added in v3.12.0

func (o *BinDetailsCountry) SetName(v string)

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

func (*BinDetailsCountry) SetNameNil added in v3.12.0

func (o *BinDetailsCountry) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*BinDetailsCountry) SetNumeric added in v3.12.0

func (o *BinDetailsCountry) SetNumeric(v string)

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

func (*BinDetailsCountry) SetNumericNil added in v3.12.0

func (o *BinDetailsCountry) SetNumericNil()

SetNumericNil sets the value for Numeric to be an explicit nil

func (BinDetailsCountry) ToMap added in v3.12.0

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

func (*BinDetailsCountry) UnsetAlpha2 added in v3.12.0

func (o *BinDetailsCountry) UnsetAlpha2()

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

func (*BinDetailsCountry) UnsetName added in v3.12.0

func (o *BinDetailsCountry) UnsetName()

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

func (*BinDetailsCountry) UnsetNumeric added in v3.12.0

func (o *BinDetailsCountry) UnsetNumeric()

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

type BinDetailsProduct added in v3.12.0

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

BinDetailsProduct struct for BinDetailsProduct

func NewBinDetailsProduct added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *BinDetailsProduct) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (*BinDetailsProduct) HasName added in v3.12.0

func (o *BinDetailsProduct) HasName() bool

HasName returns a boolean if a field is not nil.

func (BinDetailsProduct) MarshalJSON added in v3.12.0

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

func (*BinDetailsProduct) SetCode added in v3.12.0

func (o *BinDetailsProduct) SetCode(v string)

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

func (*BinDetailsProduct) SetCodeNil added in v3.12.0

func (o *BinDetailsProduct) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*BinDetailsProduct) SetName added in v3.12.0

func (o *BinDetailsProduct) SetName(v string)

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

func (*BinDetailsProduct) SetNameNil added in v3.12.0

func (o *BinDetailsProduct) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (BinDetailsProduct) ToMap added in v3.12.0

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

func (*BinDetailsProduct) UnsetCode added in v3.12.0

func (o *BinDetailsProduct) UnsetCode()

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

func (*BinDetailsProduct) UnsetName added in v3.12.0

func (o *BinDetailsProduct) UnsetName()

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

type Condition added in v3.8.0

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

Condition struct for Condition

func NewCondition added in v3.8.0

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 added in v3.8.0

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 added in v3.8.0

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 added in v3.8.0

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 added in v3.8.0

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 added in v3.8.0

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 added in v3.8.0

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 added in v3.8.0

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 added in v3.8.0

func (o *Condition) HasAttribute() bool

HasAttribute returns a boolean if a field is not nil.

func (*Condition) HasOperator added in v3.8.0

func (o *Condition) HasOperator() bool

HasOperator returns a boolean if a field is not nil.

func (*Condition) HasValue added in v3.8.0

func (o *Condition) HasValue() bool

HasValue returns a boolean if a field is not nil.

func (Condition) MarshalJSON added in v3.8.0

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

func (*Condition) SetAttribute added in v3.8.0

func (o *Condition) SetAttribute(v string)

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

func (*Condition) SetAttributeNil added in v3.8.0

func (o *Condition) SetAttributeNil()

SetAttributeNil sets the value for Attribute to be an explicit nil

func (*Condition) SetOperator added in v3.8.0

func (o *Condition) SetOperator(v string)

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

func (*Condition) SetOperatorNil added in v3.8.0

func (o *Condition) SetOperatorNil()

SetOperatorNil sets the value for Operator to be an explicit nil

func (*Condition) SetValue added in v3.8.0

func (o *Condition) SetValue(v string)

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

func (*Condition) SetValueNil added in v3.8.0

func (o *Condition) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (Condition) ToMap added in v3.11.0

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

func (*Condition) UnsetAttribute added in v3.8.0

func (o *Condition) UnsetAttribute()

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

func (*Condition) UnsetOperator added in v3.8.0

func (o *Condition) UnsetOperator()

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

func (*Condition) UnsetValue added in v3.8.0

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"`
}

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) GetExpiresAt added in v3.8.0

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 added in v3.8.0

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 added in v3.7.0

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 added in v3.7.0

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) HasExpiresAt added in v3.8.0

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 added in v3.7.0

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) SetExpiresAt added in v3.8.0

func (o *CreateApplicationRequest) SetExpiresAt(v string)

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

func (*CreateApplicationRequest) SetExpiresAtNil added in v3.8.0

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 added in v3.7.0

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 added in v3.11.0

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

func (*CreateApplicationRequest) UnsetExpiresAt added in v3.8.0

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 added in v3.9.0

func (o *CreateProxyRequest) GetApplication() Application

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

func (*CreateProxyRequest) GetApplicationOk added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *CreateProxyRequest) GetRequestTransform() ProxyTransform

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

func (*CreateProxyRequest) GetRequestTransformOk added in v3.9.0

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 added in v3.9.0

func (o *CreateProxyRequest) GetResponseTransform() ProxyTransform

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

func (*CreateProxyRequest) GetResponseTransformOk added in v3.9.0

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 added in v3.9.0

func (o *CreateProxyRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*CreateProxyRequest) HasConfiguration added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *CreateProxyRequest) SetApplication(v Application)

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

func (*CreateProxyRequest) SetConfiguration added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *CreateProxyRequest) SetResponseTransform(v ProxyTransform)

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

func (CreateProxyRequest) ToMap added in v3.11.0

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 added in v3.11.0

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"`
	// Deprecated
	Formula       *ReactorFormula   `json:"formula,omitempty"`
	Code          NullableString    `json:"code,omitempty"`
	Application   *Application      `json:"application,omitempty"`
	Configuration map[string]string `json:"configuration,omitempty"`
}

CreateReactorRequest struct for CreateReactorRequest

func NewCreateReactorRequest

func NewCreateReactorRequest(name 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 added in v3.13.0

func (o *CreateReactorRequest) GetCode() string

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

func (*CreateReactorRequest) GetCodeOk added in v3.13.0

func (o *CreateReactorRequest) 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 (*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) GetFormula

func (o *CreateReactorRequest) GetFormula() ReactorFormula

GetFormula returns the Formula field value if set, zero value otherwise. Deprecated

func (*CreateReactorRequest) GetFormulaOk

func (o *CreateReactorRequest) 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 (*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) HasCode added in v3.13.0

func (o *CreateReactorRequest) HasCode() bool

HasCode 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) HasFormula

func (o *CreateReactorRequest) HasFormula() bool

HasFormula 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 added in v3.13.0

func (o *CreateReactorRequest) SetCode(v string)

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

func (*CreateReactorRequest) SetCodeNil added in v3.13.0

func (o *CreateReactorRequest) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

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

func (o *CreateReactorRequest) SetFormula(v ReactorFormula)

SetFormula gets a reference to the given ReactorFormula and assigns it to the Formula field. Deprecated

func (*CreateReactorRequest) SetName

func (o *CreateReactorRequest) SetName(v string)

SetName sets field value

func (CreateReactorRequest) ToMap added in v3.11.0

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

func (*CreateReactorRequest) UnsetCode added in v3.13.0

func (o *CreateReactorRequest) UnsetCode()

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

type CreateSessionResponse added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

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 added in v3.10.0

func (o *CreateSessionResponse) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*CreateSessionResponse) HasNonce added in v3.10.0

func (o *CreateSessionResponse) HasNonce() bool

HasNonce returns a boolean if a field is not nil.

func (*CreateSessionResponse) HasSessionKey added in v3.10.0

func (o *CreateSessionResponse) HasSessionKey() bool

HasSessionKey returns a boolean if a field is not nil.

func (CreateSessionResponse) MarshalJSON added in v3.10.0

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

func (*CreateSessionResponse) SetExpiresAt added in v3.10.0

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 added in v3.10.0

func (o *CreateSessionResponse) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*CreateSessionResponse) SetNonce added in v3.10.0

func (o *CreateSessionResponse) SetNonce(v string)

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

func (*CreateSessionResponse) SetNonceNil added in v3.10.0

func (o *CreateSessionResponse) SetNonceNil()

SetNonceNil sets the value for Nonce to be an explicit nil

func (*CreateSessionResponse) SetSessionKey added in v3.10.0

func (o *CreateSessionResponse) SetSessionKey(v string)

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

func (*CreateSessionResponse) SetSessionKeyNil added in v3.10.0

func (o *CreateSessionResponse) SetSessionKeyNil()

SetSessionKeyNil sets the value for SessionKey to be an explicit nil

func (CreateSessionResponse) ToMap added in v3.11.0

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

func (*CreateSessionResponse) UnsetExpiresAt added in v3.10.0

func (o *CreateSessionResponse) UnsetExpiresAt()

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

func (*CreateSessionResponse) UnsetNonce added in v3.10.0

func (o *CreateSessionResponse) UnsetNonce()

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

func (*CreateSessionResponse) UnsetSessionKey added in v3.10.0

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 added in v3.11.0

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"`
	Encryption            *EncryptionMetadata `json:"encryption,omitempty"`
	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 added in v3.7.0

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 added in v3.7.0

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 added in v3.1.0

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 added in v3.1.0

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

func (o *CreateTokenRequest) GetEncryption() EncryptionMetadata

GetEncryption returns the Encryption field value if set, zero value otherwise.

func (*CreateTokenRequest) GetEncryptionOk

func (o *CreateTokenRequest) 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 (*CreateTokenRequest) GetExpiresAt added in v3.5.0

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 added in v3.5.0

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 added in v3.3.0

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 added in v3.3.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.7.0

func (o *CreateTokenRequest) HasContainers() bool

HasContainers returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasDeduplicateToken added in v3.1.0

func (o *CreateTokenRequest) HasDeduplicateToken() bool

HasDeduplicateToken returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasEncryption

func (o *CreateTokenRequest) HasEncryption() bool

HasEncryption returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasExpiresAt added in v3.5.0

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 added in v3.3.0

func (o *CreateTokenRequest) HasId() bool

HasId returns a boolean if a field is not nil.

func (*CreateTokenRequest) HasMask added in v3.2.0

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 added in v3.7.0

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 added in v3.1.0

func (o *CreateTokenRequest) SetDeduplicateToken(v bool)

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

func (*CreateTokenRequest) SetDeduplicateTokenNil added in v3.1.0

func (o *CreateTokenRequest) SetDeduplicateTokenNil()

SetDeduplicateTokenNil sets the value for DeduplicateToken to be an explicit nil

func (*CreateTokenRequest) SetEncryption

func (o *CreateTokenRequest) SetEncryption(v EncryptionMetadata)

SetEncryption gets a reference to the given EncryptionMetadata and assigns it to the Encryption field.

func (*CreateTokenRequest) SetExpiresAt added in v3.5.0

func (o *CreateTokenRequest) SetExpiresAt(v string)

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

func (*CreateTokenRequest) SetExpiresAtNil added in v3.5.0

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 added in v3.3.0

func (o *CreateTokenRequest) SetId(v string)

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

func (*CreateTokenRequest) SetIdNil added in v3.3.0

func (o *CreateTokenRequest) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*CreateTokenRequest) SetMask added in v3.2.0

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 added in v3.11.0

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

func (*CreateTokenRequest) UnsetDeduplicateToken added in v3.1.0

func (o *CreateTokenRequest) UnsetDeduplicateToken()

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

func (*CreateTokenRequest) UnsetExpiresAt added in v3.5.0

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 added in v3.3.0

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.12.0

func (o *CreateTokenResponse) GetEnrichments() TokenEnrichments

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

func (*CreateTokenResponse) GetEnrichmentsOk added in v3.12.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.11.0

func (o *CreateTokenResponse) HasAliases() bool

HasAliases returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasContainers added in v3.7.0

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 added in v3.12.0

func (o *CreateTokenResponse) HasEnrichments() bool

HasEnrichments returns a boolean if a field is not nil.

func (*CreateTokenResponse) HasExpiresAt added in v3.5.0

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 added in v3.2.0

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 added in v3.11.0

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

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

func (*CreateTokenResponse) SetContainers added in v3.7.0

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 added in v3.12.0

func (o *CreateTokenResponse) SetEnrichments(v TokenEnrichments)

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

func (*CreateTokenResponse) SetExpiresAt added in v3.5.0

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 added in v3.5.0

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 added in v3.3.0

func (o *CreateTokenResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*CreateTokenResponse) SetMask added in v3.2.0

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 added in v3.11.0

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 added in v3.5.0

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 added in v3.3.0

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 CreateTransactionResponse added in v3.11.0

type CreateTransactionResponse struct {
	Id        *string        `json:"id,omitempty"`
	CreatedBy NullableString `json:"created_by,omitempty"`
	CreatedAt NullableTime   `json:"created_at,omitempty"`
	ExpiresAt *time.Time     `json:"expires_at,omitempty"`
}

CreateTransactionResponse struct for CreateTransactionResponse

func NewCreateTransactionResponse added in v3.11.0

func NewCreateTransactionResponse() *CreateTransactionResponse

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

func NewCreateTransactionResponseWithDefaults added in v3.11.0

func NewCreateTransactionResponseWithDefaults() *CreateTransactionResponse

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

func (*CreateTransactionResponse) GetCreatedAt added in v3.11.0

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

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

func (*CreateTransactionResponse) GetCreatedAtOk added in v3.11.0

func (o *CreateTransactionResponse) 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 (*CreateTransactionResponse) GetCreatedBy added in v3.11.0

func (o *CreateTransactionResponse) GetCreatedBy() string

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

func (*CreateTransactionResponse) GetCreatedByOk added in v3.11.0

func (o *CreateTransactionResponse) 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 (*CreateTransactionResponse) GetExpiresAt added in v3.11.0

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

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

func (*CreateTransactionResponse) GetExpiresAtOk added in v3.11.0

func (o *CreateTransactionResponse) 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 (*CreateTransactionResponse) GetId added in v3.11.0

func (o *CreateTransactionResponse) GetId() string

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

func (*CreateTransactionResponse) GetIdOk added in v3.11.0

func (o *CreateTransactionResponse) 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 (*CreateTransactionResponse) HasCreatedAt added in v3.11.0

func (o *CreateTransactionResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field is not nil.

func (*CreateTransactionResponse) HasCreatedBy added in v3.11.0

func (o *CreateTransactionResponse) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field is not nil.

func (*CreateTransactionResponse) HasExpiresAt added in v3.11.0

func (o *CreateTransactionResponse) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*CreateTransactionResponse) HasId added in v3.11.0

func (o *CreateTransactionResponse) HasId() bool

HasId returns a boolean if a field is not nil.

func (CreateTransactionResponse) MarshalJSON added in v3.11.0

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

func (*CreateTransactionResponse) SetCreatedAt added in v3.11.0

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

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

func (*CreateTransactionResponse) SetCreatedAtNil added in v3.11.0

func (o *CreateTransactionResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*CreateTransactionResponse) SetCreatedBy added in v3.11.0

func (o *CreateTransactionResponse) SetCreatedBy(v string)

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

func (*CreateTransactionResponse) SetCreatedByNil added in v3.11.0

func (o *CreateTransactionResponse) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*CreateTransactionResponse) SetExpiresAt added in v3.11.0

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

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

func (*CreateTransactionResponse) SetId added in v3.11.0

func (o *CreateTransactionResponse) SetId(v string)

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

func (CreateTransactionResponse) ToMap added in v3.11.0

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

func (*CreateTransactionResponse) UnsetCreatedAt added in v3.11.0

func (o *CreateTransactionResponse) UnsetCreatedAt()

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

func (*CreateTransactionResponse) UnsetCreatedBy added in v3.11.0

func (o *CreateTransactionResponse) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, 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 added in v3.11.0

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 added in v3.11.0

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 added in v3.5.0

type GetApplications struct {
	Id   []string      `json:"id,omitempty"`
	Type []string      `json:"type,omitempty"`
	Page NullableInt32 `json:"page,omitempty"`
	Size NullableInt32 `json:"size,omitempty"`
}

GetApplications struct for GetApplications

func NewGetApplications added in v3.5.0

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 added in v3.5.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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) GetType added in v3.8.0

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 added in v3.8.0

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 added in v3.7.0

func (o *GetApplications) HasId() bool

HasId returns a boolean if a field is not nil.

func (*GetApplications) HasPage added in v3.5.0

func (o *GetApplications) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetApplications) HasSize added in v3.5.0

func (o *GetApplications) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetApplications) HasType added in v3.8.0

func (o *GetApplications) HasType() bool

HasType returns a boolean if a field is not nil.

func (GetApplications) MarshalJSON added in v3.5.0

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

func (*GetApplications) SetId added in v3.7.0

func (o *GetApplications) SetId(v []string)

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

func (*GetApplications) SetPage added in v3.5.0

func (o *GetApplications) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetApplications) SetPageNil added in v3.5.0

func (o *GetApplications) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetApplications) SetSize added in v3.5.0

func (o *GetApplications) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetApplications) SetSizeNil added in v3.5.0

func (o *GetApplications) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetApplications) SetType added in v3.8.0

func (o *GetApplications) SetType(v []string)

SetType gets a reference to the given []string and assigns it to the Type field.

func (GetApplications) ToMap added in v3.11.0

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

func (*GetApplications) UnsetPage added in v3.5.0

func (o *GetApplications) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetApplications) UnsetSize added in v3.5.0

func (o *GetApplications) UnsetSize()

UnsetSize ensures that no value is present for Size, 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"`
	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) 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) 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) 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) 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) ToMap added in v3.11.0

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) 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 added in v3.11.0

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"`
	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 added in v3.7.0

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 added in v3.7.0

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) HasId added in v3.7.0

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

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

func (*GetProxies) SetId added in v3.7.0

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) ToMap added in v3.11.0

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

type GetReactorFormulas added in v3.5.0

type GetReactorFormulas struct {
	Name NullableString `json:"name,omitempty"`
	Page NullableInt32  `json:"page,omitempty"`
	Size NullableInt32  `json:"size,omitempty"`
}

GetReactorFormulas struct for GetReactorFormulas

func NewGetReactorFormulas added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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) HasName added in v3.5.0

func (o *GetReactorFormulas) HasName() bool

HasName returns a boolean if a field is not nil.

func (*GetReactorFormulas) HasPage added in v3.5.0

func (o *GetReactorFormulas) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetReactorFormulas) HasSize added in v3.5.0

func (o *GetReactorFormulas) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (GetReactorFormulas) MarshalJSON added in v3.5.0

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

func (*GetReactorFormulas) SetName added in v3.5.0

func (o *GetReactorFormulas) SetName(v string)

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

func (*GetReactorFormulas) SetNameNil added in v3.5.0

func (o *GetReactorFormulas) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GetReactorFormulas) SetPage added in v3.5.0

func (o *GetReactorFormulas) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetReactorFormulas) SetPageNil added in v3.5.0

func (o *GetReactorFormulas) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetReactorFormulas) SetSize added in v3.5.0

func (o *GetReactorFormulas) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetReactorFormulas) SetSizeNil added in v3.5.0

func (o *GetReactorFormulas) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (GetReactorFormulas) ToMap added in v3.11.0

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

func (*GetReactorFormulas) UnsetName added in v3.5.0

func (o *GetReactorFormulas) UnsetName()

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

func (*GetReactorFormulas) UnsetPage added in v3.5.0

func (o *GetReactorFormulas) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetReactorFormulas) UnsetSize added in v3.5.0

func (o *GetReactorFormulas) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

type GetReactors added in v3.5.0

type GetReactors struct {
	Id   []string       `json:"id,omitempty"`
	Name NullableString `json:"name,omitempty"`
	Page NullableInt32  `json:"page,omitempty"`
	Size NullableInt32  `json:"size,omitempty"`
}

GetReactors struct for GetReactors

func NewGetReactors added in v3.5.0

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 added in v3.5.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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) HasId added in v3.7.0

func (o *GetReactors) HasId() bool

HasId returns a boolean if a field is not nil.

func (*GetReactors) HasName added in v3.5.0

func (o *GetReactors) HasName() bool

HasName returns a boolean if a field is not nil.

func (*GetReactors) HasPage added in v3.5.0

func (o *GetReactors) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetReactors) HasSize added in v3.5.0

func (o *GetReactors) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (GetReactors) MarshalJSON added in v3.5.0

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

func (*GetReactors) SetId added in v3.7.0

func (o *GetReactors) SetId(v []string)

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

func (*GetReactors) SetName added in v3.5.0

func (o *GetReactors) SetName(v string)

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

func (*GetReactors) SetNameNil added in v3.5.0

func (o *GetReactors) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GetReactors) SetPage added in v3.5.0

func (o *GetReactors) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetReactors) SetPageNil added in v3.5.0

func (o *GetReactors) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetReactors) SetSize added in v3.5.0

func (o *GetReactors) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetReactors) SetSizeNil added in v3.5.0

func (o *GetReactors) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (GetReactors) ToMap added in v3.11.0

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

func (*GetReactors) UnsetName added in v3.5.0

func (o *GetReactors) UnsetName()

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

func (*GetReactors) UnsetPage added in v3.5.0

func (o *GetReactors) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetReactors) UnsetSize added in v3.5.0

func (o *GetReactors) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

type GetTenantInvitations added in v3.5.0

type GetTenantInvitations struct {
	Status *TenantInvitationStatus `json:"status,omitempty"`
	Page   NullableInt32           `json:"page,omitempty"`
	Size   NullableInt32           `json:"size,omitempty"`
}

GetTenantInvitations struct for GetTenantInvitations

func NewGetTenantInvitations added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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) GetStatus added in v3.5.0

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

func (*GetTenantInvitations) GetStatusOk added in v3.5.0

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 added in v3.5.0

func (o *GetTenantInvitations) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetTenantInvitations) HasSize added in v3.5.0

func (o *GetTenantInvitations) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetTenantInvitations) HasStatus added in v3.5.0

func (o *GetTenantInvitations) HasStatus() bool

HasStatus returns a boolean if a field is not nil.

func (GetTenantInvitations) MarshalJSON added in v3.5.0

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

func (*GetTenantInvitations) SetPage added in v3.5.0

func (o *GetTenantInvitations) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetTenantInvitations) SetPageNil added in v3.5.0

func (o *GetTenantInvitations) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetTenantInvitations) SetSize added in v3.5.0

func (o *GetTenantInvitations) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetTenantInvitations) SetSizeNil added in v3.5.0

func (o *GetTenantInvitations) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetTenantInvitations) SetStatus added in v3.5.0

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

func (GetTenantInvitations) ToMap added in v3.11.0

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

func (*GetTenantInvitations) UnsetPage added in v3.5.0

func (o *GetTenantInvitations) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetTenantInvitations) UnsetSize added in v3.5.0

func (o *GetTenantInvitations) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

type GetTenantMembers added in v3.5.0

type GetTenantMembers struct {
	UserId []string      `json:"user_id,omitempty"`
	Page   NullableInt32 `json:"page,omitempty"`
	Size   NullableInt32 `json:"size,omitempty"`
}

GetTenantMembers struct for GetTenantMembers

func NewGetTenantMembers added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.5.0

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) GetUserId added in v3.7.0

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 added in v3.7.0

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 added in v3.5.0

func (o *GetTenantMembers) HasPage() bool

HasPage returns a boolean if a field is not nil.

func (*GetTenantMembers) HasSize added in v3.5.0

func (o *GetTenantMembers) HasSize() bool

HasSize returns a boolean if a field is not nil.

func (*GetTenantMembers) HasUserId added in v3.7.0

func (o *GetTenantMembers) HasUserId() bool

HasUserId returns a boolean if a field is not nil.

func (GetTenantMembers) MarshalJSON added in v3.5.0

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

func (*GetTenantMembers) SetPage added in v3.5.0

func (o *GetTenantMembers) SetPage(v int32)

SetPage gets a reference to the given NullableInt32 and assigns it to the Page field.

func (*GetTenantMembers) SetPageNil added in v3.5.0

func (o *GetTenantMembers) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetTenantMembers) SetSize added in v3.5.0

func (o *GetTenantMembers) SetSize(v int32)

SetSize gets a reference to the given NullableInt32 and assigns it to the Size field.

func (*GetTenantMembers) SetSizeNil added in v3.5.0

func (o *GetTenantMembers) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetTenantMembers) SetUserId added in v3.7.0

func (o *GetTenantMembers) SetUserId(v []string)

SetUserId gets a reference to the given []string and assigns it to the UserId field.

func (GetTenantMembers) ToMap added in v3.11.0

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

func (*GetTenantMembers) UnsetPage added in v3.5.0

func (o *GetTenantMembers) UnsetPage()

UnsetPage ensures that no value is present for Page, not even an explicit nil

func (*GetTenantMembers) UnsetSize added in v3.5.0

func (o *GetTenantMembers) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

type GetTokens

type GetTokens struct {
	Type     []string          `json:"type,omitempty"`
	Id       []string          `json:"id,omitempty"`
	Metadata map[string]string `json:"metadata,omitempty"`
	Page     NullableInt32     `json:"page,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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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) GetType added in v3.7.0

func (o *GetTokens) GetType() []string

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

func (*GetTokens) GetTypeOk added in v3.7.0

func (o *GetTokens) 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 (*GetTokens) HasId added in v3.7.0

func (o *GetTokens) HasId() bool

HasId returns a boolean if a field is not nil.

func (*GetTokens) HasMetadata added in v3.7.0

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) HasType added in v3.7.0

func (o *GetTokens) HasType() bool

HasType returns a boolean if a field is not nil.

func (GetTokens) MarshalJSON

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

func (*GetTokens) SetId added in v3.7.0

func (o *GetTokens) SetId(v []string)

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

func (*GetTokens) SetMetadata added in v3.7.0

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) SetType added in v3.7.0

func (o *GetTokens) SetType(v []string)

SetType gets a reference to the given []string and assigns it to the Type field.

func (GetTokens) ToMap added in v3.11.0

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

type Log

type Log struct {
	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) 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) 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) 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 added in v3.11.0

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) 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 added in v3.11.0

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 added in v3.11.0

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) 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 added in v3.11.0

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

type MonthlyActiveTokenHistory added in v3.7.0

type MonthlyActiveTokenHistory struct {
	Year  *int32 `json:"year,omitempty"`
	Month *int32 `json:"month,omitempty"`
	Count *int64 `json:"count,omitempty"`
}

MonthlyActiveTokenHistory struct for MonthlyActiveTokenHistory

func NewMonthlyActiveTokenHistory added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

func (o *MonthlyActiveTokenHistory) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*MonthlyActiveTokenHistory) GetCountOk added in v3.7.0

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 added in v3.7.0

func (o *MonthlyActiveTokenHistory) GetMonth() int32

GetMonth returns the Month field value if set, zero value otherwise.

func (*MonthlyActiveTokenHistory) GetMonthOk added in v3.7.0

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 added in v3.7.0

func (o *MonthlyActiveTokenHistory) GetYear() int32

GetYear returns the Year field value if set, zero value otherwise.

func (*MonthlyActiveTokenHistory) GetYearOk added in v3.7.0

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 added in v3.7.0

func (o *MonthlyActiveTokenHistory) HasCount() bool

HasCount returns a boolean if a field is not nil.

func (*MonthlyActiveTokenHistory) HasMonth added in v3.7.0

func (o *MonthlyActiveTokenHistory) HasMonth() bool

HasMonth returns a boolean if a field is not nil.

func (*MonthlyActiveTokenHistory) HasYear added in v3.7.0

func (o *MonthlyActiveTokenHistory) HasYear() bool

HasYear returns a boolean if a field is not nil.

func (MonthlyActiveTokenHistory) MarshalJSON added in v3.7.0

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

func (*MonthlyActiveTokenHistory) SetCount added in v3.7.0

func (o *MonthlyActiveTokenHistory) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*MonthlyActiveTokenHistory) SetMonth added in v3.7.0

func (o *MonthlyActiveTokenHistory) SetMonth(v int32)

SetMonth gets a reference to the given int32 and assigns it to the Month field.

func (*MonthlyActiveTokenHistory) SetYear added in v3.7.0

func (o *MonthlyActiveTokenHistory) SetYear(v int32)

SetYear gets a reference to the given int32 and assigns it to the Year field.

func (MonthlyActiveTokenHistory) ToMap added in v3.11.0

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

type NullableAccessRule added in v3.7.0

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

func NewNullableAccessRule added in v3.7.0

func NewNullableAccessRule(val *AccessRule) *NullableAccessRule

func (NullableAccessRule) Get added in v3.7.0

func (v NullableAccessRule) Get() *AccessRule

func (NullableAccessRule) IsSet added in v3.7.0

func (v NullableAccessRule) IsSet() bool

func (NullableAccessRule) MarshalJSON added in v3.7.0

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

func (*NullableAccessRule) Set added in v3.7.0

func (v *NullableAccessRule) Set(val *AccessRule)

func (*NullableAccessRule) UnmarshalJSON added in v3.7.0

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

func (*NullableAccessRule) Unset added in v3.7.0

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 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 added in v3.7.0

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

func NewNullableApplicationTemplate added in v3.7.0

func NewNullableApplicationTemplate(val *ApplicationTemplate) *NullableApplicationTemplate

func (NullableApplicationTemplate) Get added in v3.7.0

func (NullableApplicationTemplate) IsSet added in v3.7.0

func (NullableApplicationTemplate) MarshalJSON added in v3.7.0

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

func (*NullableApplicationTemplate) Set added in v3.7.0

func (*NullableApplicationTemplate) UnmarshalJSON added in v3.7.0

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

func (*NullableApplicationTemplate) Unset added in v3.7.0

func (v *NullableApplicationTemplate) Unset()

type NullableAuthorizeSessionRequest added in v3.10.0

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

func NewNullableAuthorizeSessionRequest added in v3.10.0

func NewNullableAuthorizeSessionRequest(val *AuthorizeSessionRequest) *NullableAuthorizeSessionRequest

func (NullableAuthorizeSessionRequest) Get added in v3.10.0

func (NullableAuthorizeSessionRequest) IsSet added in v3.10.0

func (NullableAuthorizeSessionRequest) MarshalJSON added in v3.10.0

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

func (*NullableAuthorizeSessionRequest) Set added in v3.10.0

func (*NullableAuthorizeSessionRequest) UnmarshalJSON added in v3.10.0

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

func (*NullableAuthorizeSessionRequest) Unset added in v3.10.0

type NullableBinDetails added in v3.12.0

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

func NewNullableBinDetails added in v3.12.0

func NewNullableBinDetails(val *BinDetails) *NullableBinDetails

func (NullableBinDetails) Get added in v3.12.0

func (v NullableBinDetails) Get() *BinDetails

func (NullableBinDetails) IsSet added in v3.12.0

func (v NullableBinDetails) IsSet() bool

func (NullableBinDetails) MarshalJSON added in v3.12.0

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

func (*NullableBinDetails) Set added in v3.12.0

func (v *NullableBinDetails) Set(val *BinDetails)

func (*NullableBinDetails) UnmarshalJSON added in v3.12.0

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

func (*NullableBinDetails) Unset added in v3.12.0

func (v *NullableBinDetails) Unset()

type NullableBinDetailsBank added in v3.12.0

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

func NewNullableBinDetailsBank added in v3.12.0

func NewNullableBinDetailsBank(val *BinDetailsBank) *NullableBinDetailsBank

func (NullableBinDetailsBank) Get added in v3.12.0

func (NullableBinDetailsBank) IsSet added in v3.12.0

func (v NullableBinDetailsBank) IsSet() bool

func (NullableBinDetailsBank) MarshalJSON added in v3.12.0

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

func (*NullableBinDetailsBank) Set added in v3.12.0

func (*NullableBinDetailsBank) UnmarshalJSON added in v3.12.0

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

func (*NullableBinDetailsBank) Unset added in v3.12.0

func (v *NullableBinDetailsBank) Unset()

type NullableBinDetailsCountry added in v3.12.0

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

func NewNullableBinDetailsCountry added in v3.12.0

func NewNullableBinDetailsCountry(val *BinDetailsCountry) *NullableBinDetailsCountry

func (NullableBinDetailsCountry) Get added in v3.12.0

func (NullableBinDetailsCountry) IsSet added in v3.12.0

func (v NullableBinDetailsCountry) IsSet() bool

func (NullableBinDetailsCountry) MarshalJSON added in v3.12.0

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

func (*NullableBinDetailsCountry) Set added in v3.12.0

func (*NullableBinDetailsCountry) UnmarshalJSON added in v3.12.0

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

func (*NullableBinDetailsCountry) Unset added in v3.12.0

func (v *NullableBinDetailsCountry) Unset()

type NullableBinDetailsProduct added in v3.12.0

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

func NewNullableBinDetailsProduct added in v3.12.0

func NewNullableBinDetailsProduct(val *BinDetailsProduct) *NullableBinDetailsProduct

func (NullableBinDetailsProduct) Get added in v3.12.0

func (NullableBinDetailsProduct) IsSet added in v3.12.0

func (v NullableBinDetailsProduct) IsSet() bool

func (NullableBinDetailsProduct) MarshalJSON added in v3.12.0

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

func (*NullableBinDetailsProduct) Set added in v3.12.0

func (*NullableBinDetailsProduct) UnmarshalJSON added in v3.12.0

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

func (*NullableBinDetailsProduct) Unset added in v3.12.0

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 added in v3.8.0

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

func NewNullableCondition added in v3.8.0

func NewNullableCondition(val *Condition) *NullableCondition

func (NullableCondition) Get added in v3.8.0

func (v NullableCondition) Get() *Condition

func (NullableCondition) IsSet added in v3.8.0

func (v NullableCondition) IsSet() bool

func (NullableCondition) MarshalJSON added in v3.8.0

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

func (*NullableCondition) Set added in v3.8.0

func (v *NullableCondition) Set(val *Condition)

func (*NullableCondition) UnmarshalJSON added in v3.8.0

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

func (*NullableCondition) Unset added in v3.8.0

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 added in v3.10.0

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

func NewNullableCreateSessionResponse added in v3.10.0

func NewNullableCreateSessionResponse(val *CreateSessionResponse) *NullableCreateSessionResponse

func (NullableCreateSessionResponse) Get added in v3.10.0

func (NullableCreateSessionResponse) IsSet added in v3.10.0

func (NullableCreateSessionResponse) MarshalJSON added in v3.10.0

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

func (*NullableCreateSessionResponse) Set added in v3.10.0

func (*NullableCreateSessionResponse) UnmarshalJSON added in v3.10.0

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

func (*NullableCreateSessionResponse) Unset added in v3.10.0

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 NullableCreateTransactionResponse added in v3.11.0

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

func NewNullableCreateTransactionResponse added in v3.11.0

func NewNullableCreateTransactionResponse(val *CreateTransactionResponse) *NullableCreateTransactionResponse

func (NullableCreateTransactionResponse) Get added in v3.11.0

func (NullableCreateTransactionResponse) IsSet added in v3.11.0

func (NullableCreateTransactionResponse) MarshalJSON added in v3.11.0

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

func (*NullableCreateTransactionResponse) Set added in v3.11.0

func (*NullableCreateTransactionResponse) UnmarshalJSON added in v3.11.0

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

func (*NullableCreateTransactionResponse) Unset added in v3.11.0

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 added in v3.5.0

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

func NewNullableGetApplications added in v3.5.0

func NewNullableGetApplications(val *GetApplications) *NullableGetApplications

func (NullableGetApplications) Get added in v3.5.0

func (NullableGetApplications) IsSet added in v3.5.0

func (v NullableGetApplications) IsSet() bool

func (NullableGetApplications) MarshalJSON added in v3.5.0

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

func (*NullableGetApplications) Set added in v3.5.0

func (*NullableGetApplications) UnmarshalJSON added in v3.5.0

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

func (*NullableGetApplications) Unset added in v3.5.0

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 added in v3.5.0

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

func NewNullableGetReactorFormulas added in v3.5.0

func NewNullableGetReactorFormulas(val *GetReactorFormulas) *NullableGetReactorFormulas

func (NullableGetReactorFormulas) Get added in v3.5.0

func (NullableGetReactorFormulas) IsSet added in v3.5.0

func (v NullableGetReactorFormulas) IsSet() bool

func (NullableGetReactorFormulas) MarshalJSON added in v3.5.0

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

func (*NullableGetReactorFormulas) Set added in v3.5.0

func (*NullableGetReactorFormulas) UnmarshalJSON added in v3.5.0

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

func (*NullableGetReactorFormulas) Unset added in v3.5.0

func (v *NullableGetReactorFormulas) Unset()

type NullableGetReactors added in v3.5.0

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

func NewNullableGetReactors added in v3.5.0

func NewNullableGetReactors(val *GetReactors) *NullableGetReactors

func (NullableGetReactors) Get added in v3.5.0

func (NullableGetReactors) IsSet added in v3.5.0

func (v NullableGetReactors) IsSet() bool

func (NullableGetReactors) MarshalJSON added in v3.5.0

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

func (*NullableGetReactors) Set added in v3.5.0

func (v *NullableGetReactors) Set(val *GetReactors)

func (*NullableGetReactors) UnmarshalJSON added in v3.5.0

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

func (*NullableGetReactors) Unset added in v3.5.0

func (v *NullableGetReactors) Unset()

type NullableGetTenantInvitations added in v3.5.0

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

func NewNullableGetTenantInvitations added in v3.5.0

func NewNullableGetTenantInvitations(val *GetTenantInvitations) *NullableGetTenantInvitations

func (NullableGetTenantInvitations) Get added in v3.5.0

func (NullableGetTenantInvitations) IsSet added in v3.5.0

func (NullableGetTenantInvitations) MarshalJSON added in v3.5.0

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

func (*NullableGetTenantInvitations) Set added in v3.5.0

func (*NullableGetTenantInvitations) UnmarshalJSON added in v3.5.0

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

func (*NullableGetTenantInvitations) Unset added in v3.5.0

func (v *NullableGetTenantInvitations) Unset()

type NullableGetTenantMembers added in v3.5.0

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

func NewNullableGetTenantMembers added in v3.5.0

func NewNullableGetTenantMembers(val *GetTenantMembers) *NullableGetTenantMembers

func (NullableGetTenantMembers) Get added in v3.5.0

func (NullableGetTenantMembers) IsSet added in v3.5.0

func (v NullableGetTenantMembers) IsSet() bool

func (NullableGetTenantMembers) MarshalJSON added in v3.5.0

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

func (*NullableGetTenantMembers) Set added in v3.5.0

func (*NullableGetTenantMembers) UnmarshalJSON added in v3.5.0

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

func (*NullableGetTenantMembers) Unset added in v3.5.0

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 added in v3.7.0

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

func NewNullableMonthlyActiveTokenHistory added in v3.7.0

func NewNullableMonthlyActiveTokenHistory(val *MonthlyActiveTokenHistory) *NullableMonthlyActiveTokenHistory

func (NullableMonthlyActiveTokenHistory) Get added in v3.7.0

func (NullableMonthlyActiveTokenHistory) IsSet added in v3.7.0

func (NullableMonthlyActiveTokenHistory) MarshalJSON added in v3.7.0

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

func (*NullableMonthlyActiveTokenHistory) Set added in v3.7.0

func (*NullableMonthlyActiveTokenHistory) UnmarshalJSON added in v3.7.0

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

func (*NullableMonthlyActiveTokenHistory) Unset added in v3.7.0

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 added in v3.12.0

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

func NewNullablePatchProxyRequest added in v3.12.0

func NewNullablePatchProxyRequest(val *PatchProxyRequest) *NullablePatchProxyRequest

func (NullablePatchProxyRequest) Get added in v3.12.0

func (NullablePatchProxyRequest) IsSet added in v3.12.0

func (v NullablePatchProxyRequest) IsSet() bool

func (NullablePatchProxyRequest) MarshalJSON added in v3.12.0

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

func (*NullablePatchProxyRequest) Set added in v3.12.0

func (*NullablePatchProxyRequest) UnmarshalJSON added in v3.12.0

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

func (*NullablePatchProxyRequest) Unset added in v3.12.0

func (v *NullablePatchProxyRequest) Unset()

type NullablePatchReactorRequest added in v3.12.0

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

func NewNullablePatchReactorRequest added in v3.12.0

func NewNullablePatchReactorRequest(val *PatchReactorRequest) *NullablePatchReactorRequest

func (NullablePatchReactorRequest) Get added in v3.12.0

func (NullablePatchReactorRequest) IsSet added in v3.12.0

func (NullablePatchReactorRequest) MarshalJSON added in v3.12.0

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

func (*NullablePatchReactorRequest) Set added in v3.12.0

func (*NullablePatchReactorRequest) UnmarshalJSON added in v3.12.0

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

func (*NullablePatchReactorRequest) Unset added in v3.12.0

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 added in v3.9.0

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

func NewNullableProxyTransform added in v3.9.0

func NewNullableProxyTransform(val *ProxyTransform) *NullableProxyTransform

func (NullableProxyTransform) Get added in v3.9.0

func (NullableProxyTransform) IsSet added in v3.9.0

func (v NullableProxyTransform) IsSet() bool

func (NullableProxyTransform) MarshalJSON added in v3.9.0

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

func (*NullableProxyTransform) Set added in v3.9.0

func (*NullableProxyTransform) UnmarshalJSON added in v3.9.0

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

func (*NullableProxyTransform) Unset added in v3.9.0

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 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 added in v3.12.0

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

func NewNullableTokenEnrichments added in v3.12.0

func NewNullableTokenEnrichments(val *TokenEnrichments) *NullableTokenEnrichments

func (NullableTokenEnrichments) Get added in v3.12.0

func (NullableTokenEnrichments) IsSet added in v3.12.0

func (v NullableTokenEnrichments) IsSet() bool

func (NullableTokenEnrichments) MarshalJSON added in v3.12.0

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

func (*NullableTokenEnrichments) Set added in v3.12.0

func (*NullableTokenEnrichments) UnmarshalJSON added in v3.12.0

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

func (*NullableTokenEnrichments) Unset added in v3.12.0

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 added in v3.2.0

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

func NewNullableUpdatePrivacy added in v3.2.0

func NewNullableUpdatePrivacy(val *UpdatePrivacy) *NullableUpdatePrivacy

func (NullableUpdatePrivacy) Get added in v3.2.0

func (NullableUpdatePrivacy) IsSet added in v3.2.0

func (v NullableUpdatePrivacy) IsSet() bool

func (NullableUpdatePrivacy) MarshalJSON added in v3.2.0

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

func (*NullableUpdatePrivacy) Set added in v3.2.0

func (v *NullableUpdatePrivacy) Set(val *UpdatePrivacy)

func (*NullableUpdatePrivacy) UnmarshalJSON added in v3.2.0

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

func (*NullableUpdatePrivacy) Unset added in v3.2.0

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 added in v3.2.0

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

func NewNullableUpdateTokenRequest added in v3.2.0

func NewNullableUpdateTokenRequest(val *UpdateTokenRequest) *NullableUpdateTokenRequest

func (NullableUpdateTokenRequest) Get added in v3.2.0

func (NullableUpdateTokenRequest) IsSet added in v3.2.0

func (v NullableUpdateTokenRequest) IsSet() bool

func (NullableUpdateTokenRequest) MarshalJSON added in v3.2.0

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

func (*NullableUpdateTokenRequest) Set added in v3.2.0

func (*NullableUpdateTokenRequest) UnmarshalJSON added in v3.2.0

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

func (*NullableUpdateTokenRequest) Unset added in v3.2.0

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 *int32 `json:"total_items,omitempty"`
	PageNumber *int32 `json:"page_number,omitempty"`
	PageSize   *int32 `json:"page_size,omitempty"`
	TotalPages *int32 `json:"total_pages,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) GetPageNumber

func (o *Pagination) GetPageNumber() int32

GetPageNumber returns the PageNumber field value if set, zero value otherwise.

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.

func (*Pagination) GetPageSize

func (o *Pagination) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

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.

func (*Pagination) GetTotalItems

func (o *Pagination) GetTotalItems() int32

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

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.

func (*Pagination) GetTotalPages

func (o *Pagination) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

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.

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

func (o *Pagination) SetPageNumber(v int32)

SetPageNumber gets a reference to the given int32 and assigns it to the PageNumber field.

func (*Pagination) SetPageSize

func (o *Pagination) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*Pagination) SetTotalItems

func (o *Pagination) SetTotalItems(v int32)

SetTotalItems gets a reference to the given int32 and assigns it to the TotalItems field.

func (*Pagination) SetTotalPages

func (o *Pagination) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (Pagination) ToMap added in v3.11.0

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

type PatchProxyRequest added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *PatchProxyRequest) GetApplication() Application

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

func (*PatchProxyRequest) GetApplicationOk added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *PatchProxyRequest) GetRequestTransform() ProxyTransform

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

func (*PatchProxyRequest) GetRequestTransformOk added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *PatchProxyRequest) GetResponseTransform() ProxyTransform

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

func (*PatchProxyRequest) GetResponseTransformOk added in v3.12.0

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 added in v3.12.0

func (o *PatchProxyRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasConfiguration added in v3.12.0

func (o *PatchProxyRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasDestinationUrl added in v3.12.0

func (o *PatchProxyRequest) HasDestinationUrl() bool

HasDestinationUrl returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasName added in v3.12.0

func (o *PatchProxyRequest) HasName() bool

HasName returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasRequestTransform added in v3.12.0

func (o *PatchProxyRequest) HasRequestTransform() bool

HasRequestTransform returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasRequireAuth added in v3.12.0

func (o *PatchProxyRequest) HasRequireAuth() bool

HasRequireAuth returns a boolean if a field is not nil.

func (*PatchProxyRequest) HasResponseTransform added in v3.12.0

func (o *PatchProxyRequest) HasResponseTransform() bool

HasResponseTransform returns a boolean if a field is not nil.

func (PatchProxyRequest) MarshalJSON added in v3.12.0

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

func (*PatchProxyRequest) SetApplication added in v3.12.0

func (o *PatchProxyRequest) SetApplication(v Application)

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

func (*PatchProxyRequest) SetConfiguration added in v3.12.0

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 added in v3.12.0

func (o *PatchProxyRequest) SetDestinationUrl(v string)

SetDestinationUrl gets a reference to the given NullableString and assigns it to the DestinationUrl field.

func (*PatchProxyRequest) SetDestinationUrlNil added in v3.12.0

func (o *PatchProxyRequest) SetDestinationUrlNil()

SetDestinationUrlNil sets the value for DestinationUrl to be an explicit nil

func (*PatchProxyRequest) SetName added in v3.12.0

func (o *PatchProxyRequest) SetName(v string)

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

func (*PatchProxyRequest) SetNameNil added in v3.12.0

func (o *PatchProxyRequest) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*PatchProxyRequest) SetRequestTransform added in v3.12.0

func (o *PatchProxyRequest) SetRequestTransform(v ProxyTransform)

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

func (*PatchProxyRequest) SetRequireAuth added in v3.12.0

func (o *PatchProxyRequest) SetRequireAuth(v bool)

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

func (*PatchProxyRequest) SetRequireAuthNil added in v3.12.0

func (o *PatchProxyRequest) SetRequireAuthNil()

SetRequireAuthNil sets the value for RequireAuth to be an explicit nil

func (*PatchProxyRequest) SetResponseTransform added in v3.12.0

func (o *PatchProxyRequest) SetResponseTransform(v ProxyTransform)

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

func (PatchProxyRequest) ToMap added in v3.12.0

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

func (*PatchProxyRequest) UnsetDestinationUrl added in v3.12.0

func (o *PatchProxyRequest) UnsetDestinationUrl()

UnsetDestinationUrl ensures that no value is present for DestinationUrl, not even an explicit nil

func (*PatchProxyRequest) UnsetName added in v3.12.0

func (o *PatchProxyRequest) UnsetName()

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

func (*PatchProxyRequest) UnsetRequireAuth added in v3.12.0

func (o *PatchProxyRequest) UnsetRequireAuth()

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

type PatchReactorRequest added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *PatchReactorRequest) GetApplication() Application

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

func (*PatchReactorRequest) GetApplicationOk added in v3.12.0

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 added in v3.13.0

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 added in v3.13.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *PatchReactorRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*PatchReactorRequest) HasCode added in v3.13.0

func (o *PatchReactorRequest) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (*PatchReactorRequest) HasConfiguration added in v3.12.0

func (o *PatchReactorRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field is not nil.

func (*PatchReactorRequest) HasName added in v3.12.0

func (o *PatchReactorRequest) HasName() bool

HasName returns a boolean if a field is not nil.

func (PatchReactorRequest) MarshalJSON added in v3.12.0

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

func (*PatchReactorRequest) SetApplication added in v3.12.0

func (o *PatchReactorRequest) SetApplication(v Application)

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

func (*PatchReactorRequest) SetCode added in v3.13.0

func (o *PatchReactorRequest) SetCode(v string)

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

func (*PatchReactorRequest) SetCodeNil added in v3.13.0

func (o *PatchReactorRequest) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*PatchReactorRequest) SetConfiguration added in v3.12.0

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 added in v3.12.0

func (o *PatchReactorRequest) SetName(v string)

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

func (*PatchReactorRequest) SetNameNil added in v3.12.0

func (o *PatchReactorRequest) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (PatchReactorRequest) ToMap added in v3.12.0

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

func (*PatchReactorRequest) UnsetCode added in v3.13.0

func (o *PatchReactorRequest) UnsetCode()

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

func (*PatchReactorRequest) UnsetName added in v3.12.0

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.11.0

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

type ProxiesApiPatchRequest added in v3.12.0

type ProxiesApiPatchRequest struct {
	ApiService *ProxiesApiService
	// contains filtered or unexported fields
}

func (ProxiesApiPatchRequest) Execute added in v3.12.0

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

func (ProxiesApiPatchRequest) PatchProxyRequest added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.9.0

func (o *Proxy) GetRequestTransform() ProxyTransform

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

func (*Proxy) GetRequestTransformOk added in v3.9.0

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 added in v3.9.0

func (o *Proxy) GetResponseTransform() ProxyTransform

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

func (*Proxy) GetResponseTransformOk added in v3.9.0

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 added in v3.9.0

func (o *Proxy) HasApplicationId() bool

HasApplicationId returns a boolean if a field is not nil.

func (*Proxy) HasConfiguration added in v3.9.0

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 added in v3.11.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *Proxy) SetApplicationId(v string)

SetApplicationId gets a reference to the given NullableString and assigns it to the ApplicationId field.

func (*Proxy) SetApplicationIdNil added in v3.9.0

func (o *Proxy) SetApplicationIdNil()

SetApplicationIdNil sets the value for ApplicationId to be an explicit nil

func (*Proxy) SetConfiguration added in v3.9.0

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 added in v3.11.0

func (o *Proxy) SetProxyHost(v string)

SetProxyHost gets a reference to the given NullableString and assigns it to the ProxyHost field.

func (*Proxy) SetProxyHostNil added in v3.11.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.11.0

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

func (*Proxy) UnsetApplicationId added in v3.9.0

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 added in v3.11.0

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 added in v3.11.0

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

type ProxyTransform added in v3.9.0

type ProxyTransform struct {
	Code NullableString `json:"code,omitempty"`
}

ProxyTransform struct for ProxyTransform

func NewProxyTransform added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *ProxyTransform) HasCode() bool

HasCode returns a boolean if a field is not nil.

func (ProxyTransform) MarshalJSON added in v3.9.0

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

func (*ProxyTransform) SetCode added in v3.9.0

func (o *ProxyTransform) SetCode(v string)

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

func (*ProxyTransform) SetCodeNil added in v3.9.0

func (o *ProxyTransform) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (ProxyTransform) ToMap added in v3.11.0

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

func (*ProxyTransform) UnsetCode added in v3.9.0

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"`
	TimeoutMs   NullableInt32  `json:"timeout_ms,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 added in v3.11.0

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 added in v3.11.0

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) GetTimeoutMs added in v3.11.0

func (o *ReactRequest) GetTimeoutMs() int32

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

func (*ReactRequest) GetTimeoutMsOk added in v3.11.0

func (o *ReactRequest) GetTimeoutMsOk() (*int32, bool)

GetTimeoutMsOk returns a tuple with the TimeoutMs field value if set, nil otherwise and 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 added in v3.11.0

func (o *ReactRequest) HasCallbackUrl() bool

HasCallbackUrl returns a boolean if a field is not nil.

func (*ReactRequest) HasTimeoutMs added in v3.11.0

func (o *ReactRequest) HasTimeoutMs() bool

HasTimeoutMs 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 added in v3.11.0

func (o *ReactRequest) SetCallbackUrl(v string)

SetCallbackUrl gets a reference to the given NullableString and assigns it to the CallbackUrl field.

func (*ReactRequest) SetCallbackUrlNil added in v3.11.0

func (o *ReactRequest) SetCallbackUrlNil()

SetCallbackUrlNil sets the value for CallbackUrl to be an explicit nil

func (*ReactRequest) SetTimeoutMs added in v3.11.0

func (o *ReactRequest) SetTimeoutMs(v int32)

SetTimeoutMs gets a reference to the given NullableInt32 and assigns it to the TimeoutMs field.

func (*ReactRequest) SetTimeoutMsNil added in v3.11.0

func (o *ReactRequest) SetTimeoutMsNil()

SetTimeoutMsNil sets the value for TimeoutMs to be an explicit nil

func (ReactRequest) ToMap added in v3.11.0

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

func (*ReactRequest) UnsetCallbackUrl added in v3.11.0

func (o *ReactRequest) UnsetCallbackUrl()

UnsetCallbackUrl ensures that no value is present for CallbackUrl, not even an explicit nil

func (*ReactRequest) UnsetTimeoutMs added in v3.11.0

func (o *ReactRequest) UnsetTimeoutMs()

UnsetTimeoutMs ensures that no value is present for TimeoutMs, 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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *ReactResponse) HasBody() bool

HasBody returns a boolean if a field is not nil.

func (*ReactResponse) HasHeaders added in v3.9.0

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 added in v3.9.0

func (o *ReactResponse) SetBody(v interface{})

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

func (*ReactResponse) SetHeaders added in v3.9.0

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 added in v3.11.0

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 added in v3.13.0

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 added in v3.13.0

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 added in v3.13.0

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 added in v3.13.0

func (o *Reactor) SetCode(v string)

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

func (*Reactor) SetCodeNil added in v3.13.0

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 added in v3.11.0

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

func (*Reactor) UnsetCode added in v3.13.0

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.11.0

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

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 added in v3.11.0

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

type ReactorsApiPatchRequest added in v3.12.0

type ReactorsApiPatchRequest struct {
	ApiService *ReactorsApiService
	// contains filtered or unexported fields
}

func (ReactorsApiPatchRequest) Execute added in v3.12.0

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

func (ReactorsApiPatchRequest) PatchReactorRequest added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

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"`
	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) 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) 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) ToMap added in v3.11.0

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

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 added in v3.10.0

type SessionsApiAuthorizeRequest struct {
	ApiService *SessionsApiService
	// contains filtered or unexported fields
}

func (SessionsApiAuthorizeRequest) AuthorizeSessionRequest added in v3.10.0

func (r SessionsApiAuthorizeRequest) AuthorizeSessionRequest(authorizeSessionRequest AuthorizeSessionRequest) SessionsApiAuthorizeRequest

func (SessionsApiAuthorizeRequest) Execute added in v3.10.0

type SessionsApiCreateRequest added in v3.10.0

type SessionsApiCreateRequest struct {
	ApiService *SessionsApiService
	// contains filtered or unexported fields
}

func (SessionsApiCreateRequest) Execute added in v3.10.0

type SessionsApiService added in v3.10.0

type SessionsApiService service

SessionsApiService SessionsApi service

func (*SessionsApiService) Authorize added in v3.10.0

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 added in v3.10.0

Execute executes the request

func (*SessionsApiService) Create added in v3.10.0

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 added in v3.10.0

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 added in v3.11.0

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"`
	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 added in v3.1.0

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 added in v3.1.0

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) 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 added in v3.1.0

func (o *Tenant) HasSettings() bool

HasSettings 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 added in v3.1.0

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) ToMap added in v3.11.0

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

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.11.0

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

type TenantsApiGetMembersRequest

type TenantsApiGetMembersRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiGetMembersRequest) Execute

func (TenantsApiGetMembersRequest) Page

func (TenantsApiGetMembersRequest) Size

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 TenantsApiGetTenantOperationReportRequest

type TenantsApiGetTenantOperationReportRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (TenantsApiGetTenantOperationReportRequest) Execute

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

GetTenantOperationReport Method for GetTenantOperationReport

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

func (*TenantsApiService) GetTenantOperationReportExecute

Execute executes the request

@return TenantUsageReport

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 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"`
	Encryption            *EncryptionMetadata `json:"encryption,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 added in v3.11.0

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 added in v3.11.0

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 added in v3.7.0

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 added in v3.7.0

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

func (o *Token) GetEncryption() EncryptionMetadata

GetEncryption returns the Encryption field value if set, zero value otherwise.

func (*Token) GetEncryptionOk

func (o *Token) 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 (*Token) GetEnrichments added in v3.12.0

func (o *Token) GetEnrichments() TokenEnrichments

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

func (*Token) GetEnrichmentsOk added in v3.12.0

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 added in v3.5.0

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 added in v3.5.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.11.0

func (o *Token) HasAliases() bool

HasAliases returns a boolean if a field is not nil.

func (*Token) HasContainers added in v3.7.0

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

func (o *Token) HasEncryption() bool

HasEncryption returns a boolean if a field is not nil.

func (*Token) HasEnrichments added in v3.12.0

func (o *Token) HasEnrichments() bool

HasEnrichments returns a boolean if a field is not nil.

func (*Token) HasExpiresAt added in v3.5.0

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 added in v3.2.0

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 added in v3.11.0

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

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

func (*Token) SetContainers added in v3.7.0

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

func (o *Token) SetEncryption(v EncryptionMetadata)

SetEncryption gets a reference to the given EncryptionMetadata and assigns it to the Encryption field.

func (*Token) SetEnrichments added in v3.12.0

func (o *Token) SetEnrichments(v TokenEnrichments)

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

func (*Token) SetExpiresAt added in v3.5.0

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 added in v3.5.0

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 added in v3.2.0

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 added in v3.11.0

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 added in v3.5.0

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 added in v3.12.0

type TokenEnrichments struct {
	BinDetails *BinDetails `json:"bin_details,omitempty"`
}

TokenEnrichments struct for TokenEnrichments

func NewTokenEnrichments added in v3.12.0

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 added in v3.12.0

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 added in v3.12.0

func (o *TokenEnrichments) GetBinDetails() BinDetails

GetBinDetails returns the BinDetails field value if set, zero value otherwise.

func (*TokenEnrichments) GetBinDetailsOk added in v3.12.0

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 added in v3.12.0

func (o *TokenEnrichments) HasBinDetails() bool

HasBinDetails returns a boolean if a field is not nil.

func (TokenEnrichments) MarshalJSON added in v3.12.0

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

func (*TokenEnrichments) SetBinDetails added in v3.12.0

func (o *TokenEnrichments) SetBinDetails(v BinDetails)

SetBinDetails gets a reference to the given BinDetails and assigns it to the BinDetails field.

func (TokenEnrichments) ToMap added in v3.12.0

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 added in v3.11.0

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 added in v3.11.0

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 added in v3.11.0

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

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

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

Execute executes the request

@return CreateTokenResponse

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 added in v3.2.0

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 added in v3.2.0

func (a *TokensApiService) UpdateExecute(r TokensApiUpdateRequest) (*Token, *http.Response, error)

Execute executes the request

@return Token

type TokensApiUpdateRequest added in v3.2.0

type TokensApiUpdateRequest struct {
	ApiService *TokensApiService
	// contains filtered or unexported fields
}

func (TokensApiUpdateRequest) Execute added in v3.2.0

func (r TokensApiUpdateRequest) Execute() (*Token, *http.Response, error)

func (TokensApiUpdateRequest) UpdateTokenRequest added in v3.2.0

func (r TokensApiUpdateRequest) UpdateTokenRequest(updateTokenRequest UpdateTokenRequest) TokensApiUpdateRequest

type TransactionsApiCommitRequest added in v3.11.0

type TransactionsApiCommitRequest struct {
	ApiService *TransactionsApiService
	// contains filtered or unexported fields
}

func (TransactionsApiCommitRequest) Execute added in v3.11.0

type TransactionsApiCreateRequest added in v3.11.0

type TransactionsApiCreateRequest struct {
	ApiService *TransactionsApiService
	// contains filtered or unexported fields
}

func (TransactionsApiCreateRequest) Execute added in v3.11.0

type TransactionsApiRollbackRequest added in v3.11.0

type TransactionsApiRollbackRequest struct {
	ApiService *TransactionsApiService
	// contains filtered or unexported fields
}

func (TransactionsApiRollbackRequest) Execute added in v3.11.0

type TransactionsApiService added in v3.11.0

type TransactionsApiService service

TransactionsApiService TransactionsApi service

func (*TransactionsApiService) Commit added in v3.11.0

Commit Method for Commit

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

func (*TransactionsApiService) CommitExecute added in v3.11.0

Execute executes the request

func (*TransactionsApiService) Create added in v3.11.0

Create Method for Create

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

func (*TransactionsApiService) CreateExecute added in v3.11.0

Execute executes the request

@return CreateTransactionResponse

func (*TransactionsApiService) Rollback added in v3.11.0

Rollback Method for Rollback

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

func (*TransactionsApiService) RollbackExecute added in v3.11.0

Execute executes the request

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.7.0

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

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

func (UpdateApplicationRequest) ToMap added in v3.11.0

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

type UpdatePrivacy added in v3.2.0

type UpdatePrivacy struct {
	ImpactLevel       NullableString `json:"impact_level,omitempty"`
	RestrictionPolicy NullableString `json:"restriction_policy,omitempty"`
}

UpdatePrivacy struct for UpdatePrivacy

func NewUpdatePrivacy added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

func (o *UpdatePrivacy) HasImpactLevel() bool

HasImpactLevel returns a boolean if a field is not nil.

func (*UpdatePrivacy) HasRestrictionPolicy added in v3.2.0

func (o *UpdatePrivacy) HasRestrictionPolicy() bool

HasRestrictionPolicy returns a boolean if a field is not nil.

func (UpdatePrivacy) MarshalJSON added in v3.2.0

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

func (*UpdatePrivacy) SetImpactLevel added in v3.2.0

func (o *UpdatePrivacy) SetImpactLevel(v string)

SetImpactLevel gets a reference to the given NullableString and assigns it to the ImpactLevel field.

func (*UpdatePrivacy) SetImpactLevelNil added in v3.2.0

func (o *UpdatePrivacy) SetImpactLevelNil()

SetImpactLevelNil sets the value for ImpactLevel to be an explicit nil

func (*UpdatePrivacy) SetRestrictionPolicy added in v3.2.0

func (o *UpdatePrivacy) SetRestrictionPolicy(v string)

SetRestrictionPolicy gets a reference to the given NullableString and assigns it to the RestrictionPolicy field.

func (*UpdatePrivacy) SetRestrictionPolicyNil added in v3.2.0

func (o *UpdatePrivacy) SetRestrictionPolicyNil()

SetRestrictionPolicyNil sets the value for RestrictionPolicy to be an explicit nil

func (UpdatePrivacy) ToMap added in v3.11.0

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

func (*UpdatePrivacy) UnsetImpactLevel added in v3.2.0

func (o *UpdatePrivacy) UnsetImpactLevel()

UnsetImpactLevel ensures that no value is present for ImpactLevel, not even an explicit nil

func (*UpdatePrivacy) UnsetRestrictionPolicy added in v3.2.0

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 added in v3.9.0

func (o *UpdateProxyRequest) GetApplication() Application

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

func (*UpdateProxyRequest) GetApplicationOk added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *UpdateProxyRequest) GetRequestTransform() ProxyTransform

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

func (*UpdateProxyRequest) GetRequestTransformOk added in v3.9.0

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 added in v3.9.0

func (o *UpdateProxyRequest) GetResponseTransform() ProxyTransform

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

func (*UpdateProxyRequest) GetResponseTransformOk added in v3.9.0

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 added in v3.9.0

func (o *UpdateProxyRequest) HasApplication() bool

HasApplication returns a boolean if a field is not nil.

func (*UpdateProxyRequest) HasConfiguration added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *UpdateProxyRequest) SetApplication(v Application)

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

func (*UpdateProxyRequest) SetConfiguration added in v3.9.0

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 added in v3.9.0

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 added in v3.9.0

func (o *UpdateProxyRequest) SetResponseTransform(v ProxyTransform)

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

func (UpdateProxyRequest) ToMap added in v3.11.0

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 added in v3.11.0

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          NullableString    `json:"code,omitempty"`
	Configuration map[string]string `json:"configuration,omitempty"`
}

UpdateReactorRequest struct for UpdateReactorRequest

func NewUpdateReactorRequest

func NewUpdateReactorRequest(name 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 added in v3.13.0

func (o *UpdateReactorRequest) GetCode() string

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

func (*UpdateReactorRequest) GetCodeOk added in v3.13.0

func (o *UpdateReactorRequest) 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 (*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) HasCode added in v3.13.0

func (o *UpdateReactorRequest) HasCode() bool

HasCode 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 added in v3.13.0

func (o *UpdateReactorRequest) SetCode(v string)

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

func (*UpdateReactorRequest) SetCodeNil added in v3.13.0

func (o *UpdateReactorRequest) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

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 added in v3.11.0

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

func (*UpdateReactorRequest) UnsetCode added in v3.13.0

func (o *UpdateReactorRequest) UnsetCode()

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

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 added in v3.11.0

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

type UpdateTokenRequest added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.7.0

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 added in v3.7.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

func (o *UpdateTokenRequest) GetEncryption() EncryptionMetadata

GetEncryption returns the Encryption field value if set, zero value otherwise.

func (*UpdateTokenRequest) GetEncryptionOk added in v3.2.0

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 added in v3.8.0

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 added in v3.8.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

func (o *UpdateTokenRequest) GetPrivacy() UpdatePrivacy

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

func (*UpdateTokenRequest) GetPrivacyOk added in v3.2.0

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 added in v3.2.0

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 added in v3.2.0

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 added in v3.7.0

func (o *UpdateTokenRequest) HasContainers() bool

HasContainers returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasData added in v3.2.0

func (o *UpdateTokenRequest) HasData() bool

HasData returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasDeduplicateToken added in v3.2.0

func (o *UpdateTokenRequest) HasDeduplicateToken() bool

HasDeduplicateToken returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasEncryption added in v3.2.0

func (o *UpdateTokenRequest) HasEncryption() bool

HasEncryption returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasExpiresAt added in v3.8.0

func (o *UpdateTokenRequest) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasFingerprintExpression added in v3.2.0

func (o *UpdateTokenRequest) HasFingerprintExpression() bool

HasFingerprintExpression returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasMask added in v3.2.0

func (o *UpdateTokenRequest) HasMask() bool

HasMask returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasMetadata added in v3.2.0

func (o *UpdateTokenRequest) HasMetadata() bool

HasMetadata returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasPrivacy added in v3.2.0

func (o *UpdateTokenRequest) HasPrivacy() bool

HasPrivacy returns a boolean if a field is not nil.

func (*UpdateTokenRequest) HasSearchIndexes added in v3.2.0

func (o *UpdateTokenRequest) HasSearchIndexes() bool

HasSearchIndexes returns a boolean if a field is not nil.

func (UpdateTokenRequest) MarshalJSON added in v3.2.0

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

func (*UpdateTokenRequest) SetContainers added in v3.7.0

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

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

func (*UpdateTokenRequest) SetData added in v3.2.0

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

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

func (*UpdateTokenRequest) SetDeduplicateToken added in v3.2.0

func (o *UpdateTokenRequest) SetDeduplicateToken(v bool)

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

func (*UpdateTokenRequest) SetDeduplicateTokenNil added in v3.2.0

func (o *UpdateTokenRequest) SetDeduplicateTokenNil()

SetDeduplicateTokenNil sets the value for DeduplicateToken to be an explicit nil

func (*UpdateTokenRequest) SetEncryption added in v3.2.0

func (o *UpdateTokenRequest) SetEncryption(v EncryptionMetadata)

SetEncryption gets a reference to the given EncryptionMetadata and assigns it to the Encryption field.

func (*UpdateTokenRequest) SetExpiresAt added in v3.8.0

func (o *UpdateTokenRequest) SetExpiresAt(v string)

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

func (*UpdateTokenRequest) SetExpiresAtNil added in v3.8.0

func (o *UpdateTokenRequest) SetExpiresAtNil()

SetExpiresAtNil sets the value for ExpiresAt to be an explicit nil

func (*UpdateTokenRequest) SetFingerprintExpression added in v3.2.0

func (o *UpdateTokenRequest) SetFingerprintExpression(v string)

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

func (*UpdateTokenRequest) SetFingerprintExpressionNil added in v3.2.0

func (o *UpdateTokenRequest) SetFingerprintExpressionNil()

SetFingerprintExpressionNil sets the value for FingerprintExpression to be an explicit nil

func (*UpdateTokenRequest) SetMask added in v3.2.0

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

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

func (*UpdateTokenRequest) SetMetadata added in v3.2.0

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 added in v3.2.0

func (o *UpdateTokenRequest) SetPrivacy(v UpdatePrivacy)

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

func (*UpdateTokenRequest) SetSearchIndexes added in v3.2.0

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

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

func (UpdateTokenRequest) ToMap added in v3.11.0

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

func (*UpdateTokenRequest) UnsetDeduplicateToken added in v3.2.0

func (o *UpdateTokenRequest) UnsetDeduplicateToken()

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

func (*UpdateTokenRequest) UnsetExpiresAt added in v3.8.0

func (o *UpdateTokenRequest) UnsetExpiresAt()

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

func (*UpdateTokenRequest) UnsetFingerprintExpression added in v3.2.0

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 added in v3.11.0

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 added in v3.11.0

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