basistheory

package module
v2.0.1 Latest Latest
Warning

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

Go to latest
Published: Jun 3, 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/v2"

To use a proxy, set the environment variable HTTP_PROXY:

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

Running tests locally

To run tests locally, you'll need to create a server and management BT Application and add those key to a .env.local. You'll want to follow the same format as outlined on .env.example. Then you can run make verify from the root to run all tests.

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

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

Class Method HTTP request Description
ApplicationsApi ApplicationsCreate Post /applications
ApplicationsApi ApplicationsDelete Delete /applications/{id}
ApplicationsApi ApplicationsGet Get /applications
ApplicationsApi ApplicationsGetById Get /applications/{id}
ApplicationsApi ApplicationsGetByKey Get /applications/key
ApplicationsApi ApplicationsRegenerateKey Post /applications/{id}/regenerate
ApplicationsApi ApplicationsUpdate Put /applications/{id}
ProxiesApi ProxiesCreate Post /proxies
ProxiesApi ProxiesDelete Delete /proxies/{id}
ProxiesApi ProxiesGet Get /proxies
ProxiesApi ProxiesGetById Get /proxies/{id}
ProxiesApi ProxiesUpdate Put /proxies/{id}
ReactorFormulasApi ReactorFormulasCreate Post /reactor-formulas
ReactorFormulasApi ReactorFormulasDelete Delete /reactor-formulas/{id}
ReactorFormulasApi ReactorFormulasGet Get /reactor-formulas
ReactorFormulasApi ReactorFormulasGetById Get /reactor-formulas/{id}
ReactorFormulasApi ReactorFormulasUpdate Put /reactor-formulas/{id}
ReactorsApi ReactorsCreate Post /reactors
ReactorsApi ReactorsDelete Delete /reactors/{id}
ReactorsApi ReactorsGet Get /reactors
ReactorsApi ReactorsGetById Get /reactors/{id}
ReactorsApi ReactorsReact Post /reactors/{id}/react
ReactorsApi ReactorsUpdate Put /reactors/{id}

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

	ProxiesApi *ProxiesApiService

	ReactorFormulasApi *ReactorFormulasApiService

	ReactorsApi *ReactorsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Basis Theory API API vv1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiApplicationsCreateRequest

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

func (ApiApplicationsCreateRequest) CreateApplicationRequest

func (r ApiApplicationsCreateRequest) CreateApplicationRequest(createApplicationRequest CreateApplicationRequest) ApiApplicationsCreateRequest

func (ApiApplicationsCreateRequest) Execute

type ApiApplicationsDeleteRequest

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

func (ApiApplicationsDeleteRequest) Execute

type ApiApplicationsGetByIdRequest

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

func (ApiApplicationsGetByIdRequest) Execute

type ApiApplicationsGetByKeyRequest

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

func (ApiApplicationsGetByKeyRequest) Execute

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 ApiApplicationsRegenerateKeyRequest

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

func (ApiApplicationsRegenerateKeyRequest) Execute

type ApiApplicationsUpdateRequest

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

func (ApiApplicationsUpdateRequest) Execute

func (ApiApplicationsUpdateRequest) UpdateApplicationRequest

func (r ApiApplicationsUpdateRequest) UpdateApplicationRequest(updateApplicationRequest UpdateApplicationRequest) ApiApplicationsUpdateRequest

type ApiProxiesCreateRequest

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

func (ApiProxiesCreateRequest) CreateProxyRequest

func (r ApiProxiesCreateRequest) CreateProxyRequest(createProxyRequest CreateProxyRequest) ApiProxiesCreateRequest

func (ApiProxiesCreateRequest) Execute

func (r ApiProxiesCreateRequest) Execute() (*Proxy, *http.Response, error)

type ApiProxiesDeleteRequest

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

func (ApiProxiesDeleteRequest) Execute

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

type ApiProxiesGetByIdRequest

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

func (ApiProxiesGetByIdRequest) Execute

func (r ApiProxiesGetByIdRequest) Execute() (*Proxy, *http.Response, error)

type ApiProxiesGetRequest

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

func (ApiProxiesGetRequest) Execute

func (ApiProxiesGetRequest) Id

func (ApiProxiesGetRequest) Name

func (ApiProxiesGetRequest) Page

func (ApiProxiesGetRequest) Size

type ApiProxiesUpdateRequest

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

func (ApiProxiesUpdateRequest) Execute

func (r ApiProxiesUpdateRequest) Execute() (*Proxy, *http.Response, error)

func (ApiProxiesUpdateRequest) UpdateProxyRequest

func (r ApiProxiesUpdateRequest) UpdateProxyRequest(updateProxyRequest UpdateProxyRequest) ApiProxiesUpdateRequest

type ApiReactorFormulasCreateRequest

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

func (ApiReactorFormulasCreateRequest) CreateReactorFormulaRequest

func (r ApiReactorFormulasCreateRequest) CreateReactorFormulaRequest(createReactorFormulaRequest CreateReactorFormulaRequest) ApiReactorFormulasCreateRequest

func (ApiReactorFormulasCreateRequest) Execute

type ApiReactorFormulasDeleteRequest

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

func (ApiReactorFormulasDeleteRequest) Execute

type ApiReactorFormulasGetByIdRequest

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

func (ApiReactorFormulasGetByIdRequest) Execute

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 ApiReactorFormulasUpdateRequest

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

func (ApiReactorFormulasUpdateRequest) Execute

func (ApiReactorFormulasUpdateRequest) UpdateReactorFormulaRequest

func (r ApiReactorFormulasUpdateRequest) UpdateReactorFormulaRequest(updateReactorFormulaRequest UpdateReactorFormulaRequest) ApiReactorFormulasUpdateRequest

type ApiReactorsCreateRequest

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

func (ApiReactorsCreateRequest) CreateReactorRequest

func (r ApiReactorsCreateRequest) CreateReactorRequest(createReactorRequest CreateReactorRequest) ApiReactorsCreateRequest

func (ApiReactorsCreateRequest) Execute

type ApiReactorsDeleteRequest

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

func (ApiReactorsDeleteRequest) Execute

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

type ApiReactorsGetByIdRequest

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

func (ApiReactorsGetByIdRequest) Execute

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 ApiReactorsReactRequest

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

func (ApiReactorsReactRequest) Execute

func (ApiReactorsReactRequest) ReactRequest

func (r ApiReactorsReactRequest) ReactRequest(reactRequest ReactRequest) ApiReactorsReactRequest

type ApiReactorsUpdateRequest

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

func (ApiReactorsUpdateRequest) Execute

func (ApiReactorsUpdateRequest) UpdateReactorRequest

func (r ApiReactorsUpdateRequest) UpdateReactorRequest(updateReactorRequest UpdateReactorRequest) ApiReactorsUpdateRequest

type Application

type Application struct {
	Id          *string        `json:"id,omitempty"`
	TenantId    *string        `json:"tenant_id,omitempty"`
	Name        NullableString `json:"name,omitempty"`
	Key         NullableString `json:"key,omitempty"`
	Type        NullableString `json:"type,omitempty"`
	CreatedBy   NullableString `json:"created_by,omitempty"`
	CreatedAt   NullableTime   `json:"created_at,omitempty"`
	ModifiedBy  NullableString `json:"modified_by,omitempty"`
	ModifiedAt  NullableTime   `json:"modified_at,omitempty"`
	Permissions []string       `json:"permissions,omitempty"`
}

Application struct for Application

func NewApplication

func NewApplication() *Application

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

func NewApplicationWithDefaults

func NewApplicationWithDefaults() *Application

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

func (*Application) GetCreatedAt

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

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

func (*Application) GetCreatedAtOk

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

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

func (*Application) GetCreatedBy

func (o *Application) GetCreatedBy() string

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

func (*Application) GetCreatedByOk

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

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

func (*Application) GetId

func (o *Application) GetId() string

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

func (*Application) GetIdOk

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

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

func (*Application) GetKey

func (o *Application) GetKey() string

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

func (*Application) GetKeyOk

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

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

func (*Application) GetModifiedAt

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

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

func (*Application) GetModifiedAtOk

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

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

func (*Application) GetModifiedBy

func (o *Application) GetModifiedBy() string

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

func (*Application) GetModifiedByOk

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

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

func (*Application) GetName

func (o *Application) GetName() string

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

func (*Application) GetNameOk

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

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

func (*Application) GetPermissions

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

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

func (*Application) GetPermissionsOk

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

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

func (*Application) GetTenantId

func (o *Application) GetTenantId() string

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

func (*Application) GetTenantIdOk

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

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

func (*Application) GetType

func (o *Application) GetType() string

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

func (*Application) GetTypeOk

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

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

func (*Application) HasCreatedAt

func (o *Application) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Application) HasCreatedBy

func (o *Application) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Application) HasId

func (o *Application) HasId() bool

HasId returns a boolean if a field has been set.

func (*Application) HasKey

func (o *Application) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Application) HasModifiedAt

func (o *Application) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*Application) HasModifiedBy

func (o *Application) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*Application) HasName

func (o *Application) HasName() bool

HasName returns a boolean if a field has been set.

func (*Application) HasPermissions

func (o *Application) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*Application) HasTenantId

func (o *Application) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Application) HasType

func (o *Application) HasType() bool

HasType returns a boolean if a field has been set.

func (Application) MarshalJSON

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

func (*Application) SetCreatedAt

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

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

func (*Application) SetCreatedAtNil

func (o *Application) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Application) SetCreatedBy

func (o *Application) SetCreatedBy(v string)

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

func (*Application) SetCreatedByNil

func (o *Application) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Application) SetId

func (o *Application) SetId(v string)

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

func (*Application) SetKey

func (o *Application) SetKey(v string)

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

