basistheory

package module
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: Apr 15, 2022 License: Apache-2.0 Imports: 22 Imported by: 0

README

Go API client for basistheory

Release

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/oauth2
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"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

For using other server than the one defined on index 0 set context value 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
ApplicationsApi ApplicationCreate Post /applications
ApplicationsApi ApplicationDelete Delete /applications/{id}
ApplicationsApi ApplicationGetById Get /applications/{id}
ApplicationsApi ApplicationKey Get /applications/key
ApplicationsApi ApplicationRegenerate Post /applications/{id}/regenerate
ApplicationsApi ApplicationUpdate Put /applications/{id}
ApplicationsApi ApplicationsGet Get /applications
ReactorFormulasApi ReactorFormulaCreate Post /reactor-formulas
ReactorFormulasApi ReactorFormulaDelete Delete /reactor-formulas/{id}
ReactorFormulasApi ReactorFormulaGetById Get /reactor-formulas/{id}
ReactorFormulasApi ReactorFormulaUpdate Put /reactor-formulas/{id}
ReactorFormulasApi ReactorFormulasGet Get /reactor-formulas
ReactorsApi ReactorCreate Post /reactors
ReactorsApi ReactorDelete Delete /reactors/{id}
ReactorsApi ReactorGetById Get /reactors/{id}
ReactorsApi ReactorReact Post /reactors/{id}/react
ReactorsApi ReactorUpdate Put /reactors/{id}
ReactorsApi ReactorsGet Get /reactors

Documentation For Models

Documentation For Authorization

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

Basis-Theory

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

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

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

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

Functions

func CacheExpires

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

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

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 {
	ApplicationsApi *ApplicationsApiService

	ReactorFormulasApi *ReactorFormulasApiService

	ReactorsApi *ReactorsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the BasisTheory Vault 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 ApiApplicationCreateRequest

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

func (ApiApplicationCreateRequest) CreateApplicationModel

func (r ApiApplicationCreateRequest) CreateApplicationModel(createApplicationModel CreateApplicationModel) ApiApplicationCreateRequest

func (ApiApplicationCreateRequest) Execute

type ApiApplicationDeleteRequest

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

func (ApiApplicationDeleteRequest) Execute

type ApiApplicationGetByIdRequest

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

func (ApiApplicationGetByIdRequest) Execute

type ApiApplicationKeyRequest

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

func (ApiApplicationKeyRequest) Execute

type ApiApplicationRegenerateRequest

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

func (ApiApplicationRegenerateRequest) Execute

type ApiApplicationUpdateRequest

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

func (ApiApplicationUpdateRequest) Execute

func (ApiApplicationUpdateRequest) UpdateApplicationModel

func (r ApiApplicationUpdateRequest) UpdateApplicationModel(updateApplicationModel UpdateApplicationModel) ApiApplicationUpdateRequest

type ApiApplicationsGetRequest

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

func (ApiApplicationsGetRequest) Execute

func (ApiApplicationsGetRequest) Id

func (ApiApplicationsGetRequest) Page

func (ApiApplicationsGetRequest) Size

type ApiReactorCreateRequest

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

func (ApiReactorCreateRequest) CreateReactorModel

func (r ApiReactorCreateRequest) CreateReactorModel(createReactorModel CreateReactorModel) ApiReactorCreateRequest

func (ApiReactorCreateRequest) Execute

type ApiReactorDeleteRequest

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

func (ApiReactorDeleteRequest) Execute

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

type ApiReactorFormulaCreateRequest

type ApiReactorFormulaCreateRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ApiReactorFormulaCreateRequest) CreateReactorFormulaModel

func (r ApiReactorFormulaCreateRequest) CreateReactorFormulaModel(createReactorFormulaModel CreateReactorFormulaModel) ApiReactorFormulaCreateRequest

func (ApiReactorFormulaCreateRequest) Execute

type ApiReactorFormulaDeleteRequest

type ApiReactorFormulaDeleteRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ApiReactorFormulaDeleteRequest) Execute

type ApiReactorFormulaGetByIdRequest

type ApiReactorFormulaGetByIdRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ApiReactorFormulaGetByIdRequest) Execute

type ApiReactorFormulaUpdateRequest

type ApiReactorFormulaUpdateRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ApiReactorFormulaUpdateRequest) Execute

func (ApiReactorFormulaUpdateRequest) UpdateReactorFormulaModel

func (r ApiReactorFormulaUpdateRequest) UpdateReactorFormulaModel(updateReactorFormulaModel UpdateReactorFormulaModel) ApiReactorFormulaUpdateRequest

type ApiReactorFormulasGetRequest

type ApiReactorFormulasGetRequest struct {
	ApiService *ReactorFormulasApiService
	// contains filtered or unexported fields
}

func (ApiReactorFormulasGetRequest) Execute

func (ApiReactorFormulasGetRequest) Name

func (ApiReactorFormulasGetRequest) Page

func (ApiReactorFormulasGetRequest) Size

type ApiReactorGetByIdRequest

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

func (ApiReactorGetByIdRequest) Execute

type ApiReactorReactRequest

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

func (ApiReactorReactRequest) Execute

func (ApiReactorReactRequest) ReactRequest

func (r ApiReactorReactRequest) ReactRequest(reactRequest ReactRequest) ApiReactorReactRequest

type ApiReactorUpdateRequest

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

func (ApiReactorUpdateRequest) Execute

func (ApiReactorUpdateRequest) UpdateReactorModel

func (r ApiReactorUpdateRequest) UpdateReactorModel(updateReactorModel UpdateReactorModel) ApiReactorUpdateRequest

type ApiReactorsGetRequest

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

func (ApiReactorsGetRequest) Execute

func (ApiReactorsGetRequest) Id

func (ApiReactorsGetRequest) Name

func (ApiReactorsGetRequest) Page

func (ApiReactorsGetRequest) Size

type ApplicationModel

type ApplicationModel 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"`
	Permissions []string       `json:"permissions,omitempty"`
}

ApplicationModel struct for ApplicationModel

func NewApplicationModel

func NewApplicationModel() *ApplicationModel

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

func NewApplicationModelWithDefaults

func NewApplicationModelWithDefaults() *ApplicationModel

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

func (*ApplicationModel) GetCreatedAt

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

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

func (*ApplicationModel) GetCreatedAtOk

func (o *ApplicationModel) 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 (*ApplicationModel) GetCreatedBy

func (o *ApplicationModel) GetCreatedBy() string

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

func (*ApplicationModel) GetCreatedByOk

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

func (o *ApplicationModel) GetId() string

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

func (*ApplicationModel) GetIdOk

func (o *ApplicationModel) 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 (*ApplicationModel) GetKey

func (o *ApplicationModel) GetKey() string

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

func (*ApplicationModel) GetKeyOk

func (o *ApplicationModel) 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 (*ApplicationModel) GetModifiedAt

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

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

func (*ApplicationModel) GetModifiedAtOk

func (o *ApplicationModel) 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 (*ApplicationModel) GetModifiedBy

func (o *ApplicationModel) GetModifiedBy() string

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

func (*ApplicationModel) GetModifiedByOk

func (o *ApplicationModel) 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 (*ApplicationModel) GetName

func (o *ApplicationModel) GetName() string

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

func (*ApplicationModel) GetNameOk

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

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

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

func (*ApplicationModel) GetPermissionsOk

func (o *ApplicationModel) 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 (*ApplicationModel) GetTenantId

func (o *ApplicationModel) GetTenantId() string

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

func (*ApplicationModel) GetTenantIdOk

func (o *ApplicationModel) 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 (*ApplicationModel) GetType

func (o *ApplicationModel) GetType() string

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

func (*ApplicationModel) GetTypeOk

func (o *ApplicationModel) 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 (*ApplicationModel) HasCreatedAt

