openapi

package
v0.0.0-...-1c54137 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	AccountAPI *AccountAPIService

	ApplicationAPI *ApplicationAPIService

	EndpointAPI *EndpointAPIService

	MessageAPI *MessageAPIService

	RouteAPI *RouteAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Kanthor SDK API API vv2024.1014.1700 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 AccountAPIService

type AccountAPIService service

AccountAPIService AccountAPI service

func (*AccountAPIService) AccountGet

AccountGet Method for AccountGet

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

func (*AccountAPIService) AccountGetExecute

Execute executes the request

@return AccountGetRes

type AccountGetRes

type AccountGetRes struct {
	CreatedAt     int64                  `json:"created_at"`
	DeactivatedAt int64                  `json:"deactivated_at"`
	Metadata      map[string]interface{} `json:"metadata"`
	Name          string                 `json:"name"`
	UpdatedAt     int64                  `json:"updated_at"`
	Username      string                 `json:"username"`
}

AccountGetRes struct for AccountGetRes

func NewAccountGetRes

func NewAccountGetRes(createdAt int64, deactivatedAt int64, metadata map[string]interface{}, name string, updatedAt int64, username string) *AccountGetRes

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

func NewAccountGetResWithDefaults

func NewAccountGetResWithDefaults() *AccountGetRes

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

func (*AccountGetRes) GetCreatedAt

func (o *AccountGetRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*AccountGetRes) GetCreatedAtOk

func (o *AccountGetRes) GetCreatedAtOk() (*int64, bool)

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

func (*AccountGetRes) GetDeactivatedAt

func (o *AccountGetRes) GetDeactivatedAt() int64

GetDeactivatedAt returns the DeactivatedAt field value

func (*AccountGetRes) GetDeactivatedAtOk

func (o *AccountGetRes) GetDeactivatedAtOk() (*int64, bool)

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

func (*AccountGetRes) GetMetadata

func (o *AccountGetRes) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value

func (*AccountGetRes) GetMetadataOk

func (o *AccountGetRes) GetMetadataOk() (map[string]interface{}, bool)

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

func (*AccountGetRes) GetName

func (o *AccountGetRes) GetName() string

GetName returns the Name field value

func (*AccountGetRes) GetNameOk

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

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

func (*AccountGetRes) GetUpdatedAt

func (o *AccountGetRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*AccountGetRes) GetUpdatedAtOk

func (o *AccountGetRes) GetUpdatedAtOk() (*int64, bool)

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

func (*AccountGetRes) GetUsername

func (o *AccountGetRes) GetUsername() string

GetUsername returns the Username field value

func (*AccountGetRes) GetUsernameOk

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

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

func (AccountGetRes) MarshalJSON

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

func (*AccountGetRes) SetCreatedAt

func (o *AccountGetRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*AccountGetRes) SetDeactivatedAt

func (o *AccountGetRes) SetDeactivatedAt(v int64)

SetDeactivatedAt sets field value

func (*AccountGetRes) SetMetadata

func (o *AccountGetRes) SetMetadata(v map[string]interface{})

SetMetadata sets field value

func (*AccountGetRes) SetName

func (o *AccountGetRes) SetName(v string)

SetName sets field value

func (*AccountGetRes) SetUpdatedAt

func (o *AccountGetRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*AccountGetRes) SetUsername

func (o *AccountGetRes) SetUsername(v string)

SetUsername sets field value

func (AccountGetRes) ToMap

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

func (*AccountGetRes) UnmarshalJSON

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

type ApiAccountGetRequest

type ApiAccountGetRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiAccountGetRequest) Execute

type ApiApplicationGetRequest

type ApiApplicationGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiApplicationGetRequest) Execute

func (ApiApplicationGetRequest) Ids

list by ids

func (ApiApplicationGetRequest) Limit

limit returning records

func (ApiApplicationGetRequest) Page

current requesting page

func (ApiApplicationGetRequest) Q

search keyword

type ApiApplicationIdDeleteRequest

type ApiApplicationIdDeleteRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiApplicationIdDeleteRequest) Execute

type ApiApplicationIdGetRequest

type ApiApplicationIdGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiApplicationIdGetRequest) Execute

type ApiApplicationIdPatchRequest

type ApiApplicationIdPatchRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiApplicationIdPatchRequest) Execute

func (ApiApplicationIdPatchRequest) Request

request body

type ApiApplicationPostRequest

type ApiApplicationPostRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiApplicationPostRequest) Execute

func (ApiApplicationPostRequest) Request

request body

type ApiEndpointGetRequest

type ApiEndpointGetRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiEndpointGetRequest) Execute

func (ApiEndpointGetRequest) Ids

list by ids

func (ApiEndpointGetRequest) Limit

limit returning records

func (ApiEndpointGetRequest) Page

current requesting page

func (ApiEndpointGetRequest) Q

search keyword

type ApiEndpointIdDeleteRequest

type ApiEndpointIdDeleteRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiEndpointIdDeleteRequest) Execute

type ApiEndpointIdGetRequest

type ApiEndpointIdGetRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiEndpointIdGetRequest) Execute

type ApiEndpointIdPatchRequest

type ApiEndpointIdPatchRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiEndpointIdPatchRequest) Execute

func (ApiEndpointIdPatchRequest) Request

request body

type ApiEndpointIdSecretGetRequest

type ApiEndpointIdSecretGetRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiEndpointIdSecretGetRequest) Execute

type ApiEndpointPostRequest

type ApiEndpointPostRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiEndpointPostRequest) Execute

func (ApiEndpointPostRequest) Request

request body

type ApiMessageIdGetRequest

type ApiMessageIdGetRequest struct {
	ApiService *MessageAPIService
	// contains filtered or unexported fields
}

func (ApiMessageIdGetRequest) Execute

type ApiMessagePostRequest

type ApiMessagePostRequest struct {
	ApiService *MessageAPIService
	// contains filtered or unexported fields
}

func (ApiMessagePostRequest) Execute

func (ApiMessagePostRequest) Request

request body

type ApiRouteGetRequest

type ApiRouteGetRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiRouteGetRequest) Execute

func (ApiRouteGetRequest) Ids

list by ids

func (ApiRouteGetRequest) Limit

limit returning records

func (ApiRouteGetRequest) Page

current requesting page

func (ApiRouteGetRequest) Q

search keyword

type ApiRouteIdDeleteRequest

type ApiRouteIdDeleteRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiRouteIdDeleteRequest) Execute

type ApiRouteIdGetRequest

type ApiRouteIdGetRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiRouteIdGetRequest) Execute

type ApiRouteIdPatchRequest

type ApiRouteIdPatchRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiRouteIdPatchRequest) Execute

func (ApiRouteIdPatchRequest) Request

request body

type ApiRoutePostRequest

type ApiRoutePostRequest struct {
	ApiService *RouteAPIService
	// contains filtered or unexported fields
}

func (ApiRoutePostRequest) Execute

func (ApiRoutePostRequest) Request

request body

type Application

type Application struct {
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	WsId      string `json:"ws_id"`
}

Application struct for Application

func NewApplication

func NewApplication(createdAt int64, id string, name string, updatedAt int64, wsId string) *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() int64

GetCreatedAt returns the CreatedAt field value

func (*Application) GetCreatedAtOk

func (o *Application) GetCreatedAtOk() (*int64, bool)

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

func (*Application) GetId

func (o *Application) GetId() string

GetId returns the Id field value

func (*Application) GetIdOk

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

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

func (*Application) GetName

func (o *Application) GetName() string

GetName returns the Name field value

func (*Application) GetNameOk

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

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

func (*Application) GetUpdatedAt

func (o *Application) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*Application) GetUpdatedAtOk

func (o *Application) GetUpdatedAtOk() (*int64, bool)

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

func (*Application) GetWsId

func (o *Application) GetWsId() string

GetWsId returns the WsId field value

func (*Application) GetWsIdOk

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

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

func (Application) MarshalJSON

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

func (*Application) SetCreatedAt

func (o *Application) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*Application) SetId

func (o *Application) SetId(v string)

SetId sets field value

func (*Application) SetName

func (o *Application) SetName(v string)

SetName sets field value

func (*Application) SetUpdatedAt

func (o *Application) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*Application) SetWsId

func (o *Application) SetWsId(v string)

SetWsId sets field value

func (Application) ToMap

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

func (*Application) UnmarshalJSON

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

type ApplicationAPIService

type ApplicationAPIService service

ApplicationAPIService ApplicationAPI service

func (*ApplicationAPIService) ApplicationGet

ApplicationGet Method for ApplicationGet

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

func (*ApplicationAPIService) ApplicationGetExecute

Execute executes the request

@return ApplicationListRes

func (*ApplicationAPIService) ApplicationIdDelete

ApplicationIdDelete Method for ApplicationIdDelete

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

func (*ApplicationAPIService) ApplicationIdDeleteExecute

Execute executes the request

@return ApplicationDeleteRes

func (*ApplicationAPIService) ApplicationIdGet

ApplicationIdGet Method for ApplicationIdGet

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

func (*ApplicationAPIService) ApplicationIdGetExecute

Execute executes the request

@return ApplicationGetRes

func (*ApplicationAPIService) ApplicationIdPatch

ApplicationIdPatch Method for ApplicationIdPatch

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

func (*ApplicationAPIService) ApplicationIdPatchExecute

Execute executes the request

@return ApplicationUpdateRes

func (*ApplicationAPIService) ApplicationPost

ApplicationPost Method for ApplicationPost

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

func (*ApplicationAPIService) ApplicationPostExecute

Execute executes the request

@return ApplicationCreateRes

type ApplicationCreateReq

type ApplicationCreateReq struct {
	Name string `json:"name"`
}

ApplicationCreateReq struct for ApplicationCreateReq

func NewApplicationCreateReq

func NewApplicationCreateReq(name string) *ApplicationCreateReq

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

func NewApplicationCreateReqWithDefaults

func NewApplicationCreateReqWithDefaults() *ApplicationCreateReq

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

func (*ApplicationCreateReq) GetName

func (o *ApplicationCreateReq) GetName() string

GetName returns the Name field value

func (*ApplicationCreateReq) GetNameOk

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

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

func (ApplicationCreateReq) MarshalJSON

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

func (*ApplicationCreateReq) SetName

func (o *ApplicationCreateReq) SetName(v string)

SetName sets field value

func (ApplicationCreateReq) ToMap

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

func (*ApplicationCreateReq) UnmarshalJSON

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

type ApplicationCreateRes

type ApplicationCreateRes struct {
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	WsId      string `json:"ws_id"`
}

ApplicationCreateRes struct for ApplicationCreateRes

func NewApplicationCreateRes

func NewApplicationCreateRes(createdAt int64, id string, name string, updatedAt int64, wsId string) *ApplicationCreateRes

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

func NewApplicationCreateResWithDefaults

func NewApplicationCreateResWithDefaults() *ApplicationCreateRes

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

func (*ApplicationCreateRes) GetCreatedAt

func (o *ApplicationCreateRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*ApplicationCreateRes) GetCreatedAtOk

func (o *ApplicationCreateRes) GetCreatedAtOk() (*int64, bool)

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

func (*ApplicationCreateRes) GetId

func (o *ApplicationCreateRes) GetId() string

GetId returns the Id field value

func (*ApplicationCreateRes) GetIdOk

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

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

func (*ApplicationCreateRes) GetName

func (o *ApplicationCreateRes) GetName() string

GetName returns the Name field value

func (*ApplicationCreateRes) GetNameOk

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

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

func (*ApplicationCreateRes) GetUpdatedAt

func (o *ApplicationCreateRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*ApplicationCreateRes) GetUpdatedAtOk

func (o *ApplicationCreateRes) GetUpdatedAtOk() (*int64, bool)

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

func (*ApplicationCreateRes) GetWsId

func (o *ApplicationCreateRes) GetWsId() string

GetWsId returns the WsId field value

func (*ApplicationCreateRes) GetWsIdOk

func (o *ApplicationCreateRes) GetWsIdOk() (*string, bool)

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

func (ApplicationCreateRes) MarshalJSON

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

func (*ApplicationCreateRes) SetCreatedAt

func (o *ApplicationCreateRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*ApplicationCreateRes) SetId

func (o *ApplicationCreateRes) SetId(v string)

SetId sets field value

func (*ApplicationCreateRes) SetName

func (o *ApplicationCreateRes) SetName(v string)

SetName sets field value

func (*ApplicationCreateRes) SetUpdatedAt

func (o *ApplicationCreateRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*ApplicationCreateRes) SetWsId

func (o *ApplicationCreateRes) SetWsId(v string)

SetWsId sets field value

func (ApplicationCreateRes) ToMap

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

func (*ApplicationCreateRes) UnmarshalJSON

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

type ApplicationDeleteRes

type ApplicationDeleteRes struct {
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	WsId      string `json:"ws_id"`
}

ApplicationDeleteRes struct for ApplicationDeleteRes

func NewApplicationDeleteRes

func NewApplicationDeleteRes(createdAt int64, id string, name string, updatedAt int64, wsId string) *ApplicationDeleteRes

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

func NewApplicationDeleteResWithDefaults

func NewApplicationDeleteResWithDefaults() *ApplicationDeleteRes

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

func (*ApplicationDeleteRes) GetCreatedAt

func (o *ApplicationDeleteRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*ApplicationDeleteRes) GetCreatedAtOk

func (o *ApplicationDeleteRes) GetCreatedAtOk() (*int64, bool)

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

func (*ApplicationDeleteRes) GetId

func (o *ApplicationDeleteRes) GetId() string

GetId returns the Id field value

func (*ApplicationDeleteRes) GetIdOk

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

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

func (*ApplicationDeleteRes) GetName

func (o *ApplicationDeleteRes) GetName() string

GetName returns the Name field value

func (*ApplicationDeleteRes) GetNameOk

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

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

func (*ApplicationDeleteRes) GetUpdatedAt

func (o *ApplicationDeleteRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*ApplicationDeleteRes) GetUpdatedAtOk

func (o *ApplicationDeleteRes) GetUpdatedAtOk() (*int64, bool)

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

func (*ApplicationDeleteRes) GetWsId

func (o *ApplicationDeleteRes) GetWsId() string

GetWsId returns the WsId field value

func (*ApplicationDeleteRes) GetWsIdOk

func (o *ApplicationDeleteRes) GetWsIdOk() (*string, bool)

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