func (*Application) SetKeyNil

func (o *Application) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*Application) SetModifiedAt

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

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

func (*Application) SetModifiedAtNil

func (o *Application) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*Application) SetModifiedBy

func (o *Application) SetModifiedBy(v string)

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

func (*Application) SetModifiedByNil

func (o *Application) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Application) SetName

func (o *Application) SetName(v string)

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

func (*Application) SetNameNil

func (o *Application) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Application) SetPermissions

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

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

func (*Application) SetTenantId

func (o *Application) SetTenantId(v string)

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

func (*Application) SetType

func (o *Application) SetType(v string)

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

func (*Application) SetTypeNil

func (o *Application) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*Application) UnsetCreatedAt

func (o *Application) UnsetCreatedAt()

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

func (*Application) UnsetCreatedBy

func (o *Application) UnsetCreatedBy()

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

func (*Application) UnsetKey

func (o *Application) UnsetKey()

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

func (*Application) UnsetModifiedAt

func (o *Application) UnsetModifiedAt()

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

func (*Application) UnsetModifiedBy

func (o *Application) UnsetModifiedBy()

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

func (*Application) UnsetName

func (o *Application) UnsetName()

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

func (*Application) UnsetType

func (o *Application) UnsetType()

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

type ApplicationPaginatedList

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

ApplicationPaginatedList struct for ApplicationPaginatedList

func NewApplicationPaginatedList

func NewApplicationPaginatedList() *ApplicationPaginatedList

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

func NewApplicationPaginatedListWithDefaults

func NewApplicationPaginatedListWithDefaults() *ApplicationPaginatedList

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

func (*ApplicationPaginatedList) GetData

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

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

func (*ApplicationPaginatedList) GetDataOk

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

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

func (*ApplicationPaginatedList) GetPagination

func (o *ApplicationPaginatedList) GetPagination() Pagination

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

func (*ApplicationPaginatedList) GetPaginationOk

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

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

func (*ApplicationPaginatedList) HasData

func (o *ApplicationPaginatedList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ApplicationPaginatedList) HasPagination

func (o *ApplicationPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (ApplicationPaginatedList) MarshalJSON

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

func (*ApplicationPaginatedList) SetData

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

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

func (*ApplicationPaginatedList) SetPagination

func (o *ApplicationPaginatedList) SetPagination(v Pagination)

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

type ApplicationsApiService

type ApplicationsApiService service

ApplicationsApiService ApplicationsApi service

func (*ApplicationsApiService) ApplicationsCreate

ApplicationsCreate Method for ApplicationsCreate

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

func (*ApplicationsApiService) ApplicationsCreateExecute

func (a *ApplicationsApiService) ApplicationsCreateExecute(r ApiApplicationsCreateRequest) (*Application, *http.Response, error)

Execute executes the request

@return Application

func (*ApplicationsApiService) ApplicationsDelete

ApplicationsDelete Method for ApplicationsDelete

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

func (*ApplicationsApiService) ApplicationsDeleteExecute

func (a *ApplicationsApiService) ApplicationsDeleteExecute(r ApiApplicationsDeleteRequest) (*http.Response, error)

Execute executes the request

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

ApplicationsGetById Method for ApplicationsGetById

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

func (*ApplicationsApiService) ApplicationsGetByIdExecute

func (a *ApplicationsApiService) ApplicationsGetByIdExecute(r ApiApplicationsGetByIdRequest) (*Application, *http.Response, error)

Execute executes the request

@return Application

func (*ApplicationsApiService) ApplicationsGetByKey

ApplicationsGetByKey Method for ApplicationsGetByKey

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

func (*ApplicationsApiService) ApplicationsGetByKeyExecute

func (a *ApplicationsApiService) ApplicationsGetByKeyExecute(r ApiApplicationsGetByKeyRequest) (*Application, *http.Response, error)

Execute executes the request

@return Application

func (*ApplicationsApiService) ApplicationsGetExecute

Execute executes the request

@return ApplicationPaginatedList

func (*ApplicationsApiService) ApplicationsRegenerateKey

ApplicationsRegenerateKey Method for ApplicationsRegenerateKey

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

func (*ApplicationsApiService) ApplicationsRegenerateKeyExecute

func (a *ApplicationsApiService) ApplicationsRegenerateKeyExecute(r ApiApplicationsRegenerateKeyRequest) (*Application, *http.Response, error)

Execute executes the request

@return Application

func (*ApplicationsApiService) ApplicationsUpdate

ApplicationsUpdate Method for ApplicationsUpdate

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

func (*ApplicationsApiService) ApplicationsUpdateExecute

func (a *ApplicationsApiService) ApplicationsUpdateExecute(r ApiApplicationsUpdateRequest) (*Application, *http.Response, error)

Execute executes the request

@return Application

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 CreateApplicationRequest

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

CreateApplicationRequest struct for CreateApplicationRequest

func NewCreateApplicationRequest

func NewCreateApplicationRequest(name string, type_ string) *CreateApplicationRequest

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

func NewCreateApplicationRequestWithDefaults

func NewCreateApplicationRequestWithDefaults() *CreateApplicationRequest

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

func (*CreateApplicationRequest) GetName

func (o *CreateApplicationRequest) GetName() string

GetName returns the Name field value

func (*CreateApplicationRequest) GetNameOk

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

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

func (*CreateApplicationRequest) GetPermissions

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

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

func (*CreateApplicationRequest) GetPermissionsOk

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

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

func (*CreateApplicationRequest) GetType

func (o *CreateApplicationRequest) GetType() string

GetType returns the Type field value

func (*CreateApplicationRequest) GetTypeOk

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

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

func (*CreateApplicationRequest) HasPermissions

func (o *CreateApplicationRequest) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (CreateApplicationRequest) MarshalJSON

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

func (*CreateApplicationRequest) SetName

func (o *CreateApplicationRequest) SetName(v string)

SetName sets field value

func (*CreateApplicationRequest) SetPermissions

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

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

func (*CreateApplicationRequest) SetType

func (o *CreateApplicationRequest) SetType(v string)

SetType sets field value

type CreateProxyRequest

type CreateProxyRequest struct {
	Name             string       `json:"name"`
	DestinationUrl   string       `json:"destination_url"`
	RequestReactorId string       `json:"request_reactor_id"`
	RequireAuth      NullableBool `json:"require_auth,omitempty"`
}

CreateProxyRequest struct for CreateProxyRequest

func NewCreateProxyRequest

func NewCreateProxyRequest(name string, destinationUrl string, requestReactorId string) *CreateProxyRequest

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

func NewCreateProxyRequestWithDefaults

func NewCreateProxyRequestWithDefaults() *CreateProxyRequest

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

func (*CreateProxyRequest) GetDestinationUrl

func (o *CreateProxyRequest) GetDestinationUrl() string

GetDestinationUrl returns the DestinationUrl field value

func (*CreateProxyRequest) GetDestinationUrlOk

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

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

func (*CreateProxyRequest) GetName

func (o *CreateProxyRequest) GetName() string

GetName returns the Name field value

func (*CreateProxyRequest) GetNameOk

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

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

func (*CreateProxyRequest) GetRequestReactorId

func (o *CreateProxyRequest) GetRequestReactorId() string

GetRequestReactorId returns the RequestReactorId field value

func (*CreateProxyRequest) GetRequestReactorIdOk

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

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

func (*CreateProxyRequest) GetRequireAuth

func (o *CreateProxyRequest) GetRequireAuth() bool

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

func (*CreateProxyRequest) GetRequireAuthOk

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

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

func (*CreateProxyRequest) HasRequireAuth

func (o *CreateProxyRequest) HasRequireAuth() bool

HasRequireAuth returns a boolean if a field has been set.

func (CreateProxyRequest) MarshalJSON

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

func (*CreateProxyRequest) SetDestinationUrl

func (o *CreateProxyRequest) SetDestinationUrl(v string)

SetDestinationUrl sets field value

func (*CreateProxyRequest) SetName

func (o *CreateProxyRequest) SetName(v string)

SetName sets field value

func (*CreateProxyRequest) SetRequestReactorId

func (o *CreateProxyRequest) SetRequestReactorId(v string)

SetRequestReactorId sets field value

func (*CreateProxyRequest) SetRequireAuth

func (o *CreateProxyRequest) SetRequireAuth(v bool)

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

func (*CreateProxyRequest) SetRequireAuthNil

func (o *CreateProxyRequest) SetRequireAuthNil()

SetRequireAuthNil sets the value for RequireAuth to be an explicit nil

func (*CreateProxyRequest) UnsetRequireAuth

func (o *CreateProxyRequest) UnsetRequireAuth()

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

type CreateReactorFormulaRequest

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

CreateReactorFormulaRequest struct for CreateReactorFormulaRequest

func NewCreateReactorFormulaRequest

func NewCreateReactorFormulaRequest(type_ string, name string) *CreateReactorFormulaRequest

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

func NewCreateReactorFormulaRequestWithDefaults

func NewCreateReactorFormulaRequestWithDefaults() *CreateReactorFormulaRequest

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

func (*CreateReactorFormulaRequest) GetCode

func (o *CreateReactorFormulaRequest) GetCode() string

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

func (*CreateReactorFormulaRequest) GetCodeOk

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

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

func (*CreateReactorFormulaRequest) GetConfiguration

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

func (*CreateReactorFormulaRequest) GetConfigurationOk

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

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

func (*CreateReactorFormulaRequest) GetDescription

func (o *CreateReactorFormulaRequest) GetDescription() string

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

func (*CreateReactorFormulaRequest) GetDescriptionOk

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

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

func (*CreateReactorFormulaRequest) GetIcon

func (o *CreateReactorFormulaRequest) GetIcon() string

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

func (*CreateReactorFormulaRequest) GetIconOk

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

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

func (*CreateReactorFormulaRequest) GetId

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

func (*CreateReactorFormulaRequest) GetIdOk

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

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

func (*CreateReactorFormulaRequest) GetName

func (o *CreateReactorFormulaRequest) GetName() string

GetName returns the Name field value

func (*CreateReactorFormulaRequest) GetNameOk

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

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

func (*CreateReactorFormulaRequest) GetRequestParameters

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

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

func (*CreateReactorFormulaRequest) GetRequestParametersOk

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

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

func (*CreateReactorFormulaRequest) GetType

func (o *CreateReactorFormulaRequest) GetType() string

GetType returns the Type field value

func (*CreateReactorFormulaRequest) GetTypeOk

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

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

func (*CreateReactorFormulaRequest) HasCode

func (o *CreateReactorFormulaRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*CreateReactorFormulaRequest) HasConfiguration

func (o *CreateReactorFormulaRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*CreateReactorFormulaRequest) HasDescription

func (o *CreateReactorFormulaRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateReactorFormulaRequest) HasIcon

func (o *CreateReactorFormulaRequest) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*CreateReactorFormulaRequest) HasId