func (o *ApplicationModel) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ApplicationModel) HasCreatedBy

func (o *ApplicationModel) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*ApplicationModel) HasId

func (o *ApplicationModel) HasId() bool

HasId returns a boolean if a field has been set.

func (*ApplicationModel) HasKey

func (o *ApplicationModel) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*ApplicationModel) HasModifiedAt

func (o *ApplicationModel) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ApplicationModel) HasModifiedBy

func (o *ApplicationModel) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*ApplicationModel) HasName

func (o *ApplicationModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*ApplicationModel) HasPermissions

func (o *ApplicationModel) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*ApplicationModel) HasTenantId

func (o *ApplicationModel) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ApplicationModel) HasType

func (o *ApplicationModel) HasType() bool

HasType returns a boolean if a field has been set.

func (ApplicationModel) MarshalJSON

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

func (*ApplicationModel) SetCreatedAt

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

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

func (*ApplicationModel) SetCreatedAtNil

func (o *ApplicationModel) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*ApplicationModel) SetCreatedBy

func (o *ApplicationModel) SetCreatedBy(v string)

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

func (*ApplicationModel) SetCreatedByNil

func (o *ApplicationModel) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ApplicationModel) SetId

func (o *ApplicationModel) SetId(v string)

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

func (*ApplicationModel) SetKey

func (o *ApplicationModel) SetKey(v string)

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

func (*ApplicationModel) SetKeyNil

func (o *ApplicationModel) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*ApplicationModel) SetModifiedAt

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

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

func (*ApplicationModel) SetModifiedAtNil

func (o *ApplicationModel) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*ApplicationModel) SetModifiedBy

func (o *ApplicationModel) SetModifiedBy(v string)

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

func (*ApplicationModel) SetModifiedByNil

func (o *ApplicationModel) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*ApplicationModel) SetName

func (o *ApplicationModel) SetName(v string)

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

func (*ApplicationModel) SetNameNil

func (o *ApplicationModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ApplicationModel) SetPermissions

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

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

func (*ApplicationModel) SetTenantId

func (o *ApplicationModel) SetTenantId(v string)

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

func (*ApplicationModel) SetType

func (o *ApplicationModel) SetType(v string)

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

func (*ApplicationModel) SetTypeNil

func (o *ApplicationModel) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*ApplicationModel) UnsetCreatedAt

func (o *ApplicationModel) UnsetCreatedAt()

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

func (*ApplicationModel) UnsetCreatedBy

func (o *ApplicationModel) UnsetCreatedBy()

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

func (*ApplicationModel) UnsetKey

func (o *ApplicationModel) UnsetKey()

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

func (*ApplicationModel) UnsetModifiedAt

func (o *ApplicationModel) UnsetModifiedAt()

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

func (*ApplicationModel) UnsetModifiedBy

func (o *ApplicationModel) UnsetModifiedBy()

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

func (*ApplicationModel) UnsetName

func (o *ApplicationModel) UnsetName()

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

func (*ApplicationModel) UnsetType

func (o *ApplicationModel) UnsetType()

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

type ApplicationModelPaginatedList

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

ApplicationModelPaginatedList struct for ApplicationModelPaginatedList

func NewApplicationModelPaginatedList

func NewApplicationModelPaginatedList() *ApplicationModelPaginatedList

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

func NewApplicationModelPaginatedListWithDefaults

func NewApplicationModelPaginatedListWithDefaults() *ApplicationModelPaginatedList

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

func (*ApplicationModelPaginatedList) GetData

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

func (*ApplicationModelPaginatedList) 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 (*ApplicationModelPaginatedList) GetPagination

func (o *ApplicationModelPaginatedList) GetPagination() Pagination

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

func (*ApplicationModelPaginatedList) GetPaginationOk

func (o *ApplicationModelPaginatedList) 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 (*ApplicationModelPaginatedList) HasData

func (o *ApplicationModelPaginatedList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ApplicationModelPaginatedList) HasPagination

func (o *ApplicationModelPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (ApplicationModelPaginatedList) MarshalJSON

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

func (*ApplicationModelPaginatedList) SetData

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

func (*ApplicationModelPaginatedList) SetPagination

func (o *ApplicationModelPaginatedList) SetPagination(v Pagination)

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

type ApplicationsApiService

type ApplicationsApiService service

ApplicationsApiService ApplicationsApi service

func (*ApplicationsApiService) ApplicationCreate

ApplicationCreate Method for ApplicationCreate

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

func (*ApplicationsApiService) ApplicationCreateExecute

Execute executes the request

@return ApplicationModel

func (*ApplicationsApiService) ApplicationDelete

ApplicationDelete Method for ApplicationDelete

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

func (*ApplicationsApiService) ApplicationDeleteExecute

func (a *ApplicationsApiService) ApplicationDeleteExecute(r ApiApplicationDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationsApiService) ApplicationGetById

ApplicationGetById Method for ApplicationGetById

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

func (*ApplicationsApiService) ApplicationGetByIdExecute

Execute executes the request

@return ApplicationModel

func (*ApplicationsApiService) ApplicationKey

ApplicationKey Method for ApplicationKey

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

func (*ApplicationsApiService) ApplicationKeyExecute

Execute executes the request

@return ApplicationModel

func (*ApplicationsApiService) ApplicationRegenerate

ApplicationRegenerate Method for ApplicationRegenerate

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

func (*ApplicationsApiService) ApplicationRegenerateExecute

Execute executes the request

@return ApplicationModel

func (*ApplicationsApiService) ApplicationUpdate

ApplicationUpdate Method for ApplicationUpdate

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

func (*ApplicationsApiService) ApplicationUpdateExecute

Execute executes the request

@return ApplicationModel

func (*ApplicationsApiService) ApplicationsGet

ApplicationsGet Method for ApplicationsGet

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

func (*ApplicationsApiService) ApplicationsGetExecute

Execute executes the request

@return ApplicationModelPaginatedList

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type CreateApplicationModel

type CreateApplicationModel struct {
	Name        NullableString `json:"name,omitempty"`
	Type        NullableString `json:"type,omitempty"`
	Permissions []string       `json:"permissions,omitempty"`
}

CreateApplicationModel struct for CreateApplicationModel

func NewCreateApplicationModel

func NewCreateApplicationModel() *CreateApplicationModel

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

func NewCreateApplicationModelWithDefaults

func NewCreateApplicationModelWithDefaults() *CreateApplicationModel

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

func (*CreateApplicationModel) GetName

func (o *CreateApplicationModel) GetName() string

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

func (*CreateApplicationModel) GetNameOk

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

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

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

func (*CreateApplicationModel) GetPermissionsOk

func (o *CreateApplicationModel) 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 (*CreateApplicationModel) GetType

func (o *CreateApplicationModel) GetType() string

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

func (*CreateApplicationModel) GetTypeOk

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

func (o *CreateApplicationModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateApplicationModel) HasPermissions

func (o *CreateApplicationModel) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*CreateApplicationModel) HasType

func (o *CreateApplicationModel) HasType() bool

HasType returns a boolean if a field has been set.

func (CreateApplicationModel) MarshalJSON

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

func (*CreateApplicationModel) SetName

func (o *CreateApplicationModel) SetName(v string)

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

func (*CreateApplicationModel) SetNameNil

func (o *CreateApplicationModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateApplicationModel) SetPermissions

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

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

func (*CreateApplicationModel) SetType

func (o *CreateApplicationModel) SetType(v string)

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

func (*CreateApplicationModel) SetTypeNil

func (o *CreateApplicationModel) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*CreateApplicationModel) UnsetName

func (o *CreateApplicationModel) UnsetName()

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

func (*CreateApplicationModel) UnsetType

func (o *CreateApplicationModel) UnsetType()

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

type CreateReactorFormulaModel

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