func (ApplicationDeleteRes) MarshalJSON

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

func (*ApplicationDeleteRes) SetCreatedAt

func (o *ApplicationDeleteRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*ApplicationDeleteRes) SetId

func (o *ApplicationDeleteRes) SetId(v string)

SetId sets field value

func (*ApplicationDeleteRes) SetName

func (o *ApplicationDeleteRes) SetName(v string)

SetName sets field value

func (*ApplicationDeleteRes) SetUpdatedAt

func (o *ApplicationDeleteRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*ApplicationDeleteRes) SetWsId

func (o *ApplicationDeleteRes) SetWsId(v string)

SetWsId sets field value

func (ApplicationDeleteRes) ToMap

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

func (*ApplicationDeleteRes) UnmarshalJSON

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

type ApplicationGetRes

type ApplicationGetRes struct {
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	WsId      string `json:"ws_id"`
}

ApplicationGetRes struct for ApplicationGetRes

func NewApplicationGetRes

func NewApplicationGetRes(createdAt int64, id string, name string, updatedAt int64, wsId string) *ApplicationGetRes

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

func NewApplicationGetResWithDefaults

func NewApplicationGetResWithDefaults() *ApplicationGetRes

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

func (*ApplicationGetRes) GetCreatedAt

func (o *ApplicationGetRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*ApplicationGetRes) GetCreatedAtOk

func (o *ApplicationGetRes) GetCreatedAtOk() (*int64, bool)

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

func (*ApplicationGetRes) GetId

func (o *ApplicationGetRes) GetId() string

GetId returns the Id field value

func (*ApplicationGetRes) GetIdOk

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

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

func (*ApplicationGetRes) GetName

func (o *ApplicationGetRes) GetName() string

GetName returns the Name field value

func (*ApplicationGetRes) GetNameOk

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

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

func (*ApplicationGetRes) GetUpdatedAt

func (o *ApplicationGetRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*ApplicationGetRes) GetUpdatedAtOk

func (o *ApplicationGetRes) GetUpdatedAtOk() (*int64, bool)

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

func (*ApplicationGetRes) GetWsId

func (o *ApplicationGetRes) GetWsId() string

GetWsId returns the WsId field value

func (*ApplicationGetRes) GetWsIdOk

func (o *ApplicationGetRes) GetWsIdOk() (*string, bool)

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

func (ApplicationGetRes) MarshalJSON

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

func (*ApplicationGetRes) SetCreatedAt

func (o *ApplicationGetRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*ApplicationGetRes) SetId

func (o *ApplicationGetRes) SetId(v string)

SetId sets field value

func (*ApplicationGetRes) SetName

func (o *ApplicationGetRes) SetName(v string)

SetName sets field value

func (*ApplicationGetRes) SetUpdatedAt

func (o *ApplicationGetRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*ApplicationGetRes) SetWsId

func (o *ApplicationGetRes) SetWsId(v string)

SetWsId sets field value

func (ApplicationGetRes) ToMap

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

func (*ApplicationGetRes) UnmarshalJSON

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

type ApplicationListRes

type ApplicationListRes struct {
	Count int64         `json:"count"`
	Data  []Application `json:"data"`
}

ApplicationListRes struct for ApplicationListRes

func NewApplicationListRes

func NewApplicationListRes(count int64, data []Application) *ApplicationListRes

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

func NewApplicationListResWithDefaults

func NewApplicationListResWithDefaults() *ApplicationListRes

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

func (*ApplicationListRes) GetCount

func (o *ApplicationListRes) GetCount() int64

GetCount returns the Count field value

func (*ApplicationListRes) GetCountOk

func (o *ApplicationListRes) GetCountOk() (*int64, bool)

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

func (*ApplicationListRes) GetData

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

GetData returns the Data field value

func (*ApplicationListRes) GetDataOk

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

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

func (ApplicationListRes) MarshalJSON

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

func (*ApplicationListRes) SetCount

func (o *ApplicationListRes) SetCount(v int64)

SetCount sets field value

func (*ApplicationListRes) SetData

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

SetData sets field value

func (ApplicationListRes) ToMap

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

func (*ApplicationListRes) UnmarshalJSON

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

type ApplicationUpdateReq

type ApplicationUpdateReq struct {
	Name string `json:"name"`
}

ApplicationUpdateReq struct for ApplicationUpdateReq

func NewApplicationUpdateReq

func NewApplicationUpdateReq(name string) *ApplicationUpdateReq

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

func NewApplicationUpdateReqWithDefaults

func NewApplicationUpdateReqWithDefaults() *ApplicationUpdateReq

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

func (*ApplicationUpdateReq) GetName

func (o *ApplicationUpdateReq) GetName() string

GetName returns the Name field value

func (*ApplicationUpdateReq) GetNameOk

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

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

func (ApplicationUpdateReq) MarshalJSON

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

func (*ApplicationUpdateReq) SetName

func (o *ApplicationUpdateReq) SetName(v string)

SetName sets field value

func (ApplicationUpdateReq) ToMap

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

func (*ApplicationUpdateReq) UnmarshalJSON

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

type ApplicationUpdateRes

type ApplicationUpdateRes struct {
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	WsId      string `json:"ws_id"`
}

ApplicationUpdateRes struct for ApplicationUpdateRes

func NewApplicationUpdateRes

func NewApplicationUpdateRes(createdAt int64, id string, name string, updatedAt int64, wsId string) *ApplicationUpdateRes

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

func NewApplicationUpdateResWithDefaults

func NewApplicationUpdateResWithDefaults() *ApplicationUpdateRes

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

func (*ApplicationUpdateRes) GetCreatedAt

func (o *ApplicationUpdateRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*ApplicationUpdateRes) GetCreatedAtOk

func (o *ApplicationUpdateRes) GetCreatedAtOk() (*int64, bool)

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

func (*ApplicationUpdateRes) GetId

func (o *ApplicationUpdateRes) GetId() string

GetId returns the Id field value

func (*ApplicationUpdateRes) GetIdOk

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

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

func (*ApplicationUpdateRes) GetName

func (o *ApplicationUpdateRes) GetName() string

GetName returns the Name field value

func (*ApplicationUpdateRes) GetNameOk

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

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

func (*ApplicationUpdateRes) GetUpdatedAt

func (o *ApplicationUpdateRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*ApplicationUpdateRes) GetUpdatedAtOk

func (o *ApplicationUpdateRes) GetUpdatedAtOk() (*int64, bool)

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

func (*ApplicationUpdateRes) GetWsId

func (o *ApplicationUpdateRes) GetWsId() string

GetWsId returns the WsId field value

func (*ApplicationUpdateRes) GetWsIdOk

func (o *ApplicationUpdateRes) GetWsIdOk() (*string, bool)

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

func (ApplicationUpdateRes) MarshalJSON

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

func (*ApplicationUpdateRes) SetCreatedAt

func (o *ApplicationUpdateRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*ApplicationUpdateRes) SetId

func (o *ApplicationUpdateRes) SetId(v string)

SetId sets field value

func (*ApplicationUpdateRes) SetName

func (o *ApplicationUpdateRes) SetName(v string)

SetName sets field value

func (*ApplicationUpdateRes) SetUpdatedAt

func (o *ApplicationUpdateRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*ApplicationUpdateRes) SetWsId

func (o *ApplicationUpdateRes) SetWsId(v string)

SetWsId sets field value

func (ApplicationUpdateRes) ToMap

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

func (*ApplicationUpdateRes) UnmarshalJSON

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

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
	Middleware          MiddlewareFunction
	MiddlewareWithError MiddlewareFunctionWithError
	ResponseMiddleware  ResponseMiddlewareFunction
}

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 Endpoint

type Endpoint struct {
	AppId     string `json:"app_id"`
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Method    string `json:"method"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	Uri       string `json:"uri"`
}

Endpoint struct for Endpoint

func NewEndpoint

func NewEndpoint(appId string, createdAt int64, id string, method string, name string, updatedAt int64, uri string) *Endpoint

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

func NewEndpointWithDefaults

func NewEndpointWithDefaults() *Endpoint

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

func (*Endpoint) GetAppId

func (o *Endpoint) GetAppId() string

GetAppId returns the AppId field value

func (*Endpoint) GetAppIdOk

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

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

func (*Endpoint) GetCreatedAt

func (o *Endpoint) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*Endpoint) GetCreatedAtOk

func (o *Endpoint) GetCreatedAtOk() (*int64, bool)

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

func (*Endpoint) GetId

func (o *Endpoint) GetId() string

GetId returns the Id field value

func (*Endpoint) GetIdOk

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

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

func (*Endpoint) GetMethod

func (o *Endpoint) GetMethod() string

GetMethod returns the Method field value

func (*Endpoint) GetMethodOk

func (o *Endpoint) GetMethodOk() (*string, bool)

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

func (*Endpoint) GetName

func (o *Endpoint) GetName() string

GetName returns the Name field value

func (*Endpoint) GetNameOk

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

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

func (*Endpoint) GetUpdatedAt

func (o *Endpoint) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*Endpoint) GetUpdatedAtOk

func (o *Endpoint) GetUpdatedAtOk() (*int64, bool)

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

func (*Endpoint) GetUri

func (o *Endpoint) GetUri() string

GetUri returns the Uri field value

func (*Endpoint) GetUriOk

func (o *Endpoint) GetUriOk() (*string, bool)

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

func (Endpoint) MarshalJSON

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

func (*Endpoint) SetAppId

func (o *Endpoint) SetAppId(v string)

SetAppId sets field value

func (*Endpoint) SetCreatedAt

func (o *Endpoint) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*Endpoint) SetId

func (o *Endpoint) SetId(v string)

SetId sets field value

func (*Endpoint) SetMethod

func (o *Endpoint) SetMethod(v string)

SetMethod sets field value

func (*Endpoint) SetName

func (o *Endpoint) SetName(v string)

SetName sets field value

func (*Endpoint) SetUpdatedAt

func (o *Endpoint) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*Endpoint) SetUri

func (o *Endpoint) SetUri(v string)

SetUri sets field value

func (Endpoint) ToMap

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

func (*Endpoint) UnmarshalJSON

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

type EndpointAPIService

type EndpointAPIService service

EndpointAPIService EndpointAPI service

func (*EndpointAPIService) EndpointGet

EndpointGet Method for EndpointGet

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

func (*EndpointAPIService) EndpointGetExecute

Execute executes the request

@return EndpointListRes

func (*EndpointAPIService) EndpointIdDelete

EndpointIdDelete Method for EndpointIdDelete

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

func (*EndpointAPIService) EndpointIdDeleteExecute

Execute executes the request

@return EndpointDeleteRes

func (*EndpointAPIService) EndpointIdGet

EndpointIdGet Method for EndpointIdGet

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

func (*EndpointAPIService) EndpointIdGetExecute

Execute executes the request

@return EndpointGetRes

func (*EndpointAPIService) EndpointIdPatch

EndpointIdPatch Method for EndpointIdPatch

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

func (*EndpointAPIService) EndpointIdPatchExecute

Execute executes the request

@return EndpointUpdateRes

func (*EndpointAPIService) EndpointIdSecretGet

func (a *EndpointAPIService) EndpointIdSecretGet(ctx context.Context, id string) ApiEndpointIdSecretGetRequest

EndpointIdSecretGet Method for EndpointIdSecretGet

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

func (*EndpointAPIService) EndpointIdSecretGetExecute

Execute executes the request

@return EndpointGetSecretRes

func (*EndpointAPIService) EndpointPost

EndpointPost Method for EndpointPost

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

func (*EndpointAPIService) EndpointPostExecute

Execute executes the request

@return EndpointCreateRes

type EndpointCreateReq

type EndpointCreateReq struct {
	AppId  string `json:"app_id"`
	Method string `json:"method"`
	Name   string `json:"name"`
	Uri    string `json:"uri"`
}

EndpointCreateReq struct for EndpointCreateReq

func NewEndpointCreateReq

func NewEndpointCreateReq(appId string, method string, name string, uri string) *EndpointCreateReq

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

func NewEndpointCreateReqWithDefaults

func NewEndpointCreateReqWithDefaults() *EndpointCreateReq

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

func (*EndpointCreateReq) GetAppId

func (o *EndpointCreateReq) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointCreateReq) GetAppIdOk

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

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

func (*EndpointCreateReq) GetMethod

func (o *EndpointCreateReq) GetMethod() string

GetMethod returns the Method field value

func (*EndpointCreateReq) GetMethodOk

func (o *EndpointCreateReq) GetMethodOk() (*string, bool)

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

func (*EndpointCreateReq) GetName

func (o *EndpointCreateReq) GetName() string

GetName returns the Name field value

func (*EndpointCreateReq) GetNameOk

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

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

func (*EndpointCreateReq) GetUri

func (o *EndpointCreateReq) GetUri() string

GetUri returns the Uri field value

func (*EndpointCreateReq) GetUriOk

func (o *EndpointCreateReq) GetUriOk() (*string, bool)

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

func (EndpointCreateReq) MarshalJSON

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

func (*EndpointCreateReq) SetAppId

func (o *EndpointCreateReq) SetAppId(v string)

SetAppId sets field value

func (*EndpointCreateReq) SetMethod

func (o *EndpointCreateReq) SetMethod(v string)

SetMethod sets field value

func (*EndpointCreateReq) SetName

func (o *EndpointCreateReq) SetName(v string)

SetName sets field value

func (*EndpointCreateReq) SetUri

func (o *EndpointCreateReq) SetUri(v string)

SetUri sets field value

func (EndpointCreateReq) ToMap

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

func (*EndpointCreateReq) UnmarshalJSON

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

type EndpointCreateRes

type EndpointCreateRes struct {
	AppId     string `json:"app_id"`
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Method    string `json:"method"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	Uri       string `json:"uri"`
}

EndpointCreateRes struct for EndpointCreateRes

func NewEndpointCreateRes

func NewEndpointCreateRes(appId string, createdAt int64, id string, method string, name string, updatedAt int64, uri string) *EndpointCreateRes

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

func NewEndpointCreateResWithDefaults

func NewEndpointCreateResWithDefaults() *EndpointCreateRes

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

func (*EndpointCreateRes) GetAppId

func (o *EndpointCreateRes) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointCreateRes) GetAppIdOk

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

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

func (*EndpointCreateRes) GetCreatedAt