func (o *CreateReactorFormulaRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*CreateReactorFormulaRequest) HasRequestParameters

func (o *CreateReactorFormulaRequest) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field has been set.

func (CreateReactorFormulaRequest) MarshalJSON

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

func (*CreateReactorFormulaRequest) SetCode

func (o *CreateReactorFormulaRequest) SetCode(v string)

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

func (*CreateReactorFormulaRequest) SetCodeNil

func (o *CreateReactorFormulaRequest) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*CreateReactorFormulaRequest) SetConfiguration

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

func (*CreateReactorFormulaRequest) SetDescription

func (o *CreateReactorFormulaRequest) SetDescription(v string)

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

func (*CreateReactorFormulaRequest) SetDescriptionNil

func (o *CreateReactorFormulaRequest) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*CreateReactorFormulaRequest) SetIcon

func (o *CreateReactorFormulaRequest) SetIcon(v string)

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

func (*CreateReactorFormulaRequest) SetIconNil

func (o *CreateReactorFormulaRequest) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*CreateReactorFormulaRequest) SetId

func (o *CreateReactorFormulaRequest) SetId(v string)

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

func (*CreateReactorFormulaRequest) SetIdNil

func (o *CreateReactorFormulaRequest) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*CreateReactorFormulaRequest) SetName

func (o *CreateReactorFormulaRequest) SetName(v string)

SetName sets field value

func (*CreateReactorFormulaRequest) SetRequestParameters

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

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

func (*CreateReactorFormulaRequest) SetType

func (o *CreateReactorFormulaRequest) SetType(v string)

SetType sets field value

func (*CreateReactorFormulaRequest) UnsetCode

func (o *CreateReactorFormulaRequest) UnsetCode()

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

func (*CreateReactorFormulaRequest) UnsetDescription

func (o *CreateReactorFormulaRequest) UnsetDescription()

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

func (*CreateReactorFormulaRequest) UnsetIcon

func (o *CreateReactorFormulaRequest) UnsetIcon()

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

func (*CreateReactorFormulaRequest) UnsetId

func (o *CreateReactorFormulaRequest) UnsetId()

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

type CreateReactorRequest

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

CreateReactorRequest struct for CreateReactorRequest

func NewCreateReactorRequest

func NewCreateReactorRequest(name string) *CreateReactorRequest

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

func NewCreateReactorRequestWithDefaults

func NewCreateReactorRequestWithDefaults() *CreateReactorRequest

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

func (*CreateReactorRequest) GetApplication

func (o *CreateReactorRequest) GetApplication() Application

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

func (*CreateReactorRequest) GetApplicationOk

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

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

func (*CreateReactorRequest) GetConfiguration

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

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

func (*CreateReactorRequest) GetConfigurationOk

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

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

func (*CreateReactorRequest) GetFormula

func (o *CreateReactorRequest) GetFormula() ReactorFormula

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

func (*CreateReactorRequest) GetFormulaOk

func (o *CreateReactorRequest) GetFormulaOk() (*ReactorFormula, bool)

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

func (*CreateReactorRequest) GetName

func (o *CreateReactorRequest) GetName() string

GetName returns the Name field value

func (*CreateReactorRequest) GetNameOk

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

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

func (*CreateReactorRequest) HasApplication

func (o *CreateReactorRequest) HasApplication() bool

HasApplication returns a boolean if a field has been set.

func (*CreateReactorRequest) HasConfiguration

func (o *CreateReactorRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*CreateReactorRequest) HasFormula

func (o *CreateReactorRequest) HasFormula() bool

HasFormula returns a boolean if a field has been set.

func (CreateReactorRequest) MarshalJSON

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

func (*CreateReactorRequest) SetApplication

func (o *CreateReactorRequest) SetApplication(v Application)

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

func (*CreateReactorRequest) SetConfiguration

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

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

func (*CreateReactorRequest) SetFormula

func (o *CreateReactorRequest) SetFormula(v ReactorFormula)

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

func (*CreateReactorRequest) SetName

func (o *CreateReactorRequest) SetName(v string)

SetName sets field value

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 GetProxies

type GetProxies struct {
	Ids  []string       `json:"ids,omitempty"`
	Name NullableString `json:"name,omitempty"`
	Page NullableInt32  `json:"page,omitempty"`
	Size NullableInt32  `json:"size,omitempty"`
}

GetProxies struct for GetProxies

func NewGetProxies

func NewGetProxies() *GetProxies

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

func NewGetProxiesWithDefaults

func NewGetProxiesWithDefaults() *GetProxies

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

func (*GetProxies) GetIds

func (o *GetProxies) GetIds() []string

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

func (*GetProxies) GetIdsOk

func (o *GetProxies) GetIdsOk() ([]string, bool)

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

func (*GetProxies) GetName

func (o *GetProxies) GetName() string

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

func (*GetProxies) GetNameOk

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

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

func (*GetProxies) GetPage

func (o *GetProxies) GetPage() int32

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

func (*GetProxies) GetPageOk

func (o *GetProxies) GetPageOk() (*int32, bool)

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

func (*GetProxies) GetSize

func (o *GetProxies) GetSize() int32

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

func (*GetProxies) GetSizeOk

func (o *GetProxies) GetSizeOk() (*int32, bool)

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

func (*GetProxies) HasIds

func (o *GetProxies) HasIds() bool

HasIds returns a boolean if a field has been set.

func (*GetProxies) HasName

func (o *GetProxies) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetProxies) HasPage

func (o *GetProxies) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*GetProxies) HasSize

func (o *GetProxies) HasSize() bool

HasSize returns a boolean if a field has been set.

func (GetProxies) MarshalJSON

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

func (*GetProxies) SetIds

func (o *GetProxies) SetIds(v []string)

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*GetProxies) SetName

func (o *GetProxies) SetName(v string)

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

func (*GetProxies) SetNameNil

func (o *GetProxies) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GetProxies) SetPage

func (o *GetProxies) SetPage(v int32)

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

func (*GetProxies) SetPageNil

func (o *GetProxies) SetPageNil()

SetPageNil sets the value for Page to be an explicit nil

func (*GetProxies) SetSize

func (o *GetProxies) SetSize(v int32)

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

func (*GetProxies) SetSizeNil

func (o *GetProxies) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*GetProxies) UnsetName

func (o *GetProxies) UnsetName()

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

func (*GetProxies) UnsetPage

func (o *GetProxies) UnsetPage()

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

func (*GetProxies) UnsetSize

func (o *GetProxies) UnsetSize()

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

type NullableApplication

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

func NewNullableApplication

func NewNullableApplication(val *Application) *NullableApplication

func (NullableApplication) Get

func (NullableApplication) IsSet

func (v NullableApplication) IsSet() bool

func (NullableApplication) MarshalJSON

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

func (*NullableApplication) Set

func (v *NullableApplication) Set(val *Application)

func (*NullableApplication) UnmarshalJSON

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

func (*NullableApplication) Unset

func (v *NullableApplication) Unset()

type NullableApplicationPaginatedList

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

func (NullableApplicationPaginatedList) Get

func (NullableApplicationPaginatedList) IsSet

func (NullableApplicationPaginatedList) MarshalJSON

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

func (*NullableApplicationPaginatedList) Set

func (*NullableApplicationPaginatedList) UnmarshalJSON

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

func (*NullableApplicationPaginatedList) Unset

type 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 NullableCreateApplicationRequest

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

func (NullableCreateApplicationRequest) Get

func (NullableCreateApplicationRequest) IsSet

func (NullableCreateApplicationRequest) MarshalJSON

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

func (*NullableCreateApplicationRequest) Set

func (*NullableCreateApplicationRequest) UnmarshalJSON

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

func (*NullableCreateApplicationRequest) Unset

type NullableCreateProxyRequest

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

func NewNullableCreateProxyRequest

func NewNullableCreateProxyRequest(val *CreateProxyRequest) *NullableCreateProxyRequest

func (NullableCreateProxyRequest) Get

func (NullableCreateProxyRequest) IsSet

func (v NullableCreateProxyRequest) IsSet() bool

func (NullableCreateProxyRequest) MarshalJSON

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

func (*NullableCreateProxyRequest) Set

func (*NullableCreateProxyRequest) UnmarshalJSON

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

func (*NullableCreateProxyRequest) Unset

func (v *NullableCreateProxyRequest) Unset()

type NullableCreateReactorFormulaRequest

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

func (NullableCreateReactorFormulaRequest) Get

func (NullableCreateReactorFormulaRequest) IsSet