CreateReactorFormulaModel struct for CreateReactorFormulaModel

func NewCreateReactorFormulaModel

func NewCreateReactorFormulaModel() *CreateReactorFormulaModel

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

func NewCreateReactorFormulaModelWithDefaults

func NewCreateReactorFormulaModelWithDefaults() *CreateReactorFormulaModel

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

func (*CreateReactorFormulaModel) GetCode

func (o *CreateReactorFormulaModel) GetCode() string

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

func (*CreateReactorFormulaModel) GetCodeOk

func (o *CreateReactorFormulaModel) 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 (*CreateReactorFormulaModel) GetConfiguration

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

func (*CreateReactorFormulaModel) GetConfigurationOk

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 (*CreateReactorFormulaModel) GetDescription

func (o *CreateReactorFormulaModel) GetDescription() string

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

func (*CreateReactorFormulaModel) GetDescriptionOk

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

func (o *CreateReactorFormulaModel) GetIcon() string

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

func (*CreateReactorFormulaModel) GetIconOk

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

func (o *CreateReactorFormulaModel) GetId() string

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

func (*CreateReactorFormulaModel) GetIdOk

func (o *CreateReactorFormulaModel) 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 (*CreateReactorFormulaModel) GetName

func (o *CreateReactorFormulaModel) GetName() string

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

func (*CreateReactorFormulaModel) GetNameOk

func (o *CreateReactorFormulaModel) 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 (*CreateReactorFormulaModel) GetRequestParameters

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

func (*CreateReactorFormulaModel) GetRequestParametersOk

func (o *CreateReactorFormulaModel) GetRequestParametersOk() ([]ReactorFormulaRequestParameterModel, 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 (*CreateReactorFormulaModel) GetType

func (o *CreateReactorFormulaModel) GetType() string

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

func (*CreateReactorFormulaModel) GetTypeOk

func (o *CreateReactorFormulaModel) 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 (*CreateReactorFormulaModel) HasCode

func (o *CreateReactorFormulaModel) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*CreateReactorFormulaModel) HasConfiguration

func (o *CreateReactorFormulaModel) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*CreateReactorFormulaModel) HasDescription

func (o *CreateReactorFormulaModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateReactorFormulaModel) HasIcon

func (o *CreateReactorFormulaModel) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*CreateReactorFormulaModel) HasId

func (o *CreateReactorFormulaModel) HasId() bool

HasId returns a boolean if a field has been set.

func (*CreateReactorFormulaModel) HasName

func (o *CreateReactorFormulaModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateReactorFormulaModel) HasRequestParameters

func (o *CreateReactorFormulaModel) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field has been set.

func (*CreateReactorFormulaModel) HasType

func (o *CreateReactorFormulaModel) HasType() bool

HasType returns a boolean if a field has been set.

func (CreateReactorFormulaModel) MarshalJSON

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

func (*CreateReactorFormulaModel) SetCode

func (o *CreateReactorFormulaModel) SetCode(v string)

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

func (*CreateReactorFormulaModel) SetCodeNil

func (o *CreateReactorFormulaModel) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*CreateReactorFormulaModel) SetConfiguration

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

func (*CreateReactorFormulaModel) SetDescription

func (o *CreateReactorFormulaModel) SetDescription(v string)

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

func (*CreateReactorFormulaModel) SetDescriptionNil

func (o *CreateReactorFormulaModel) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*CreateReactorFormulaModel) SetIcon

func (o *CreateReactorFormulaModel) SetIcon(v string)

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

func (*CreateReactorFormulaModel) SetIconNil

func (o *CreateReactorFormulaModel) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*CreateReactorFormulaModel) SetId

func (o *CreateReactorFormulaModel) SetId(v string)

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

func (*CreateReactorFormulaModel) SetIdNil

func (o *CreateReactorFormulaModel) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*CreateReactorFormulaModel) SetName

func (o *CreateReactorFormulaModel) SetName(v string)

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

func (*CreateReactorFormulaModel) SetNameNil

func (o *CreateReactorFormulaModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateReactorFormulaModel) SetRequestParameters

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

func (*CreateReactorFormulaModel) SetType

func (o *CreateReactorFormulaModel) SetType(v string)

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

func (*CreateReactorFormulaModel) SetTypeNil

func (o *CreateReactorFormulaModel) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*CreateReactorFormulaModel) UnsetCode

func (o *CreateReactorFormulaModel) UnsetCode()

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

func (*CreateReactorFormulaModel) UnsetDescription

func (o *CreateReactorFormulaModel) UnsetDescription()

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

func (*CreateReactorFormulaModel) UnsetIcon

func (o *CreateReactorFormulaModel) UnsetIcon()

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

func (*CreateReactorFormulaModel) UnsetId

func (o *CreateReactorFormulaModel) UnsetId()

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

func (*CreateReactorFormulaModel) UnsetName

func (o *CreateReactorFormulaModel) UnsetName()

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

func (*CreateReactorFormulaModel) UnsetType

func (o *CreateReactorFormulaModel) UnsetType()

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

type CreateReactorModel

type CreateReactorModel struct {
	Name          NullableString       `json:"name,omitempty"`
	Formula       *ReactorFormulaModel `json:"formula,omitempty"`
	Configuration map[string]string    `json:"configuration,omitempty"`
}

CreateReactorModel struct for CreateReactorModel

func NewCreateReactorModel

func NewCreateReactorModel() *CreateReactorModel

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

func NewCreateReactorModelWithDefaults

func NewCreateReactorModelWithDefaults() *CreateReactorModel

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

func (*CreateReactorModel) GetConfiguration

func (o *CreateReactorModel) 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 (*CreateReactorModel) GetConfigurationOk

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

func (o *CreateReactorModel) GetFormula() ReactorFormulaModel

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

func (*CreateReactorModel) GetFormulaOk

func (o *CreateReactorModel) GetFormulaOk() (*ReactorFormulaModel, 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.

func (*CreateReactorModel) GetName

func (o *CreateReactorModel) GetName() string

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

func (*CreateReactorModel) GetNameOk

func (o *CreateReactorModel) 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 (*CreateReactorModel) HasConfiguration

func (o *CreateReactorModel) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*CreateReactorModel) HasFormula

func (o *CreateReactorModel) HasFormula() bool

HasFormula returns a boolean if a field has been set.

func (*CreateReactorModel) HasName

func (o *CreateReactorModel) HasName() bool

HasName returns a boolean if a field has been set.

func (CreateReactorModel) MarshalJSON

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

func (*CreateReactorModel) SetConfiguration

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

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

func (*CreateReactorModel) SetFormula

func (o *CreateReactorModel) SetFormula(v ReactorFormulaModel)

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

func (*CreateReactorModel) SetName

func (o *CreateReactorModel) SetName(v string)

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

func (*CreateReactorModel) SetNameNil

func (o *CreateReactorModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateReactorModel) UnsetName

func (o *CreateReactorModel) UnsetName()

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

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type NullableApplicationModel

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

func NewNullableApplicationModel

func NewNullableApplicationModel(val *ApplicationModel) *NullableApplicationModel

func (NullableApplicationModel) Get

func (NullableApplicationModel) IsSet

func (v NullableApplicationModel) IsSet() bool

func (NullableApplicationModel) MarshalJSON

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

func (*NullableApplicationModel) Set

func (*NullableApplicationModel) UnmarshalJSON

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

func (*NullableApplicationModel) Unset

func (v *NullableApplicationModel) Unset()

type NullableApplicationModelPaginatedList

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

func (NullableApplicationModelPaginatedList) Get

func (NullableApplicationModelPaginatedList) IsSet

func (NullableApplicationModelPaginatedList) MarshalJSON

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

func (*NullableApplicationModelPaginatedList) Set