func (o *EndpointCreateRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*EndpointCreateRes) GetCreatedAtOk

func (o *EndpointCreateRes) GetCreatedAtOk() (*int64, bool)

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

func (*EndpointCreateRes) GetId

func (o *EndpointCreateRes) GetId() string

GetId returns the Id field value

func (*EndpointCreateRes) GetIdOk

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

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

func (*EndpointCreateRes) GetMethod

func (o *EndpointCreateRes) GetMethod() string

GetMethod returns the Method field value

func (*EndpointCreateRes) GetMethodOk

func (o *EndpointCreateRes) GetMethodOk() (*string, bool)

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

func (*EndpointCreateRes) GetName

func (o *EndpointCreateRes) GetName() string

GetName returns the Name field value

func (*EndpointCreateRes) GetNameOk

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

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

func (*EndpointCreateRes) GetUpdatedAt

func (o *EndpointCreateRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*EndpointCreateRes) GetUpdatedAtOk

func (o *EndpointCreateRes) GetUpdatedAtOk() (*int64, bool)

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

func (*EndpointCreateRes) GetUri

func (o *EndpointCreateRes) GetUri() string

GetUri returns the Uri field value

func (*EndpointCreateRes) GetUriOk

func (o *EndpointCreateRes) GetUriOk() (*string, bool)

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

func (EndpointCreateRes) MarshalJSON

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

func (*EndpointCreateRes) SetAppId

func (o *EndpointCreateRes) SetAppId(v string)

SetAppId sets field value

func (*EndpointCreateRes) SetCreatedAt

func (o *EndpointCreateRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*EndpointCreateRes) SetId

func (o *EndpointCreateRes) SetId(v string)

SetId sets field value

func (*EndpointCreateRes) SetMethod

func (o *EndpointCreateRes) SetMethod(v string)

SetMethod sets field value

func (*EndpointCreateRes) SetName

func (o *EndpointCreateRes) SetName(v string)

SetName sets field value

func (*EndpointCreateRes) SetUpdatedAt

func (o *EndpointCreateRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*EndpointCreateRes) SetUri

func (o *EndpointCreateRes) SetUri(v string)

SetUri sets field value

func (EndpointCreateRes) ToMap

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

func (*EndpointCreateRes) UnmarshalJSON

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

type EndpointDeleteRes

type EndpointDeleteRes struct {
	AppId     string `json:"app_id"`
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Method    string `json:"method"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	Uri       string `json:"uri"`
}

EndpointDeleteRes struct for EndpointDeleteRes

func NewEndpointDeleteRes

func NewEndpointDeleteRes(appId string, createdAt int64, id string, method string, name string, updatedAt int64, uri string) *EndpointDeleteRes

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

func NewEndpointDeleteResWithDefaults

func NewEndpointDeleteResWithDefaults() *EndpointDeleteRes

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

func (*EndpointDeleteRes) GetAppId

func (o *EndpointDeleteRes) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointDeleteRes) GetAppIdOk

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

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

func (*EndpointDeleteRes) GetCreatedAt

func (o *EndpointDeleteRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*EndpointDeleteRes) GetCreatedAtOk

func (o *EndpointDeleteRes) GetCreatedAtOk() (*int64, bool)

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

func (*EndpointDeleteRes) GetId

func (o *EndpointDeleteRes) GetId() string

GetId returns the Id field value

func (*EndpointDeleteRes) GetIdOk

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

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

func (*EndpointDeleteRes) GetMethod

func (o *EndpointDeleteRes) GetMethod() string

GetMethod returns the Method field value

func (*EndpointDeleteRes) GetMethodOk

func (o *EndpointDeleteRes) GetMethodOk() (*string, bool)

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

func (*EndpointDeleteRes) GetName

func (o *EndpointDeleteRes) GetName() string

GetName returns the Name field value

func (*EndpointDeleteRes) GetNameOk

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

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

func (*EndpointDeleteRes) GetUpdatedAt

func (o *EndpointDeleteRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*EndpointDeleteRes) GetUpdatedAtOk

func (o *EndpointDeleteRes) GetUpdatedAtOk() (*int64, bool)

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

func (*EndpointDeleteRes) GetUri

func (o *EndpointDeleteRes) GetUri() string

GetUri returns the Uri field value

func (*EndpointDeleteRes) GetUriOk

func (o *EndpointDeleteRes) GetUriOk() (*string, bool)

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

func (EndpointDeleteRes) MarshalJSON

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

func (*EndpointDeleteRes) SetAppId

func (o *EndpointDeleteRes) SetAppId(v string)

SetAppId sets field value

func (*EndpointDeleteRes) SetCreatedAt

func (o *EndpointDeleteRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*EndpointDeleteRes) SetId

func (o *EndpointDeleteRes) SetId(v string)

SetId sets field value

func (*EndpointDeleteRes) SetMethod

func (o *EndpointDeleteRes) SetMethod(v string)

SetMethod sets field value

func (*EndpointDeleteRes) SetName

func (o *EndpointDeleteRes) SetName(v string)

SetName sets field value

func (*EndpointDeleteRes) SetUpdatedAt

func (o *EndpointDeleteRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*EndpointDeleteRes) SetUri

func (o *EndpointDeleteRes) SetUri(v string)

SetUri sets field value

func (EndpointDeleteRes) ToMap

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

func (*EndpointDeleteRes) UnmarshalJSON

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

type EndpointGetRes

type EndpointGetRes struct {
	AppId     string `json:"app_id"`
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Method    string `json:"method"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	Uri       string `json:"uri"`
}

EndpointGetRes struct for EndpointGetRes

func NewEndpointGetRes

func NewEndpointGetRes(appId string, createdAt int64, id string, method string, name string, updatedAt int64, uri string) *EndpointGetRes

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

func NewEndpointGetResWithDefaults

func NewEndpointGetResWithDefaults() *EndpointGetRes

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

func (*EndpointGetRes) GetAppId

func (o *EndpointGetRes) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointGetRes) GetAppIdOk

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

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

func (*EndpointGetRes) GetCreatedAt

func (o *EndpointGetRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*EndpointGetRes) GetCreatedAtOk

func (o *EndpointGetRes) GetCreatedAtOk() (*int64, bool)

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

func (*EndpointGetRes) GetId

func (o *EndpointGetRes) GetId() string

GetId returns the Id field value

func (*EndpointGetRes) GetIdOk

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

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

func (*EndpointGetRes) GetMethod

func (o *EndpointGetRes) GetMethod() string

GetMethod returns the Method field value

func (*EndpointGetRes) GetMethodOk

func (o *EndpointGetRes) GetMethodOk() (*string, bool)

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

func (*EndpointGetRes) GetName

func (o *EndpointGetRes) GetName() string

GetName returns the Name field value

func (*EndpointGetRes) GetNameOk

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

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

func (*EndpointGetRes) GetUpdatedAt

func (o *EndpointGetRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*EndpointGetRes) GetUpdatedAtOk

func (o *EndpointGetRes) GetUpdatedAtOk() (*int64, bool)

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

func (*EndpointGetRes) GetUri

func (o *EndpointGetRes) GetUri() string

GetUri returns the Uri field value

func (*EndpointGetRes) GetUriOk

func (o *EndpointGetRes) GetUriOk() (*string, bool)

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

func (EndpointGetRes) MarshalJSON

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

func (*EndpointGetRes) SetAppId

func (o *EndpointGetRes) SetAppId(v string)

SetAppId sets field value

func (*EndpointGetRes) SetCreatedAt

func (o *EndpointGetRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*EndpointGetRes) SetId

func (o *EndpointGetRes) SetId(v string)

SetId sets field value

func (*EndpointGetRes) SetMethod

func (o *EndpointGetRes) SetMethod(v string)

SetMethod sets field value

func (*EndpointGetRes) SetName

func (o *EndpointGetRes) SetName(v string)

SetName sets field value

func (*EndpointGetRes) SetUpdatedAt

func (o *EndpointGetRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*EndpointGetRes) SetUri

func (o *EndpointGetRes) SetUri(v string)

SetUri sets field value

func (EndpointGetRes) ToMap

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

func (*EndpointGetRes) UnmarshalJSON

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

type EndpointGetSecretRes

type EndpointGetSecretRes struct {
	AppId     string `json:"app_id"`
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Method    string `json:"method"`
	Name      string `json:"name"`
	SecretKey string `json:"secret_key"`
	UpdatedAt int64  `json:"updated_at"`
	Uri       string `json:"uri"`
}

EndpointGetSecretRes struct for EndpointGetSecretRes

func NewEndpointGetSecretRes

func NewEndpointGetSecretRes(appId string, createdAt int64, id string, method string, name string, secretKey string, updatedAt int64, uri string) *EndpointGetSecretRes

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

func NewEndpointGetSecretResWithDefaults

func NewEndpointGetSecretResWithDefaults() *EndpointGetSecretRes

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

func (*EndpointGetSecretRes) GetAppId

func (o *EndpointGetSecretRes) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointGetSecretRes) GetAppIdOk

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

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

func (*EndpointGetSecretRes) GetCreatedAt

func (o *EndpointGetSecretRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*EndpointGetSecretRes) GetCreatedAtOk

func (o *EndpointGetSecretRes) GetCreatedAtOk() (*int64, bool)

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

func (*EndpointGetSecretRes) GetId

func (o *EndpointGetSecretRes) GetId() string

GetId returns the Id field value

func (*EndpointGetSecretRes) GetIdOk

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

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

func (*EndpointGetSecretRes) GetMethod

func (o *EndpointGetSecretRes) GetMethod() string

GetMethod returns the Method field value

func (*EndpointGetSecretRes) GetMethodOk

func (o *EndpointGetSecretRes) GetMethodOk() (*string, bool)

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

func (*EndpointGetSecretRes) GetName

func (o *EndpointGetSecretRes) GetName() string

GetName returns the Name field value

func (*EndpointGetSecretRes) GetNameOk

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

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

func (*EndpointGetSecretRes) GetSecretKey

func (o *EndpointGetSecretRes) GetSecretKey() string

GetSecretKey returns the SecretKey field value

func (*EndpointGetSecretRes) GetSecretKeyOk

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

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

func (*EndpointGetSecretRes) GetUpdatedAt

func (o *EndpointGetSecretRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*EndpointGetSecretRes) GetUpdatedAtOk

func (o *EndpointGetSecretRes) GetUpdatedAtOk() (*int64, bool)

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

func (*EndpointGetSecretRes) GetUri

func (o *EndpointGetSecretRes) GetUri() string

GetUri returns the Uri field value

func (*EndpointGetSecretRes) GetUriOk

func (o *EndpointGetSecretRes) GetUriOk() (*string, bool)

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

func (EndpointGetSecretRes) MarshalJSON

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

func (*EndpointGetSecretRes) SetAppId

func (o *EndpointGetSecretRes) SetAppId(v string)

SetAppId sets field value

func (*EndpointGetSecretRes) SetCreatedAt

func (o *EndpointGetSecretRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*EndpointGetSecretRes) SetId

func (o *EndpointGetSecretRes) SetId(v string)

SetId sets field value

func (*EndpointGetSecretRes) SetMethod

func (o *EndpointGetSecretRes) SetMethod(v string)

SetMethod sets field value

func (*EndpointGetSecretRes) SetName

func (o *EndpointGetSecretRes) SetName(v string)

SetName sets field value

func (*EndpointGetSecretRes) SetSecretKey

func (o *EndpointGetSecretRes) SetSecretKey(v string)

SetSecretKey sets field value

func (*EndpointGetSecretRes) SetUpdatedAt

func (o *EndpointGetSecretRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*EndpointGetSecretRes) SetUri

func (o *EndpointGetSecretRes) SetUri(v string)

SetUri sets field value

func (EndpointGetSecretRes) ToMap

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

func (*EndpointGetSecretRes) UnmarshalJSON

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

type EndpointListRes

type EndpointListRes struct {
	Count int64      `json:"count"`
	Data  []Endpoint `json:"data"`
}

EndpointListRes struct for EndpointListRes

func NewEndpointListRes

func NewEndpointListRes(count int64, data []Endpoint) *EndpointListRes

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

func NewEndpointListResWithDefaults

func NewEndpointListResWithDefaults() *EndpointListRes

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

func (*EndpointListRes) GetCount

func (o *EndpointListRes) GetCount() int64

GetCount returns the Count field value

func (*EndpointListRes) GetCountOk

func (o *EndpointListRes) GetCountOk() (*int64, bool)

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

func (*EndpointListRes) GetData

func (o *EndpointListRes) GetData() []Endpoint

GetData returns the Data field value

func (*EndpointListRes) GetDataOk

func (o *EndpointListRes) GetDataOk() ([]Endpoint, bool)

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

func (EndpointListRes) MarshalJSON

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

func (*EndpointListRes) SetCount

func (o *EndpointListRes) SetCount(v int64)

SetCount sets field value

func (*EndpointListRes) SetData

func (o *EndpointListRes) SetData(v []Endpoint)

SetData sets field value

func (EndpointListRes) ToMap

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

func (*EndpointListRes) UnmarshalJSON

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

type EndpointUpdateReq

type EndpointUpdateReq struct {
	Method string `json:"method"`
	Name   string `json:"name"`
	Uri    string `json:"uri"`
}

EndpointUpdateReq struct for EndpointUpdateReq

func NewEndpointUpdateReq

func NewEndpointUpdateReq(method string, name string, uri string) *EndpointUpdateReq

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

func NewEndpointUpdateReqWithDefaults

func NewEndpointUpdateReqWithDefaults() *EndpointUpdateReq

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

func (*EndpointUpdateReq) GetMethod

func (o *EndpointUpdateReq) GetMethod() string

GetMethod returns the Method field value

func (*EndpointUpdateReq) GetMethodOk

func (o *EndpointUpdateReq) GetMethodOk() (*string, bool)

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

func (*EndpointUpdateReq) GetName

func (o *EndpointUpdateReq) GetName() string

GetName returns the Name field value

func (*EndpointUpdateReq) GetNameOk

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

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

func (*EndpointUpdateReq) GetUri

func (o *EndpointUpdateReq) GetUri() string

GetUri returns the Uri field value

func (*EndpointUpdateReq) GetUriOk

func (o *EndpointUpdateReq) GetUriOk() (*string, bool)

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