func (NullableCreateReactorFormulaRequest) MarshalJSON

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

func (*NullableCreateReactorFormulaRequest) Set

func (*NullableCreateReactorFormulaRequest) UnmarshalJSON

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

func (*NullableCreateReactorFormulaRequest) Unset

type NullableCreateReactorRequest

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

func NewNullableCreateReactorRequest

func NewNullableCreateReactorRequest(val *CreateReactorRequest) *NullableCreateReactorRequest

func (NullableCreateReactorRequest) Get

func (NullableCreateReactorRequest) IsSet

func (NullableCreateReactorRequest) MarshalJSON

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

func (*NullableCreateReactorRequest) Set

func (*NullableCreateReactorRequest) UnmarshalJSON

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

func (*NullableCreateReactorRequest) Unset

func (v *NullableCreateReactorRequest) Unset()

type 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 NullableGetProxies

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

func NewNullableGetProxies

func NewNullableGetProxies(val *GetProxies) *NullableGetProxies

func (NullableGetProxies) Get

func (v NullableGetProxies) Get() *GetProxies

func (NullableGetProxies) IsSet

func (v NullableGetProxies) IsSet() bool

func (NullableGetProxies) MarshalJSON

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

func (*NullableGetProxies) Set

func (v *NullableGetProxies) Set(val *GetProxies)

func (*NullableGetProxies) UnmarshalJSON

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

func (*NullableGetProxies) Unset

func (v *NullableGetProxies) Unset()

type 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 NullableProxy

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

func NewNullableProxy

func NewNullableProxy(val *Proxy) *NullableProxy

func (NullableProxy) Get

func (v NullableProxy) Get() *Proxy

func (NullableProxy) IsSet

func (v NullableProxy) IsSet() bool

func (NullableProxy) MarshalJSON

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

func (*NullableProxy) Set

func (v *NullableProxy) Set(val *Proxy)

func (*NullableProxy) UnmarshalJSON

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

func (*NullableProxy) Unset

func (v *NullableProxy) Unset()

type NullableProxyPaginatedList

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

func NewNullableProxyPaginatedList

func NewNullableProxyPaginatedList(val *ProxyPaginatedList) *NullableProxyPaginatedList

func (NullableProxyPaginatedList) Get

func (NullableProxyPaginatedList) IsSet

func (v NullableProxyPaginatedList) IsSet() bool

func (NullableProxyPaginatedList) MarshalJSON

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

func (*NullableProxyPaginatedList) Set

func (*NullableProxyPaginatedList) UnmarshalJSON

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

func (*NullableProxyPaginatedList) Unset

func (v *NullableProxyPaginatedList) Unset()

type NullableReactRequest

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

func NewNullableReactRequest

func NewNullableReactRequest(val *ReactRequest) *NullableReactRequest

func (NullableReactRequest) Get

func (NullableReactRequest) IsSet

func (v NullableReactRequest) IsSet() bool

func (NullableReactRequest) MarshalJSON

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

func (*NullableReactRequest) Set

func (v *NullableReactRequest) Set(val *ReactRequest)

func (*NullableReactRequest) UnmarshalJSON

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

func (*NullableReactRequest) Unset

func (v *NullableReactRequest) Unset()

type NullableReactResponse

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

func NewNullableReactResponse

func NewNullableReactResponse(val *ReactResponse) *NullableReactResponse

func (NullableReactResponse) Get

func (NullableReactResponse) IsSet

func (v NullableReactResponse) IsSet() bool

func (NullableReactResponse) MarshalJSON

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

func (*NullableReactResponse) Set

func (v *NullableReactResponse) Set(val *ReactResponse)

func (*NullableReactResponse) UnmarshalJSON

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

func (*NullableReactResponse) Unset

func (v *NullableReactResponse) Unset()

type NullableReactor

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

func NewNullableReactor

func NewNullableReactor(val *Reactor) *NullableReactor

func (NullableReactor) Get

func (v NullableReactor) Get() *Reactor

func (NullableReactor) IsSet

func (v NullableReactor) IsSet() bool

func (NullableReactor) MarshalJSON

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

func (*NullableReactor) Set

func (v *NullableReactor) Set(val *Reactor)

func (*NullableReactor) UnmarshalJSON

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

func (*NullableReactor) Unset

func (v *NullableReactor) Unset()

type NullableReactorFormula

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

func NewNullableReactorFormula

func NewNullableReactorFormula(val *ReactorFormula) *NullableReactorFormula

func (NullableReactorFormula) Get

func (NullableReactorFormula) IsSet

func (v NullableReactorFormula) IsSet() bool

func (NullableReactorFormula) MarshalJSON

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

func (*NullableReactorFormula) Set

func (*NullableReactorFormula) UnmarshalJSON

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

func (*NullableReactorFormula) Unset

func (v *NullableReactorFormula) Unset()

type NullableReactorFormulaConfiguration

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

func (NullableReactorFormulaConfiguration) Get

func (NullableReactorFormulaConfiguration) IsSet

func (NullableReactorFormulaConfiguration) MarshalJSON

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

func (*NullableReactorFormulaConfiguration) Set

func (*NullableReactorFormulaConfiguration) UnmarshalJSON

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

func (*NullableReactorFormulaConfiguration) Unset

type NullableReactorFormulaPaginatedList

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

func (NullableReactorFormulaPaginatedList) Get

func (NullableReactorFormulaPaginatedList) IsSet

func (NullableReactorFormulaPaginatedList) MarshalJSON

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

func (*NullableReactorFormulaPaginatedList) Set

func (*NullableReactorFormulaPaginatedList) UnmarshalJSON

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

func (*NullableReactorFormulaPaginatedList) Unset

type NullableReactorFormulaRequestParameter

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

func (NullableReactorFormulaRequestParameter) Get

func (NullableReactorFormulaRequestParameter) IsSet

func (NullableReactorFormulaRequestParameter) MarshalJSON

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

func (*NullableReactorFormulaRequestParameter) Set

func (*NullableReactorFormulaRequestParameter) UnmarshalJSON

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

func (*NullableReactorFormulaRequestParameter) Unset

type NullableReactorPaginatedList

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

func NewNullableReactorPaginatedList

func NewNullableReactorPaginatedList(val *ReactorPaginatedList) *NullableReactorPaginatedList

func (NullableReactorPaginatedList) Get

func (NullableReactorPaginatedList) IsSet

func (NullableReactorPaginatedList) MarshalJSON

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

func (*NullableReactorPaginatedList) Set

func (*NullableReactorPaginatedList) UnmarshalJSON

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

func (*NullableReactorPaginatedList) Unset

func (v *NullableReactorPaginatedList) Unset()

type 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 NullableUpdateApplicationRequest

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

func (NullableUpdateApplicationRequest) Get

func (NullableUpdateApplicationRequest) IsSet

func (NullableUpdateApplicationRequest) MarshalJSON

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

func (*NullableUpdateApplicationRequest) Set

func (*NullableUpdateApplicationRequest) UnmarshalJSON

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

func (*NullableUpdateApplicationRequest) Unset

type NullableUpdateProxyRequest

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

func NewNullableUpdateProxyRequest

func NewNullableUpdateProxyRequest(val *UpdateProxyRequest) *NullableUpdateProxyRequest

func (NullableUpdateProxyRequest) Get

func (NullableUpdateProxyRequest) IsSet

func (v NullableUpdateProxyRequest) IsSet() bool

func (NullableUpdateProxyRequest) MarshalJSON

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

func (*NullableUpdateProxyRequest) Set

func (*NullableUpdateProxyRequest) UnmarshalJSON

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

func (*NullableUpdateProxyRequest) Unset

func (v *NullableUpdateProxyRequest) Unset()

type NullableUpdateReactorFormulaRequest

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

func (NullableUpdateReactorFormulaRequest) Get

func (NullableUpdateReactorFormulaRequest) IsSet

func (NullableUpdateReactorFormulaRequest) MarshalJSON

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

func (*NullableUpdateReactorFormulaRequest) Set

func (*NullableUpdateReactorFormulaRequest) UnmarshalJSON

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

func (*NullableUpdateReactorFormulaRequest) Unset

type NullableUpdateReactorRequest

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

func NewNullableUpdateReactorRequest

func NewNullableUpdateReactorRequest(val *UpdateReactorRequest) *NullableUpdateReactorRequest

func (NullableUpdateReactorRequest) Get

func (NullableUpdateReactorRequest) IsSet

func (NullableUpdateReactorRequest) MarshalJSON

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

func (*NullableUpdateReactorRequest) Set

func (*NullableUpdateReactorRequest) UnmarshalJSON

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

func (*NullableUpdateReactorRequest) Unset

func (v *NullableUpdateReactorRequest) Unset()

type 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 ProxiesApiService

type ProxiesApiService service

ProxiesApiService ProxiesApi service

func (*ProxiesApiService) ProxiesCreate

ProxiesCreate Method for ProxiesCreate

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

func (*ProxiesApiService) ProxiesCreateExecute

func (a *ProxiesApiService) ProxiesCreateExecute(r ApiProxiesCreateRequest) (*Proxy, *http.Response, error)

Execute executes the request

@return Proxy

func (*ProxiesApiService) ProxiesDelete

ProxiesDelete Method for ProxiesDelete

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

func (*ProxiesApiService) ProxiesDeleteExecute

func (a *ProxiesApiService) ProxiesDeleteExecute(r ApiProxiesDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ProxiesApiService) ProxiesGet

ProxiesGet Method for ProxiesGet

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

func (*ProxiesApiService) ProxiesGetById

ProxiesGetById Method for ProxiesGetById

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

func (*ProxiesApiService) ProxiesGetByIdExecute