func (*NullableApplicationModelPaginatedList) UnmarshalJSON

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

func (*NullableApplicationModelPaginatedList) 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 NullableCreateApplicationModel

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

func (NullableCreateApplicationModel) Get

func (NullableCreateApplicationModel) IsSet

func (NullableCreateApplicationModel) MarshalJSON

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

func (*NullableCreateApplicationModel) Set

func (*NullableCreateApplicationModel) UnmarshalJSON

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

func (*NullableCreateApplicationModel) Unset

func (v *NullableCreateApplicationModel) Unset()

type NullableCreateReactorFormulaModel

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

func (NullableCreateReactorFormulaModel) Get

func (NullableCreateReactorFormulaModel) IsSet

func (NullableCreateReactorFormulaModel) MarshalJSON

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

func (*NullableCreateReactorFormulaModel) Set

func (*NullableCreateReactorFormulaModel) UnmarshalJSON

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

func (*NullableCreateReactorFormulaModel) Unset

type NullableCreateReactorModel

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

func NewNullableCreateReactorModel

func NewNullableCreateReactorModel(val *CreateReactorModel) *NullableCreateReactorModel

func (NullableCreateReactorModel) Get

func (NullableCreateReactorModel) IsSet

func (v NullableCreateReactorModel) IsSet() bool

func (NullableCreateReactorModel) MarshalJSON

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

func (*NullableCreateReactorModel) Set

func (*NullableCreateReactorModel) UnmarshalJSON

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

func (*NullableCreateReactorModel) Unset

func (v *NullableCreateReactorModel) 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 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 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 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 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 NullableReactorFormulaConfigurationModel

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

func (NullableReactorFormulaConfigurationModel) Get

func (NullableReactorFormulaConfigurationModel) IsSet

func (NullableReactorFormulaConfigurationModel) MarshalJSON

func (*NullableReactorFormulaConfigurationModel) Set

func (*NullableReactorFormulaConfigurationModel) UnmarshalJSON

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

func (*NullableReactorFormulaConfigurationModel) Unset

type NullableReactorFormulaModel

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

func NewNullableReactorFormulaModel

func NewNullableReactorFormulaModel(val *ReactorFormulaModel) *NullableReactorFormulaModel

func (NullableReactorFormulaModel) Get

func (NullableReactorFormulaModel) IsSet

func (NullableReactorFormulaModel) MarshalJSON

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

func (*NullableReactorFormulaModel) Set

func (*NullableReactorFormulaModel) UnmarshalJSON

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

func (*NullableReactorFormulaModel) Unset

func (v *NullableReactorFormulaModel) Unset()

type NullableReactorFormulaModelPaginatedList

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

func (NullableReactorFormulaModelPaginatedList) Get

func (NullableReactorFormulaModelPaginatedList) IsSet

func (NullableReactorFormulaModelPaginatedList) MarshalJSON

func (*NullableReactorFormulaModelPaginatedList) Set

func (*NullableReactorFormulaModelPaginatedList) UnmarshalJSON

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

func (*NullableReactorFormulaModelPaginatedList) Unset

type NullableReactorFormulaRequestParameterModel

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

func (NullableReactorFormulaRequestParameterModel) Get

func (NullableReactorFormulaRequestParameterModel) IsSet

func (NullableReactorFormulaRequestParameterModel) MarshalJSON

func (*NullableReactorFormulaRequestParameterModel) Set

func (*NullableReactorFormulaRequestParameterModel) UnmarshalJSON

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

func (*NullableReactorFormulaRequestParameterModel) Unset

type NullableReactorModel

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

func NewNullableReactorModel

func NewNullableReactorModel(val *ReactorModel) *NullableReactorModel

func (NullableReactorModel) Get

func (NullableReactorModel) IsSet

func (v NullableReactorModel) IsSet() bool

func (NullableReactorModel) MarshalJSON

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

func (*NullableReactorModel) Set

func (v *NullableReactorModel) Set(val *ReactorModel)

func (*NullableReactorModel) UnmarshalJSON

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

func (*NullableReactorModel) Unset

func (v *NullableReactorModel) Unset()

type NullableReactorModelPaginatedList

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

func (NullableReactorModelPaginatedList) Get

func (NullableReactorModelPaginatedList) IsSet

func (NullableReactorModelPaginatedList) MarshalJSON

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

func (*NullableReactorModelPaginatedList) Set

func (*NullableReactorModelPaginatedList) UnmarshalJSON

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

func (*NullableReactorModelPaginatedList) Unset

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpdateApplicationModel

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

func (NullableUpdateApplicationModel) Get

func (NullableUpdateApplicationModel) IsSet

func (NullableUpdateApplicationModel) MarshalJSON

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

func (*NullableUpdateApplicationModel) Set

func (*NullableUpdateApplicationModel) UnmarshalJSON

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

func (*NullableUpdateApplicationModel) Unset

func (v *NullableUpdateApplicationModel) Unset()

type NullableUpdateReactorFormulaModel

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

func (NullableUpdateReactorFormulaModel) Get

func (NullableUpdateReactorFormulaModel) IsSet

func (NullableUpdateReactorFormulaModel) MarshalJSON

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

func (*NullableUpdateReactorFormulaModel) Set

func (*NullableUpdateReactorFormulaModel) UnmarshalJSON

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

func (*NullableUpdateReactorFormulaModel) Unset

type NullableUpdateReactorModel

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

func NewNullableUpdateReactorModel

func NewNullableUpdateReactorModel(val *UpdateReactorModel) *NullableUpdateReactorModel

func (NullableUpdateReactorModel) Get

func (NullableUpdateReactorModel) IsSet

func (v NullableUpdateReactorModel) IsSet() bool

func (NullableUpdateReactorModel) MarshalJSON

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

func (*NullableUpdateReactorModel) Set

func (*NullableUpdateReactorModel) UnmarshalJSON

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

func (*NullableUpdateReactorModel) Unset

func (v *NullableUpdateReactorModel) 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 has been set.

func (*Pagination) HasPageSize

func (o *Pagination) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*Pagination) HasTotalItems

func (o *Pagination) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (*Pagination) HasTotalPages

func (o *Pagination) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

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.

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 has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

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

type ReactRequest struct {
	Args interface{} `json:"args,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) HasArgs

func (o *ReactRequest) HasArgs() bool

HasArgs returns a boolean if a field has been set.

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.

type ReactResponse

type ReactResponse struct {
	Tokens interface{} `json:"tokens,omitempty"`
	Raw    interface{} `json:"raw,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) 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) HasRaw

func (o *ReactResponse) HasRaw() bool

HasRaw returns a boolean if a field has been set.

func (*ReactResponse) HasTokens

func (o *ReactResponse) HasTokens() bool

HasTokens returns a boolean if a field has been set.

func (ReactResponse) MarshalJSON

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

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.

type ReactorFormulaConfigurationModel

type ReactorFormulaConfigurationModel struct {
	Name        NullableString `json:"name,omitempty"`
	Description NullableString `json:"description,omitempty"`
	Type        NullableString `json:"type,omitempty"`
}

ReactorFormulaConfigurationModel struct for ReactorFormulaConfigurationModel

func NewReactorFormulaConfigurationModel

func NewReactorFormulaConfigurationModel() *ReactorFormulaConfigurationModel

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

func NewReactorFormulaConfigurationModelWithDefaults

func NewReactorFormulaConfigurationModelWithDefaults() *ReactorFormulaConfigurationModel

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

func (*ReactorFormulaConfigurationModel) GetDescription

func (o *ReactorFormulaConfigurationModel) GetDescription() string

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

func (*ReactorFormulaConfigurationModel) GetDescriptionOk

func (o *ReactorFormulaConfigurationModel) 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 (*ReactorFormulaConfigurationModel) GetName

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

func (*ReactorFormulaConfigurationModel) GetNameOk

func (o *ReactorFormulaConfigurationModel) 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 (*ReactorFormulaConfigurationModel) GetType

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

func (*ReactorFormulaConfigurationModel) GetTypeOk

func (o *ReactorFormulaConfigurationModel) 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 (*ReactorFormulaConfigurationModel) HasDescription

func (o *ReactorFormulaConfigurationModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReactorFormulaConfigurationModel) HasName

HasName returns a boolean if a field has been set.

func (*ReactorFormulaConfigurationModel) HasType

HasType returns a boolean if a field has been set.

func (ReactorFormulaConfigurationModel) MarshalJSON

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

func (*ReactorFormulaConfigurationModel) SetDescription

func (o *ReactorFormulaConfigurationModel) SetDescription(v string)

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

func (*ReactorFormulaConfigurationModel) SetDescriptionNil

func (o *ReactorFormulaConfigurationModel) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormulaConfigurationModel) SetName

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