func (EndpointUpdateReq) MarshalJSON

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

func (*EndpointUpdateReq) SetMethod

func (o *EndpointUpdateReq) SetMethod(v string)

SetMethod sets field value

func (*EndpointUpdateReq) SetName

func (o *EndpointUpdateReq) SetName(v string)

SetName sets field value

func (*EndpointUpdateReq) SetUri

func (o *EndpointUpdateReq) SetUri(v string)

SetUri sets field value

func (EndpointUpdateReq) ToMap

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

func (*EndpointUpdateReq) UnmarshalJSON

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

type EndpointUpdateRes

type EndpointUpdateRes struct {
	AppId     string `json:"app_id"`
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
	Method    string `json:"method"`
	Name      string `json:"name"`
	UpdatedAt int64  `json:"updated_at"`
	Uri       string `json:"uri"`
}

EndpointUpdateRes struct for EndpointUpdateRes

func NewEndpointUpdateRes

func NewEndpointUpdateRes(appId string, createdAt int64, id string, method string, name string, updatedAt int64, uri string) *EndpointUpdateRes

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

func NewEndpointUpdateResWithDefaults

func NewEndpointUpdateResWithDefaults() *EndpointUpdateRes

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

func (*EndpointUpdateRes) GetAppId

func (o *EndpointUpdateRes) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointUpdateRes) GetAppIdOk

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

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

func (*EndpointUpdateRes) GetCreatedAt

func (o *EndpointUpdateRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*EndpointUpdateRes) GetCreatedAtOk

func (o *EndpointUpdateRes) GetCreatedAtOk() (*int64, bool)

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

func (*EndpointUpdateRes) GetId

func (o *EndpointUpdateRes) GetId() string

GetId returns the Id field value

func (*EndpointUpdateRes) GetIdOk

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

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

func (*EndpointUpdateRes) GetMethod

func (o *EndpointUpdateRes) GetMethod() string

GetMethod returns the Method field value

func (*EndpointUpdateRes) GetMethodOk

func (o *EndpointUpdateRes) GetMethodOk() (*string, bool)

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

func (*EndpointUpdateRes) GetName

func (o *EndpointUpdateRes) GetName() string

GetName returns the Name field value

func (*EndpointUpdateRes) GetNameOk

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

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

func (*EndpointUpdateRes) GetUpdatedAt

func (o *EndpointUpdateRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*EndpointUpdateRes) GetUpdatedAtOk

func (o *EndpointUpdateRes) GetUpdatedAtOk() (*int64, bool)

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

func (*EndpointUpdateRes) GetUri

func (o *EndpointUpdateRes) GetUri() string

GetUri returns the Uri field value

func (*EndpointUpdateRes) GetUriOk

func (o *EndpointUpdateRes) GetUriOk() (*string, bool)

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

func (EndpointUpdateRes) MarshalJSON

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

func (*EndpointUpdateRes) SetAppId

func (o *EndpointUpdateRes) SetAppId(v string)

SetAppId sets field value

func (*EndpointUpdateRes) SetCreatedAt

func (o *EndpointUpdateRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*EndpointUpdateRes) SetId

func (o *EndpointUpdateRes) SetId(v string)

SetId sets field value

func (*EndpointUpdateRes) SetMethod

func (o *EndpointUpdateRes) SetMethod(v string)

SetMethod sets field value

func (*EndpointUpdateRes) SetName

func (o *EndpointUpdateRes) SetName(v string)

SetName sets field value

func (*EndpointUpdateRes) SetUpdatedAt

func (o *EndpointUpdateRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (*EndpointUpdateRes) SetUri

func (o *EndpointUpdateRes) SetUri(v string)

SetUri sets field value

func (EndpointUpdateRes) ToMap

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

func (*EndpointUpdateRes) UnmarshalJSON

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

type Error

type Error struct {
	Error string `json:"error"`
}

Error struct for Error

func NewError

func NewError(error_ string) *Error

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

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

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

func (*Error) GetError

func (o *Error) GetError() string

GetError returns the Error field value

func (*Error) GetErrorOk

func (o *Error) GetErrorOk() (*string, bool)

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

func (Error) MarshalJSON

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

func (*Error) SetError

func (o *Error) SetError(v string)

SetError sets field value

func (Error) ToMap

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

func (*Error) UnmarshalJSON

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type MappedNullable

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

type Message

type Message struct {
	AppId     string            `json:"app_id"`
	Body      string            `json:"body"`
	CreatedAt int64             `json:"created_at"`
	Id        string            `json:"id"`
	Metadata  map[string]string `json:"metadata"`
	Tier      string            `json:"tier"`
	Type      string            `json:"type"`
}

Message struct for Message

func NewMessage

func NewMessage(appId string, body string, createdAt int64, id string, metadata map[string]string, tier string, type_ string) *Message

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

func NewMessageWithDefaults

func NewMessageWithDefaults() *Message

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

func (*Message) GetAppId

func (o *Message) GetAppId() string

GetAppId returns the AppId field value

func (*Message) GetAppIdOk

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

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

func (*Message) GetBody

func (o *Message) GetBody() string

GetBody returns the Body field value

func (*Message) GetBodyOk

func (o *Message) GetBodyOk() (*string, bool)

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

func (*Message) GetCreatedAt

func (o *Message) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*Message) GetCreatedAtOk

func (o *Message) GetCreatedAtOk() (*int64, bool)

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

func (*Message) GetId

func (o *Message) GetId() string

GetId returns the Id field value

func (*Message) GetIdOk

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

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

func (*Message) GetMetadata

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

GetMetadata returns the Metadata field value

func (*Message) GetMetadataOk

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

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

func (*Message) GetTier

func (o *Message) GetTier() string

GetTier returns the Tier field value

func (*Message) GetTierOk

func (o *Message) GetTierOk() (*string, bool)

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

func (*Message) GetType

func (o *Message) GetType() string

GetType returns the Type field value

func (*Message) GetTypeOk

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

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

func (Message) MarshalJSON

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

func (*Message) SetAppId

func (o *Message) SetAppId(v string)

SetAppId sets field value

func (*Message) SetBody

func (o *Message) SetBody(v string)

SetBody sets field value

func (*Message) SetCreatedAt

func (o *Message) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*Message) SetId

func (o *Message) SetId(v string)

SetId sets field value

func (*Message) SetMetadata

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

SetMetadata sets field value

func (*Message) SetTier

func (o *Message) SetTier(v string)

SetTier sets field value

func (*Message) SetType

func (o *Message) SetType(v string)

SetType sets field value

func (Message) ToMap

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

func (*Message) UnmarshalJSON

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

type MessageAPIService

type MessageAPIService service

MessageAPIService MessageAPI service

func (*MessageAPIService) MessageIdGet

MessageIdGet Method for MessageIdGet

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

func (*MessageAPIService) MessageIdGetExecute

func (a *MessageAPIService) MessageIdGetExecute(r ApiMessageIdGetRequest) (*MessageGetRes, *http.Response, error)

Execute executes the request

@return MessageGetRes

func (*MessageAPIService) MessagePost

MessagePost Method for MessagePost

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

func (*MessageAPIService) MessagePostExecute

Execute executes the request

@return MessageCreateRes

type MessageCreateReq

type MessageCreateReq struct {
	AppId  string                 `json:"app_id"`
	Object map[string]interface{} `json:"object"`
	Type   string                 `json:"type"`
}

MessageCreateReq struct for MessageCreateReq

func NewMessageCreateReq

func NewMessageCreateReq(appId string, object map[string]interface{}, type_ string) *MessageCreateReq

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

func NewMessageCreateReqWithDefaults

func NewMessageCreateReqWithDefaults() *MessageCreateReq

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

func (*MessageCreateReq) GetAppId

func (o *MessageCreateReq) GetAppId() string

GetAppId returns the AppId field value

func (*MessageCreateReq) GetAppIdOk

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

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

func (*MessageCreateReq) GetObject

func (o *MessageCreateReq) GetObject() map[string]interface{}

GetObject returns the Object field value

func (*MessageCreateReq) GetObjectOk

func (o *MessageCreateReq) GetObjectOk() (map[string]interface{}, bool)

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

func (*MessageCreateReq) GetType

func (o *MessageCreateReq) GetType() string

GetType returns the Type field value

func (*MessageCreateReq) GetTypeOk

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

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

func (MessageCreateReq) MarshalJSON

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

func (*MessageCreateReq) SetAppId

func (o *MessageCreateReq) SetAppId(v string)

SetAppId sets field value

func (*MessageCreateReq) SetObject

func (o *MessageCreateReq) SetObject(v map[string]interface{})

SetObject sets field value

func (*MessageCreateReq) SetType

func (o *MessageCreateReq) SetType(v string)

SetType sets field value

func (MessageCreateReq) ToMap

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

func (*MessageCreateReq) UnmarshalJSON

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

type MessageCreateRes

type MessageCreateRes struct {
	CreatedAt int64  `json:"created_at"`
	Id        string `json:"id"`
}

MessageCreateRes struct for MessageCreateRes

func NewMessageCreateRes

func NewMessageCreateRes(createdAt int64, id string) *MessageCreateRes

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

func NewMessageCreateResWithDefaults

func NewMessageCreateResWithDefaults() *MessageCreateRes

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

func (*MessageCreateRes) GetCreatedAt

func (o *MessageCreateRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*MessageCreateRes) GetCreatedAtOk

func (o *MessageCreateRes) GetCreatedAtOk() (*int64, bool)

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

func (*MessageCreateRes) GetId

func (o *MessageCreateRes) GetId() string

GetId returns the Id field value

func (*MessageCreateRes) GetIdOk

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

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

func (MessageCreateRes) MarshalJSON

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

func (*MessageCreateRes) SetCreatedAt

func (o *MessageCreateRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*MessageCreateRes) SetId

func (o *MessageCreateRes) SetId(v string)

SetId sets field value

func (MessageCreateRes) ToMap

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

func (*MessageCreateRes) UnmarshalJSON

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

type MessageEndpoint

type MessageEndpoint struct {
	Endpoint  Endpoint   `json:"endpoint"`
	Requests  []Request  `json:"requests"`
	Responses []Response `json:"responses"`
}

MessageEndpoint struct for MessageEndpoint

func NewMessageEndpoint

func NewMessageEndpoint(endpoint Endpoint, requests []Request, responses []Response) *MessageEndpoint

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

func NewMessageEndpointWithDefaults

func NewMessageEndpointWithDefaults() *MessageEndpoint

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

func (*MessageEndpoint) GetEndpoint

func (o *MessageEndpoint) GetEndpoint() Endpoint

GetEndpoint returns the Endpoint field value

func (*MessageEndpoint) GetEndpointOk

func (o *MessageEndpoint) GetEndpointOk() (*Endpoint, bool)

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

func (*MessageEndpoint) GetRequests

func (o *MessageEndpoint) GetRequests() []Request

GetRequests returns the Requests field value

func (*MessageEndpoint) GetRequestsOk

func (o *MessageEndpoint) GetRequestsOk() ([]Request, bool)

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

func (*MessageEndpoint) GetResponses

func (o *MessageEndpoint) GetResponses() []Response

GetResponses returns the Responses field value

func (*MessageEndpoint) GetResponsesOk

func (o *MessageEndpoint) GetResponsesOk() ([]Response, bool)

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

func (MessageEndpoint) MarshalJSON

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

func (*MessageEndpoint) SetEndpoint

func (o *MessageEndpoint) SetEndpoint(v Endpoint)

SetEndpoint sets field value

func (*MessageEndpoint) SetRequests

func (o *MessageEndpoint) SetRequests(v []Request)

SetRequests sets field value

func (*MessageEndpoint) SetResponses

func (o *MessageEndpoint) SetResponses(v []Response)

SetResponses sets field value

func (MessageEndpoint) ToMap

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

func (*MessageEndpoint) UnmarshalJSON

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

type MessageGetRes

type MessageGetRes struct {
	Endpoints []MessageEndpoint `json:"endpoints"`
	Message   Message           `json:"message"`
}

MessageGetRes struct for MessageGetRes

func NewMessageGetRes

func NewMessageGetRes(endpoints []MessageEndpoint, message Message) *MessageGetRes

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

func NewMessageGetResWithDefaults

func NewMessageGetResWithDefaults() *MessageGetRes

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

func (*MessageGetRes) GetEndpoints

func (o *MessageGetRes) GetEndpoints() []MessageEndpoint

GetEndpoints returns the Endpoints field value

func (*MessageGetRes) GetEndpointsOk

func (o *MessageGetRes) GetEndpointsOk() ([]MessageEndpoint, bool)

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

func (*MessageGetRes) GetMessage

func (o *MessageGetRes) GetMessage() Message

GetMessage returns the Message field value

func (*MessageGetRes) GetMessageOk

func (o *MessageGetRes) GetMessageOk() (*Message, bool)

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

func (MessageGetRes) MarshalJSON

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

func (*MessageGetRes) SetEndpoints

func (o *MessageGetRes) SetEndpoints(v []MessageEndpoint)

SetEndpoints sets field value

func (*MessageGetRes) SetMessage

func (o *MessageGetRes) SetMessage(v Message)

SetMessage sets field value

func (MessageGetRes) ToMap

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

func (*MessageGetRes) UnmarshalJSON

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

type MiddlewareFunction

type MiddlewareFunction func(*http.Request)

MiddlewareFunction provides way to implement custom middleware in the prepareRequest

type MiddlewareFunctionWithError

type MiddlewareFunctionWithError func(*http.Request) error

MiddlewareFunctionWithError provides way to implement custom middleware with errors in the prepareRequest

type NullableAccountGetRes

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

func NewNullableAccountGetRes

func NewNullableAccountGetRes(val *AccountGetRes) *NullableAccountGetRes

func (NullableAccountGetRes) Get

func (NullableAccountGetRes) IsSet

func (v NullableAccountGetRes) IsSet() bool

func (NullableAccountGetRes) MarshalJSON

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

func (*NullableAccountGetRes) Set

func (v *NullableAccountGetRes) Set(val *AccountGetRes)

func (*NullableAccountGetRes) UnmarshalJSON

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

func (*NullableAccountGetRes) Unset

func (v *NullableAccountGetRes) Unset()

type NullableApplication

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

func NewNullableApplication

func NewNullableApplication(val *Application) *NullableApplication

func (NullableApplication) Get