func (a *ProxiesApiService) ProxiesGetByIdExecute(r ApiProxiesGetByIdRequest) (*Proxy, *http.Response, error)

Execute executes the request

@return Proxy

func (*ProxiesApiService) ProxiesGetExecute

Execute executes the request

@return ProxyPaginatedList

func (*ProxiesApiService) ProxiesUpdate

ProxiesUpdate Method for ProxiesUpdate

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

func (*ProxiesApiService) ProxiesUpdateExecute

func (a *ProxiesApiService) ProxiesUpdateExecute(r ApiProxiesUpdateRequest) (*Proxy, *http.Response, error)

Execute executes the request

@return Proxy

type Proxy

type Proxy struct {
	Id               *string        `json:"id,omitempty"`
	Key              NullableString `json:"key,omitempty"`
	TenantId         *string        `json:"tenant_id,omitempty"`
	Name             NullableString `json:"name,omitempty"`
	DestinationUrl   NullableString `json:"destination_url,omitempty"`
	RequestReactorId *string        `json:"request_reactor_id,omitempty"`
	RequireAuth      *bool          `json:"require_auth,omitempty"`
	CreatedBy        NullableString `json:"created_by,omitempty"`
	CreatedAt        NullableTime   `json:"created_at,omitempty"`
	ModifiedBy       NullableString `json:"modified_by,omitempty"`
	ModifiedAt       NullableTime   `json:"modified_at,omitempty"`
}

Proxy struct for Proxy

func NewProxy

func NewProxy() *Proxy

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

func NewProxyWithDefaults

func NewProxyWithDefaults() *Proxy

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

func (*Proxy) GetCreatedAt

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

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

func (*Proxy) GetCreatedAtOk

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

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

func (*Proxy) GetCreatedBy

func (o *Proxy) GetCreatedBy() string

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

func (*Proxy) GetCreatedByOk

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

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

func (*Proxy) GetDestinationUrl

func (o *Proxy) GetDestinationUrl() string

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

func (*Proxy) GetDestinationUrlOk

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

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

func (*Proxy) GetId

func (o *Proxy) GetId() string

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

func (*Proxy) GetIdOk

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

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

func (*Proxy) GetKey

func (o *Proxy) GetKey() string

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

func (*Proxy) GetKeyOk

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

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

func (*Proxy) GetModifiedAt

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

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

func (*Proxy) GetModifiedAtOk

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

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

func (*Proxy) GetModifiedBy

func (o *Proxy) GetModifiedBy() string

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

func (*Proxy) GetModifiedByOk

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

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

func (*Proxy) GetName

func (o *Proxy) GetName() string

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

func (*Proxy) GetNameOk

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

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

func (*Proxy) GetRequestReactorId

func (o *Proxy) GetRequestReactorId() string

GetRequestReactorId returns the RequestReactorId field value if set, zero value otherwise.

func (*Proxy) GetRequestReactorIdOk

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

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

func (*Proxy) GetRequireAuth

func (o *Proxy) GetRequireAuth() bool

GetRequireAuth returns the RequireAuth field value if set, zero value otherwise.

func (*Proxy) GetRequireAuthOk

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

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

func (*Proxy) GetTenantId

func (o *Proxy) GetTenantId() string

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

func (*Proxy) GetTenantIdOk

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

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

func (*Proxy) HasCreatedAt

func (o *Proxy) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Proxy) HasCreatedBy

func (o *Proxy) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Proxy) HasDestinationUrl

func (o *Proxy) HasDestinationUrl() bool

HasDestinationUrl returns a boolean if a field has been set.

func (*Proxy) HasId

func (o *Proxy) HasId() bool

HasId returns a boolean if a field has been set.

func (*Proxy) HasKey

func (o *Proxy) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Proxy) HasModifiedAt

func (o *Proxy) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*Proxy) HasModifiedBy

func (o *Proxy) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*Proxy) HasName

func (o *Proxy) HasName() bool

HasName returns a boolean if a field has been set.

func (*Proxy) HasRequestReactorId

func (o *Proxy) HasRequestReactorId() bool

HasRequestReactorId returns a boolean if a field has been set.

func (*Proxy) HasRequireAuth

func (o *Proxy) HasRequireAuth() bool

HasRequireAuth returns a boolean if a field has been set.

func (*Proxy) HasTenantId

func (o *Proxy) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (Proxy) MarshalJSON

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

func (*Proxy) SetCreatedAt

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

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

func (*Proxy) SetCreatedAtNil

func (o *Proxy) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Proxy) SetCreatedBy

func (o *Proxy) SetCreatedBy(v string)

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

func (*Proxy) SetCreatedByNil

func (o *Proxy) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Proxy) SetDestinationUrl

func (o *Proxy) SetDestinationUrl(v string)

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

func (*Proxy) SetDestinationUrlNil

func (o *Proxy) SetDestinationUrlNil()

SetDestinationUrlNil sets the value for DestinationUrl to be an explicit nil

func (*Proxy) SetId

func (o *Proxy) SetId(v string)

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

func (*Proxy) SetKey

func (o *Proxy) SetKey(v string)

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

func (*Proxy) SetKeyNil

func (o *Proxy) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*Proxy) SetModifiedAt

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

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

func (*Proxy) SetModifiedAtNil

func (o *Proxy) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*Proxy) SetModifiedBy

func (o *Proxy) SetModifiedBy(v string)

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

func (*Proxy) SetModifiedByNil

func (o *Proxy) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Proxy) SetName

func (o *Proxy) SetName(v string)

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

func (*Proxy) SetNameNil

func (o *Proxy) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Proxy) SetRequestReactorId

func (o *Proxy) SetRequestReactorId(v string)

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

func (*Proxy) SetRequireAuth

func (o *Proxy) SetRequireAuth(v bool)

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

func (*Proxy) SetTenantId

func (o *Proxy) SetTenantId(v string)

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

func (*Proxy) UnsetCreatedAt

func (o *Proxy) UnsetCreatedAt()

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

func (*Proxy) UnsetCreatedBy

func (o *Proxy) UnsetCreatedBy()

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

func (*Proxy) UnsetDestinationUrl

func (o *Proxy) UnsetDestinationUrl()

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

func (*Proxy) UnsetKey

func (o *Proxy) UnsetKey()

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

func (*Proxy) UnsetModifiedAt

func (o *Proxy) UnsetModifiedAt()

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

func (*Proxy) UnsetModifiedBy

func (o *Proxy) UnsetModifiedBy()

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

func (*Proxy) UnsetName

func (o *Proxy) UnsetName()

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

type ProxyPaginatedList

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

ProxyPaginatedList struct for ProxyPaginatedList

func NewProxyPaginatedList

func NewProxyPaginatedList() *ProxyPaginatedList

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

func NewProxyPaginatedListWithDefaults

func NewProxyPaginatedListWithDefaults() *ProxyPaginatedList

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

func (*ProxyPaginatedList) GetData

func (o *ProxyPaginatedList) GetData() []Proxy

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

func (*ProxyPaginatedList) GetDataOk

func (o *ProxyPaginatedList) GetDataOk() ([]Proxy, bool)

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

func (*ProxyPaginatedList) GetPagination

func (o *ProxyPaginatedList) GetPagination() Pagination

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

func (*ProxyPaginatedList) GetPaginationOk

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

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

func (*ProxyPaginatedList) HasData

func (o *ProxyPaginatedList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ProxyPaginatedList) HasPagination

func (o *ProxyPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (ProxyPaginatedList) MarshalJSON

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

func (*ProxyPaginatedList) SetData

func (o *ProxyPaginatedList) SetData(v []Proxy)

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

func (*ProxyPaginatedList) SetPagination

func (o *ProxyPaginatedList) SetPagination(v Pagination)

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

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 Reactor

type Reactor struct {
	Id            *string           `json:"id,omitempty"`
	TenantId      *string           `json:"tenant_id,omitempty"`
	Name          NullableString    `json:"name,omitempty"`
	Formula       *ReactorFormula   `json:"formula,omitempty"`
	Application   *Application      `json:"application,omitempty"`
	CreatedBy     NullableString    `json:"created_by,omitempty"`
	CreatedAt     NullableTime      `json:"created_at,omitempty"`
	ModifiedBy    NullableString    `json:"modified_by,omitempty"`
	ModifiedAt    NullableTime      `json:"modified_at,omitempty"`
	Configuration map[string]string `json:"configuration,omitempty"`
}

Reactor struct for Reactor

func NewReactor

func NewReactor() *Reactor

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

func NewReactorWithDefaults

func NewReactorWithDefaults() *Reactor

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

func (*Reactor) GetApplication

func (o *Reactor) GetApplication() Application

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

func (*Reactor) GetApplicationOk

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

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

func (*Reactor) GetConfiguration

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

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

func (*Reactor) GetConfigurationOk

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

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

func (*Reactor) GetCreatedAt

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

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

func (*Reactor) GetCreatedAtOk

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

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

func (*Reactor) GetCreatedBy

func (o *Reactor) GetCreatedBy() string

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

func (*Reactor) GetCreatedByOk

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

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

func (*Reactor) GetFormula

func (o *Reactor) GetFormula() ReactorFormula

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

func (*Reactor) GetFormulaOk

func (o *Reactor) GetFormulaOk() (*ReactorFormula, bool)

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

func (*Reactor) GetId

func (o *Reactor) GetId() string

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

func (*Reactor) GetIdOk

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

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

func (*Reactor) GetModifiedAt

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

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

func (*Reactor) GetModifiedAtOk

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

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

func (*Reactor) GetModifiedBy

func (o *Reactor) GetModifiedBy() string

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

func (*Reactor) GetModifiedByOk

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

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

func (*Reactor) GetName

func (o *Reactor) GetName() string

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

func (*Reactor) GetNameOk

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

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

func (*Reactor) GetTenantId

func (o *Reactor) GetTenantId() string

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

func (*Reactor) GetTenantIdOk

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

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

func (*Reactor) HasApplication

func (o *Reactor) HasApplication() bool

HasApplication returns a boolean if a field has been set.

func (*Reactor) HasConfiguration

func (o *Reactor) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*Reactor) HasCreatedAt