func (*ReactorFormulaConfigurationModel) SetNameNil

func (o *ReactorFormulaConfigurationModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ReactorFormulaConfigurationModel) SetType

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

func (*ReactorFormulaConfigurationModel) SetTypeNil

func (o *ReactorFormulaConfigurationModel) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*ReactorFormulaConfigurationModel) UnsetDescription

func (o *ReactorFormulaConfigurationModel) UnsetDescription()

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

func (*ReactorFormulaConfigurationModel) UnsetName

func (o *ReactorFormulaConfigurationModel) UnsetName()

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

func (*ReactorFormulaConfigurationModel) UnsetType

func (o *ReactorFormulaConfigurationModel) UnsetType()

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

type ReactorFormulaModel

type ReactorFormulaModel 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     []ReactorFormulaConfigurationModel    `json:"configuration,omitempty"`
	RequestParameters []ReactorFormulaRequestParameterModel `json:"request_parameters,omitempty"`
}

ReactorFormulaModel struct for ReactorFormulaModel

func NewReactorFormulaModel

func NewReactorFormulaModel() *ReactorFormulaModel

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

func NewReactorFormulaModelWithDefaults

func NewReactorFormulaModelWithDefaults() *ReactorFormulaModel

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

func (*ReactorFormulaModel) GetCode

func (o *ReactorFormulaModel) GetCode() string

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

func (*ReactorFormulaModel) GetCodeOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) GetConfiguration

func (o *ReactorFormulaModel) GetConfiguration() []ReactorFormulaConfigurationModel

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

func (*ReactorFormulaModel) GetConfigurationOk

func (o *ReactorFormulaModel) GetConfigurationOk() ([]ReactorFormulaConfigurationModel, 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 (*ReactorFormulaModel) GetCreatedAt

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

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

func (*ReactorFormulaModel) GetCreatedAtOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) GetCreatedBy

func (o *ReactorFormulaModel) GetCreatedBy() string

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

func (*ReactorFormulaModel) GetCreatedByOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) GetDescription

func (o *ReactorFormulaModel) GetDescription() string

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

func (*ReactorFormulaModel) GetDescriptionOk

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

func (o *ReactorFormulaModel) GetIcon() string

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

func (*ReactorFormulaModel) GetIconOk

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

func (o *ReactorFormulaModel) GetId() string

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

func (*ReactorFormulaModel) GetIdOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) GetModifiedAt

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

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

func (*ReactorFormulaModel) GetModifiedAtOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) GetModifiedBy

func (o *ReactorFormulaModel) GetModifiedBy() string

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

func (*ReactorFormulaModel) GetModifiedByOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) GetName

func (o *ReactorFormulaModel) GetName() string

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

func (*ReactorFormulaModel) GetNameOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) GetRequestParameters

func (o *ReactorFormulaModel) GetRequestParameters() []ReactorFormulaRequestParameterModel

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

func (*ReactorFormulaModel) GetRequestParametersOk

func (o *ReactorFormulaModel) GetRequestParametersOk() ([]ReactorFormulaRequestParameterModel, 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 (*ReactorFormulaModel) GetStatus

func (o *ReactorFormulaModel) GetStatus() string

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

func (*ReactorFormulaModel) GetStatusOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) GetType

func (o *ReactorFormulaModel) GetType() string

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

func (*ReactorFormulaModel) GetTypeOk

func (o *ReactorFormulaModel) 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 (*ReactorFormulaModel) HasCode

func (o *ReactorFormulaModel) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasConfiguration

func (o *ReactorFormulaModel) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasCreatedAt

func (o *ReactorFormulaModel) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasCreatedBy

func (o *ReactorFormulaModel) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasDescription

func (o *ReactorFormulaModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasIcon

func (o *ReactorFormulaModel) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasId

func (o *ReactorFormulaModel) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasModifiedAt

func (o *ReactorFormulaModel) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasModifiedBy

func (o *ReactorFormulaModel) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasName

func (o *ReactorFormulaModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasRequestParameters

func (o *ReactorFormulaModel) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasStatus

func (o *ReactorFormulaModel) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ReactorFormulaModel) HasType

func (o *ReactorFormulaModel) HasType() bool

HasType returns a boolean if a field has been set.

func (ReactorFormulaModel) MarshalJSON

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

func (*ReactorFormulaModel) SetCode

func (o *ReactorFormulaModel) SetCode(v string)

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

func (*ReactorFormulaModel) SetCodeNil

func (o *ReactorFormulaModel) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*ReactorFormulaModel) SetConfiguration

func (o *ReactorFormulaModel) SetConfiguration(v []ReactorFormulaConfigurationModel)

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

func (*ReactorFormulaModel) SetCreatedAt

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

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

func (*ReactorFormulaModel) SetCreatedAtNil

func (o *ReactorFormulaModel) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*ReactorFormulaModel) SetCreatedBy

func (o *ReactorFormulaModel) SetCreatedBy(v string)

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

func (*ReactorFormulaModel) SetCreatedByNil

func (o *ReactorFormulaModel) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ReactorFormulaModel) SetDescription

func (o *ReactorFormulaModel) SetDescription(v string)

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

func (*ReactorFormulaModel) SetDescriptionNil

func (o *ReactorFormulaModel) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormulaModel) SetIcon

func (o *ReactorFormulaModel) SetIcon(v string)

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

func (*ReactorFormulaModel) SetIconNil

func (o *ReactorFormulaModel) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*ReactorFormulaModel) SetId

func (o *ReactorFormulaModel) SetId(v string)

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

func (*ReactorFormulaModel) SetModifiedAt

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

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

func (*ReactorFormulaModel) SetModifiedAtNil

func (o *ReactorFormulaModel) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*ReactorFormulaModel) SetModifiedBy

func (o *ReactorFormulaModel) SetModifiedBy(v string)

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

func (*ReactorFormulaModel) SetModifiedByNil

func (o *ReactorFormulaModel) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*ReactorFormulaModel) SetName

func (o *ReactorFormulaModel) SetName(v string)

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

func (*ReactorFormulaModel) SetNameNil

func (o *ReactorFormulaModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ReactorFormulaModel) SetRequestParameters

func (o *ReactorFormulaModel) SetRequestParameters(v []ReactorFormulaRequestParameterModel)

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

func (*ReactorFormulaModel) SetStatus

func (o *ReactorFormulaModel) SetStatus(v string)

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

func (*ReactorFormulaModel) SetStatusNil

func (o *ReactorFormulaModel) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*ReactorFormulaModel) SetType

func (o *ReactorFormulaModel) SetType(v string)

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

func (*ReactorFormulaModel) SetTypeNil

func (o *ReactorFormulaModel) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*ReactorFormulaModel) UnsetCode

func (o *ReactorFormulaModel) UnsetCode()

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

func (*ReactorFormulaModel) UnsetCreatedAt