func (NullableApplication) IsSet

func (v NullableApplication) IsSet() bool

func (NullableApplication) MarshalJSON

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

func (*NullableApplication) Set

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

func (*NullableApplication) UnmarshalJSON

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

func (*NullableApplication) Unset

func (v *NullableApplication) Unset()

type NullableApplicationCreateReq

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

func NewNullableApplicationCreateReq

func NewNullableApplicationCreateReq(val *ApplicationCreateReq) *NullableApplicationCreateReq

func (NullableApplicationCreateReq) Get

func (NullableApplicationCreateReq) IsSet

func (NullableApplicationCreateReq) MarshalJSON

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

func (*NullableApplicationCreateReq) Set

func (*NullableApplicationCreateReq) UnmarshalJSON

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

func (*NullableApplicationCreateReq) Unset

func (v *NullableApplicationCreateReq) Unset()

type NullableApplicationCreateRes

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

func NewNullableApplicationCreateRes

func NewNullableApplicationCreateRes(val *ApplicationCreateRes) *NullableApplicationCreateRes

func (NullableApplicationCreateRes) Get

func (NullableApplicationCreateRes) IsSet

func (NullableApplicationCreateRes) MarshalJSON

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

func (*NullableApplicationCreateRes) Set

func (*NullableApplicationCreateRes) UnmarshalJSON

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

func (*NullableApplicationCreateRes) Unset

func (v *NullableApplicationCreateRes) Unset()

type NullableApplicationDeleteRes

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

func NewNullableApplicationDeleteRes

func NewNullableApplicationDeleteRes(val *ApplicationDeleteRes) *NullableApplicationDeleteRes

func (NullableApplicationDeleteRes) Get

func (NullableApplicationDeleteRes) IsSet

func (NullableApplicationDeleteRes) MarshalJSON

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

func (*NullableApplicationDeleteRes) Set

func (*NullableApplicationDeleteRes) UnmarshalJSON

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

func (*NullableApplicationDeleteRes) Unset

func (v *NullableApplicationDeleteRes) Unset()

type NullableApplicationGetRes

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

func NewNullableApplicationGetRes

func NewNullableApplicationGetRes(val *ApplicationGetRes) *NullableApplicationGetRes

func (NullableApplicationGetRes) Get

func (NullableApplicationGetRes) IsSet

func (v NullableApplicationGetRes) IsSet() bool

func (NullableApplicationGetRes) MarshalJSON

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

func (*NullableApplicationGetRes) Set

func (*NullableApplicationGetRes) UnmarshalJSON

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

func (*NullableApplicationGetRes) Unset

func (v *NullableApplicationGetRes) Unset()

type NullableApplicationListRes

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

func NewNullableApplicationListRes

func NewNullableApplicationListRes(val *ApplicationListRes) *NullableApplicationListRes

func (NullableApplicationListRes) Get

func (NullableApplicationListRes) IsSet

func (v NullableApplicationListRes) IsSet() bool

func (NullableApplicationListRes) MarshalJSON

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

func (*NullableApplicationListRes) Set

func (*NullableApplicationListRes) UnmarshalJSON

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

func (*NullableApplicationListRes) Unset

func (v *NullableApplicationListRes) Unset()

type NullableApplicationUpdateReq

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

func NewNullableApplicationUpdateReq

func NewNullableApplicationUpdateReq(val *ApplicationUpdateReq) *NullableApplicationUpdateReq

func (NullableApplicationUpdateReq) Get

func (NullableApplicationUpdateReq) IsSet

func (NullableApplicationUpdateReq) MarshalJSON

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

func (*NullableApplicationUpdateReq) Set

func (*NullableApplicationUpdateReq) UnmarshalJSON

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

func (*NullableApplicationUpdateReq) Unset

func (v *NullableApplicationUpdateReq) Unset()

type NullableApplicationUpdateRes

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

func NewNullableApplicationUpdateRes

func NewNullableApplicationUpdateRes(val *ApplicationUpdateRes) *NullableApplicationUpdateRes

func (NullableApplicationUpdateRes) Get

func (NullableApplicationUpdateRes) IsSet

func (NullableApplicationUpdateRes) MarshalJSON

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

func (*NullableApplicationUpdateRes) Set

func (*NullableApplicationUpdateRes) UnmarshalJSON

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

func (*NullableApplicationUpdateRes) Unset

func (v *NullableApplicationUpdateRes) 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 NullableEndpoint

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

func NewNullableEndpoint

func NewNullableEndpoint(val *Endpoint) *NullableEndpoint

func (NullableEndpoint) Get

func (v NullableEndpoint) Get() *Endpoint

func (NullableEndpoint) IsSet

func (v NullableEndpoint) IsSet() bool

func (NullableEndpoint) MarshalJSON

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

func (*NullableEndpoint) Set

func (v *NullableEndpoint) Set(val *Endpoint)

func (*NullableEndpoint) UnmarshalJSON

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

func (*NullableEndpoint) Unset

func (v *NullableEndpoint) Unset()

type NullableEndpointCreateReq

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

func NewNullableEndpointCreateReq

func NewNullableEndpointCreateReq(val *EndpointCreateReq) *NullableEndpointCreateReq

func (NullableEndpointCreateReq) Get

func (NullableEndpointCreateReq) IsSet

func (v NullableEndpointCreateReq) IsSet() bool

func (NullableEndpointCreateReq) MarshalJSON

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

func (*NullableEndpointCreateReq) Set

func (*NullableEndpointCreateReq) UnmarshalJSON

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

func (*NullableEndpointCreateReq) Unset

func (v *NullableEndpointCreateReq) Unset()

type NullableEndpointCreateRes

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

func NewNullableEndpointCreateRes

func NewNullableEndpointCreateRes(val *EndpointCreateRes) *NullableEndpointCreateRes

func (NullableEndpointCreateRes) Get

func (NullableEndpointCreateRes) IsSet

func (v NullableEndpointCreateRes) IsSet() bool

func (NullableEndpointCreateRes) MarshalJSON

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

func (*NullableEndpointCreateRes) Set

func (*NullableEndpointCreateRes) UnmarshalJSON

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

func (*NullableEndpointCreateRes) Unset

func (v *NullableEndpointCreateRes) Unset()

type NullableEndpointDeleteRes

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

func NewNullableEndpointDeleteRes

func NewNullableEndpointDeleteRes(val *EndpointDeleteRes) *NullableEndpointDeleteRes

func (NullableEndpointDeleteRes) Get

func (NullableEndpointDeleteRes) IsSet

func (v NullableEndpointDeleteRes) IsSet() bool

func (NullableEndpointDeleteRes) MarshalJSON

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

func (*NullableEndpointDeleteRes) Set

func (*NullableEndpointDeleteRes) UnmarshalJSON

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

func (*NullableEndpointDeleteRes) Unset

func (v *NullableEndpointDeleteRes) Unset()

type NullableEndpointGetRes

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

func NewNullableEndpointGetRes

func NewNullableEndpointGetRes(val *EndpointGetRes) *NullableEndpointGetRes

func (NullableEndpointGetRes) Get

func (NullableEndpointGetRes) IsSet

func (v NullableEndpointGetRes) IsSet() bool

func (NullableEndpointGetRes) MarshalJSON

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

func (*NullableEndpointGetRes) Set

func (*NullableEndpointGetRes) UnmarshalJSON

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

func (*NullableEndpointGetRes) Unset

func (v *NullableEndpointGetRes) Unset()

type NullableEndpointGetSecretRes

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

func NewNullableEndpointGetSecretRes

func NewNullableEndpointGetSecretRes(val *EndpointGetSecretRes) *NullableEndpointGetSecretRes

func (NullableEndpointGetSecretRes) Get

func (NullableEndpointGetSecretRes) IsSet

func (NullableEndpointGetSecretRes) MarshalJSON

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

func (*NullableEndpointGetSecretRes) Set

func (*NullableEndpointGetSecretRes) UnmarshalJSON

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

func (*NullableEndpointGetSecretRes) Unset

func (v *NullableEndpointGetSecretRes) Unset()

type NullableEndpointListRes

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

func NewNullableEndpointListRes

func NewNullableEndpointListRes(val *EndpointListRes) *NullableEndpointListRes

func (NullableEndpointListRes) Get

func (NullableEndpointListRes) IsSet

func (v NullableEndpointListRes) IsSet() bool

func (NullableEndpointListRes) MarshalJSON

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

func (*NullableEndpointListRes) Set

func (*NullableEndpointListRes) UnmarshalJSON

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

func (*NullableEndpointListRes) Unset

func (v *NullableEndpointListRes) Unset()

type NullableEndpointUpdateReq

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

func NewNullableEndpointUpdateReq

func NewNullableEndpointUpdateReq(val *EndpointUpdateReq) *NullableEndpointUpdateReq

func (NullableEndpointUpdateReq) Get

func (NullableEndpointUpdateReq) IsSet

func (v NullableEndpointUpdateReq) IsSet() bool

func (NullableEndpointUpdateReq) MarshalJSON

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

func (*NullableEndpointUpdateReq) Set

func (*NullableEndpointUpdateReq) UnmarshalJSON

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

func (*NullableEndpointUpdateReq) Unset

func (v *NullableEndpointUpdateReq) Unset()

type NullableEndpointUpdateRes

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

func NewNullableEndpointUpdateRes

func NewNullableEndpointUpdateRes(val *EndpointUpdateRes) *NullableEndpointUpdateRes

func (NullableEndpointUpdateRes) Get

func (NullableEndpointUpdateRes) IsSet

func (v NullableEndpointUpdateRes) IsSet() bool

func (NullableEndpointUpdateRes) MarshalJSON

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

func (*NullableEndpointUpdateRes) Set

func (*NullableEndpointUpdateRes) UnmarshalJSON

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

func (*NullableEndpointUpdateRes) Unset

func (v *NullableEndpointUpdateRes) Unset()

type NullableError

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

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

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

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

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

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableMessage

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

func NewNullableMessage

func NewNullableMessage(val *Message) *NullableMessage

func (NullableMessage) Get

func (v NullableMessage) Get() *Message

func (NullableMessage) IsSet

func (v NullableMessage) IsSet() bool

func (NullableMessage) MarshalJSON

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

func (*NullableMessage) Set

func (v *NullableMessage) Set(val *Message)

func (*NullableMessage) UnmarshalJSON

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

func (*NullableMessage) Unset

func (v *NullableMessage) Unset()

type NullableMessageCreateReq

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

func NewNullableMessageCreateReq

func NewNullableMessageCreateReq(val *MessageCreateReq) *NullableMessageCreateReq

func (NullableMessageCreateReq) Get

func (NullableMessageCreateReq) IsSet

func (v NullableMessageCreateReq) IsSet() bool

func (NullableMessageCreateReq) MarshalJSON

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

func (*NullableMessageCreateReq) Set

func (*NullableMessageCreateReq) UnmarshalJSON

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

func (*NullableMessageCreateReq) Unset

func (v *NullableMessageCreateReq) Unset()

type NullableMessageCreateRes

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

func NewNullableMessageCreateRes

func NewNullableMessageCreateRes(val *MessageCreateRes) *NullableMessageCreateRes

func (NullableMessageCreateRes) Get

func (NullableMessageCreateRes) IsSet

func (v NullableMessageCreateRes) IsSet() bool

func (NullableMessageCreateRes) MarshalJSON

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

func (*NullableMessageCreateRes) Set

func (*NullableMessageCreateRes) UnmarshalJSON

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

func (*NullableMessageCreateRes) Unset

func (v *NullableMessageCreateRes) Unset()

type NullableMessageEndpoint

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

func NewNullableMessageEndpoint

func NewNullableMessageEndpoint(val *MessageEndpoint) *NullableMessageEndpoint

func (NullableMessageEndpoint) Get

func (NullableMessageEndpoint) IsSet

func (v NullableMessageEndpoint) IsSet() bool

func (NullableMessageEndpoint) MarshalJSON

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

func (*NullableMessageEndpoint) Set

func (*NullableMessageEndpoint) UnmarshalJSON

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

func (*NullableMessageEndpoint) Unset

func (v *NullableMessageEndpoint) Unset()

type NullableMessageGetRes

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

func NewNullableMessageGetRes

func NewNullableMessageGetRes(val *MessageGetRes) *NullableMessageGetRes

func (NullableMessageGetRes) Get

func (NullableMessageGetRes) IsSet

func (v NullableMessageGetRes) IsSet() bool

func (NullableMessageGetRes) MarshalJSON

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

func (*NullableMessageGetRes) Set

func (v *NullableMessageGetRes) Set(val *MessageGetRes)

func (*NullableMessageGetRes) UnmarshalJSON

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

func (*NullableMessageGetRes) Unset

func (v *NullableMessageGetRes) Unset()

type NullableRequest

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

func NewNullableRequest

func NewNullableRequest(val *Request) *NullableRequest

func (NullableRequest) Get

func (v NullableRequest) Get() *Request

func (NullableRequest) IsSet

func (v NullableRequest) IsSet() bool

func (NullableRequest) MarshalJSON

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

func (*NullableRequest) Set

func (v *NullableRequest) Set(val *Request)

func (*NullableRequest) UnmarshalJSON

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

func (*NullableRequest) Unset

func (v *NullableRequest) Unset()

type NullableResponse

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

func NewNullableResponse

func NewNullableResponse(val *Response) *NullableResponse

func (NullableResponse) Get

func (v NullableResponse) Get() *Response

func (NullableResponse) IsSet

func (v NullableResponse) IsSet() bool

func (NullableResponse) MarshalJSON

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

func (*NullableResponse) Set

func (v *NullableResponse) Set(val *Response)

func (*NullableResponse) UnmarshalJSON

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

func (*NullableResponse) Unset

func (v *NullableResponse) Unset()

type NullableRoute

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

func NewNullableRoute

func NewNullableRoute(val *Route) *NullableRoute

func (NullableRoute) Get

func (v NullableRoute) Get() *Route

func (NullableRoute) IsSet

func (v NullableRoute) IsSet() bool

func (NullableRoute) MarshalJSON

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

func (*NullableRoute) Set

func (v *NullableRoute) Set(val *Route)

func (*NullableRoute) UnmarshalJSON

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

func (*NullableRoute) Unset

func (v *NullableRoute) Unset()

type NullableRouteCreateReq

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

func NewNullableRouteCreateReq