func (o *Reactor) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Reactor) HasCreatedBy

func (o *Reactor) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Reactor) HasFormula

func (o *Reactor) HasFormula() bool

HasFormula returns a boolean if a field has been set.

func (*Reactor) HasId

func (o *Reactor) HasId() bool

HasId returns a boolean if a field has been set.

func (*Reactor) HasModifiedAt

func (o *Reactor) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*Reactor) HasModifiedBy

func (o *Reactor) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*Reactor) HasName

func (o *Reactor) HasName() bool

HasName returns a boolean if a field has been set.

func (*Reactor) HasTenantId

func (o *Reactor) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (Reactor) MarshalJSON

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

func (*Reactor) SetApplication

func (o *Reactor) SetApplication(v Application)

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

func (*Reactor) SetConfiguration

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

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

func (*Reactor) SetCreatedAt

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

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

func (*Reactor) SetCreatedAtNil

func (o *Reactor) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*Reactor) SetCreatedBy

func (o *Reactor) SetCreatedBy(v string)

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

func (*Reactor) SetCreatedByNil

func (o *Reactor) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Reactor) SetFormula

func (o *Reactor) SetFormula(v ReactorFormula)

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

func (*Reactor) SetId

func (o *Reactor) SetId(v string)

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

func (*Reactor) SetModifiedAt

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

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

func (*Reactor) SetModifiedAtNil

func (o *Reactor) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*Reactor) SetModifiedBy

func (o *Reactor) SetModifiedBy(v string)

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

func (*Reactor) SetModifiedByNil

func (o *Reactor) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Reactor) SetName

func (o *Reactor) SetName(v string)

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

func (*Reactor) SetNameNil

func (o *Reactor) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Reactor) SetTenantId

func (o *Reactor) SetTenantId(v string)

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

func (*Reactor) UnsetCreatedAt

func (o *Reactor) UnsetCreatedAt()

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

func (*Reactor) UnsetCreatedBy

func (o *Reactor) UnsetCreatedBy()

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

func (*Reactor) UnsetModifiedAt

func (o *Reactor) UnsetModifiedAt()

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

func (*Reactor) UnsetModifiedBy

func (o *Reactor) UnsetModifiedBy()

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

func (*Reactor) UnsetName

func (o *Reactor) UnsetName()

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

type ReactorFormula

type ReactorFormula struct {
	Id                *string                          `json:"id,omitempty"`
	Type              NullableString                   `json:"type,omitempty"`
	Status            NullableString                   `json:"status,omitempty"`
	Name              NullableString                   `json:"name,omitempty"`
	Description       NullableString                   `json:"description,omitempty"`
	Icon              NullableString                   `json:"icon,omitempty"`
	Code              NullableString                   `json:"code,omitempty"`
	CreatedBy         NullableString                   `json:"created_by,omitempty"`
	CreatedAt         NullableTime                     `json:"created_at,omitempty"`
	ModifiedBy        NullableString                   `json:"modified_by,omitempty"`
	ModifiedAt        NullableTime                     `json:"modified_at,omitempty"`
	Configuration     []ReactorFormulaConfiguration    `json:"configuration,omitempty"`
	RequestParameters []ReactorFormulaRequestParameter `json:"request_parameters,omitempty"`
}

ReactorFormula struct for ReactorFormula

func NewReactorFormula

func NewReactorFormula() *ReactorFormula

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

func NewReactorFormulaWithDefaults

func NewReactorFormulaWithDefaults() *ReactorFormula

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

func (*ReactorFormula) GetCode

func (o *ReactorFormula) GetCode() string

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

func (*ReactorFormula) GetCodeOk

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

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

func (*ReactorFormula) GetConfiguration

func (o *ReactorFormula) GetConfiguration() []ReactorFormulaConfiguration

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

func (*ReactorFormula) GetConfigurationOk

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

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

func (*ReactorFormula) GetCreatedAt

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

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

func (*ReactorFormula) GetCreatedAtOk

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

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

func (*ReactorFormula) GetCreatedBy

func (o *ReactorFormula) GetCreatedBy() string

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

func (*ReactorFormula) GetCreatedByOk

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

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

func (*ReactorFormula) GetDescription

func (o *ReactorFormula) GetDescription() string

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

func (*ReactorFormula) GetDescriptionOk

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

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

func (*ReactorFormula) GetIcon

func (o *ReactorFormula) GetIcon() string

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

func (*ReactorFormula) GetIconOk

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

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

func (*ReactorFormula) GetId

func (o *ReactorFormula) GetId() string

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

func (*ReactorFormula) GetIdOk

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

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

func (*ReactorFormula) GetModifiedAt

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

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

func (*ReactorFormula) GetModifiedAtOk

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

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

func (*ReactorFormula) GetModifiedBy

func (o *ReactorFormula) GetModifiedBy() string

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

func (*ReactorFormula) GetModifiedByOk

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

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

func (*ReactorFormula) GetName

func (o *ReactorFormula) GetName() string

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

func (*ReactorFormula) GetNameOk

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

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

func (*ReactorFormula) GetRequestParameters

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

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

func (*ReactorFormula) GetRequestParametersOk

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

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

func (*ReactorFormula) GetStatus

func (o *ReactorFormula) GetStatus() string

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

func (*ReactorFormula) GetStatusOk

func (o *ReactorFormula) GetStatusOk() (*string, bool)

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

func (*ReactorFormula) GetType

func (o *ReactorFormula) GetType() string

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

func (*ReactorFormula) GetTypeOk

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

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

func (*ReactorFormula) HasCode

func (o *ReactorFormula) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ReactorFormula) HasConfiguration

func (o *ReactorFormula) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ReactorFormula) HasCreatedAt

func (o *ReactorFormula) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ReactorFormula) HasCreatedBy

func (o *ReactorFormula) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*ReactorFormula) HasDescription

func (o *ReactorFormula) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReactorFormula) HasIcon

func (o *ReactorFormula) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*ReactorFormula) HasId

func (o *ReactorFormula) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReactorFormula) HasModifiedAt

func (o *ReactorFormula) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ReactorFormula) HasModifiedBy

func (o *ReactorFormula) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*ReactorFormula) HasName

func (o *ReactorFormula) HasName() bool

HasName returns a boolean if a field has been set.

func (*ReactorFormula) HasRequestParameters

func (o *ReactorFormula) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field has been set.

func (*ReactorFormula) HasStatus

func (o *ReactorFormula) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ReactorFormula) HasType

func (o *ReactorFormula) HasType() bool

HasType returns a boolean if a field has been set.

func (ReactorFormula) MarshalJSON

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

func (*ReactorFormula) SetCode

func (o *ReactorFormula) SetCode(v string)

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

func (*ReactorFormula) SetCodeNil

func (o *ReactorFormula) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*ReactorFormula) SetConfiguration

func (o *ReactorFormula) SetConfiguration(v []ReactorFormulaConfiguration)

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

func (*ReactorFormula) SetCreatedAt

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

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

func (*ReactorFormula) SetCreatedAtNil

func (o *ReactorFormula) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*ReactorFormula) SetCreatedBy

func (o *ReactorFormula) SetCreatedBy(v string)

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

func (*ReactorFormula) SetCreatedByNil

func (o *ReactorFormula) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ReactorFormula) SetDescription

func (o *ReactorFormula) SetDescription(v string)

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

func (*ReactorFormula) SetDescriptionNil

func (o *ReactorFormula) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormula) SetIcon

func (o *ReactorFormula) SetIcon(v string)

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

func (*ReactorFormula) SetIconNil

func (o *ReactorFormula) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*ReactorFormula) SetId

func (o *ReactorFormula) SetId(v string)

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

func (*ReactorFormula) SetModifiedAt

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

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

func (*ReactorFormula) SetModifiedAtNil

func (o *ReactorFormula) SetModifiedAtNil()

SetModifiedAtNil sets the value for ModifiedAt to be an explicit nil

func (*ReactorFormula) SetModifiedBy

func (o *ReactorFormula) SetModifiedBy(v string)

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

func (*ReactorFormula) SetModifiedByNil

func (o *ReactorFormula) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*ReactorFormula) SetName

func (o *ReactorFormula) SetName(v string)

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

func (*ReactorFormula) SetNameNil

func (o *ReactorFormula) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ReactorFormula) SetRequestParameters

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

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

func (*ReactorFormula) SetStatus

func (o *ReactorFormula) SetStatus(v string)

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

func (*ReactorFormula) SetStatusNil

func (o *ReactorFormula) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*ReactorFormula) SetType

func (o *ReactorFormula) SetType(v string)

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

func (*ReactorFormula) SetTypeNil

func (o *ReactorFormula) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*ReactorFormula) UnsetCode

func (o *ReactorFormula) UnsetCode()

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

func (*ReactorFormula) UnsetCreatedAt

func (o *ReactorFormula) UnsetCreatedAt()

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

func (*ReactorFormula) UnsetCreatedBy

func (o *ReactorFormula) UnsetCreatedBy()

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

func (*ReactorFormula) UnsetDescription

func (o *ReactorFormula) UnsetDescription()

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

func (*ReactorFormula) UnsetIcon

func (o *ReactorFormula) UnsetIcon()

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

func (*ReactorFormula) UnsetModifiedAt

func (o *ReactorFormula) UnsetModifiedAt()

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