func (o *ReactorFormulaModel) UnsetCreatedAt()

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

func (*ReactorFormulaModel) UnsetCreatedBy

func (o *ReactorFormulaModel) UnsetCreatedBy()

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

func (*ReactorFormulaModel) UnsetDescription

func (o *ReactorFormulaModel) UnsetDescription()

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

func (*ReactorFormulaModel) UnsetIcon

func (o *ReactorFormulaModel) UnsetIcon()

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

func (*ReactorFormulaModel) UnsetModifiedAt

func (o *ReactorFormulaModel) UnsetModifiedAt()

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

func (*ReactorFormulaModel) UnsetModifiedBy

func (o *ReactorFormulaModel) UnsetModifiedBy()

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

func (*ReactorFormulaModel) UnsetName

func (o *ReactorFormulaModel) UnsetName()

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

func (*ReactorFormulaModel) UnsetStatus

func (o *ReactorFormulaModel) UnsetStatus()

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

func (*ReactorFormulaModel) UnsetType

func (o *ReactorFormulaModel) UnsetType()

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

type ReactorFormulaModelPaginatedList

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

ReactorFormulaModelPaginatedList struct for ReactorFormulaModelPaginatedList

func NewReactorFormulaModelPaginatedList

func NewReactorFormulaModelPaginatedList() *ReactorFormulaModelPaginatedList

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

func NewReactorFormulaModelPaginatedListWithDefaults

func NewReactorFormulaModelPaginatedListWithDefaults() *ReactorFormulaModelPaginatedList

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

func (*ReactorFormulaModelPaginatedList) GetData

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

func (*ReactorFormulaModelPaginatedList) 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 (*ReactorFormulaModelPaginatedList) GetPagination

func (o *ReactorFormulaModelPaginatedList) GetPagination() Pagination

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

func (*ReactorFormulaModelPaginatedList) GetPaginationOk

func (o *ReactorFormulaModelPaginatedList) 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 (*ReactorFormulaModelPaginatedList) HasData

HasData returns a boolean if a field has been set.

func (*ReactorFormulaModelPaginatedList) HasPagination

func (o *ReactorFormulaModelPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (ReactorFormulaModelPaginatedList) MarshalJSON

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

func (*ReactorFormulaModelPaginatedList) SetData

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

func (*ReactorFormulaModelPaginatedList) SetPagination

func (o *ReactorFormulaModelPaginatedList) SetPagination(v Pagination)

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

type ReactorFormulaRequestParameterModel

type ReactorFormulaRequestParameterModel struct {
	Name        NullableString `json:"name,omitempty"`
	Description NullableString `json:"description,omitempty"`
	Type        NullableString `json:"type,omitempty"`
	Optional    *bool          `json:"optional,omitempty"`
}

ReactorFormulaRequestParameterModel struct for ReactorFormulaRequestParameterModel

func NewReactorFormulaRequestParameterModel

func NewReactorFormulaRequestParameterModel() *ReactorFormulaRequestParameterModel

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

func NewReactorFormulaRequestParameterModelWithDefaults

func NewReactorFormulaRequestParameterModelWithDefaults() *ReactorFormulaRequestParameterModel

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

func (*ReactorFormulaRequestParameterModel) GetDescription

func (o *ReactorFormulaRequestParameterModel) GetDescription() string

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

func (*ReactorFormulaRequestParameterModel) GetDescriptionOk

func (o *ReactorFormulaRequestParameterModel) 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 (*ReactorFormulaRequestParameterModel) GetName

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

func (*ReactorFormulaRequestParameterModel) GetNameOk

func (o *ReactorFormulaRequestParameterModel) 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 (*ReactorFormulaRequestParameterModel) GetOptional

func (o *ReactorFormulaRequestParameterModel) GetOptional() bool

GetOptional returns the Optional field value if set, zero value otherwise.

func (*ReactorFormulaRequestParameterModel) GetOptionalOk

func (o *ReactorFormulaRequestParameterModel) 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 (*ReactorFormulaRequestParameterModel) GetType

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

func (*ReactorFormulaRequestParameterModel) GetTypeOk

func (o *ReactorFormulaRequestParameterModel) 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 (*ReactorFormulaRequestParameterModel) HasDescription

func (o *ReactorFormulaRequestParameterModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReactorFormulaRequestParameterModel) HasName

HasName returns a boolean if a field has been set.

func (*ReactorFormulaRequestParameterModel) HasOptional

func (o *ReactorFormulaRequestParameterModel) HasOptional() bool

HasOptional returns a boolean if a field has been set.

func (*ReactorFormulaRequestParameterModel) HasType

HasType returns a boolean if a field has been set.

func (ReactorFormulaRequestParameterModel) MarshalJSON

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

func (*ReactorFormulaRequestParameterModel) SetDescription

func (o *ReactorFormulaRequestParameterModel) SetDescription(v string)

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

func (*ReactorFormulaRequestParameterModel) SetDescriptionNil

func (o *ReactorFormulaRequestParameterModel) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormulaRequestParameterModel) SetName

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

func (*ReactorFormulaRequestParameterModel) SetNameNil

func (o *ReactorFormulaRequestParameterModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ReactorFormulaRequestParameterModel) SetOptional

func (o *ReactorFormulaRequestParameterModel) SetOptional(v bool)

SetOptional gets a reference to the given bool and assigns it to the Optional field.

func (*ReactorFormulaRequestParameterModel) SetType

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

func (*ReactorFormulaRequestParameterModel) SetTypeNil

func (o *ReactorFormulaRequestParameterModel) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*ReactorFormulaRequestParameterModel) UnsetDescription

func (o *ReactorFormulaRequestParameterModel) UnsetDescription()

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

func (*ReactorFormulaRequestParameterModel) UnsetName

func (o *ReactorFormulaRequestParameterModel) UnsetName()

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

func (*ReactorFormulaRequestParameterModel) UnsetType

func (o *ReactorFormulaRequestParameterModel) UnsetType()

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

type ReactorFormulasApiService

type ReactorFormulasApiService service

ReactorFormulasApiService ReactorFormulasApi service

func (*ReactorFormulasApiService) ReactorFormulaCreate

ReactorFormulaCreate Method for ReactorFormulaCreate

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

func (*ReactorFormulasApiService) ReactorFormulaCreateExecute

Execute executes the request

@return ReactorFormulaModel

func (*ReactorFormulasApiService) ReactorFormulaDelete

ReactorFormulaDelete Method for ReactorFormulaDelete

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

func (*ReactorFormulasApiService) ReactorFormulaDeleteExecute

func (a *ReactorFormulasApiService) ReactorFormulaDeleteExecute(r ApiReactorFormulaDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ReactorFormulasApiService) ReactorFormulaGetById

ReactorFormulaGetById Method for ReactorFormulaGetById

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

func (*ReactorFormulasApiService) ReactorFormulaGetByIdExecute

Execute executes the request

@return ReactorFormulaModel

func (*ReactorFormulasApiService) ReactorFormulaUpdate

ReactorFormulaUpdate Method for ReactorFormulaUpdate

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

func (*ReactorFormulasApiService) ReactorFormulaUpdateExecute

Execute executes the request

@return ReactorFormulaModel

func (*ReactorFormulasApiService) ReactorFormulasGet

ReactorFormulasGet Method for ReactorFormulasGet

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

func (*ReactorFormulasApiService) ReactorFormulasGetExecute

Execute executes the request

@return ReactorFormulaModelPaginatedList

type ReactorModel

type ReactorModel struct {
	Id            *string              `json:"id,omitempty"`
	TenantId      *string              `json:"tenant_id,omitempty"`
	Name          NullableString       `json:"name,omitempty"`
	Formula       *ReactorFormulaModel `json:"formula,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"`
}

ReactorModel struct for ReactorModel