func NewNullableRouteCreateReq(val *RouteCreateReq) *NullableRouteCreateReq

func (NullableRouteCreateReq) Get

func (NullableRouteCreateReq) IsSet

func (v NullableRouteCreateReq) IsSet() bool

func (NullableRouteCreateReq) MarshalJSON

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

func (*NullableRouteCreateReq) Set

func (*NullableRouteCreateReq) UnmarshalJSON

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

func (*NullableRouteCreateReq) Unset

func (v *NullableRouteCreateReq) Unset()

type NullableRouteCreateRes

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

func NewNullableRouteCreateRes

func NewNullableRouteCreateRes(val *RouteCreateRes) *NullableRouteCreateRes

func (NullableRouteCreateRes) Get

func (NullableRouteCreateRes) IsSet

func (v NullableRouteCreateRes) IsSet() bool

func (NullableRouteCreateRes) MarshalJSON

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

func (*NullableRouteCreateRes) Set

func (*NullableRouteCreateRes) UnmarshalJSON

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

func (*NullableRouteCreateRes) Unset

func (v *NullableRouteCreateRes) Unset()

type NullableRouteDeleteRes

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

func NewNullableRouteDeleteRes

func NewNullableRouteDeleteRes(val *RouteDeleteRes) *NullableRouteDeleteRes

func (NullableRouteDeleteRes) Get

func (NullableRouteDeleteRes) IsSet

func (v NullableRouteDeleteRes) IsSet() bool

func (NullableRouteDeleteRes) MarshalJSON

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

func (*NullableRouteDeleteRes) Set

func (*NullableRouteDeleteRes) UnmarshalJSON

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

func (*NullableRouteDeleteRes) Unset

func (v *NullableRouteDeleteRes) Unset()

type NullableRouteGetRes

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

func NewNullableRouteGetRes

func NewNullableRouteGetRes(val *RouteGetRes) *NullableRouteGetRes

func (NullableRouteGetRes) Get

func (NullableRouteGetRes) IsSet

func (v NullableRouteGetRes) IsSet() bool

func (NullableRouteGetRes) MarshalJSON

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

func (*NullableRouteGetRes) Set

func (v *NullableRouteGetRes) Set(val *RouteGetRes)

func (*NullableRouteGetRes) UnmarshalJSON

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

func (*NullableRouteGetRes) Unset

func (v *NullableRouteGetRes) Unset()

type NullableRouteListRes

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

func NewNullableRouteListRes

func NewNullableRouteListRes(val *RouteListRes) *NullableRouteListRes

func (NullableRouteListRes) Get

func (NullableRouteListRes) IsSet

func (v NullableRouteListRes) IsSet() bool

func (NullableRouteListRes) MarshalJSON

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

func (*NullableRouteListRes) Set

func (v *NullableRouteListRes) Set(val *RouteListRes)

func (*NullableRouteListRes) UnmarshalJSON

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

func (*NullableRouteListRes) Unset

func (v *NullableRouteListRes) Unset()

type NullableRouteUpdateReq

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

func NewNullableRouteUpdateReq

func NewNullableRouteUpdateReq(val *RouteUpdateReq) *NullableRouteUpdateReq

func (NullableRouteUpdateReq) Get

func (NullableRouteUpdateReq) IsSet

func (v NullableRouteUpdateReq) IsSet() bool

func (NullableRouteUpdateReq) MarshalJSON

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

func (*NullableRouteUpdateReq) Set

func (*NullableRouteUpdateReq) UnmarshalJSON

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

func (*NullableRouteUpdateReq) Unset

func (v *NullableRouteUpdateReq) Unset()

type NullableRouteUpdateRes

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

func NewNullableRouteUpdateRes

func NewNullableRouteUpdateRes(val *RouteUpdateRes) *NullableRouteUpdateRes

func (NullableRouteUpdateRes) Get

func (NullableRouteUpdateRes) IsSet

func (v NullableRouteUpdateRes) IsSet() bool

func (NullableRouteUpdateRes) MarshalJSON

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

func (*NullableRouteUpdateRes) Set

func (*NullableRouteUpdateRes) UnmarshalJSON

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

func (*NullableRouteUpdateRes) Unset

func (v *NullableRouteUpdateRes) 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 Request

type Request struct {
	AppId     string            `json:"app_id"`
	Body      string            `json:"body"`
	CreatedAt int64             `json:"created_at"`
	EpId      string            `json:"ep_id"`
	Headers   map[string]string `json:"headers"`
	Id        string            `json:"id"`
	Metadata  map[string]string `json:"metadata"`
	Method    string            `json:"method"`
	MsgId     string            `json:"msg_id"`
	Tier      string            `json:"tier"`
	Type      string            `json:"type"`
	Uri       string            `json:"uri"`
}

Request struct for Request

func NewRequest

func NewRequest(appId string, body string, createdAt int64, epId string, headers map[string]string, id string, metadata map[string]string, method string, msgId string, tier string, type_ string, uri string) *Request

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

func NewRequestWithDefaults

func NewRequestWithDefaults() *Request

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

func (*Request) GetAppId

func (o *Request) GetAppId() string

GetAppId returns the AppId field value

func (*Request) GetAppIdOk

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

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

func (*Request) GetBody

func (o *Request) GetBody() string

GetBody returns the Body field value

func (*Request) GetBodyOk

func (o *Request) GetBodyOk() (*string, bool)

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

func (*Request) GetCreatedAt

func (o *Request) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*Request) GetCreatedAtOk

func (o *Request) GetCreatedAtOk() (*int64, bool)

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

func (*Request) GetEpId

func (o *Request) GetEpId() string

GetEpId returns the EpId field value

func (*Request) GetEpIdOk

func (o *Request) GetEpIdOk() (*string, bool)

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

func (*Request) GetHeaders

func (o *Request) GetHeaders() map[string]string

GetHeaders returns the Headers field value

func (*Request) GetHeadersOk

func (o *Request) GetHeadersOk() (*map[string]string, bool)

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

func (*Request) GetId

func (o *Request) GetId() string

GetId returns the Id field value

func (*Request) GetIdOk

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

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

func (*Request) GetMetadata

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

GetMetadata returns the Metadata field value

func (*Request) GetMetadataOk

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

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

func (*Request) GetMethod

func (o *Request) GetMethod() string

GetMethod returns the Method field value

func (*Request) GetMethodOk

func (o *Request) GetMethodOk() (*string, bool)

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

func (*Request) GetMsgId

func (o *Request) GetMsgId() string

GetMsgId returns the MsgId field value

func (*Request) GetMsgIdOk

func (o *Request) GetMsgIdOk() (*string, bool)

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

func (*Request) GetTier

func (o *Request) GetTier() string

GetTier returns the Tier field value

func (*Request) GetTierOk

func (o *Request) GetTierOk() (*string, bool)

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

func (*Request) GetType

func (o *Request) GetType() string

GetType returns the Type field value

func (*Request) GetTypeOk

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

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

func (*Request) GetUri

func (o *Request) GetUri() string

GetUri returns the Uri field value

func (*Request) GetUriOk

func (o *Request) GetUriOk() (*string, bool)

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

func (Request) MarshalJSON

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

func (*Request) SetAppId

func (o *Request) SetAppId(v string)

SetAppId sets field value

func (*Request) SetBody

func (o *Request) SetBody(v string)

SetBody sets field value

func (*Request) SetCreatedAt

func (o *Request) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*Request) SetEpId

func (o *Request) SetEpId(v string)

SetEpId sets field value

func (*Request) SetHeaders

func (o *Request) SetHeaders(v map[string]string)

SetHeaders sets field value

func (*Request) SetId

func (o *Request) SetId(v string)

SetId sets field value

func (*Request) SetMetadata

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

SetMetadata sets field value

func (*Request) SetMethod

func (o *Request) SetMethod(v string)

SetMethod sets field value

func (*Request) SetMsgId

func (o *Request) SetMsgId(v string)

SetMsgId sets field value

func (*Request) SetTier

func (o *Request) SetTier(v string)

SetTier sets field value

func (*Request) SetType

func (o *Request) SetType(v string)

SetType sets field value

func (*Request) SetUri

func (o *Request) SetUri(v string)

SetUri sets field value

func (Request) ToMap

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

func (*Request) UnmarshalJSON

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

type Response

type Response struct {
	AppId     string            `json:"app_id"`
	Body      string            `json:"body"`
	CreatedAt int64             `json:"created_at"`
	EpId      string            `json:"ep_id"`
	Headers   map[string]string `json:"headers"`
	Id        string            `json:"id"`
	Metadata  map[string]string `json:"metadata"`
	Method    string            `json:"method"`
	MsgId     string            `json:"msg_id"`
	ReqId     string            `json:"req_id"`
	Status    int64             `json:"status"`
	Tier      string            `json:"tier"`
	Type      string            `json:"type"`
	Uri       string            `json:"uri"`
}

Response struct for Response

func NewResponse

func NewResponse(appId string, body string, createdAt int64, epId string, headers map[string]string, id string, metadata map[string]string, method string, msgId string, reqId string, status int64, tier string, type_ string, uri string) *Response

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

func NewResponseWithDefaults

func NewResponseWithDefaults() *Response

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

func (*Response) GetAppId

func (o *Response) GetAppId() string

GetAppId returns the AppId field value

func (*Response) GetAppIdOk

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

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

func (*Response) GetBody

func (o *Response) GetBody() string

GetBody returns the Body field value

func (*Response) GetBodyOk

func (o *Response) GetBodyOk() (*string, bool)

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

func (*Response) GetCreatedAt

func (o *Response) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*Response) GetCreatedAtOk

func (o *Response) GetCreatedAtOk() (*int64, bool)

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

func (*Response) GetEpId

func (o *Response) GetEpId() string

GetEpId returns the EpId field value

func (*Response) GetEpIdOk

func (o *Response) GetEpIdOk() (*string, bool)

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

func (*Response) GetHeaders

func (o *Response) GetHeaders() map[string]string

GetHeaders returns the Headers field value

func (*Response) GetHeadersOk

func (o *Response) GetHeadersOk() (*map[string]string, bool)

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

func (*Response) GetId

func (o *Response) GetId() string

GetId returns the Id field value

func (*Response) GetIdOk

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

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

func (*Response) GetMetadata

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

GetMetadata returns the Metadata field value

func (*Response) GetMetadataOk

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

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

func (*Response) GetMethod

func (o *Response) GetMethod() string

GetMethod returns the Method field value

func (*Response) GetMethodOk

func (o *Response) GetMethodOk() (*string, bool)

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

func (*Response) GetMsgId

func (o *Response) GetMsgId() string

GetMsgId returns the MsgId field value

func (*Response) GetMsgIdOk

func (o *Response) GetMsgIdOk() (*string, bool)

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

func (*Response) GetReqId

func (o *Response) GetReqId() string

GetReqId returns the ReqId field value

func (*Response) GetReqIdOk

func (o *Response) GetReqIdOk() (*string, bool)

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

func (*Response) GetStatus

func (o *Response) GetStatus() int64

GetStatus returns the Status field value

func (*Response) GetStatusOk

func (o *Response) GetStatusOk() (*int64, bool)

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

func (*Response) GetTier

func (o *Response) GetTier() string

GetTier returns the Tier field value

func (*Response) GetTierOk

func (o *Response) GetTierOk() (*string, bool)

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

func (*Response) GetType

func (o *Response) GetType() string

GetType returns the Type field value

func (*Response) GetTypeOk

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

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

func (*Response) GetUri

func (o *Response) GetUri() string

GetUri returns the Uri field value

func (*Response) GetUriOk

func (o *Response) GetUriOk() (*string, bool)

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

func (Response) MarshalJSON

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

func (*Response) SetAppId

func (o *Response) SetAppId(v string)

SetAppId sets field value

func (*Response) SetBody

func (o *Response) SetBody(v string)

SetBody sets field value

func (*Response) SetCreatedAt

func (o *Response) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*Response) SetEpId

func (o *Response) SetEpId(v string)

SetEpId sets field value

func (*Response) SetHeaders

func (o *Response) SetHeaders(v map[string]string)

SetHeaders sets field value

func (*Response) SetId

func (o *Response) SetId(v string)

SetId sets field value

func (*Response) SetMetadata

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

SetMetadata sets field value

func (*Response) SetMethod

func (o *Response) SetMethod(v string)

SetMethod sets field value

func (*Response) SetMsgId

func (o *Response) SetMsgId(v string)

SetMsgId sets field value

func (*Response) SetReqId

func (o *Response) SetReqId(v string)

SetReqId sets field value

func (*Response) SetStatus

func (o *Response) SetStatus(v int64)

SetStatus sets field value

func (*Response) SetTier

func (o *Response) SetTier(v string)

SetTier sets field value

func (*Response) SetType

func (o *Response) SetType(v string)

SetType sets field value

func (*Response) SetUri

func (o *Response) SetUri(v string)

SetUri sets field value

func (Response) ToMap

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

func (*Response) UnmarshalJSON

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

type ResponseMiddlewareFunction

type ResponseMiddlewareFunction func(*http.Response, []byte) error

ResponseMiddlewareFunction provides way to implement custom middleware with errors after the response is received

type Route

type Route struct {
	ConditionExpression string `json:"condition_expression"`
	ConditionSource     string `json:"condition_source"`
	CreatedAt           int64  `json:"created_at"`
	EpId                string `json:"ep_id"`
	Exclusionary        bool   `json:"exclusionary"`
	Id                  string `json:"id"`
	Name                string `json:"name"`
	Priority            int64  `json:"priority"`
	UpdatedAt           int64  `json:"updated_at"`
}

Route struct for Route

func NewRoute

func NewRoute(conditionExpression string, conditionSource string, createdAt int64, epId string, exclusionary bool, id string, name string, priority int64, updatedAt int64) *Route

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

func NewRouteWithDefaults

func NewRouteWithDefaults() *Route

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

func (*Route) GetConditionExpression

func (o *Route) GetConditionExpression() string

GetConditionExpression returns the ConditionExpression field value

func (*Route) GetConditionExpressionOk

func (o *Route) GetConditionExpressionOk() (*string, bool)

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

func (*Route) GetConditionSource

func (o *Route) GetConditionSource() string

GetConditionSource returns the ConditionSource field value

func (*Route) GetConditionSourceOk