func (*ReactorFormula) UnsetModifiedBy

func (o *ReactorFormula) UnsetModifiedBy()

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

func (*ReactorFormula) UnsetName

func (o *ReactorFormula) UnsetName()

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

func (*ReactorFormula) UnsetStatus

func (o *ReactorFormula) UnsetStatus()

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

func (*ReactorFormula) UnsetType

func (o *ReactorFormula) UnsetType()

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

type ReactorFormulaConfiguration

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

ReactorFormulaConfiguration struct for ReactorFormulaConfiguration

func NewReactorFormulaConfiguration

func NewReactorFormulaConfiguration(name string, type_ string) *ReactorFormulaConfiguration

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

func NewReactorFormulaConfigurationWithDefaults

func NewReactorFormulaConfigurationWithDefaults() *ReactorFormulaConfiguration

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

func (*ReactorFormulaConfiguration) GetDescription

func (o *ReactorFormulaConfiguration) GetDescription() string

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

func (*ReactorFormulaConfiguration) GetDescriptionOk

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

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

func (*ReactorFormulaConfiguration) GetName

func (o *ReactorFormulaConfiguration) GetName() string

GetName returns the Name field value

func (*ReactorFormulaConfiguration) GetNameOk

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

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

func (*ReactorFormulaConfiguration) GetType

func (o *ReactorFormulaConfiguration) GetType() string

GetType returns the Type field value

func (*ReactorFormulaConfiguration) GetTypeOk

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

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

func (*ReactorFormulaConfiguration) HasDescription

func (o *ReactorFormulaConfiguration) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (ReactorFormulaConfiguration) MarshalJSON

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

func (*ReactorFormulaConfiguration) SetDescription

func (o *ReactorFormulaConfiguration) SetDescription(v string)

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

func (*ReactorFormulaConfiguration) SetDescriptionNil

func (o *ReactorFormulaConfiguration) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormulaConfiguration) SetName

func (o *ReactorFormulaConfiguration) SetName(v string)

SetName sets field value

func (*ReactorFormulaConfiguration) SetType

func (o *ReactorFormulaConfiguration) SetType(v string)

SetType sets field value

func (*ReactorFormulaConfiguration) UnsetDescription

func (o *ReactorFormulaConfiguration) UnsetDescription()

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

type ReactorFormulaPaginatedList

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

ReactorFormulaPaginatedList struct for ReactorFormulaPaginatedList

func NewReactorFormulaPaginatedList

func NewReactorFormulaPaginatedList() *ReactorFormulaPaginatedList

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

func NewReactorFormulaPaginatedListWithDefaults

func NewReactorFormulaPaginatedListWithDefaults() *ReactorFormulaPaginatedList

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

func (*ReactorFormulaPaginatedList) GetData

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

func (*ReactorFormulaPaginatedList) GetDataOk

func (o *ReactorFormulaPaginatedList) GetDataOk() ([]ReactorFormula, bool)

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

func (*ReactorFormulaPaginatedList) GetPagination

func (o *ReactorFormulaPaginatedList) GetPagination() Pagination

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

func (*ReactorFormulaPaginatedList) GetPaginationOk

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

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

func (*ReactorFormulaPaginatedList) HasData

func (o *ReactorFormulaPaginatedList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ReactorFormulaPaginatedList) HasPagination

func (o *ReactorFormulaPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (ReactorFormulaPaginatedList) MarshalJSON

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

func (*ReactorFormulaPaginatedList) SetData

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

func (*ReactorFormulaPaginatedList) SetPagination

func (o *ReactorFormulaPaginatedList) SetPagination(v Pagination)

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

type ReactorFormulaRequestParameter

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

ReactorFormulaRequestParameter struct for ReactorFormulaRequestParameter

func NewReactorFormulaRequestParameter

func NewReactorFormulaRequestParameter(name string, type_ string) *ReactorFormulaRequestParameter

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

func NewReactorFormulaRequestParameterWithDefaults

func NewReactorFormulaRequestParameterWithDefaults() *ReactorFormulaRequestParameter

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

func (*ReactorFormulaRequestParameter) GetDescription

func (o *ReactorFormulaRequestParameter) GetDescription() string

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

func (*ReactorFormulaRequestParameter) GetDescriptionOk

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

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

func (*ReactorFormulaRequestParameter) GetName

GetName returns the Name field value

func (*ReactorFormulaRequestParameter) GetNameOk

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

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

func (*ReactorFormulaRequestParameter) GetOptional

func (o *ReactorFormulaRequestParameter) GetOptional() bool

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

func (*ReactorFormulaRequestParameter) GetOptionalOk

func (o *ReactorFormulaRequestParameter) GetOptionalOk() (*bool, bool)

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

func (*ReactorFormulaRequestParameter) GetType

GetType returns the Type field value

func (*ReactorFormulaRequestParameter) GetTypeOk

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

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

func (*ReactorFormulaRequestParameter) HasDescription

func (o *ReactorFormulaRequestParameter) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReactorFormulaRequestParameter) HasOptional

func (o *ReactorFormulaRequestParameter) HasOptional() bool

HasOptional returns a boolean if a field has been set.

func (ReactorFormulaRequestParameter) MarshalJSON

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

func (*ReactorFormulaRequestParameter) SetDescription

func (o *ReactorFormulaRequestParameter) SetDescription(v string)

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

func (*ReactorFormulaRequestParameter) SetDescriptionNil

func (o *ReactorFormulaRequestParameter) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReactorFormulaRequestParameter) SetName

func (o *ReactorFormulaRequestParameter) SetName(v string)

SetName sets field value

func (*ReactorFormulaRequestParameter) SetOptional

func (o *ReactorFormulaRequestParameter) SetOptional(v bool)

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

func (*ReactorFormulaRequestParameter) SetType

func (o *ReactorFormulaRequestParameter) SetType(v string)

SetType sets field value

func (*ReactorFormulaRequestParameter) UnsetDescription

func (o *ReactorFormulaRequestParameter) UnsetDescription()

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

type ReactorFormulasApiService

type ReactorFormulasApiService service

ReactorFormulasApiService ReactorFormulasApi service

func (*ReactorFormulasApiService) ReactorFormulasCreate

ReactorFormulasCreate Method for ReactorFormulasCreate

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

func (*ReactorFormulasApiService) ReactorFormulasCreateExecute

Execute executes the request

@return ReactorFormula

func (*ReactorFormulasApiService) ReactorFormulasDelete

ReactorFormulasDelete Method for ReactorFormulasDelete

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

func (*ReactorFormulasApiService) ReactorFormulasDeleteExecute

func (a *ReactorFormulasApiService) ReactorFormulasDeleteExecute(r ApiReactorFormulasDeleteRequest) (*http.Response, error)

Execute executes the request

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

ReactorFormulasGetById Method for ReactorFormulasGetById

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

func (*ReactorFormulasApiService) ReactorFormulasGetByIdExecute

Execute executes the request

@return ReactorFormula

func (*ReactorFormulasApiService) ReactorFormulasGetExecute

Execute executes the request

@return ReactorFormulaPaginatedList

func (*ReactorFormulasApiService) ReactorFormulasUpdate

ReactorFormulasUpdate Method for ReactorFormulasUpdate

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

func (*ReactorFormulasApiService) ReactorFormulasUpdateExecute

Execute executes the request

@return ReactorFormula

type ReactorPaginatedList

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

ReactorPaginatedList struct for ReactorPaginatedList

func NewReactorPaginatedList

func NewReactorPaginatedList() *ReactorPaginatedList

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

func NewReactorPaginatedListWithDefaults

func NewReactorPaginatedListWithDefaults() *ReactorPaginatedList

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

func (*ReactorPaginatedList) GetData

func (o *ReactorPaginatedList) GetData() []Reactor

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

func (*ReactorPaginatedList) GetDataOk

func (o *ReactorPaginatedList) GetDataOk() ([]Reactor, bool)

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

func (*ReactorPaginatedList) GetPagination

func (o *ReactorPaginatedList) GetPagination() Pagination

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

func (*ReactorPaginatedList) GetPaginationOk

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

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

func (*ReactorPaginatedList) HasData

func (o *ReactorPaginatedList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ReactorPaginatedList) HasPagination

func (o *ReactorPaginatedList) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (ReactorPaginatedList) MarshalJSON

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

func (*ReactorPaginatedList) SetData

func (o *ReactorPaginatedList) SetData(v []Reactor)

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

func (*ReactorPaginatedList) SetPagination

func (o *ReactorPaginatedList) SetPagination(v Pagination)

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

type ReactorsApiService

type ReactorsApiService service

ReactorsApiService ReactorsApi service

func (*ReactorsApiService) ReactorsCreate

ReactorsCreate Method for ReactorsCreate

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

func (*ReactorsApiService) ReactorsCreateExecute

func (a *ReactorsApiService) ReactorsCreateExecute(r ApiReactorsCreateRequest) (*Reactor, *http.Response, error)

Execute executes the request

@return Reactor

func (*ReactorsApiService) ReactorsDelete

ReactorsDelete Method for ReactorsDelete

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

func (*ReactorsApiService) ReactorsDeleteExecute

func (a *ReactorsApiService) ReactorsDeleteExecute(r ApiReactorsDeleteRequest) (*http.Response, error)

Execute executes the request

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

ReactorsGetById Method for ReactorsGetById

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

func (*ReactorsApiService) ReactorsGetByIdExecute

func (a *ReactorsApiService) ReactorsGetByIdExecute(r ApiReactorsGetByIdRequest) (*Reactor, *http.Response, error)

Execute executes the request

@return Reactor

func (*ReactorsApiService) ReactorsGetExecute

Execute executes the request

@return ReactorPaginatedList