func NewReactorModel

func NewReactorModel() *ReactorModel

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

func NewReactorModelWithDefaults

func NewReactorModelWithDefaults() *ReactorModel

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

func (*ReactorModel) GetConfiguration

func (o *ReactorModel) 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 (*ReactorModel) GetConfigurationOk

func (o *ReactorModel) 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 (*ReactorModel) GetCreatedAt

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

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

func (*ReactorModel) GetCreatedAtOk

func (o *ReactorModel) 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 (*ReactorModel) GetCreatedBy

func (o *ReactorModel) GetCreatedBy() string

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

func (*ReactorModel) GetCreatedByOk

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

func (o *ReactorModel) GetFormula() ReactorFormulaModel

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

func (*ReactorModel) GetFormulaOk

func (o *ReactorModel) GetFormulaOk() (*ReactorFormulaModel, 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.

func (*ReactorModel) GetId

func (o *ReactorModel) GetId() string

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

func (*ReactorModel) GetIdOk

func (o *ReactorModel) 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 (*ReactorModel) GetModifiedAt

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

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

func (*ReactorModel) GetModifiedAtOk

func (o *ReactorModel) 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 (*ReactorModel) GetModifiedBy

func (o *ReactorModel) GetModifiedBy() string

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

func (*ReactorModel) GetModifiedByOk

func (o *ReactorModel) 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 (*ReactorModel) GetName

func (o *ReactorModel) GetName() string

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

func (*ReactorModel) GetNameOk

func (o *ReactorModel) 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 (*ReactorModel) GetTenantId

func (o *ReactorModel) GetTenantId() string

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

func (*ReactorModel) GetTenantIdOk

func (o *ReactorModel) 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 (*ReactorModel) HasConfiguration

func (o *ReactorModel) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ReactorModel) HasCreatedAt

func (o *ReactorModel) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ReactorModel) HasCreatedBy

func (o *ReactorModel) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*ReactorModel) HasFormula

func (o *ReactorModel) HasFormula() bool

HasFormula returns a boolean if a field has been set.

func (*ReactorModel) HasId

func (o *ReactorModel) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReactorModel) HasModifiedAt

func (o *ReactorModel) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ReactorModel) HasModifiedBy

func (o *ReactorModel) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*ReactorModel) HasName

func (o *ReactorModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*ReactorModel) HasTenantId

func (o *ReactorModel) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ReactorModel) MarshalJSON

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

func (*ReactorModel) SetConfiguration

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

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

func (*ReactorModel) SetCreatedAt

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

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

func (*ReactorModel) SetCreatedAtNil

func (o *ReactorModel) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*ReactorModel) SetCreatedBy

func (o *ReactorModel) SetCreatedBy(v string)

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

func (*ReactorModel) SetCreatedByNil

func (o *ReactorModel) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ReactorModel) SetFormula

func (o *ReactorModel) SetFormula(v ReactorFormulaModel)

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

func (*ReactorModel) SetId

func (o *ReactorModel) SetId(v string)

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

func (*ReactorModel) SetModifiedAt

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

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

func (*ReactorModel) SetModifiedAtNil

func (o *ReactorModel) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*ReactorModel) SetModifiedBy

func (o *ReactorModel) SetModifiedBy(v string)

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

func (*ReactorModel) SetModifiedByNil

func (o *ReactorModel) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*ReactorModel) SetName

func (o *ReactorModel) SetName(v string)

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

func (*ReactorModel) SetNameNil

func (o *ReactorModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ReactorModel) SetTenantId

func (o *ReactorModel) SetTenantId(v string)

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

func (*ReactorModel) UnsetCreatedAt

func (o *ReactorModel) UnsetCreatedAt()

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

func (*ReactorModel) UnsetCreatedBy

func (o *ReactorModel) UnsetCreatedBy()

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

func (*ReactorModel) UnsetModifiedAt

func (o *ReactorModel) UnsetModifiedAt()

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

func (*ReactorModel) UnsetModifiedBy

func (o *ReactorModel) UnsetModifiedBy()

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

func (*ReactorModel) UnsetName

func (o *ReactorModel) UnsetName()

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

type ReactorModelPaginatedList

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

ReactorModelPaginatedList struct for ReactorModelPaginatedList

func NewReactorModelPaginatedList

func NewReactorModelPaginatedList() *ReactorModelPaginatedList

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

func NewReactorModelPaginatedListWithDefaults

func NewReactorModelPaginatedListWithDefaults() *ReactorModelPaginatedList

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

func (*ReactorModelPaginatedList) GetData

func (o *ReactorModelPaginatedList) GetData() []ReactorModel

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

func (*ReactorModelPaginatedList) GetDataOk