func (o *Route) GetConditionSourceOk() (*string, bool)

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

func (*Route) GetCreatedAt

func (o *Route) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*Route) GetCreatedAtOk

func (o *Route) GetCreatedAtOk() (*int64, bool)

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

func (*Route) GetEpId

func (o *Route) GetEpId() string

GetEpId returns the EpId field value

func (*Route) GetEpIdOk

func (o *Route) GetEpIdOk() (*string, bool)

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

func (*Route) GetExclusionary

func (o *Route) GetExclusionary() bool

GetExclusionary returns the Exclusionary field value

func (*Route) GetExclusionaryOk

func (o *Route) GetExclusionaryOk() (*bool, bool)

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

func (*Route) GetId

func (o *Route) GetId() string

GetId returns the Id field value

func (*Route) GetIdOk

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

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

func (*Route) GetName

func (o *Route) GetName() string

GetName returns the Name field value

func (*Route) GetNameOk

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

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

func (*Route) GetPriority

func (o *Route) GetPriority() int64

GetPriority returns the Priority field value

func (*Route) GetPriorityOk

func (o *Route) GetPriorityOk() (*int64, bool)

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

func (*Route) GetUpdatedAt

func (o *Route) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*Route) GetUpdatedAtOk

func (o *Route) GetUpdatedAtOk() (*int64, bool)

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

func (Route) MarshalJSON

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

func (*Route) SetConditionExpression

func (o *Route) SetConditionExpression(v string)

SetConditionExpression sets field value

func (*Route) SetConditionSource

func (o *Route) SetConditionSource(v string)

SetConditionSource sets field value

func (*Route) SetCreatedAt

func (o *Route) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*Route) SetEpId

func (o *Route) SetEpId(v string)

SetEpId sets field value

func (*Route) SetExclusionary

func (o *Route) SetExclusionary(v bool)

SetExclusionary sets field value

func (*Route) SetId

func (o *Route) SetId(v string)

SetId sets field value

func (*Route) SetName

func (o *Route) SetName(v string)

SetName sets field value

func (*Route) SetPriority

func (o *Route) SetPriority(v int64)

SetPriority sets field value

func (*Route) SetUpdatedAt

func (o *Route) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (Route) ToMap

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

func (*Route) UnmarshalJSON

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

type RouteAPIService

type RouteAPIService service

RouteAPIService RouteAPI service

func (*RouteAPIService) RouteGet

RouteGet Method for RouteGet

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

func (*RouteAPIService) RouteGetExecute

func (a *RouteAPIService) RouteGetExecute(r ApiRouteGetRequest) (*RouteListRes, *http.Response, error)

Execute executes the request

@return RouteListRes

func (*RouteAPIService) RouteIdDelete

func (a *RouteAPIService) RouteIdDelete(ctx context.Context, id string) ApiRouteIdDeleteRequest

RouteIdDelete Method for RouteIdDelete

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

func (*RouteAPIService) RouteIdDeleteExecute

func (a *RouteAPIService) RouteIdDeleteExecute(r ApiRouteIdDeleteRequest) (*RouteDeleteRes, *http.Response, error)

Execute executes the request

@return RouteDeleteRes

func (*RouteAPIService) RouteIdGet

RouteIdGet Method for RouteIdGet

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

func (*RouteAPIService) RouteIdGetExecute

func (a *RouteAPIService) RouteIdGetExecute(r ApiRouteIdGetRequest) (*RouteGetRes, *http.Response, error)

Execute executes the request

@return RouteGetRes

func (*RouteAPIService) RouteIdPatch

func (a *RouteAPIService) RouteIdPatch(ctx context.Context, id string) ApiRouteIdPatchRequest

RouteIdPatch Method for RouteIdPatch

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

func (*RouteAPIService) RouteIdPatchExecute

func (a *RouteAPIService) RouteIdPatchExecute(r ApiRouteIdPatchRequest) (*RouteUpdateRes, *http.Response, error)

Execute executes the request

@return RouteUpdateRes

func (*RouteAPIService) RoutePost

RoutePost Method for RoutePost

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

func (*RouteAPIService) RoutePostExecute

Execute executes the request

@return RouteCreateRes

type RouteCreateReq

type RouteCreateReq struct {
	ConditionExpression string `json:"condition_expression"`
	ConditionSource     string `json:"condition_source"`
	EpId                string `json:"ep_id"`
	Exclusionary        bool   `json:"exclusionary"`
	Name                string `json:"name"`
	Priority            int64  `json:"priority"`
}

RouteCreateReq struct for RouteCreateReq

func NewRouteCreateReq

func NewRouteCreateReq(conditionExpression string, conditionSource string, epId string, exclusionary bool, name string, priority int64) *RouteCreateReq

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

func NewRouteCreateReqWithDefaults

func NewRouteCreateReqWithDefaults() *RouteCreateReq

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

func (*RouteCreateReq) GetConditionExpression

func (o *RouteCreateReq) GetConditionExpression() string

GetConditionExpression returns the ConditionExpression field value

func (*RouteCreateReq) GetConditionExpressionOk

func (o *RouteCreateReq) GetConditionExpressionOk() (*string, bool)

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

func (*RouteCreateReq) GetConditionSource

func (o *RouteCreateReq) GetConditionSource() string

GetConditionSource returns the ConditionSource field value

func (*RouteCreateReq) GetConditionSourceOk

func (o *RouteCreateReq) GetConditionSourceOk() (*string, bool)

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

func (*RouteCreateReq) GetEpId

func (o *RouteCreateReq) GetEpId() string

GetEpId returns the EpId field value

func (*RouteCreateReq) GetEpIdOk

func (o *RouteCreateReq) GetEpIdOk() (*string, bool)

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

func (*RouteCreateReq) GetExclusionary

func (o *RouteCreateReq) GetExclusionary() bool

GetExclusionary returns the Exclusionary field value

func (*RouteCreateReq) GetExclusionaryOk

func (o *RouteCreateReq) GetExclusionaryOk() (*bool, bool)

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

func (*RouteCreateReq) GetName

func (o *RouteCreateReq) GetName() string

GetName returns the Name field value

func (*RouteCreateReq) GetNameOk

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

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

func (*RouteCreateReq) GetPriority

func (o *RouteCreateReq) GetPriority() int64

GetPriority returns the Priority field value

func (*RouteCreateReq) GetPriorityOk

func (o *RouteCreateReq) GetPriorityOk() (*int64, bool)

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

func (RouteCreateReq) MarshalJSON

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

func (*RouteCreateReq) SetConditionExpression

func (o *RouteCreateReq) SetConditionExpression(v string)

SetConditionExpression sets field value

func (*RouteCreateReq) SetConditionSource

func (o *RouteCreateReq) SetConditionSource(v string)

SetConditionSource sets field value

func (*RouteCreateReq) SetEpId

func (o *RouteCreateReq) SetEpId(v string)

SetEpId sets field value

func (*RouteCreateReq) SetExclusionary

func (o *RouteCreateReq) SetExclusionary(v bool)

SetExclusionary sets field value

func (*RouteCreateReq) SetName

func (o *RouteCreateReq) SetName(v string)

SetName sets field value

func (*RouteCreateReq) SetPriority

func (o *RouteCreateReq) SetPriority(v int64)

SetPriority sets field value

func (RouteCreateReq) ToMap

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

func (*RouteCreateReq) UnmarshalJSON

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

type RouteCreateRes

type RouteCreateRes struct {
	ConditionExpression string `json:"condition_expression"`
	ConditionSource     string `json:"condition_source"`
	CreatedAt           int64  `json:"created_at"`
	EpId                string `json:"ep_id"`
	Exclusionary        bool   `json:"exclusionary"`
	Id                  string `json:"id"`
	Name                string `json:"name"`
	Priority            int64  `json:"priority"`
	UpdatedAt           int64  `json:"updated_at"`
}

RouteCreateRes struct for RouteCreateRes

func NewRouteCreateRes

func NewRouteCreateRes(conditionExpression string, conditionSource string, createdAt int64, epId string, exclusionary bool, id string, name string, priority int64, updatedAt int64) *RouteCreateRes

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

func NewRouteCreateResWithDefaults

func NewRouteCreateResWithDefaults() *RouteCreateRes

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

func (*RouteCreateRes) GetConditionExpression

func (o *RouteCreateRes) GetConditionExpression() string

GetConditionExpression returns the ConditionExpression field value

func (*RouteCreateRes) GetConditionExpressionOk

func (o *RouteCreateRes) GetConditionExpressionOk() (*string, bool)

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

func (*RouteCreateRes) GetConditionSource

func (o *RouteCreateRes) GetConditionSource() string

GetConditionSource returns the ConditionSource field value

func (*RouteCreateRes) GetConditionSourceOk

func (o *RouteCreateRes) GetConditionSourceOk() (*string, bool)

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

func (*RouteCreateRes) GetCreatedAt

func (o *RouteCreateRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*RouteCreateRes) GetCreatedAtOk

func (o *RouteCreateRes) GetCreatedAtOk() (*int64, bool)

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

func (*RouteCreateRes) GetEpId

func (o *RouteCreateRes) GetEpId() string

GetEpId returns the EpId field value

func (*RouteCreateRes) GetEpIdOk

func (o *RouteCreateRes) GetEpIdOk() (*string, bool)

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

func (*RouteCreateRes) GetExclusionary

func (o *RouteCreateRes) GetExclusionary() bool

GetExclusionary returns the Exclusionary field value

func (*RouteCreateRes) GetExclusionaryOk

func (o *RouteCreateRes) GetExclusionaryOk() (*bool, bool)

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

func (*RouteCreateRes) GetId

func (o *RouteCreateRes) GetId() string

GetId returns the Id field value

func (*RouteCreateRes) GetIdOk

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

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

func (*RouteCreateRes) GetName

func (o *RouteCreateRes) GetName() string

GetName returns the Name field value

func (*RouteCreateRes) GetNameOk

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

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

func (*RouteCreateRes) GetPriority

func (o *RouteCreateRes) GetPriority() int64

GetPriority returns the Priority field value

func (*RouteCreateRes) GetPriorityOk

func (o *RouteCreateRes) GetPriorityOk() (*int64, bool)

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

func (*RouteCreateRes) GetUpdatedAt

func (o *RouteCreateRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*RouteCreateRes) GetUpdatedAtOk

func (o *RouteCreateRes) GetUpdatedAtOk() (*int64, bool)

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

func (RouteCreateRes) MarshalJSON

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

func (*RouteCreateRes) SetConditionExpression

func (o *RouteCreateRes) SetConditionExpression(v string)

SetConditionExpression sets field value

func (*RouteCreateRes) SetConditionSource

func (o *RouteCreateRes) SetConditionSource(v string)

SetConditionSource sets field value

func (*RouteCreateRes) SetCreatedAt

func (o *RouteCreateRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*RouteCreateRes) SetEpId

func (o *RouteCreateRes) SetEpId(v string)

SetEpId sets field value

func (*RouteCreateRes) SetExclusionary

func (o *RouteCreateRes) SetExclusionary(v bool)

SetExclusionary sets field value

func (*RouteCreateRes) SetId

func (o *RouteCreateRes) SetId(v string)

SetId sets field value

func (*RouteCreateRes) SetName

func (o *RouteCreateRes) SetName(v string)

SetName sets field value

func (*RouteCreateRes) SetPriority

func (o *RouteCreateRes) SetPriority(v int64)

SetPriority sets field value

func (*RouteCreateRes) SetUpdatedAt

func (o *RouteCreateRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (RouteCreateRes) ToMap

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

func (*RouteCreateRes) UnmarshalJSON

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

type RouteDeleteRes

type RouteDeleteRes struct {
	ConditionExpression string `json:"condition_expression"`
	ConditionSource     string `json:"condition_source"`
	CreatedAt           int64  `json:"created_at"`
	EpId                string `json:"ep_id"`
	Exclusionary        bool   `json:"exclusionary"`
	Id                  string `json:"id"`
	Name                string `json:"name"`
	Priority            int64  `json:"priority"`
	UpdatedAt           int64  `json:"updated_at"`
}

RouteDeleteRes struct for RouteDeleteRes

func NewRouteDeleteRes

func NewRouteDeleteRes(conditionExpression string, conditionSource string, createdAt int64, epId string, exclusionary bool, id string, name string, priority int64, updatedAt int64) *RouteDeleteRes

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

func NewRouteDeleteResWithDefaults

func NewRouteDeleteResWithDefaults() *RouteDeleteRes

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

func (*RouteDeleteRes) GetConditionExpression

func (o *RouteDeleteRes) GetConditionExpression() string

GetConditionExpression returns the ConditionExpression field value

func (*RouteDeleteRes) GetConditionExpressionOk

func (o *RouteDeleteRes) GetConditionExpressionOk() (*string, bool)

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

func (*RouteDeleteRes) GetConditionSource

func (o *RouteDeleteRes) GetConditionSource() string

GetConditionSource returns the ConditionSource field value

func (*RouteDeleteRes) GetConditionSourceOk

func (o *RouteDeleteRes) GetConditionSourceOk() (*string, bool)

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

func (*RouteDeleteRes) GetCreatedAt

func (o *RouteDeleteRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*RouteDeleteRes) GetCreatedAtOk

func (o *RouteDeleteRes) GetCreatedAtOk() (*int64, bool)

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

func (*RouteDeleteRes) GetEpId

func (o *RouteDeleteRes) GetEpId() string

GetEpId returns the EpId field value

func (*RouteDeleteRes) GetEpIdOk

func (o *RouteDeleteRes) GetEpIdOk() (*string, bool)

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

func (*RouteDeleteRes) GetExclusionary

func (o *RouteDeleteRes) GetExclusionary() bool

GetExclusionary returns the Exclusionary field value

func (*RouteDeleteRes) GetExclusionaryOk

func (o *RouteDeleteRes) GetExclusionaryOk() (*bool, bool)

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

func (*RouteDeleteRes) GetId

func (o *RouteDeleteRes) GetId() string

GetId returns the Id field value

func (*RouteDeleteRes) GetIdOk

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

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

func (*RouteDeleteRes) GetName

func (o *RouteDeleteRes) GetName() string

GetName returns the Name field value

func (*RouteDeleteRes) GetNameOk

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

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

func (*RouteDeleteRes) GetPriority

func (o *RouteDeleteRes) GetPriority() int64

GetPriority returns the Priority field value

func (*RouteDeleteRes) GetPriorityOk

func (o *RouteDeleteRes) GetPriorityOk() (*int64, bool)

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

func (*RouteDeleteRes) GetUpdatedAt

func (o *RouteDeleteRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*RouteDeleteRes) GetUpdatedAtOk

func (o *RouteDeleteRes) GetUpdatedAtOk() (*int64, bool)

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

func (RouteDeleteRes) MarshalJSON

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

func (*RouteDeleteRes) SetConditionExpression

func (o *RouteDeleteRes) SetConditionExpression(v string)

SetConditionExpression sets field value

func (*RouteDeleteRes) SetConditionSource

func (o *RouteDeleteRes) SetConditionSource(v string)

SetConditionSource sets field value

func (*RouteDeleteRes) SetCreatedAt

func (o *RouteDeleteRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*RouteDeleteRes) SetEpId

func (o *RouteDeleteRes) SetEpId(v string)

SetEpId sets field value

func (*RouteDeleteRes) SetExclusionary

func (o *RouteDeleteRes) SetExclusionary(v bool)

SetExclusionary sets field value

func (*RouteDeleteRes) SetId

func (o *RouteDeleteRes) SetId(v string)

SetId sets field value

func (*RouteDeleteRes) SetName

func (o *RouteDeleteRes) SetName(v string)

SetName sets field value

func (*RouteDeleteRes) SetPriority

func (o *RouteDeleteRes) SetPriority(v int64)

SetPriority sets field value

func (*RouteDeleteRes) SetUpdatedAt

func (o *RouteDeleteRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (RouteDeleteRes) ToMap

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

func (*RouteDeleteRes) UnmarshalJSON

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

type RouteGetRes

type RouteGetRes struct {
	ConditionExpression string `json:"condition_expression"`
	ConditionSource     string `json:"condition_source"`
	CreatedAt           int64  `json:"created_at"`
	EpId                string `json:"ep_id"`
	Exclusionary        bool   `json:"exclusionary"`
	Id                  string `json:"id"`
	Name                string `json:"name"`
	Priority            int64  `json:"priority"`
	UpdatedAt           int64  `json:"updated_at"`
}

RouteGetRes struct for RouteGetRes

func NewRouteGetRes

func NewRouteGetRes(conditionExpression string, conditionSource string, createdAt int64, epId string, exclusionary bool, id string, name string, priority int64, updatedAt int64) *RouteGetRes

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

func NewRouteGetResWithDefaults

func NewRouteGetResWithDefaults() *RouteGetRes

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

func (*RouteGetRes) GetConditionExpression

func (o *RouteGetRes) GetConditionExpression() string

GetConditionExpression returns the ConditionExpression field value

func (*RouteGetRes) GetConditionExpressionOk

func (o *RouteGetRes) GetConditionExpressionOk() (*string, bool)

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

func (*RouteGetRes) GetConditionSource

func (o *RouteGetRes) GetConditionSource() string

GetConditionSource returns the ConditionSource field value

func (*RouteGetRes) GetConditionSourceOk

func (o *RouteGetRes) GetConditionSourceOk() (*string, bool)

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

func (*RouteGetRes) GetCreatedAt

func (o *RouteGetRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*RouteGetRes) GetCreatedAtOk

func (o *RouteGetRes) GetCreatedAtOk() (*int64, bool)

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

func (*RouteGetRes) GetEpId

func (o *RouteGetRes) GetEpId() string

GetEpId returns the EpId field value

func (*RouteGetRes) GetEpIdOk

func (o *RouteGetRes) GetEpIdOk() (*string, bool)

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

func (*RouteGetRes) GetExclusionary

func (o *RouteGetRes) GetExclusionary() bool

GetExclusionary returns the Exclusionary field value

func (*RouteGetRes) GetExclusionaryOk

func (o *RouteGetRes) GetExclusionaryOk() (*bool, bool)

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

func (*RouteGetRes) GetId

func (o *RouteGetRes) GetId() string

GetId returns the Id field value

func (*RouteGetRes) GetIdOk

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

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

func (*RouteGetRes) GetName

func (o *RouteGetRes) GetName() string

GetName returns the Name field value

func (*RouteGetRes) GetNameOk

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

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

func (*RouteGetRes) GetPriority

func (o *RouteGetRes) GetPriority() int64

GetPriority returns the Priority field value

func (*RouteGetRes) GetPriorityOk

func (o *RouteGetRes) GetPriorityOk() (*int64, bool)

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

func (*RouteGetRes) GetUpdatedAt

func (o *RouteGetRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*RouteGetRes) GetUpdatedAtOk

func (o *RouteGetRes) GetUpdatedAtOk() (*int64, bool)

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

func (RouteGetRes) MarshalJSON

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

func (*RouteGetRes) SetConditionExpression

func (o *RouteGetRes) SetConditionExpression(v string)

SetConditionExpression sets field value

func (*RouteGetRes) SetConditionSource

func (o *RouteGetRes) SetConditionSource(v string)

SetConditionSource sets field value

func (*RouteGetRes) SetCreatedAt

func (o *RouteGetRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*RouteGetRes) SetEpId

func (o *RouteGetRes) SetEpId(v string)

SetEpId sets field value

func (*RouteGetRes) SetExclusionary

func (o *RouteGetRes) SetExclusionary(v bool)

SetExclusionary sets field value

func (*RouteGetRes) SetId

func (o *RouteGetRes) SetId(v string)

SetId sets field value

func (*RouteGetRes) SetName

func (o *RouteGetRes) SetName(v string)

SetName sets field value

func (*RouteGetRes) SetPriority

func (o *RouteGetRes) SetPriority(v int64)

SetPriority sets field value

func (*RouteGetRes) SetUpdatedAt

func (o *RouteGetRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (RouteGetRes) ToMap

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

func (*RouteGetRes) UnmarshalJSON

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

type RouteListRes

type RouteListRes struct {
	Count int64   `json:"count"`
	Data  []Route `json:"data"`
}

RouteListRes struct for RouteListRes

func NewRouteListRes

func NewRouteListRes(count int64, data []Route) *RouteListRes

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

func NewRouteListResWithDefaults

func NewRouteListResWithDefaults() *RouteListRes

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

func (*RouteListRes) GetCount

func (o *RouteListRes) GetCount() int64

GetCount returns the Count field value

func (*RouteListRes) GetCountOk

func (o *RouteListRes) GetCountOk() (*int64, bool)

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

func (*RouteListRes) GetData

func (o *RouteListRes) GetData() []Route

GetData returns the Data field value

func (*RouteListRes) GetDataOk

func (o *RouteListRes) GetDataOk() ([]Route, bool)

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

func (RouteListRes) MarshalJSON

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

func (*RouteListRes) SetCount

func (o *RouteListRes) SetCount(v int64)

SetCount sets field value

func (*RouteListRes) SetData

func (o *RouteListRes) SetData(v []Route)

SetData sets field value

func (RouteListRes) ToMap

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

func (*RouteListRes) UnmarshalJSON

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

type RouteUpdateReq

type RouteUpdateReq struct {
	ConditionExpression string `json:"condition_expression"`
	ConditionSource     string `json:"condition_source"`
	Exclusionary        bool   `json:"exclusionary"`
	Name                string `json:"name"`
	Priority            int64  `json:"priority"`
}

RouteUpdateReq struct for RouteUpdateReq

func NewRouteUpdateReq

func NewRouteUpdateReq(conditionExpression string, conditionSource string, exclusionary bool, name string, priority int64) *RouteUpdateReq

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

func NewRouteUpdateReqWithDefaults

func NewRouteUpdateReqWithDefaults() *RouteUpdateReq

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

func (*RouteUpdateReq) GetConditionExpression

func (o *RouteUpdateReq) GetConditionExpression() string

GetConditionExpression returns the ConditionExpression field value

func (*RouteUpdateReq) GetConditionExpressionOk

func (o *RouteUpdateReq) GetConditionExpressionOk() (*string, bool)

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

func (*RouteUpdateReq) GetConditionSource

func (o *RouteUpdateReq) GetConditionSource() string

GetConditionSource returns the ConditionSource field value

func (*RouteUpdateReq) GetConditionSourceOk

func (o *RouteUpdateReq) GetConditionSourceOk() (*string, bool)

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

func (*RouteUpdateReq) GetExclusionary

func (o *RouteUpdateReq) GetExclusionary() bool

GetExclusionary returns the Exclusionary field value

func (*RouteUpdateReq) GetExclusionaryOk

func (o *RouteUpdateReq) GetExclusionaryOk() (*bool, bool)

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

func (*RouteUpdateReq) GetName

func (o *RouteUpdateReq) GetName() string

GetName returns the Name field value

func (*RouteUpdateReq) GetNameOk

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

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

func (*RouteUpdateReq) GetPriority

func (o *RouteUpdateReq) GetPriority() int64

GetPriority returns the Priority field value

func (*RouteUpdateReq) GetPriorityOk

func (o *RouteUpdateReq) GetPriorityOk() (*int64, bool)

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

func (RouteUpdateReq) MarshalJSON

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

func (*RouteUpdateReq) SetConditionExpression

func (o *RouteUpdateReq) SetConditionExpression(v string)

SetConditionExpression sets field value

func (*RouteUpdateReq) SetConditionSource

func (o *RouteUpdateReq) SetConditionSource(v string)

SetConditionSource sets field value

func (*RouteUpdateReq) SetExclusionary

func (o *RouteUpdateReq) SetExclusionary(v bool)

SetExclusionary sets field value

func (*RouteUpdateReq) SetName

func (o *RouteUpdateReq) SetName(v string)

SetName sets field value

func (*RouteUpdateReq) SetPriority

func (o *RouteUpdateReq) SetPriority(v int64)

SetPriority sets field value

func (RouteUpdateReq) ToMap

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

func (*RouteUpdateReq) UnmarshalJSON

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

type RouteUpdateRes

type RouteUpdateRes struct {
	ConditionExpression string `json:"condition_expression"`
	ConditionSource     string `json:"condition_source"`
	CreatedAt           int64  `json:"created_at"`
	EpId                string `json:"ep_id"`
	Exclusionary        bool   `json:"exclusionary"`
	Id                  string `json:"id"`
	Name                string `json:"name"`
	Priority            int64  `json:"priority"`
	UpdatedAt           int64  `json:"updated_at"`
}

RouteUpdateRes struct for RouteUpdateRes

func NewRouteUpdateRes

func NewRouteUpdateRes(conditionExpression string, conditionSource string, createdAt int64, epId string, exclusionary bool, id string, name string, priority int64, updatedAt int64) *RouteUpdateRes

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

func NewRouteUpdateResWithDefaults

func NewRouteUpdateResWithDefaults() *RouteUpdateRes

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

func (*RouteUpdateRes) GetConditionExpression

func (o *RouteUpdateRes) GetConditionExpression() string

GetConditionExpression returns the ConditionExpression field value

func (*RouteUpdateRes) GetConditionExpressionOk

func (o *RouteUpdateRes) GetConditionExpressionOk() (*string, bool)

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

func (*RouteUpdateRes) GetConditionSource

func (o *RouteUpdateRes) GetConditionSource() string

GetConditionSource returns the ConditionSource field value

func (*RouteUpdateRes) GetConditionSourceOk

func (o *RouteUpdateRes) GetConditionSourceOk() (*string, bool)

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

func (*RouteUpdateRes) GetCreatedAt

func (o *RouteUpdateRes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*RouteUpdateRes) GetCreatedAtOk

func (o *RouteUpdateRes) GetCreatedAtOk() (*int64, bool)

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

func (*RouteUpdateRes) GetEpId

func (o *RouteUpdateRes) GetEpId() string

GetEpId returns the EpId field value

func (*RouteUpdateRes) GetEpIdOk

func (o *RouteUpdateRes) GetEpIdOk() (*string, bool)

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

func (*RouteUpdateRes) GetExclusionary

func (o *RouteUpdateRes) GetExclusionary() bool

GetExclusionary returns the Exclusionary field value

func (*RouteUpdateRes) GetExclusionaryOk

func (o *RouteUpdateRes) GetExclusionaryOk() (*bool, bool)

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

func (*RouteUpdateRes) GetId

func (o *RouteUpdateRes) GetId() string

GetId returns the Id field value

func (*RouteUpdateRes) GetIdOk

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

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

func (*RouteUpdateRes) GetName

func (o *RouteUpdateRes) GetName() string

GetName returns the Name field value

func (*RouteUpdateRes) GetNameOk

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

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

func (*RouteUpdateRes) GetPriority

func (o *RouteUpdateRes) GetPriority() int64

GetPriority returns the Priority field value

func (*RouteUpdateRes) GetPriorityOk

func (o *RouteUpdateRes) GetPriorityOk() (*int64, bool)

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

func (*RouteUpdateRes) GetUpdatedAt

func (o *RouteUpdateRes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*RouteUpdateRes) GetUpdatedAtOk

func (o *RouteUpdateRes) GetUpdatedAtOk() (*int64, bool)

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

func (RouteUpdateRes) MarshalJSON

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

func (*RouteUpdateRes) SetConditionExpression

func (o *RouteUpdateRes) SetConditionExpression(v string)

SetConditionExpression sets field value

func (*RouteUpdateRes) SetConditionSource

func (o *RouteUpdateRes) SetConditionSource(v string)

SetConditionSource sets field value

func (*RouteUpdateRes) SetCreatedAt

func (o *RouteUpdateRes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*RouteUpdateRes) SetEpId

func (o *RouteUpdateRes) SetEpId(v string)

SetEpId sets field value

func (*RouteUpdateRes) SetExclusionary

func (o *RouteUpdateRes) SetExclusionary(v bool)

SetExclusionary sets field value

func (*RouteUpdateRes) SetId

func (o *RouteUpdateRes) SetId(v string)

SetId sets field value

func (*RouteUpdateRes) SetName

func (o *RouteUpdateRes) SetName(v string)

SetName sets field value

func (*RouteUpdateRes) SetPriority

func (o *RouteUpdateRes) SetPriority(v int64)

SetPriority sets field value

func (*RouteUpdateRes) SetUpdatedAt

func (o *RouteUpdateRes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (RouteUpdateRes) ToMap

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

func (*RouteUpdateRes) UnmarshalJSON

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

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

Jump to

Keyboard shortcuts

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