func (*ReactorsApiService) ReactorsReact

ReactorsReact Method for ReactorsReact

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

func (*ReactorsApiService) ReactorsReactExecute

Execute executes the request

@return ReactResponse

func (*ReactorsApiService) ReactorsUpdate

ReactorsUpdate Method for ReactorsUpdate

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

func (*ReactorsApiService) ReactorsUpdateExecute

func (a *ReactorsApiService) ReactorsUpdateExecute(r ApiReactorsUpdateRequest) (*Reactor, *http.Response, error)

Execute executes the request

@return Reactor

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 UpdateApplicationRequest

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

UpdateApplicationRequest struct for UpdateApplicationRequest

func NewUpdateApplicationRequest

func NewUpdateApplicationRequest(name string) *UpdateApplicationRequest

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

func NewUpdateApplicationRequestWithDefaults

func NewUpdateApplicationRequestWithDefaults() *UpdateApplicationRequest

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

func (*UpdateApplicationRequest) GetName

func (o *UpdateApplicationRequest) GetName() string

GetName returns the Name field value

func (*UpdateApplicationRequest) GetNameOk

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

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

func (*UpdateApplicationRequest) GetPermissions

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

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

func (*UpdateApplicationRequest) GetPermissionsOk

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

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

func (*UpdateApplicationRequest) HasPermissions

func (o *UpdateApplicationRequest) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (UpdateApplicationRequest) MarshalJSON

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

func (*UpdateApplicationRequest) SetName

func (o *UpdateApplicationRequest) SetName(v string)

SetName sets field value

func (*UpdateApplicationRequest) SetPermissions

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

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

type UpdateProxyRequest

type UpdateProxyRequest struct {
	Name             string       `json:"name"`
	DestinationUrl   string       `json:"destination_url"`
	RequestReactorId string       `json:"request_reactor_id"`
	RequireAuth      NullableBool `json:"require_auth,omitempty"`
}

UpdateProxyRequest struct for UpdateProxyRequest

func NewUpdateProxyRequest

func NewUpdateProxyRequest(name string, destinationUrl string, requestReactorId string) *UpdateProxyRequest

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

func NewUpdateProxyRequestWithDefaults

func NewUpdateProxyRequestWithDefaults() *UpdateProxyRequest

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

func (*UpdateProxyRequest) GetDestinationUrl

func (o *UpdateProxyRequest) GetDestinationUrl() string

GetDestinationUrl returns the DestinationUrl field value

func (*UpdateProxyRequest) GetDestinationUrlOk

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

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

func (*UpdateProxyRequest) GetName

func (o *UpdateProxyRequest) GetName() string

GetName returns the Name field value

func (*UpdateProxyRequest) GetNameOk

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

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

func (*UpdateProxyRequest) GetRequestReactorId

func (o *UpdateProxyRequest) GetRequestReactorId() string

GetRequestReactorId returns the RequestReactorId field value

func (*UpdateProxyRequest) GetRequestReactorIdOk

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

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

func (*UpdateProxyRequest) GetRequireAuth

func (o *UpdateProxyRequest) GetRequireAuth() bool

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

func (*UpdateProxyRequest) GetRequireAuthOk

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

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

func (*UpdateProxyRequest) HasRequireAuth

func (o *UpdateProxyRequest) HasRequireAuth() bool

HasRequireAuth returns a boolean if a field has been set.

func (UpdateProxyRequest) MarshalJSON

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

func (*UpdateProxyRequest) SetDestinationUrl

func (o *UpdateProxyRequest) SetDestinationUrl(v string)

SetDestinationUrl sets field value

func (*UpdateProxyRequest) SetName

func (o *UpdateProxyRequest) SetName(v string)

SetName sets field value

func (*UpdateProxyRequest) SetRequestReactorId

func (o *UpdateProxyRequest) SetRequestReactorId(v string)

SetRequestReactorId sets field value

func (*UpdateProxyRequest) SetRequireAuth

func (o *UpdateProxyRequest) SetRequireAuth(v bool)

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

func (*UpdateProxyRequest) SetRequireAuthNil

func (o *UpdateProxyRequest) SetRequireAuthNil()

SetRequireAuthNil sets the value for RequireAuth to be an explicit nil

func (*UpdateProxyRequest) UnsetRequireAuth

func (o *UpdateProxyRequest) UnsetRequireAuth()

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

type UpdateReactorFormulaRequest

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

UpdateReactorFormulaRequest struct for UpdateReactorFormulaRequest

func NewUpdateReactorFormulaRequest

func NewUpdateReactorFormulaRequest(type_ string, name string) *UpdateReactorFormulaRequest

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

func NewUpdateReactorFormulaRequestWithDefaults

func NewUpdateReactorFormulaRequestWithDefaults() *UpdateReactorFormulaRequest

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

func (*UpdateReactorFormulaRequest) GetCode

func (o *UpdateReactorFormulaRequest) GetCode() string

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

func (*UpdateReactorFormulaRequest) GetCodeOk

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

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

func (*UpdateReactorFormulaRequest) GetConfiguration

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

func (*UpdateReactorFormulaRequest) GetConfigurationOk

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

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

func (*UpdateReactorFormulaRequest) GetDescription

func (o *UpdateReactorFormulaRequest) GetDescription() string

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

func (*UpdateReactorFormulaRequest) GetDescriptionOk

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

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

func (*UpdateReactorFormulaRequest) GetIcon

func (o *UpdateReactorFormulaRequest) GetIcon() string

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

func (*UpdateReactorFormulaRequest) GetIconOk

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

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

func (*UpdateReactorFormulaRequest) GetName

func (o *UpdateReactorFormulaRequest) GetName() string

GetName returns the Name field value

func (*UpdateReactorFormulaRequest) GetNameOk

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

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

func (*UpdateReactorFormulaRequest) GetRequestParameters

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

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

func (*UpdateReactorFormulaRequest) GetRequestParametersOk

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

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

func (*UpdateReactorFormulaRequest) GetType

func (o *UpdateReactorFormulaRequest) GetType() string

GetType returns the Type field value

func (*UpdateReactorFormulaRequest) GetTypeOk

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

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

func (*UpdateReactorFormulaRequest) HasCode

func (o *UpdateReactorFormulaRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*UpdateReactorFormulaRequest) HasConfiguration

func (o *UpdateReactorFormulaRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*UpdateReactorFormulaRequest) HasDescription

func (o *UpdateReactorFormulaRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateReactorFormulaRequest) HasIcon

func (o *UpdateReactorFormulaRequest) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*UpdateReactorFormulaRequest) HasRequestParameters

func (o *UpdateReactorFormulaRequest) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field has been set.

func (UpdateReactorFormulaRequest) MarshalJSON

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

func (*UpdateReactorFormulaRequest) SetCode

func (o *UpdateReactorFormulaRequest) SetCode(v string)

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

func (*UpdateReactorFormulaRequest) SetCodeNil

func (o *UpdateReactorFormulaRequest) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*UpdateReactorFormulaRequest) SetConfiguration

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

func (*UpdateReactorFormulaRequest) SetDescription

func (o *UpdateReactorFormulaRequest) SetDescription(v string)

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

func (*UpdateReactorFormulaRequest) SetDescriptionNil

func (o *UpdateReactorFormulaRequest) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*UpdateReactorFormulaRequest) SetIcon

func (o *UpdateReactorFormulaRequest) SetIcon(v string)

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

func (*UpdateReactorFormulaRequest) SetIconNil

func (o *UpdateReactorFormulaRequest) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*UpdateReactorFormulaRequest) SetName

func (o *UpdateReactorFormulaRequest) SetName(v string)

SetName sets field value

func (*UpdateReactorFormulaRequest) SetRequestParameters

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

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

func (*UpdateReactorFormulaRequest) SetType

func (o *UpdateReactorFormulaRequest) SetType(v string)

SetType sets field value

func (*UpdateReactorFormulaRequest) UnsetCode

func (o *UpdateReactorFormulaRequest) UnsetCode()

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

func (*UpdateReactorFormulaRequest) UnsetDescription

func (o *UpdateReactorFormulaRequest) UnsetDescription()

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

func (*UpdateReactorFormulaRequest) UnsetIcon

func (o *UpdateReactorFormulaRequest) UnsetIcon()

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

type UpdateReactorRequest

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

UpdateReactorRequest struct for UpdateReactorRequest

func NewUpdateReactorRequest

func NewUpdateReactorRequest(name string) *UpdateReactorRequest

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

func NewUpdateReactorRequestWithDefaults

func NewUpdateReactorRequestWithDefaults() *UpdateReactorRequest

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

func (*UpdateReactorRequest) GetApplication

func (o *UpdateReactorRequest) GetApplication() Application

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

func (*UpdateReactorRequest) GetApplicationOk

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

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

func (*UpdateReactorRequest) GetConfiguration

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

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

func (*UpdateReactorRequest) GetConfigurationOk

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

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

func (*UpdateReactorRequest) GetName

func (o *UpdateReactorRequest) GetName() string

GetName returns the Name field value

func (*UpdateReactorRequest) GetNameOk

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

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

func (*UpdateReactorRequest) HasApplication

func (o *UpdateReactorRequest) HasApplication() bool

HasApplication returns a boolean if a field has been set.

func (*UpdateReactorRequest) HasConfiguration

func (o *UpdateReactorRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (UpdateReactorRequest) MarshalJSON

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

func (*UpdateReactorRequest) SetApplication

func (o *UpdateReactorRequest) SetApplication(v Application)

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

func (*UpdateReactorRequest) SetConfiguration

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

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

func (*UpdateReactorRequest) SetName

func (o *UpdateReactorRequest) SetName(v string)

SetName sets field value

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