func (o *ReactorModelPaginatedList) GetDataOk() ([]ReactorModel, 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 (*ReactorModelPaginatedList) GetPagination

func (o *ReactorModelPaginatedList) GetPagination() Pagination

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

func (*ReactorModelPaginatedList) GetPaginationOk

func (o *ReactorModelPaginatedList) 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 (*ReactorModelPaginatedList) HasData

func (o *ReactorModelPaginatedList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ReactorModelPaginatedList) HasPagination

func (o *ReactorModelPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (ReactorModelPaginatedList) MarshalJSON

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

func (*ReactorModelPaginatedList) SetData

func (o *ReactorModelPaginatedList) SetData(v []ReactorModel)

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

func (*ReactorModelPaginatedList) SetPagination

func (o *ReactorModelPaginatedList) SetPagination(v Pagination)

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

type ReactorsApiService

type ReactorsApiService service

ReactorsApiService ReactorsApi service

func (*ReactorsApiService) ReactorCreate

ReactorCreate Method for ReactorCreate

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

func (*ReactorsApiService) ReactorCreateExecute

func (a *ReactorsApiService) ReactorCreateExecute(r ApiReactorCreateRequest) (*ReactorModel, *http.Response, error)

Execute executes the request

@return ReactorModel

func (*ReactorsApiService) ReactorDelete

ReactorDelete Method for ReactorDelete

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

func (*ReactorsApiService) ReactorDeleteExecute

func (a *ReactorsApiService) ReactorDeleteExecute(r ApiReactorDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ReactorsApiService) ReactorGetById

ReactorGetById Method for ReactorGetById

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

func (*ReactorsApiService) ReactorGetByIdExecute

func (a *ReactorsApiService) ReactorGetByIdExecute(r ApiReactorGetByIdRequest) (*ReactorModel, *http.Response, error)

Execute executes the request

@return ReactorModel

func (*ReactorsApiService) ReactorReact

ReactorReact Method for ReactorReact

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

func (*ReactorsApiService) ReactorReactExecute

Execute executes the request

@return ReactResponse

func (*ReactorsApiService) ReactorUpdate

ReactorUpdate Method for ReactorUpdate

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

func (*ReactorsApiService) ReactorUpdateExecute

func (a *ReactorsApiService) ReactorUpdateExecute(r ApiReactorUpdateRequest) (*ReactorModel, *http.Response, error)

Execute executes the request

@return ReactorModel

func (*ReactorsApiService) ReactorsGet

ReactorsGet Method for ReactorsGet

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

func (*ReactorsApiService) ReactorsGetExecute

Execute executes the request

@return ReactorModelPaginatedList

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 UpdateApplicationModel

type UpdateApplicationModel struct {
	Name        NullableString `json:"name,omitempty"`
	Permissions []string       `json:"permissions,omitempty"`
}

UpdateApplicationModel struct for UpdateApplicationModel

func NewUpdateApplicationModel

func NewUpdateApplicationModel() *UpdateApplicationModel

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

func NewUpdateApplicationModelWithDefaults

func NewUpdateApplicationModelWithDefaults() *UpdateApplicationModel

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

func (*UpdateApplicationModel) GetName

func (o *UpdateApplicationModel) GetName() string

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

func (*UpdateApplicationModel) GetNameOk

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

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

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

func (*UpdateApplicationModel) GetPermissionsOk

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

func (o *UpdateApplicationModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateApplicationModel) HasPermissions

func (o *UpdateApplicationModel) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (UpdateApplicationModel) MarshalJSON

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

func (*UpdateApplicationModel) SetName

func (o *UpdateApplicationModel) SetName(v string)

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

func (*UpdateApplicationModel) SetNameNil

func (o *UpdateApplicationModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UpdateApplicationModel) SetPermissions

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

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

func (*UpdateApplicationModel) UnsetName

func (o *UpdateApplicationModel) UnsetName()

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

type UpdateReactorFormulaModel

type UpdateReactorFormulaModel struct {
	Type              NullableString                        `json:"type,omitempty"`
	Name              NullableString                        `json:"name,omitempty"`
	Description       NullableString                        `json:"description,omitempty"`
	Icon              NullableString                        `json:"icon,omitempty"`
	Code              NullableString                        `json:"code,omitempty"`
	Configuration     []ReactorFormulaConfigurationModel    `json:"configuration,omitempty"`
	RequestParameters []ReactorFormulaRequestParameterModel `json:"request_parameters,omitempty"`
}

UpdateReactorFormulaModel struct for UpdateReactorFormulaModel

func NewUpdateReactorFormulaModel

func NewUpdateReactorFormulaModel() *UpdateReactorFormulaModel

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

func NewUpdateReactorFormulaModelWithDefaults

func NewUpdateReactorFormulaModelWithDefaults() *UpdateReactorFormulaModel

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

func (*UpdateReactorFormulaModel) GetCode

func (o *UpdateReactorFormulaModel) GetCode() string

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

func (*UpdateReactorFormulaModel) GetCodeOk

func (o *UpdateReactorFormulaModel) 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 (*UpdateReactorFormulaModel) GetConfiguration

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

func (*UpdateReactorFormulaModel) GetConfigurationOk

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 (*UpdateReactorFormulaModel) GetDescription

func (o *UpdateReactorFormulaModel) GetDescription() string

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

func (*UpdateReactorFormulaModel) GetDescriptionOk

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

func (o *UpdateReactorFormulaModel) GetIcon() string

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

func (*UpdateReactorFormulaModel) GetIconOk

func (o *UpdateReactorFormulaModel) 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 (*UpdateReactorFormulaModel) GetName

func (o *UpdateReactorFormulaModel) GetName() string

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

func (*UpdateReactorFormulaModel) GetNameOk

func (o *UpdateReactorFormulaModel) 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 (*UpdateReactorFormulaModel) GetRequestParameters

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

func (*UpdateReactorFormulaModel) GetRequestParametersOk

func (o *UpdateReactorFormulaModel) GetRequestParametersOk() ([]ReactorFormulaRequestParameterModel, 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 (*UpdateReactorFormulaModel) GetType

func (o *UpdateReactorFormulaModel) GetType() string

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

func (*UpdateReactorFormulaModel) GetTypeOk

func (o *UpdateReactorFormulaModel) 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 (*UpdateReactorFormulaModel) HasCode

func (o *UpdateReactorFormulaModel) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*UpdateReactorFormulaModel) HasConfiguration

func (o *UpdateReactorFormulaModel) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*UpdateReactorFormulaModel) HasDescription

func (o *UpdateReactorFormulaModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateReactorFormulaModel) HasIcon

func (o *UpdateReactorFormulaModel) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*UpdateReactorFormulaModel) HasName

func (o *UpdateReactorFormulaModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateReactorFormulaModel) HasRequestParameters

func (o *UpdateReactorFormulaModel) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field has been set.

func (*UpdateReactorFormulaModel) HasType

func (o *UpdateReactorFormulaModel) HasType() bool

HasType returns a boolean if a field has been set.

func (UpdateReactorFormulaModel) MarshalJSON

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

func (*UpdateReactorFormulaModel) SetCode

func (o *UpdateReactorFormulaModel) SetCode(v string)

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

func (*UpdateReactorFormulaModel) SetCodeNil

func (o *UpdateReactorFormulaModel) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*UpdateReactorFormulaModel) SetConfiguration

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

func (*UpdateReactorFormulaModel) SetDescription

func (o *UpdateReactorFormulaModel) SetDescription(v string)

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

func (*UpdateReactorFormulaModel) SetDescriptionNil

func (o *UpdateReactorFormulaModel) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*UpdateReactorFormulaModel) SetIcon

func (o *UpdateReactorFormulaModel) SetIcon(v string)

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

func (*UpdateReactorFormulaModel) SetIconNil

func (o *UpdateReactorFormulaModel) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*UpdateReactorFormulaModel) SetName

func (o *UpdateReactorFormulaModel) SetName(v string)

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

func (*UpdateReactorFormulaModel) SetNameNil

func (o *UpdateReactorFormulaModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UpdateReactorFormulaModel) SetRequestParameters

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

func (*UpdateReactorFormulaModel) SetType

func (o *UpdateReactorFormulaModel) SetType(v string)

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

func (*UpdateReactorFormulaModel) SetTypeNil

func (o *UpdateReactorFormulaModel) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*UpdateReactorFormulaModel) UnsetCode

func (o *UpdateReactorFormulaModel) UnsetCode()

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

func (*UpdateReactorFormulaModel) UnsetDescription

func (o *UpdateReactorFormulaModel) UnsetDescription()

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

func (*UpdateReactorFormulaModel) UnsetIcon

func (o *UpdateReactorFormulaModel) UnsetIcon()

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

func (*UpdateReactorFormulaModel) UnsetName

func (o *UpdateReactorFormulaModel) UnsetName()

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

func (*UpdateReactorFormulaModel) UnsetType

func (o *UpdateReactorFormulaModel) UnsetType()

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

type UpdateReactorModel

type UpdateReactorModel struct {
	Name          NullableString    `json:"name,omitempty"`
	Configuration map[string]string `json:"configuration,omitempty"`
}

UpdateReactorModel struct for UpdateReactorModel

func NewUpdateReactorModel

func NewUpdateReactorModel() *UpdateReactorModel

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

func NewUpdateReactorModelWithDefaults

func NewUpdateReactorModelWithDefaults() *UpdateReactorModel

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

func (*UpdateReactorModel) GetConfiguration

func (o *UpdateReactorModel) 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 (*UpdateReactorModel) GetConfigurationOk

func (o *UpdateReactorModel) 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 (*UpdateReactorModel) GetName

func (o *UpdateReactorModel) GetName() string

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

func (*UpdateReactorModel) GetNameOk

func (o *UpdateReactorModel) 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 (*UpdateReactorModel) HasConfiguration

func (o *UpdateReactorModel) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*UpdateReactorModel) HasName

func (o *UpdateReactorModel) HasName() bool

HasName returns a boolean if a field has been set.

func (UpdateReactorModel) MarshalJSON

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

func (*UpdateReactorModel) SetConfiguration

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

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

func (*UpdateReactorModel) SetName

func (o *UpdateReactorModel) SetName(v string)

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

func (*UpdateReactorModel) SetNameNil

func (o *UpdateReactorModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UpdateReactorModel) UnsetName

func (o *UpdateReactorModel) UnsetName()

UnsetName ensures that no value is present for Name, 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 has been set.

func (*ValidationProblemDetails) HasErrors

func (o *ValidationProblemDetails) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ValidationProblemDetails) HasInstance

func (o *ValidationProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ValidationProblemDetails) HasStatus

func (o *ValidationProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ValidationProblemDetails) HasTitle

func (o *ValidationProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ValidationProblemDetails) HasType

func (o *ValidationProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

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

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL