openapi

package
v1.11.0 Latest Latest
Warning

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

Go to latest
Published: Sep 4, 2023 License: MIT Imports: 23 Imported by: 0

Documentation

Index

Constants

View Source
const NumTries = 3

Variables

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

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

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

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

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

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

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

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

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

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ApplicationApi *ApplicationApiService

	AuthenticationApi *AuthenticationApiService

	BackgroundTasksApi *BackgroundTasksApiService

	BroadcastApi *BroadcastApiService

	EndpointApi *EndpointApiService

	EnvironmentApi *EnvironmentApiService

	EnvironmentSettingsApi *EnvironmentSettingsApiService

	EventTypeApi *EventTypeApiService

	HealthApi *HealthApiService

	IntegrationApi *IntegrationApiService

	MessageApi *MessageApiService

	MessageAttemptApi *MessageAttemptApiService

	StatisticsApi *StatisticsApiService

	TransformationTemplateApi *TransformationTemplateApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Svix API API v1.1.1 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 ApiCalculateAggregateAppStatsRequest added in v0.84.0

type ApiCalculateAggregateAppStatsRequest struct {
	ApiService *StatisticsApiService
	// contains filtered or unexported fields
}

func (ApiCalculateAggregateAppStatsRequest) AppUsageStatsIn added in v0.84.1

func (ApiCalculateAggregateAppStatsRequest) Execute added in v0.84.0

func (ApiCalculateAggregateAppStatsRequest) IdempotencyKey added in v0.84.0

type ApiCreateBroadcastMessageRequest added in v1.4.12

type ApiCreateBroadcastMessageRequest struct {
	ApiService *BroadcastApiService
	// contains filtered or unexported fields
}

func (ApiCreateBroadcastMessageRequest) Execute added in v1.4.12

func (ApiCreateBroadcastMessageRequest) IdempotencyKey added in v1.4.12

func (ApiCreateBroadcastMessageRequest) MessageBroadcastIn added in v1.4.12

type ApiCreateMessageAttemptForEndpointRequest added in v1.4.12

type ApiCreateMessageAttemptForEndpointRequest struct {
	ApiService *MessageApiService
	// contains filtered or unexported fields
}

func (ApiCreateMessageAttemptForEndpointRequest) Execute added in v1.4.12

func (ApiCreateMessageAttemptForEndpointRequest) IdempotencyKey added in v1.4.12

func (ApiCreateMessageAttemptForEndpointRequest) MessageIn added in v1.4.12

type ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest added in v0.68.0

type ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest) Execute added in v0.68.0

func (ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest) Iterator added in v0.68.0

func (ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest) Limit added in v0.68.0

func (ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest) Since added in v0.68.0

func (ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest) Until added in v0.68.0

type ApiGetBackgroundTaskRequest added in v0.84.0

type ApiGetBackgroundTaskRequest struct {
	ApiService *BackgroundTasksApiService
	// contains filtered or unexported fields
}

func (ApiGetBackgroundTaskRequest) Execute added in v0.84.0

type ApiListBackgroundTasksRequest added in v0.84.0

type ApiListBackgroundTasksRequest struct {
	ApiService *BackgroundTasksApiService
	// contains filtered or unexported fields
}

func (ApiListBackgroundTasksRequest) Execute added in v0.84.0

func (ApiListBackgroundTasksRequest) Iterator added in v0.84.0

func (ApiListBackgroundTasksRequest) Limit added in v0.84.0

func (ApiListBackgroundTasksRequest) Order added in v0.84.0

func (ApiListBackgroundTasksRequest) Status added in v0.84.0

func (ApiListBackgroundTasksRequest) Task added in v0.84.0

type ApiV1ApplicationCreateRequest added in v0.84.0

type ApiV1ApplicationCreateRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiV1ApplicationCreateRequest) ApplicationIn added in v0.84.0

func (ApiV1ApplicationCreateRequest) Execute added in v0.84.0

func (ApiV1ApplicationCreateRequest) GetIfExists added in v0.84.0

func (ApiV1ApplicationCreateRequest) IdempotencyKey added in v0.84.0

func (r ApiV1ApplicationCreateRequest) IdempotencyKey(idempotencyKey string) ApiV1ApplicationCreateRequest

type ApiV1ApplicationDeleteRequest added in v0.84.0

type ApiV1ApplicationDeleteRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiV1ApplicationDeleteRequest) Execute added in v0.84.0

type ApiV1ApplicationGetRequest added in v0.84.0

type ApiV1ApplicationGetRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiV1ApplicationGetRequest) Execute added in v0.84.0

type ApiV1ApplicationGetStatsRequest added in v0.84.0

type ApiV1ApplicationGetStatsRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiV1ApplicationGetStatsRequest) Execute added in v0.84.0

func (ApiV1ApplicationGetStatsRequest) Since added in v0.84.0

func (ApiV1ApplicationGetStatsRequest) Until added in v0.84.0

type ApiV1ApplicationListRequest added in v0.84.0

type ApiV1ApplicationListRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiV1ApplicationListRequest) Execute added in v0.84.0

func (ApiV1ApplicationListRequest) Iterator added in v0.84.0

func (ApiV1ApplicationListRequest) Limit added in v0.84.0

func (ApiV1ApplicationListRequest) Order added in v0.84.0

type ApiV1ApplicationPatchRequest added in v1.6.0

type ApiV1ApplicationPatchRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiV1ApplicationPatchRequest) ApplicationPatch added in v1.6.0

func (r ApiV1ApplicationPatchRequest) ApplicationPatch(applicationPatch ApplicationPatch) ApiV1ApplicationPatchRequest

func (ApiV1ApplicationPatchRequest) Execute added in v1.6.0

type ApiV1ApplicationUpdateRequest added in v0.84.0

type ApiV1ApplicationUpdateRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiV1ApplicationUpdateRequest) ApplicationIn added in v0.84.0

func (ApiV1ApplicationUpdateRequest) Execute added in v0.84.0

type ApiV1AuthenticationAppPortalAccessRequest added in v0.84.0

type ApiV1AuthenticationAppPortalAccessRequest struct {
	ApiService *AuthenticationApiService
	// contains filtered or unexported fields
}

func (ApiV1AuthenticationAppPortalAccessRequest) AppPortalAccessIn added in v0.84.0

func (ApiV1AuthenticationAppPortalAccessRequest) Execute added in v0.84.0

func (ApiV1AuthenticationAppPortalAccessRequest) IdempotencyKey added in v0.84.0

type ApiV1AuthenticationDashboardAccessRequest added in v0.84.0

type ApiV1AuthenticationDashboardAccessRequest struct {
	ApiService *AuthenticationApiService
	// contains filtered or unexported fields
}

func (ApiV1AuthenticationDashboardAccessRequest) Execute added in v0.84.0

func (ApiV1AuthenticationDashboardAccessRequest) IdempotencyKey added in v0.84.0

type ApiV1AuthenticationExchangeOneTimeTokenRequest added in v0.85.1

type ApiV1AuthenticationExchangeOneTimeTokenRequest struct {
	ApiService *AuthenticationApiService
	// contains filtered or unexported fields
}

func (ApiV1AuthenticationExchangeOneTimeTokenRequest) Execute added in v0.85.1

func (ApiV1AuthenticationExchangeOneTimeTokenRequest) IdempotencyKey added in v0.85.1

func (ApiV1AuthenticationExchangeOneTimeTokenRequest) OneTimeTokenIn added in v0.85.1

type ApiV1AuthenticationExpireAllRequest added in v0.84.0

type ApiV1AuthenticationExpireAllRequest struct {
	ApiService *AuthenticationApiService
	// contains filtered or unexported fields
}

func (ApiV1AuthenticationExpireAllRequest) ApplicationTokenExpireIn added in v0.84.0

func (r ApiV1AuthenticationExpireAllRequest) ApplicationTokenExpireIn(applicationTokenExpireIn ApplicationTokenExpireIn) ApiV1AuthenticationExpireAllRequest

func (ApiV1AuthenticationExpireAllRequest) Execute added in v0.84.0

func (ApiV1AuthenticationExpireAllRequest) IdempotencyKey added in v0.84.0

type ApiV1AuthenticationLogoutRequest added in v0.84.0

type ApiV1AuthenticationLogoutRequest struct {
	ApiService *AuthenticationApiService
	// contains filtered or unexported fields
}

func (ApiV1AuthenticationLogoutRequest) Execute added in v0.84.0

func (ApiV1AuthenticationLogoutRequest) IdempotencyKey added in v0.84.0

type ApiV1EndpointCreateRequest added in v0.84.0

type ApiV1EndpointCreateRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointCreateRequest) EndpointIn added in v0.84.0

func (ApiV1EndpointCreateRequest) Execute added in v0.84.0

func (ApiV1EndpointCreateRequest) IdempotencyKey added in v0.84.0

func (r ApiV1EndpointCreateRequest) IdempotencyKey(idempotencyKey string) ApiV1EndpointCreateRequest

type ApiV1EndpointDeleteRequest added in v0.84.0

type ApiV1EndpointDeleteRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointDeleteRequest) Execute added in v0.84.0

type ApiV1EndpointGetHeadersRequest added in v0.84.0

type ApiV1EndpointGetHeadersRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointGetHeadersRequest) Execute added in v0.84.0

type ApiV1EndpointGetRequest added in v0.84.0

type ApiV1EndpointGetRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointGetRequest) Execute added in v0.84.0

type ApiV1EndpointGetSecretRequest added in v0.84.0

type ApiV1EndpointGetSecretRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointGetSecretRequest) Execute added in v0.84.0

type ApiV1EndpointGetStatsRequest added in v0.84.0

type ApiV1EndpointGetStatsRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointGetStatsRequest) Execute added in v0.84.0

func (ApiV1EndpointGetStatsRequest) Since added in v0.84.0

func (ApiV1EndpointGetStatsRequest) Until added in v0.84.0

type ApiV1EndpointListRequest added in v0.84.0

type ApiV1EndpointListRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointListRequest) Execute added in v0.84.0

func (ApiV1EndpointListRequest) Iterator added in v0.84.0

func (ApiV1EndpointListRequest) Limit added in v0.84.0

func (ApiV1EndpointListRequest) Order added in v0.84.0

type ApiV1EndpointPatchHeadersRequest added in v0.84.0

type ApiV1EndpointPatchHeadersRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointPatchHeadersRequest) EndpointHeadersPatchIn added in v0.84.0

func (r ApiV1EndpointPatchHeadersRequest) EndpointHeadersPatchIn(endpointHeadersPatchIn EndpointHeadersPatchIn) ApiV1EndpointPatchHeadersRequest

func (ApiV1EndpointPatchHeadersRequest) Execute added in v0.84.0

type ApiV1EndpointPatchRequest added in v1.6.0

type ApiV1EndpointPatchRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointPatchRequest) EndpointPatch added in v1.6.0

func (r ApiV1EndpointPatchRequest) EndpointPatch(endpointPatch EndpointPatch) ApiV1EndpointPatchRequest

func (ApiV1EndpointPatchRequest) Execute added in v1.6.0

type ApiV1EndpointRecoverRequest added in v0.84.0

type ApiV1EndpointRecoverRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointRecoverRequest) Execute added in v0.84.0

func (ApiV1EndpointRecoverRequest) IdempotencyKey added in v0.84.0

func (r ApiV1EndpointRecoverRequest) IdempotencyKey(idempotencyKey string) ApiV1EndpointRecoverRequest

func (ApiV1EndpointRecoverRequest) RecoverIn added in v0.84.0

type ApiV1EndpointReplayRequest added in v0.84.0

type ApiV1EndpointReplayRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointReplayRequest) Execute added in v0.84.0

func (ApiV1EndpointReplayRequest) IdempotencyKey added in v0.84.0

func (r ApiV1EndpointReplayRequest) IdempotencyKey(idempotencyKey string) ApiV1EndpointReplayRequest

func (ApiV1EndpointReplayRequest) ReplayIn added in v0.84.0

type ApiV1EndpointRotateSecretRequest added in v0.84.0

type ApiV1EndpointRotateSecretRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointRotateSecretRequest) EndpointSecretRotateIn added in v0.84.0

func (r ApiV1EndpointRotateSecretRequest) EndpointSecretRotateIn(endpointSecretRotateIn EndpointSecretRotateIn) ApiV1EndpointRotateSecretRequest

func (ApiV1EndpointRotateSecretRequest) Execute added in v0.84.0

func (ApiV1EndpointRotateSecretRequest) IdempotencyKey added in v0.84.0

type ApiV1EndpointSendExampleRequest added in v0.84.0

type ApiV1EndpointSendExampleRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointSendExampleRequest) EventExampleIn added in v0.84.0

func (ApiV1EndpointSendExampleRequest) Execute added in v0.84.0

func (ApiV1EndpointSendExampleRequest) IdempotencyKey added in v0.84.0

type ApiV1EndpointTransformationGetRequest added in v0.84.0

type ApiV1EndpointTransformationGetRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointTransformationGetRequest) Execute added in v0.84.0

type ApiV1EndpointTransformationPartialUpdateRequest added in v0.84.0

type ApiV1EndpointTransformationPartialUpdateRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointTransformationPartialUpdateRequest) EndpointTransformationIn added in v0.84.0

func (ApiV1EndpointTransformationPartialUpdateRequest) Execute added in v0.84.0

type ApiV1EndpointTransformationSimulateRequest added in v0.84.0

type ApiV1EndpointTransformationSimulateRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointTransformationSimulateRequest) EndpointTransformationSimulateIn added in v0.84.0

func (r ApiV1EndpointTransformationSimulateRequest) EndpointTransformationSimulateIn(endpointTransformationSimulateIn EndpointTransformationSimulateIn) ApiV1EndpointTransformationSimulateRequest

func (ApiV1EndpointTransformationSimulateRequest) Execute added in v0.84.0

func (ApiV1EndpointTransformationSimulateRequest) IdempotencyKey added in v0.84.0

type ApiV1EndpointUpdateHeadersRequest added in v0.84.0

type ApiV1EndpointUpdateHeadersRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointUpdateHeadersRequest) EndpointHeadersIn added in v0.84.0

func (ApiV1EndpointUpdateHeadersRequest) Execute added in v0.84.0

type ApiV1EndpointUpdateRequest added in v0.84.0

type ApiV1EndpointUpdateRequest struct {
	ApiService *EndpointApiService
	// contains filtered or unexported fields
}

func (ApiV1EndpointUpdateRequest) EndpointUpdate added in v0.84.0

func (r ApiV1EndpointUpdateRequest) EndpointUpdate(endpointUpdate EndpointUpdate) ApiV1EndpointUpdateRequest

func (ApiV1EndpointUpdateRequest) Execute added in v0.84.0

type ApiV1EnvironmentExportRequest added in v0.84.0

type ApiV1EnvironmentExportRequest struct {
	ApiService *EnvironmentApiService
	// contains filtered or unexported fields
}

func (ApiV1EnvironmentExportRequest) Body added in v0.84.0

func (ApiV1EnvironmentExportRequest) Execute added in v0.84.0

func (ApiV1EnvironmentExportRequest) IdempotencyKey added in v0.84.0

func (r ApiV1EnvironmentExportRequest) IdempotencyKey(idempotencyKey string) ApiV1EnvironmentExportRequest

type ApiV1EnvironmentGetSettingsRequest added in v0.84.0

type ApiV1EnvironmentGetSettingsRequest struct {
	ApiService *EnvironmentSettingsApiService
	// contains filtered or unexported fields
}

func (ApiV1EnvironmentGetSettingsRequest) Execute added in v0.84.0

type ApiV1EnvironmentImportRequest added in v0.84.0

type ApiV1EnvironmentImportRequest struct {
	ApiService *EnvironmentApiService
	// contains filtered or unexported fields
}

func (ApiV1EnvironmentImportRequest) EnvironmentIn added in v0.84.0

func (ApiV1EnvironmentImportRequest) Execute added in v0.84.0

func (ApiV1EnvironmentImportRequest) IdempotencyKey added in v0.84.0

func (r ApiV1EnvironmentImportRequest) IdempotencyKey(idempotencyKey string) ApiV1EnvironmentImportRequest

type ApiV1EventTypeCreateRequest added in v0.84.0

type ApiV1EventTypeCreateRequest struct {
	ApiService *EventTypeApiService
	// contains filtered or unexported fields
}

func (ApiV1EventTypeCreateRequest) EventTypeIn added in v0.84.0

func (ApiV1EventTypeCreateRequest) Execute added in v0.84.0

func (ApiV1EventTypeCreateRequest) IdempotencyKey added in v0.84.0

func (r ApiV1EventTypeCreateRequest) IdempotencyKey(idempotencyKey string) ApiV1EventTypeCreateRequest

type ApiV1EventTypeDeleteRequest added in v0.84.0

type ApiV1EventTypeDeleteRequest struct {
	ApiService *EventTypeApiService
	// contains filtered or unexported fields
}

func (ApiV1EventTypeDeleteRequest) Execute added in v0.84.0

func (ApiV1EventTypeDeleteRequest) Expunge added in v0.84.0

type ApiV1EventTypeGenerateExampleRequest added in v0.84.0

type ApiV1EventTypeGenerateExampleRequest struct {
	ApiService *EventTypeApiService
	// contains filtered or unexported fields
}

func (ApiV1EventTypeGenerateExampleRequest) EventTypeSchemaIn added in v0.84.0

func (ApiV1EventTypeGenerateExampleRequest) Execute added in v0.84.0

func (ApiV1EventTypeGenerateExampleRequest) IdempotencyKey added in v0.84.0

type ApiV1EventTypeGetRequest added in v0.84.0

type ApiV1EventTypeGetRequest struct {
	ApiService *EventTypeApiService
	// contains filtered or unexported fields
}

func (ApiV1EventTypeGetRequest) Execute added in v0.84.0

type ApiV1EventTypeImportOpenapiRequest added in v1.11.0

type ApiV1EventTypeImportOpenapiRequest struct {
	ApiService *EventTypeApiService
	// contains filtered or unexported fields
}

func (ApiV1EventTypeImportOpenapiRequest) EventTypeImportOpenApiIn added in v1.11.0

func (r ApiV1EventTypeImportOpenapiRequest) EventTypeImportOpenApiIn(eventTypeImportOpenApiIn EventTypeImportOpenApiIn) ApiV1EventTypeImportOpenapiRequest

func (ApiV1EventTypeImportOpenapiRequest) Execute added in v1.11.0

func (ApiV1EventTypeImportOpenapiRequest) IdempotencyKey added in v1.11.0

type ApiV1EventTypeListRequest added in v0.84.0

type ApiV1EventTypeListRequest struct {
	ApiService *EventTypeApiService
	// contains filtered or unexported fields
}

func (ApiV1EventTypeListRequest) Execute added in v0.84.0

func (ApiV1EventTypeListRequest) IncludeArchived added in v0.84.0

func (r ApiV1EventTypeListRequest) IncludeArchived(includeArchived bool) ApiV1EventTypeListRequest

func (ApiV1EventTypeListRequest) Iterator added in v0.84.0

func (ApiV1EventTypeListRequest) Limit added in v0.84.0

func (ApiV1EventTypeListRequest) Order added in v0.84.0

func (ApiV1EventTypeListRequest) WithContent added in v0.84.0

func (r ApiV1EventTypeListRequest) WithContent(withContent bool) ApiV1EventTypeListRequest

type ApiV1EventTypePatchRequest added in v1.6.0

type ApiV1EventTypePatchRequest struct {
	ApiService *EventTypeApiService
	// contains filtered or unexported fields
}

func (ApiV1EventTypePatchRequest) EventTypePatch added in v1.6.0

func (r ApiV1EventTypePatchRequest) EventTypePatch(eventTypePatch EventTypePatch) ApiV1EventTypePatchRequest

func (ApiV1EventTypePatchRequest) Execute added in v1.6.0

type ApiV1EventTypeUpdateRequest added in v0.84.0

type ApiV1EventTypeUpdateRequest struct {
	ApiService *EventTypeApiService
	// contains filtered or unexported fields
}

func (ApiV1EventTypeUpdateRequest) EventTypeUpdate added in v0.84.0

func (r ApiV1EventTypeUpdateRequest) EventTypeUpdate(eventTypeUpdate EventTypeUpdate) ApiV1EventTypeUpdateRequest

func (ApiV1EventTypeUpdateRequest) Execute added in v0.84.0

type ApiV1HealthGetRequest added in v0.84.0

type ApiV1HealthGetRequest struct {
	ApiService *HealthApiService
	// contains filtered or unexported fields
}

func (ApiV1HealthGetRequest) Execute added in v0.84.0

func (r ApiV1HealthGetRequest) Execute() (*_nethttp.Response, error)

type ApiV1IntegrationCreateRequest added in v0.84.0

type ApiV1IntegrationCreateRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (ApiV1IntegrationCreateRequest) Execute added in v0.84.0

func (ApiV1IntegrationCreateRequest) IdempotencyKey added in v0.84.0

func (r ApiV1IntegrationCreateRequest) IdempotencyKey(idempotencyKey string) ApiV1IntegrationCreateRequest

func (ApiV1IntegrationCreateRequest) IntegrationIn added in v0.84.0

type ApiV1IntegrationDeleteRequest added in v0.84.0

type ApiV1IntegrationDeleteRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (ApiV1IntegrationDeleteRequest) Execute added in v0.84.0

type ApiV1IntegrationGetKeyRequest added in v0.84.0

type ApiV1IntegrationGetKeyRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (ApiV1IntegrationGetKeyRequest) Execute added in v0.84.0

type ApiV1IntegrationGetRequest added in v0.84.0

type ApiV1IntegrationGetRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (ApiV1IntegrationGetRequest) Execute added in v0.84.0

type ApiV1IntegrationListRequest added in v0.84.0

type ApiV1IntegrationListRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (ApiV1IntegrationListRequest) Execute added in v0.84.0

func (ApiV1IntegrationListRequest) Iterator added in v0.84.0

func (ApiV1IntegrationListRequest) Limit added in v0.84.0

type ApiV1IntegrationRotateKeyRequest added in v0.84.0

type ApiV1IntegrationRotateKeyRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (ApiV1IntegrationRotateKeyRequest) Execute added in v0.84.0

func (ApiV1IntegrationRotateKeyRequest) IdempotencyKey added in v0.84.0

type ApiV1IntegrationUpdateRequest added in v0.84.0

type ApiV1IntegrationUpdateRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (ApiV1IntegrationUpdateRequest) Execute added in v0.84.0

func (ApiV1IntegrationUpdateRequest) IntegrationUpdate added in v0.84.0

func (r ApiV1IntegrationUpdateRequest) IntegrationUpdate(integrationUpdate IntegrationUpdate) ApiV1IntegrationUpdateRequest

type ApiV1MessageAttemptExpungeContentRequest added in v0.84.0

type ApiV1MessageAttemptExpungeContentRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptExpungeContentRequest) Execute added in v0.84.0

type ApiV1MessageAttemptGetHeadersRequest added in v0.84.0

type ApiV1MessageAttemptGetHeadersRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptGetHeadersRequest) Execute added in v0.84.0

type ApiV1MessageAttemptGetRequest added in v0.84.0

type ApiV1MessageAttemptGetRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptGetRequest) Execute added in v0.84.0

type ApiV1MessageAttemptListAttemptedDestinationsRequest added in v0.84.0

type ApiV1MessageAttemptListAttemptedDestinationsRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptListAttemptedDestinationsRequest) Execute added in v0.84.0

func (ApiV1MessageAttemptListAttemptedDestinationsRequest) Iterator added in v0.84.0

func (ApiV1MessageAttemptListAttemptedDestinationsRequest) Limit added in v0.84.0

type ApiV1MessageAttemptListAttemptedMessagesRequest added in v0.84.0

type ApiV1MessageAttemptListAttemptedMessagesRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptListAttemptedMessagesRequest) After added in v0.84.0

func (ApiV1MessageAttemptListAttemptedMessagesRequest) Before added in v0.84.0

func (ApiV1MessageAttemptListAttemptedMessagesRequest) Channel added in v0.84.0

func (ApiV1MessageAttemptListAttemptedMessagesRequest) EventTypes added in v1.8.0

func (ApiV1MessageAttemptListAttemptedMessagesRequest) Execute added in v0.84.0

func (ApiV1MessageAttemptListAttemptedMessagesRequest) Iterator added in v0.84.0

func (ApiV1MessageAttemptListAttemptedMessagesRequest) Limit added in v0.84.0

func (ApiV1MessageAttemptListAttemptedMessagesRequest) Status added in v0.84.0

func (ApiV1MessageAttemptListAttemptedMessagesRequest) WithContent added in v1.4.12

type ApiV1MessageAttemptListByEndpointDeprecatedRequest added in v0.84.0

type ApiV1MessageAttemptListByEndpointDeprecatedRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptListByEndpointDeprecatedRequest) After added in v0.84.0

func (ApiV1MessageAttemptListByEndpointDeprecatedRequest) Before added in v0.84.0

func (ApiV1MessageAttemptListByEndpointDeprecatedRequest) Channel added in v0.84.0

func (ApiV1MessageAttemptListByEndpointDeprecatedRequest) EventTypes added in v0.84.0

func (ApiV1MessageAttemptListByEndpointDeprecatedRequest) Execute added in v0.84.0

func (ApiV1MessageAttemptListByEndpointDeprecatedRequest) Iterator added in v0.84.0

func (ApiV1MessageAttemptListByEndpointDeprecatedRequest) Limit added in v0.84.0

func (ApiV1MessageAttemptListByEndpointDeprecatedRequest) Status added in v0.84.0

type ApiV1MessageAttemptListByEndpointRequest added in v0.84.0

type ApiV1MessageAttemptListByEndpointRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptListByEndpointRequest) After added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) Before added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) Channel added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) EventTypes added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) Execute added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) Iterator added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) Limit added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) Status added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) StatusCodeClass added in v0.84.0

func (ApiV1MessageAttemptListByEndpointRequest) WithContent added in v1.8.0

type ApiV1MessageAttemptListByMsgDeprecatedRequest added in v0.84.0

type ApiV1MessageAttemptListByMsgDeprecatedRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) After added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) Before added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) Channel added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) EndpointId added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) EventTypes added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) Execute added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) Iterator added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) Limit added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) Status added in v0.84.0

func (ApiV1MessageAttemptListByMsgDeprecatedRequest) StatusCodeClass added in v0.84.0

type ApiV1MessageAttemptListByMsgRequest added in v0.84.0

type ApiV1MessageAttemptListByMsgRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptListByMsgRequest) After added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) Before added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) Channel added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) EndpointId added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) EventTypes added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) Execute added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) Iterator added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) Limit added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) Status added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) StatusCodeClass added in v0.84.0

func (ApiV1MessageAttemptListByMsgRequest) WithContent added in v1.8.0

type ApiV1MessageAttemptResendRequest added in v0.84.0

type ApiV1MessageAttemptResendRequest struct {
	ApiService *MessageAttemptApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageAttemptResendRequest) Execute added in v0.84.0

func (ApiV1MessageAttemptResendRequest) IdempotencyKey added in v0.84.0

type ApiV1MessageCreateRequest added in v0.84.0

type ApiV1MessageCreateRequest struct {
	ApiService *MessageApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageCreateRequest) Execute added in v0.84.0

func (ApiV1MessageCreateRequest) IdempotencyKey added in v0.84.0

func (r ApiV1MessageCreateRequest) IdempotencyKey(idempotencyKey string) ApiV1MessageCreateRequest

func (ApiV1MessageCreateRequest) MessageIn added in v0.84.0

func (ApiV1MessageCreateRequest) WithContent added in v0.84.0

func (r ApiV1MessageCreateRequest) WithContent(withContent bool) ApiV1MessageCreateRequest

type ApiV1MessageExpungeContentRequest added in v0.84.0

type ApiV1MessageExpungeContentRequest struct {
	ApiService *MessageApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageExpungeContentRequest) Execute added in v0.84.0

type ApiV1MessageGetRawPayloadRequest added in v1.11.0

type ApiV1MessageGetRawPayloadRequest struct {
	ApiService *MessageApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageGetRawPayloadRequest) Execute added in v1.11.0

type ApiV1MessageGetRequest added in v0.84.0

type ApiV1MessageGetRequest struct {
	ApiService *MessageApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageGetRequest) Execute added in v0.84.0

func (ApiV1MessageGetRequest) WithContent added in v0.84.0

func (r ApiV1MessageGetRequest) WithContent(withContent bool) ApiV1MessageGetRequest

type ApiV1MessageListRequest added in v0.84.0

type ApiV1MessageListRequest struct {
	ApiService *MessageApiService
	// contains filtered or unexported fields
}

func (ApiV1MessageListRequest) After added in v0.84.0

func (ApiV1MessageListRequest) Before added in v0.84.0

func (ApiV1MessageListRequest) Channel added in v0.84.0

func (ApiV1MessageListRequest) EventTypes added in v0.84.0

func (r ApiV1MessageListRequest) EventTypes(eventTypes []string) ApiV1MessageListRequest

func (ApiV1MessageListRequest) Execute added in v0.84.0

func (ApiV1MessageListRequest) Iterator added in v0.84.0

func (ApiV1MessageListRequest) Limit added in v0.84.0

func (ApiV1MessageListRequest) WithContent added in v1.4.12

func (r ApiV1MessageListRequest) WithContent(withContent bool) ApiV1MessageListRequest

type ApiV1StatsAppAttemptsRequest added in v0.84.0

type ApiV1StatsAppAttemptsRequest struct {
	ApiService *StatisticsApiService
	// contains filtered or unexported fields
}

func (ApiV1StatsAppAttemptsRequest) EndDate added in v0.84.0

func (ApiV1StatsAppAttemptsRequest) Execute added in v0.84.0

func (ApiV1StatsAppAttemptsRequest) StartDate added in v0.84.0

type ApiV1StatsEndpointAttemptsRequest added in v0.84.0

type ApiV1StatsEndpointAttemptsRequest struct {
	ApiService *StatisticsApiService
	// contains filtered or unexported fields
}

func (ApiV1StatsEndpointAttemptsRequest) EndDate added in v0.84.0

func (ApiV1StatsEndpointAttemptsRequest) Execute added in v0.84.0

func (ApiV1StatsEndpointAttemptsRequest) StartDate added in v0.84.0

type ApiV1TransformationTemplateCreateRequest added in v1.8.0

type ApiV1TransformationTemplateCreateRequest struct {
	ApiService *TransformationTemplateApiService
	// contains filtered or unexported fields
}

func (ApiV1TransformationTemplateCreateRequest) Execute added in v1.8.0

func (ApiV1TransformationTemplateCreateRequest) IdempotencyKey added in v1.8.0

func (ApiV1TransformationTemplateCreateRequest) TemplateIn added in v1.8.0

type ApiV1TransformationTemplateDeleteRequest added in v1.8.0

type ApiV1TransformationTemplateDeleteRequest struct {
	ApiService *TransformationTemplateApiService
	// contains filtered or unexported fields
}

func (ApiV1TransformationTemplateDeleteRequest) Execute added in v1.8.0

type ApiV1TransformationTemplateGetRequest added in v1.8.0

type ApiV1TransformationTemplateGetRequest struct {
	ApiService *TransformationTemplateApiService
	// contains filtered or unexported fields
}

func (ApiV1TransformationTemplateGetRequest) Execute added in v1.8.0

type ApiV1TransformationTemplateListRequest added in v1.8.0

type ApiV1TransformationTemplateListRequest struct {
	ApiService *TransformationTemplateApiService
	// contains filtered or unexported fields
}

func (ApiV1TransformationTemplateListRequest) Execute added in v1.8.0

func (ApiV1TransformationTemplateListRequest) Iterator added in v1.8.0

func (ApiV1TransformationTemplateListRequest) Limit added in v1.8.0

func (ApiV1TransformationTemplateListRequest) Order added in v1.8.0

type ApiV1TransformationTemplatePatchRequest added in v1.8.0

type ApiV1TransformationTemplatePatchRequest struct {
	ApiService *TransformationTemplateApiService
	// contains filtered or unexported fields
}

func (ApiV1TransformationTemplatePatchRequest) Execute added in v1.8.0

func (ApiV1TransformationTemplatePatchRequest) TemplatePatch added in v1.8.0

type ApiV1TransformationTemplateSimulateRequest added in v1.8.1

type ApiV1TransformationTemplateSimulateRequest struct {
	ApiService *TransformationTemplateApiService
	// contains filtered or unexported fields
}

func (ApiV1TransformationTemplateSimulateRequest) Execute added in v1.8.1

func (ApiV1TransformationTemplateSimulateRequest) IdempotencyKey added in v1.8.1

func (ApiV1TransformationTemplateSimulateRequest) TransformationSimulateIn added in v1.8.1

type ApiV1TransformationTemplateUpdateRequest added in v1.8.0

type ApiV1TransformationTemplateUpdateRequest struct {
	ApiService *TransformationTemplateApiService
	// contains filtered or unexported fields
}

func (ApiV1TransformationTemplateUpdateRequest) Execute added in v1.8.0

func (ApiV1TransformationTemplateUpdateRequest) TemplateUpdate added in v1.8.0

type AppPortalAccessIn added in v0.75.0

type AppPortalAccessIn struct {
	// The set of feature flags the created token will have access to.
	FeatureFlags *[]string `json:"featureFlags,omitempty"`
}

AppPortalAccessIn struct for AppPortalAccessIn

func NewAppPortalAccessIn added in v0.75.0

func NewAppPortalAccessIn() *AppPortalAccessIn

NewAppPortalAccessIn instantiates a new AppPortalAccessIn 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 NewAppPortalAccessInWithDefaults added in v0.75.0

func NewAppPortalAccessInWithDefaults() *AppPortalAccessIn

NewAppPortalAccessInWithDefaults instantiates a new AppPortalAccessIn 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 (*AppPortalAccessIn) GetFeatureFlags added in v0.75.0

func (o *AppPortalAccessIn) GetFeatureFlags() []string

GetFeatureFlags returns the FeatureFlags field value if set, zero value otherwise.

func (*AppPortalAccessIn) GetFeatureFlagsOk added in v0.75.0

func (o *AppPortalAccessIn) GetFeatureFlagsOk() (*[]string, bool)

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

func (*AppPortalAccessIn) HasFeatureFlags added in v0.75.0

func (o *AppPortalAccessIn) HasFeatureFlags() bool

HasFeatureFlags returns a boolean if a field has been set.

func (AppPortalAccessIn) MarshalJSON added in v0.75.0

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

func (*AppPortalAccessIn) SetFeatureFlags added in v0.75.0

func (o *AppPortalAccessIn) SetFeatureFlags(v []string)

SetFeatureFlags gets a reference to the given []string and assigns it to the FeatureFlags field.

type AppPortalAccessOut added in v0.75.0

type AppPortalAccessOut struct {
	Token string `json:"token"`
	Url   string `json:"url"`
}

AppPortalAccessOut struct for AppPortalAccessOut

func NewAppPortalAccessOut added in v0.75.0

func NewAppPortalAccessOut(token string, url string) *AppPortalAccessOut

NewAppPortalAccessOut instantiates a new AppPortalAccessOut 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 NewAppPortalAccessOutWithDefaults added in v0.75.0

func NewAppPortalAccessOutWithDefaults() *AppPortalAccessOut

NewAppPortalAccessOutWithDefaults instantiates a new AppPortalAccessOut 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 (*AppPortalAccessOut) GetToken added in v0.75.0

func (o *AppPortalAccessOut) GetToken() string

GetToken returns the Token field value

func (*AppPortalAccessOut) GetTokenOk added in v0.75.0

func (o *AppPortalAccessOut) GetTokenOk() (*string, bool)

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

func (*AppPortalAccessOut) GetUrl added in v0.75.0

func (o *AppPortalAccessOut) GetUrl() string

GetUrl returns the Url field value

func (*AppPortalAccessOut) GetUrlOk added in v0.75.0

func (o *AppPortalAccessOut) GetUrlOk() (*string, bool)

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

func (AppPortalAccessOut) MarshalJSON added in v0.75.0

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

func (*AppPortalAccessOut) SetToken added in v0.75.0

func (o *AppPortalAccessOut) SetToken(v string)

SetToken sets field value

func (*AppPortalAccessOut) SetUrl added in v0.75.0

func (o *AppPortalAccessOut) SetUrl(v string)

SetUrl sets field value

type AppUsageStatsIn added in v0.84.1

type AppUsageStatsIn struct {
	AppIds []string  `json:"appIds,omitempty"`
	Since  time.Time `json:"since"`
	Until  time.Time `json:"until"`
}

AppUsageStatsIn struct for AppUsageStatsIn

func NewAppUsageStatsIn added in v0.84.1

func NewAppUsageStatsIn(since time.Time, until time.Time) *AppUsageStatsIn

NewAppUsageStatsIn instantiates a new AppUsageStatsIn 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 NewAppUsageStatsInWithDefaults added in v0.84.1

func NewAppUsageStatsInWithDefaults() *AppUsageStatsIn

NewAppUsageStatsInWithDefaults instantiates a new AppUsageStatsIn 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 (*AppUsageStatsIn) GetAppIds added in v0.84.1

func (o *AppUsageStatsIn) GetAppIds() []string

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

func (*AppUsageStatsIn) GetAppIdsOk added in v0.84.1

func (o *AppUsageStatsIn) GetAppIdsOk() (*[]string, bool)

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

func (*AppUsageStatsIn) GetSince added in v0.84.1

func (o *AppUsageStatsIn) GetSince() time.Time

GetSince returns the Since field value

func (*AppUsageStatsIn) GetSinceOk added in v0.84.1

func (o *AppUsageStatsIn) GetSinceOk() (*time.Time, bool)

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

func (*AppUsageStatsIn) GetUntil added in v0.84.1

func (o *AppUsageStatsIn) GetUntil() time.Time

GetUntil returns the Until field value

func (*AppUsageStatsIn) GetUntilOk added in v0.84.1

func (o *AppUsageStatsIn) GetUntilOk() (*time.Time, bool)

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

func (*AppUsageStatsIn) HasAppIds added in v0.84.1

func (o *AppUsageStatsIn) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (AppUsageStatsIn) MarshalJSON added in v0.84.1

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

func (*AppUsageStatsIn) SetAppIds added in v0.84.1

func (o *AppUsageStatsIn) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (*AppUsageStatsIn) SetSince added in v0.84.1

func (o *AppUsageStatsIn) SetSince(v time.Time)

SetSince sets field value

func (*AppUsageStatsIn) SetUntil added in v0.84.1

func (o *AppUsageStatsIn) SetUntil(v time.Time)

SetUntil sets field value

type AppUsageStatsOut added in v0.84.1

type AppUsageStatsOut struct {
	Id     string               `json:"id"`
	Status BackgroundTaskStatus `json:"status"`
	Task   BackgroundTaskType   `json:"task"`
}

AppUsageStatsOut struct for AppUsageStatsOut

func NewAppUsageStatsOut added in v0.84.1

func NewAppUsageStatsOut(id string, status BackgroundTaskStatus, task BackgroundTaskType) *AppUsageStatsOut

NewAppUsageStatsOut instantiates a new AppUsageStatsOut 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 NewAppUsageStatsOutWithDefaults added in v0.84.1

func NewAppUsageStatsOutWithDefaults() *AppUsageStatsOut

NewAppUsageStatsOutWithDefaults instantiates a new AppUsageStatsOut 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 (*AppUsageStatsOut) GetId added in v0.84.1

func (o *AppUsageStatsOut) GetId() string

GetId returns the Id field value

func (*AppUsageStatsOut) GetIdOk added in v0.84.1

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

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

func (*AppUsageStatsOut) GetStatus added in v0.84.1

func (o *AppUsageStatsOut) GetStatus() BackgroundTaskStatus

GetStatus returns the Status field value

func (*AppUsageStatsOut) GetStatusOk added in v0.84.1

func (o *AppUsageStatsOut) GetStatusOk() (*BackgroundTaskStatus, bool)

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

func (*AppUsageStatsOut) GetTask added in v0.84.1

func (o *AppUsageStatsOut) GetTask() BackgroundTaskType

GetTask returns the Task field value

func (*AppUsageStatsOut) GetTaskOk added in v0.84.1

func (o *AppUsageStatsOut) GetTaskOk() (*BackgroundTaskType, bool)

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

func (AppUsageStatsOut) MarshalJSON added in v0.84.1

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

func (*AppUsageStatsOut) SetId added in v0.84.1

func (o *AppUsageStatsOut) SetId(v string)

SetId sets field value

func (*AppUsageStatsOut) SetStatus added in v0.84.1

func (o *AppUsageStatsOut) SetStatus(v BackgroundTaskStatus)

SetStatus sets field value

func (*AppUsageStatsOut) SetTask added in v0.84.1

func (o *AppUsageStatsOut) SetTask(v BackgroundTaskType)

SetTask sets field value

type ApplicationApiService

type ApplicationApiService service

ApplicationApiService ApplicationApi service

func (*ApplicationApiService) GetAppUsageStatsApiV1AppStatsUsageGet added in v0.68.0

func (a *ApplicationApiService) GetAppUsageStatsApiV1AppStatsUsageGet(ctx _context.Context) ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest

* GetAppUsageStatsApiV1AppStatsUsageGet Get App Usage Stats * Get basic statistics for all applications. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetAppUsageStatsApiV1AppStatsUsageGetRequest

func (*ApplicationApiService) GetAppUsageStatsApiV1AppStatsUsageGetExecute added in v0.68.0

* Execute executes the request * @return ListResponseApplicationStats

func (*ApplicationApiService) V1ApplicationCreate added in v0.84.0

* V1ApplicationCreate Create Application * Create a new application. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1ApplicationCreateRequest

func (*ApplicationApiService) V1ApplicationCreateExecute added in v0.84.0

* Execute executes the request * @return ApplicationOut

func (*ApplicationApiService) V1ApplicationDelete added in v0.84.0

func (a *ApplicationApiService) V1ApplicationDelete(ctx _context.Context, appId string) ApiV1ApplicationDeleteRequest

* V1ApplicationDelete Delete Application * Delete an application. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1ApplicationDeleteRequest

func (*ApplicationApiService) V1ApplicationDeleteExecute added in v0.84.0

func (a *ApplicationApiService) V1ApplicationDeleteExecute(r ApiV1ApplicationDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*ApplicationApiService) V1ApplicationGet added in v0.84.0

* V1ApplicationGet Get Application * Get an application. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1ApplicationGetRequest

func (*ApplicationApiService) V1ApplicationGetExecute added in v0.84.0

* Execute executes the request * @return ApplicationOut

func (*ApplicationApiService) V1ApplicationGetStats added in v0.84.0

func (a *ApplicationApiService) V1ApplicationGetStats(ctx _context.Context, appId string) ApiV1ApplicationGetStatsRequest

* V1ApplicationGetStats Get App Stats * Get basic statistics for the application * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1ApplicationGetStatsRequest

func (*ApplicationApiService) V1ApplicationGetStatsExecute added in v0.84.0

* Execute executes the request * @return ApplicationStats

func (*ApplicationApiService) V1ApplicationList added in v0.84.0

* V1ApplicationList List Applications * List of all the organization's applications. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1ApplicationListRequest

func (*ApplicationApiService) V1ApplicationListExecute added in v0.84.0

* Execute executes the request * @return ListResponseApplicationOut

func (*ApplicationApiService) V1ApplicationPatch added in v1.6.0

func (a *ApplicationApiService) V1ApplicationPatch(ctx _context.Context, appId string) ApiV1ApplicationPatchRequest

* V1ApplicationPatch Patch Application * Partially update an application. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1ApplicationPatchRequest

func (*ApplicationApiService) V1ApplicationPatchExecute added in v1.6.0

* Execute executes the request * @return ApplicationOut

func (*ApplicationApiService) V1ApplicationUpdate added in v0.84.0

func (a *ApplicationApiService) V1ApplicationUpdate(ctx _context.Context, appId string) ApiV1ApplicationUpdateRequest

* V1ApplicationUpdate Update Application * Update an application. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1ApplicationUpdateRequest

func (*ApplicationApiService) V1ApplicationUpdateExecute added in v0.84.0

* Execute executes the request * @return ApplicationOut

type ApplicationIn

type ApplicationIn struct {
	Metadata  *map[string]string `json:"metadata,omitempty"`
	Name      string             `json:"name"`
	RateLimit NullableInt32      `json:"rateLimit,omitempty"`
	// Optional unique identifier for the application
	Uid NullableString `json:"uid,omitempty"`
}

ApplicationIn struct for ApplicationIn

func NewApplicationIn

func NewApplicationIn(name string) *ApplicationIn

NewApplicationIn instantiates a new ApplicationIn 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 NewApplicationInWithDefaults

func NewApplicationInWithDefaults() *ApplicationIn

NewApplicationInWithDefaults instantiates a new ApplicationIn 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 (*ApplicationIn) GetMetadata added in v0.69.0

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

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ApplicationIn) GetMetadataOk added in v0.69.0

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

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

func (*ApplicationIn) GetName

func (o *ApplicationIn) GetName() string

GetName returns the Name field value

func (*ApplicationIn) GetNameOk

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

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

func (*ApplicationIn) GetRateLimit

func (o *ApplicationIn) GetRateLimit() int32

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

func (*ApplicationIn) GetRateLimitOk

func (o *ApplicationIn) GetRateLimitOk() (*int32, bool)

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

func (*ApplicationIn) GetUid

func (o *ApplicationIn) GetUid() string

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

func (*ApplicationIn) GetUidOk

func (o *ApplicationIn) GetUidOk() (*string, bool)

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

func (*ApplicationIn) HasMetadata added in v0.69.0

func (o *ApplicationIn) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ApplicationIn) HasRateLimit

func (o *ApplicationIn) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*ApplicationIn) HasUid

func (o *ApplicationIn) HasUid() bool

HasUid returns a boolean if a field has been set.

func (ApplicationIn) MarshalJSON

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

func (*ApplicationIn) SetMetadata added in v0.69.0

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

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

func (*ApplicationIn) SetName

func (o *ApplicationIn) SetName(v string)

SetName sets field value

func (*ApplicationIn) SetRateLimit

func (o *ApplicationIn) SetRateLimit(v int32)

SetRateLimit gets a reference to the given NullableInt32 and assigns it to the RateLimit field.

func (*ApplicationIn) SetRateLimitNil added in v0.62.0

func (o *ApplicationIn) SetRateLimitNil()

SetRateLimitNil sets the value for RateLimit to be an explicit nil

func (*ApplicationIn) SetUid

func (o *ApplicationIn) SetUid(v string)

SetUid gets a reference to the given NullableString and assigns it to the Uid field.

func (*ApplicationIn) SetUidNil added in v0.62.0

func (o *ApplicationIn) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*ApplicationIn) UnsetRateLimit added in v0.62.0

func (o *ApplicationIn) UnsetRateLimit()

UnsetRateLimit ensures that no value is present for RateLimit, not even an explicit nil

func (*ApplicationIn) UnsetUid added in v0.62.0

func (o *ApplicationIn) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

type ApplicationOut

type ApplicationOut struct {
	CreatedAt time.Time `json:"createdAt"`
	// The app's ID
	Id        string            `json:"id"`
	Metadata  map[string]string `json:"metadata"`
	Name      string            `json:"name"`
	RateLimit NullableInt32     `json:"rateLimit,omitempty"`
	// The app's UID
	Uid       NullableString `json:"uid,omitempty"`
	UpdatedAt time.Time      `json:"updatedAt"`
}

ApplicationOut struct for ApplicationOut

func NewApplicationOut

func NewApplicationOut(createdAt time.Time, id string, metadata map[string]string, name string, updatedAt time.Time) *ApplicationOut

NewApplicationOut instantiates a new ApplicationOut 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 NewApplicationOutWithDefaults

func NewApplicationOutWithDefaults() *ApplicationOut

NewApplicationOutWithDefaults instantiates a new ApplicationOut 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 (*ApplicationOut) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*ApplicationOut) GetCreatedAtOk

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

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

func (*ApplicationOut) GetId

func (o *ApplicationOut) GetId() string

GetId returns the Id field value

func (*ApplicationOut) GetIdOk

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

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

func (*ApplicationOut) GetMetadata added in v0.69.0

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

GetMetadata returns the Metadata field value

func (*ApplicationOut) GetMetadataOk added in v0.69.0

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

func (o *ApplicationOut) GetName() string

GetName returns the Name field value

func (*ApplicationOut) GetNameOk

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

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

func (*ApplicationOut) GetRateLimit

func (o *ApplicationOut) GetRateLimit() int32

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

func (*ApplicationOut) GetRateLimitOk

func (o *ApplicationOut) GetRateLimitOk() (*int32, bool)

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

func (*ApplicationOut) GetUid

func (o *ApplicationOut) GetUid() string

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

func (*ApplicationOut) GetUidOk

func (o *ApplicationOut) GetUidOk() (*string, bool)

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

func (*ApplicationOut) GetUpdatedAt

func (o *ApplicationOut) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ApplicationOut) GetUpdatedAtOk

func (o *ApplicationOut) GetUpdatedAtOk() (*time.Time, bool)

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

func (*ApplicationOut) HasRateLimit

func (o *ApplicationOut) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*ApplicationOut) HasUid

func (o *ApplicationOut) HasUid() bool

HasUid returns a boolean if a field has been set.

func (ApplicationOut) MarshalJSON

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

func (*ApplicationOut) SetCreatedAt

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

SetCreatedAt sets field value

func (*ApplicationOut) SetId

func (o *ApplicationOut) SetId(v string)

SetId sets field value

func (*ApplicationOut) SetMetadata added in v0.69.0

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

SetMetadata sets field value

func (*ApplicationOut) SetName

func (o *ApplicationOut) SetName(v string)

SetName sets field value

func (*ApplicationOut) SetRateLimit

func (o *ApplicationOut) SetRateLimit(v int32)

SetRateLimit gets a reference to the given NullableInt32 and assigns it to the RateLimit field.

func (*ApplicationOut) SetRateLimitNil added in v0.62.0

func (o *ApplicationOut) SetRateLimitNil()

SetRateLimitNil sets the value for RateLimit to be an explicit nil

func (*ApplicationOut) SetUid

func (o *ApplicationOut) SetUid(v string)

SetUid gets a reference to the given NullableString and assigns it to the Uid field.

func (*ApplicationOut) SetUidNil added in v0.62.0

func (o *ApplicationOut) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*ApplicationOut) SetUpdatedAt

func (o *ApplicationOut) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*ApplicationOut) UnsetRateLimit added in v0.62.0

func (o *ApplicationOut) UnsetRateLimit()

UnsetRateLimit ensures that no value is present for RateLimit, not even an explicit nil

func (*ApplicationOut) UnsetUid added in v0.62.0

func (o *ApplicationOut) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

type ApplicationPatch added in v0.84.0

type ApplicationPatch struct {
	Metadata  *map[string]string `json:"metadata,omitempty"`
	Name      *string            `json:"name,omitempty"`
	RateLimit NullableInt32      `json:"rateLimit,omitempty"`
	// The app's UID
	Uid NullableString `json:"uid,omitempty"`
}

ApplicationPatch struct for ApplicationPatch

func NewApplicationPatch added in v0.84.0

func NewApplicationPatch() *ApplicationPatch

NewApplicationPatch instantiates a new ApplicationPatch 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 NewApplicationPatchWithDefaults added in v0.84.0

func NewApplicationPatchWithDefaults() *ApplicationPatch

NewApplicationPatchWithDefaults instantiates a new ApplicationPatch 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 (*ApplicationPatch) GetMetadata added in v0.84.0

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

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ApplicationPatch) GetMetadataOk added in v0.84.0

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

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

func (*ApplicationPatch) GetName added in v0.84.0

func (o *ApplicationPatch) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ApplicationPatch) GetNameOk added in v0.84.0

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

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

func (*ApplicationPatch) GetRateLimit added in v0.84.0

func (o *ApplicationPatch) GetRateLimit() int32

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

func (*ApplicationPatch) GetRateLimitOk added in v0.84.0

func (o *ApplicationPatch) GetRateLimitOk() (*int32, bool)

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

func (*ApplicationPatch) GetUid added in v0.84.0

func (o *ApplicationPatch) GetUid() string

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

func (*ApplicationPatch) GetUidOk added in v0.84.0

func (o *ApplicationPatch) GetUidOk() (*string, bool)

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

func (*ApplicationPatch) HasMetadata added in v0.84.0

func (o *ApplicationPatch) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ApplicationPatch) HasName added in v0.84.0

func (o *ApplicationPatch) HasName() bool

HasName returns a boolean if a field has been set.

func (*ApplicationPatch) HasRateLimit added in v0.84.0

func (o *ApplicationPatch) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*ApplicationPatch) HasUid added in v0.84.0

func (o *ApplicationPatch) HasUid() bool

HasUid returns a boolean if a field has been set.

func (ApplicationPatch) MarshalJSON added in v0.84.0

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

func (*ApplicationPatch) SetMetadata added in v0.84.0

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

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

func (*ApplicationPatch) SetName added in v0.84.0

func (o *ApplicationPatch) SetName(v string)

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

func (*ApplicationPatch) SetRateLimit added in v0.84.0

func (o *ApplicationPatch) SetRateLimit(v int32)

SetRateLimit gets a reference to the given NullableInt32 and assigns it to the RateLimit field.

func (*ApplicationPatch) SetRateLimitNil added in v0.84.0

func (o *ApplicationPatch) SetRateLimitNil()

SetRateLimitNil sets the value for RateLimit to be an explicit nil

func (*ApplicationPatch) SetUid added in v0.84.0

func (o *ApplicationPatch) SetUid(v string)

SetUid gets a reference to the given NullableString and assigns it to the Uid field.

func (*ApplicationPatch) SetUidNil added in v0.84.0

func (o *ApplicationPatch) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*ApplicationPatch) UnsetRateLimit added in v0.84.0

func (o *ApplicationPatch) UnsetRateLimit()

UnsetRateLimit ensures that no value is present for RateLimit, not even an explicit nil

func (*ApplicationPatch) UnsetUid added in v0.84.0

func (o *ApplicationPatch) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

type ApplicationStats added in v0.68.0

type ApplicationStats struct {
	// The app's ID
	AppId string `json:"appId"`
	// The app's UID
	AppUid              NullableString `json:"appUid,omitempty"`
	MessageDestinations int32          `json:"messageDestinations"`
}

ApplicationStats struct for ApplicationStats

func NewApplicationStats added in v0.68.0

func NewApplicationStats(appId string, messageDestinations int32) *ApplicationStats

NewApplicationStats instantiates a new ApplicationStats 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 NewApplicationStatsWithDefaults added in v0.68.0

func NewApplicationStatsWithDefaults() *ApplicationStats

NewApplicationStatsWithDefaults instantiates a new ApplicationStats 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 (*ApplicationStats) GetAppId added in v0.68.0

func (o *ApplicationStats) GetAppId() string

GetAppId returns the AppId field value

func (*ApplicationStats) GetAppIdOk added in v0.68.0

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

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

func (*ApplicationStats) GetAppUid added in v0.68.0

func (o *ApplicationStats) GetAppUid() string

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

func (*ApplicationStats) GetAppUidOk added in v0.68.0

func (o *ApplicationStats) GetAppUidOk() (*string, bool)

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

func (*ApplicationStats) GetMessageDestinations added in v0.68.0

func (o *ApplicationStats) GetMessageDestinations() int32

GetMessageDestinations returns the MessageDestinations field value

func (*ApplicationStats) GetMessageDestinationsOk added in v0.68.0

func (o *ApplicationStats) GetMessageDestinationsOk() (*int32, bool)

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

func (*ApplicationStats) HasAppUid added in v0.68.0

func (o *ApplicationStats) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (ApplicationStats) MarshalJSON added in v0.68.0

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

func (*ApplicationStats) SetAppId added in v0.68.0

func (o *ApplicationStats) SetAppId(v string)

SetAppId sets field value

func (*ApplicationStats) SetAppUid added in v0.68.0

func (o *ApplicationStats) SetAppUid(v string)

SetAppUid gets a reference to the given NullableString and assigns it to the AppUid field.

func (*ApplicationStats) SetAppUidNil added in v0.68.0

func (o *ApplicationStats) SetAppUidNil()

SetAppUidNil sets the value for AppUid to be an explicit nil

func (*ApplicationStats) SetMessageDestinations added in v0.68.0

func (o *ApplicationStats) SetMessageDestinations(v int32)

SetMessageDestinations sets field value

func (*ApplicationStats) UnsetAppUid added in v0.68.0

func (o *ApplicationStats) UnsetAppUid()

UnsetAppUid ensures that no value is present for AppUid, not even an explicit nil

type ApplicationTokenExpireIn added in v0.72.0

type ApplicationTokenExpireIn struct {
	// How many seconds until the old key is expired.
	Expiry NullableInt64 `json:"expiry,omitempty"`
}

ApplicationTokenExpireIn struct for ApplicationTokenExpireIn

func NewApplicationTokenExpireIn added in v0.72.0

func NewApplicationTokenExpireIn() *ApplicationTokenExpireIn

NewApplicationTokenExpireIn instantiates a new ApplicationTokenExpireIn 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 NewApplicationTokenExpireInWithDefaults added in v0.72.0

func NewApplicationTokenExpireInWithDefaults() *ApplicationTokenExpireIn

NewApplicationTokenExpireInWithDefaults instantiates a new ApplicationTokenExpireIn 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 (*ApplicationTokenExpireIn) GetExpiry added in v0.72.0

func (o *ApplicationTokenExpireIn) GetExpiry() int64

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

func (*ApplicationTokenExpireIn) GetExpiryOk added in v0.72.0

func (o *ApplicationTokenExpireIn) GetExpiryOk() (*int64, bool)

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

func (*ApplicationTokenExpireIn) HasExpiry added in v0.72.0

func (o *ApplicationTokenExpireIn) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (ApplicationTokenExpireIn) MarshalJSON added in v0.72.0

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

func (*ApplicationTokenExpireIn) SetExpiry added in v0.72.0

func (o *ApplicationTokenExpireIn) SetExpiry(v int64)

SetExpiry gets a reference to the given NullableInt64 and assigns it to the Expiry field.

func (*ApplicationTokenExpireIn) SetExpiryNil added in v0.72.0

func (o *ApplicationTokenExpireIn) SetExpiryNil()

SetExpiryNil sets the value for Expiry to be an explicit nil

func (*ApplicationTokenExpireIn) UnsetExpiry added in v0.72.0

func (o *ApplicationTokenExpireIn) UnsetExpiry()

UnsetExpiry ensures that no value is present for Expiry, not even an explicit nil

type AttemptStatisticsData

type AttemptStatisticsData struct {
	FailureCount []int32 `json:"failureCount,omitempty"`
	SuccessCount []int32 `json:"successCount,omitempty"`
}

AttemptStatisticsData struct for AttemptStatisticsData

func NewAttemptStatisticsData

func NewAttemptStatisticsData() *AttemptStatisticsData

NewAttemptStatisticsData instantiates a new AttemptStatisticsData 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 NewAttemptStatisticsDataWithDefaults

func NewAttemptStatisticsDataWithDefaults() *AttemptStatisticsData

NewAttemptStatisticsDataWithDefaults instantiates a new AttemptStatisticsData 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 (*AttemptStatisticsData) GetFailureCount

func (o *AttemptStatisticsData) GetFailureCount() []int32

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

func (*AttemptStatisticsData) GetFailureCountOk

func (o *AttemptStatisticsData) GetFailureCountOk() (*[]int32, bool)

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

func (*AttemptStatisticsData) GetSuccessCount

func (o *AttemptStatisticsData) GetSuccessCount() []int32

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

func (*AttemptStatisticsData) GetSuccessCountOk

func (o *AttemptStatisticsData) GetSuccessCountOk() (*[]int32, bool)

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

func (*AttemptStatisticsData) HasFailureCount

func (o *AttemptStatisticsData) HasFailureCount() bool

HasFailureCount returns a boolean if a field has been set.

func (*AttemptStatisticsData) HasSuccessCount

func (o *AttemptStatisticsData) HasSuccessCount() bool

HasSuccessCount returns a boolean if a field has been set.

func (AttemptStatisticsData) MarshalJSON

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

func (*AttemptStatisticsData) SetFailureCount

func (o *AttemptStatisticsData) SetFailureCount(v []int32)

SetFailureCount gets a reference to the given []int32 and assigns it to the FailureCount field.

func (*AttemptStatisticsData) SetSuccessCount

func (o *AttemptStatisticsData) SetSuccessCount(v []int32)

SetSuccessCount gets a reference to the given []int32 and assigns it to the SuccessCount field.

type AttemptStatisticsResponse

type AttemptStatisticsResponse struct {
	Data      AttemptStatisticsData `json:"data"`
	EndDate   time.Time             `json:"endDate"`
	Period    StatisticsPeriod      `json:"period"`
	StartDate time.Time             `json:"startDate"`
}

AttemptStatisticsResponse struct for AttemptStatisticsResponse

func NewAttemptStatisticsResponse

func NewAttemptStatisticsResponse(data AttemptStatisticsData, endDate time.Time, period StatisticsPeriod, startDate time.Time) *AttemptStatisticsResponse

NewAttemptStatisticsResponse instantiates a new AttemptStatisticsResponse 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 NewAttemptStatisticsResponseWithDefaults

func NewAttemptStatisticsResponseWithDefaults() *AttemptStatisticsResponse

NewAttemptStatisticsResponseWithDefaults instantiates a new AttemptStatisticsResponse 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 (*AttemptStatisticsResponse) GetData

GetData returns the Data field value

func (*AttemptStatisticsResponse) GetDataOk

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

func (*AttemptStatisticsResponse) GetEndDate

func (o *AttemptStatisticsResponse) GetEndDate() time.Time

GetEndDate returns the EndDate field value

func (*AttemptStatisticsResponse) GetEndDateOk

func (o *AttemptStatisticsResponse) GetEndDateOk() (*time.Time, bool)

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

func (*AttemptStatisticsResponse) GetPeriod

GetPeriod returns the Period field value

func (*AttemptStatisticsResponse) GetPeriodOk

func (o *AttemptStatisticsResponse) GetPeriodOk() (*StatisticsPeriod, bool)

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

func (*AttemptStatisticsResponse) GetStartDate

func (o *AttemptStatisticsResponse) GetStartDate() time.Time

GetStartDate returns the StartDate field value

func (*AttemptStatisticsResponse) GetStartDateOk

func (o *AttemptStatisticsResponse) GetStartDateOk() (*time.Time, bool)

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

func (AttemptStatisticsResponse) MarshalJSON

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

func (*AttemptStatisticsResponse) SetData

SetData sets field value

func (*AttemptStatisticsResponse) SetEndDate

func (o *AttemptStatisticsResponse) SetEndDate(v time.Time)

SetEndDate sets field value

func (*AttemptStatisticsResponse) SetPeriod

SetPeriod sets field value

func (*AttemptStatisticsResponse) SetStartDate

func (o *AttemptStatisticsResponse) SetStartDate(v time.Time)

SetStartDate sets field value

type AuthenticationApiService

type AuthenticationApiService service

AuthenticationApiService AuthenticationApi service

func (*AuthenticationApiService) V1AuthenticationAppPortalAccess added in v0.84.0

func (a *AuthenticationApiService) V1AuthenticationAppPortalAccess(ctx _context.Context, appId string) ApiV1AuthenticationAppPortalAccessRequest

* V1AuthenticationAppPortalAccess Get Consumer App Portal Access * Use this function to get magic links (and authentication codes) for connecting your users to the Consumer Application Portal. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1AuthenticationAppPortalAccessRequest

func (*AuthenticationApiService) V1AuthenticationAppPortalAccessExecute added in v0.84.0

* Execute executes the request * @return AppPortalAccessOut

func (*AuthenticationApiService) V1AuthenticationDashboardAccess added in v0.84.0

func (a *AuthenticationApiService) V1AuthenticationDashboardAccess(ctx _context.Context, appId string) ApiV1AuthenticationDashboardAccessRequest
  • V1AuthenticationDashboardAccess Dashboard Access
  • DEPRECATED: Please use `app-portal-access` instead.

Use this function to get magic links (and authentication codes) for connecting your users to the Consumer Application Portal.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @return ApiV1AuthenticationDashboardAccessRequest

func (*AuthenticationApiService) V1AuthenticationDashboardAccessExecute added in v0.84.0

* Execute executes the request * @return DashboardAccessOut

func (*AuthenticationApiService) V1AuthenticationExchangeOneTimeToken added in v0.85.1

func (a *AuthenticationApiService) V1AuthenticationExchangeOneTimeToken(ctx _context.Context) ApiV1AuthenticationExchangeOneTimeTokenRequest

* V1AuthenticationExchangeOneTimeToken Exchange One Time Token * This is a one time token * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1AuthenticationExchangeOneTimeTokenRequest

func (*AuthenticationApiService) V1AuthenticationExchangeOneTimeTokenExecute added in v0.85.1

* Execute executes the request * @return OneTimeTokenOut

func (*AuthenticationApiService) V1AuthenticationExpireAll added in v0.84.0

func (a *AuthenticationApiService) V1AuthenticationExpireAll(ctx _context.Context, appId string) ApiV1AuthenticationExpireAllRequest

* V1AuthenticationExpireAll Expire All * Expire all of the tokens associated with a specific Application * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1AuthenticationExpireAllRequest

func (*AuthenticationApiService) V1AuthenticationExpireAllExecute added in v0.84.0

func (a *AuthenticationApiService) V1AuthenticationExpireAllExecute(r ApiV1AuthenticationExpireAllRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*AuthenticationApiService) V1AuthenticationLogout added in v0.84.0

  • V1AuthenticationLogout Logout
  • Logout an app token.

Trying to log out other tokens will fail.

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

func (*AuthenticationApiService) V1AuthenticationLogoutExecute added in v0.84.0

func (a *AuthenticationApiService) V1AuthenticationLogoutExecute(r ApiV1AuthenticationLogoutRequest) (*_nethttp.Response, error)

* Execute executes the request

type BackgroundTaskOut added in v0.84.0

type BackgroundTaskOut struct {
	Data   map[string]interface{} `json:"data"`
	Id     string                 `json:"id"`
	Status BackgroundTaskStatus   `json:"status"`
	Task   BackgroundTaskType     `json:"task"`
}

BackgroundTaskOut struct for BackgroundTaskOut

func NewBackgroundTaskOut added in v0.84.0

func NewBackgroundTaskOut(data map[string]interface{}, id string, status BackgroundTaskStatus, task BackgroundTaskType) *BackgroundTaskOut

NewBackgroundTaskOut instantiates a new BackgroundTaskOut 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 NewBackgroundTaskOutWithDefaults added in v0.84.0

func NewBackgroundTaskOutWithDefaults() *BackgroundTaskOut

NewBackgroundTaskOutWithDefaults instantiates a new BackgroundTaskOut 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 (*BackgroundTaskOut) GetData added in v0.84.0

func (o *BackgroundTaskOut) GetData() map[string]interface{}

GetData returns the Data field value

func (*BackgroundTaskOut) GetDataOk added in v0.84.0

func (o *BackgroundTaskOut) GetDataOk() (*map[string]interface{}, bool)

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

func (*BackgroundTaskOut) GetId added in v0.84.0

func (o *BackgroundTaskOut) GetId() string

GetId returns the Id field value

func (*BackgroundTaskOut) GetIdOk added in v0.84.0

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

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

func (*BackgroundTaskOut) GetStatus added in v0.84.0

func (o *BackgroundTaskOut) GetStatus() BackgroundTaskStatus

GetStatus returns the Status field value

func (*BackgroundTaskOut) GetStatusOk added in v0.84.0

func (o *BackgroundTaskOut) GetStatusOk() (*BackgroundTaskStatus, bool)

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

func (*BackgroundTaskOut) GetTask added in v0.84.0

GetTask returns the Task field value

func (*BackgroundTaskOut) GetTaskOk added in v0.84.0

func (o *BackgroundTaskOut) GetTaskOk() (*BackgroundTaskType, bool)

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

func (BackgroundTaskOut) MarshalJSON added in v0.84.0

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

func (*BackgroundTaskOut) SetData added in v0.84.0

func (o *BackgroundTaskOut) SetData(v map[string]interface{})

SetData sets field value

func (*BackgroundTaskOut) SetId added in v0.84.0

func (o *BackgroundTaskOut) SetId(v string)

SetId sets field value

func (*BackgroundTaskOut) SetStatus added in v0.84.0

func (o *BackgroundTaskOut) SetStatus(v BackgroundTaskStatus)

SetStatus sets field value

func (*BackgroundTaskOut) SetTask added in v0.84.0

func (o *BackgroundTaskOut) SetTask(v BackgroundTaskType)

SetTask sets field value

type BackgroundTaskOutCommon added in v0.84.0

type BackgroundTaskOutCommon struct {
	Id     string               `json:"id"`
	Status BackgroundTaskStatus `json:"status"`
	Task   BackgroundTaskType   `json:"task"`
}

BackgroundTaskOutCommon struct for BackgroundTaskOutCommon

func NewBackgroundTaskOutCommon added in v0.84.0

func NewBackgroundTaskOutCommon(id string, status BackgroundTaskStatus, task BackgroundTaskType) *BackgroundTaskOutCommon

NewBackgroundTaskOutCommon instantiates a new BackgroundTaskOutCommon 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 NewBackgroundTaskOutCommonWithDefaults added in v0.84.0

func NewBackgroundTaskOutCommonWithDefaults() *BackgroundTaskOutCommon

NewBackgroundTaskOutCommonWithDefaults instantiates a new BackgroundTaskOutCommon 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 (*BackgroundTaskOutCommon) GetId added in v0.84.0

func (o *BackgroundTaskOutCommon) GetId() string

GetId returns the Id field value

func (*BackgroundTaskOutCommon) GetIdOk added in v0.84.0

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

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

func (*BackgroundTaskOutCommon) GetStatus added in v0.84.0

GetStatus returns the Status field value

func (*BackgroundTaskOutCommon) GetStatusOk added in v0.84.0

func (o *BackgroundTaskOutCommon) GetStatusOk() (*BackgroundTaskStatus, bool)

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

func (*BackgroundTaskOutCommon) GetTask added in v0.84.0

GetTask returns the Task field value

func (*BackgroundTaskOutCommon) GetTaskOk added in v0.84.0

func (o *BackgroundTaskOutCommon) GetTaskOk() (*BackgroundTaskType, bool)

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

func (BackgroundTaskOutCommon) MarshalJSON added in v0.84.0

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

func (*BackgroundTaskOutCommon) SetId added in v0.84.0

func (o *BackgroundTaskOutCommon) SetId(v string)

SetId sets field value

func (*BackgroundTaskOutCommon) SetStatus added in v0.84.0

SetStatus sets field value

func (*BackgroundTaskOutCommon) SetTask added in v0.84.0

SetTask sets field value

type BackgroundTaskStatus added in v0.84.0

type BackgroundTaskStatus string

BackgroundTaskStatus the model 'BackgroundTaskStatus'

const (
	BACKGROUNDTASKSTATUS_RUNNING  BackgroundTaskStatus = "running"
	BACKGROUNDTASKSTATUS_FINISHED BackgroundTaskStatus = "finished"
	BACKGROUNDTASKSTATUS_FAILED   BackgroundTaskStatus = "failed"
)

List of BackgroundTaskStatus

func NewBackgroundTaskStatusFromValue added in v0.84.0

func NewBackgroundTaskStatusFromValue(v string) (*BackgroundTaskStatus, error)

NewBackgroundTaskStatusFromValue returns a pointer to a valid BackgroundTaskStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (BackgroundTaskStatus) IsValid added in v0.84.0

func (v BackgroundTaskStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (BackgroundTaskStatus) Ptr added in v0.84.0

Ptr returns reference to BackgroundTaskStatus value

func (*BackgroundTaskStatus) UnmarshalJSON added in v0.84.0

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

type BackgroundTaskType added in v0.84.0

type BackgroundTaskType string

BackgroundTaskType the model 'BackgroundTaskType'

const (
	BACKGROUNDTASKTYPE_ENDPOINT_REPLAY   BackgroundTaskType = "endpoint.replay"
	BACKGROUNDTASKTYPE_ENDPOINT_RECOVER  BackgroundTaskType = "endpoint.recover"
	BACKGROUNDTASKTYPE_APPLICATION_STATS BackgroundTaskType = "application.stats"
	BACKGROUNDTASKTYPE_MESSAGE_BROADCAST BackgroundTaskType = "message.broadcast"
)

List of BackgroundTaskType

func NewBackgroundTaskTypeFromValue added in v0.84.0

func NewBackgroundTaskTypeFromValue(v string) (*BackgroundTaskType, error)

NewBackgroundTaskTypeFromValue returns a pointer to a valid BackgroundTaskType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (BackgroundTaskType) IsValid added in v0.84.0

func (v BackgroundTaskType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (BackgroundTaskType) Ptr added in v0.84.0

Ptr returns reference to BackgroundTaskType value

func (*BackgroundTaskType) UnmarshalJSON added in v0.84.0

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

type BackgroundTasksApiService added in v0.84.0

type BackgroundTasksApiService service

BackgroundTasksApiService BackgroundTasksApi service

func (*BackgroundTasksApiService) GetBackgroundTask added in v0.84.0

* GetBackgroundTask Get Background Task * Get a background task by ID. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param taskId * @return ApiGetBackgroundTaskRequest

func (*BackgroundTasksApiService) GetBackgroundTaskExecute added in v0.84.0

* Execute executes the request * @return BackgroundTaskOut

func (*BackgroundTasksApiService) ListBackgroundTasks added in v0.84.0

* ListBackgroundTasks List Background Tasks * List background tasks executed in the past 90 days. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListBackgroundTasksRequest

func (*BackgroundTasksApiService) ListBackgroundTasksExecute added in v0.84.0

* Execute executes the request * @return ListResponseBackgroundTaskOut

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 BorderRadiusConfig

type BorderRadiusConfig struct {
	Button *BorderRadiusEnum `json:"button,omitempty"`
	Card   *BorderRadiusEnum `json:"card,omitempty"`
	Input  *BorderRadiusEnum `json:"input,omitempty"`
}

BorderRadiusConfig struct for BorderRadiusConfig

func NewBorderRadiusConfig

func NewBorderRadiusConfig() *BorderRadiusConfig

NewBorderRadiusConfig instantiates a new BorderRadiusConfig 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 NewBorderRadiusConfigWithDefaults

func NewBorderRadiusConfigWithDefaults() *BorderRadiusConfig

NewBorderRadiusConfigWithDefaults instantiates a new BorderRadiusConfig 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 (*BorderRadiusConfig) GetButton

func (o *BorderRadiusConfig) GetButton() BorderRadiusEnum

GetButton returns the Button field value if set, zero value otherwise.

func (*BorderRadiusConfig) GetButtonOk

func (o *BorderRadiusConfig) GetButtonOk() (*BorderRadiusEnum, bool)

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

func (*BorderRadiusConfig) GetCard

func (o *BorderRadiusConfig) GetCard() BorderRadiusEnum

GetCard returns the Card field value if set, zero value otherwise.

func (*BorderRadiusConfig) GetCardOk

func (o *BorderRadiusConfig) GetCardOk() (*BorderRadiusEnum, bool)

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

func (*BorderRadiusConfig) GetInput

func (o *BorderRadiusConfig) GetInput() BorderRadiusEnum

GetInput returns the Input field value if set, zero value otherwise.

func (*BorderRadiusConfig) GetInputOk

func (o *BorderRadiusConfig) GetInputOk() (*BorderRadiusEnum, bool)

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

func (*BorderRadiusConfig) HasButton

func (o *BorderRadiusConfig) HasButton() bool

HasButton returns a boolean if a field has been set.

func (*BorderRadiusConfig) HasCard

func (o *BorderRadiusConfig) HasCard() bool

HasCard returns a boolean if a field has been set.

func (*BorderRadiusConfig) HasInput

func (o *BorderRadiusConfig) HasInput() bool

HasInput returns a boolean if a field has been set.

func (BorderRadiusConfig) MarshalJSON

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

func (*BorderRadiusConfig) SetButton

func (o *BorderRadiusConfig) SetButton(v BorderRadiusEnum)

SetButton gets a reference to the given BorderRadiusEnum and assigns it to the Button field.

func (*BorderRadiusConfig) SetCard

func (o *BorderRadiusConfig) SetCard(v BorderRadiusEnum)

SetCard gets a reference to the given BorderRadiusEnum and assigns it to the Card field.

func (*BorderRadiusConfig) SetInput

func (o *BorderRadiusConfig) SetInput(v BorderRadiusEnum)

SetInput gets a reference to the given BorderRadiusEnum and assigns it to the Input field.

type BorderRadiusEnum

type BorderRadiusEnum string

BorderRadiusEnum the model 'BorderRadiusEnum'

const (
	BORDERRADIUSENUM_NONE BorderRadiusEnum = "none"
	BORDERRADIUSENUM_LG   BorderRadiusEnum = "lg"
	BORDERRADIUSENUM_MD   BorderRadiusEnum = "md"
	BORDERRADIUSENUM_SM   BorderRadiusEnum = "sm"
	BORDERRADIUSENUM_FULL BorderRadiusEnum = "full"
)

List of BorderRadiusEnum

func NewBorderRadiusEnumFromValue

func NewBorderRadiusEnumFromValue(v string) (*BorderRadiusEnum, error)

NewBorderRadiusEnumFromValue returns a pointer to a valid BorderRadiusEnum for the value passed as argument, or an error if the value passed is not allowed by the enum

func (BorderRadiusEnum) IsValid

func (v BorderRadiusEnum) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (BorderRadiusEnum) Ptr

Ptr returns reference to BorderRadiusEnum value

func (*BorderRadiusEnum) UnmarshalJSON

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

type BroadcastApiService added in v1.4.12

type BroadcastApiService service

BroadcastApiService BroadcastApi service

func (*BroadcastApiService) CreateBroadcastMessage added in v1.4.12

* CreateBroadcastMessage Create Broadcast Message * Creates a background task to send the same message to each application in your organization * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateBroadcastMessageRequest

func (*BroadcastApiService) CreateBroadcastMessageExecute added in v1.4.12

* Execute executes the request * @return MessageBroadcastOut

type CalculateAppStatsIn added in v0.84.0

type CalculateAppStatsIn struct {
	AppIds []string  `json:"appIds,omitempty"`
	Since  time.Time `json:"since"`
	Until  time.Time `json:"until"`
}

CalculateAppStatsIn struct for CalculateAppStatsIn

func NewCalculateAppStatsIn added in v0.84.0

func NewCalculateAppStatsIn(since time.Time, until time.Time) *CalculateAppStatsIn

NewCalculateAppStatsIn instantiates a new CalculateAppStatsIn 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 NewCalculateAppStatsInWithDefaults added in v0.84.0

func NewCalculateAppStatsInWithDefaults() *CalculateAppStatsIn

NewCalculateAppStatsInWithDefaults instantiates a new CalculateAppStatsIn 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 (*CalculateAppStatsIn) GetAppIds added in v0.84.0

func (o *CalculateAppStatsIn) GetAppIds() []string

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

func (*CalculateAppStatsIn) GetAppIdsOk added in v0.84.0

func (o *CalculateAppStatsIn) GetAppIdsOk() (*[]string, bool)

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

func (*CalculateAppStatsIn) GetSince added in v0.84.0

func (o *CalculateAppStatsIn) GetSince() time.Time

GetSince returns the Since field value

func (*CalculateAppStatsIn) GetSinceOk added in v0.84.0

func (o *CalculateAppStatsIn) GetSinceOk() (*time.Time, bool)

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

func (*CalculateAppStatsIn) GetUntil added in v0.84.0

func (o *CalculateAppStatsIn) GetUntil() time.Time

GetUntil returns the Until field value

func (*CalculateAppStatsIn) GetUntilOk added in v0.84.0

func (o *CalculateAppStatsIn) GetUntilOk() (*time.Time, bool)

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

func (*CalculateAppStatsIn) HasAppIds added in v0.84.0

func (o *CalculateAppStatsIn) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (CalculateAppStatsIn) MarshalJSON added in v0.84.0

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

func (*CalculateAppStatsIn) SetAppIds added in v0.84.0

func (o *CalculateAppStatsIn) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (*CalculateAppStatsIn) SetSince added in v0.84.0

func (o *CalculateAppStatsIn) SetSince(v time.Time)

SetSince sets field value

func (*CalculateAppStatsIn) SetUntil added in v0.84.0

func (o *CalculateAppStatsIn) SetUntil(v time.Time)

SetUntil sets field value

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type CustomColorPalette added in v0.62.0

type CustomColorPalette struct {
	BackgroundHover     NullableString `json:"backgroundHover,omitempty"`
	BackgroundPrimary   NullableString `json:"backgroundPrimary,omitempty"`
	BackgroundSecondary NullableString `json:"backgroundSecondary,omitempty"`
	InteractiveAccent   NullableString `json:"interactiveAccent,omitempty"`
	TextDanger          NullableString `json:"textDanger,omitempty"`
	TextPrimary         NullableString `json:"textPrimary,omitempty"`
}

CustomColorPalette struct for CustomColorPalette

func NewCustomColorPalette added in v0.62.0

func NewCustomColorPalette() *CustomColorPalette

NewCustomColorPalette instantiates a new CustomColorPalette 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 NewCustomColorPaletteWithDefaults added in v0.62.0

func NewCustomColorPaletteWithDefaults() *CustomColorPalette

NewCustomColorPaletteWithDefaults instantiates a new CustomColorPalette 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 (*CustomColorPalette) GetBackgroundHover added in v0.62.0

func (o *CustomColorPalette) GetBackgroundHover() string

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

func (*CustomColorPalette) GetBackgroundHoverOk added in v0.62.0

func (o *CustomColorPalette) GetBackgroundHoverOk() (*string, bool)

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

func (*CustomColorPalette) GetBackgroundPrimary added in v0.62.0

func (o *CustomColorPalette) GetBackgroundPrimary() string

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

func (*CustomColorPalette) GetBackgroundPrimaryOk added in v0.62.0

func (o *CustomColorPalette) GetBackgroundPrimaryOk() (*string, bool)

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

func (*CustomColorPalette) GetBackgroundSecondary added in v0.62.0

func (o *CustomColorPalette) GetBackgroundSecondary() string

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

func (*CustomColorPalette) GetBackgroundSecondaryOk added in v0.62.0

func (o *CustomColorPalette) GetBackgroundSecondaryOk() (*string, bool)

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

func (*CustomColorPalette) GetInteractiveAccent added in v0.62.0

func (o *CustomColorPalette) GetInteractiveAccent() string

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

func (*CustomColorPalette) GetInteractiveAccentOk added in v0.62.0

func (o *CustomColorPalette) GetInteractiveAccentOk() (*string, bool)

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

func (*CustomColorPalette) GetTextDanger added in v0.62.0

func (o *CustomColorPalette) GetTextDanger() string

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

func (*CustomColorPalette) GetTextDangerOk added in v0.62.0

func (o *CustomColorPalette) GetTextDangerOk() (*string, bool)

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

func (*CustomColorPalette) GetTextPrimary added in v0.62.0

func (o *CustomColorPalette) GetTextPrimary() string

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

func (*CustomColorPalette) GetTextPrimaryOk added in v0.62.0

func (o *CustomColorPalette) GetTextPrimaryOk() (*string, bool)

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

func (*CustomColorPalette) HasBackgroundHover added in v0.62.0

func (o *CustomColorPalette) HasBackgroundHover() bool

HasBackgroundHover returns a boolean if a field has been set.

func (*CustomColorPalette) HasBackgroundPrimary added in v0.62.0

func (o *CustomColorPalette) HasBackgroundPrimary() bool

HasBackgroundPrimary returns a boolean if a field has been set.

func (*CustomColorPalette) HasBackgroundSecondary added in v0.62.0

func (o *CustomColorPalette) HasBackgroundSecondary() bool

HasBackgroundSecondary returns a boolean if a field has been set.

func (*CustomColorPalette) HasInteractiveAccent added in v0.62.0

func (o *CustomColorPalette) HasInteractiveAccent() bool

HasInteractiveAccent returns a boolean if a field has been set.

func (*CustomColorPalette) HasTextDanger added in v0.62.0

func (o *CustomColorPalette) HasTextDanger() bool

HasTextDanger returns a boolean if a field has been set.

func (*CustomColorPalette) HasTextPrimary added in v0.62.0

func (o *CustomColorPalette) HasTextPrimary() bool

HasTextPrimary returns a boolean if a field has been set.

func (CustomColorPalette) MarshalJSON added in v0.62.0

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

func (*CustomColorPalette) SetBackgroundHover added in v0.62.0

func (o *CustomColorPalette) SetBackgroundHover(v string)

SetBackgroundHover gets a reference to the given NullableString and assigns it to the BackgroundHover field.

func (*CustomColorPalette) SetBackgroundHoverNil added in v0.62.0

func (o *CustomColorPalette) SetBackgroundHoverNil()

SetBackgroundHoverNil sets the value for BackgroundHover to be an explicit nil

func (*CustomColorPalette) SetBackgroundPrimary added in v0.62.0

func (o *CustomColorPalette) SetBackgroundPrimary(v string)

SetBackgroundPrimary gets a reference to the given NullableString and assigns it to the BackgroundPrimary field.

func (*CustomColorPalette) SetBackgroundPrimaryNil added in v0.62.0

func (o *CustomColorPalette) SetBackgroundPrimaryNil()

SetBackgroundPrimaryNil sets the value for BackgroundPrimary to be an explicit nil

func (*CustomColorPalette) SetBackgroundSecondary added in v0.62.0

func (o *CustomColorPalette) SetBackgroundSecondary(v string)

SetBackgroundSecondary gets a reference to the given NullableString and assigns it to the BackgroundSecondary field.

func (*CustomColorPalette) SetBackgroundSecondaryNil added in v0.62.0

func (o *CustomColorPalette) SetBackgroundSecondaryNil()

SetBackgroundSecondaryNil sets the value for BackgroundSecondary to be an explicit nil

func (*CustomColorPalette) SetInteractiveAccent added in v0.62.0

func (o *CustomColorPalette) SetInteractiveAccent(v string)

SetInteractiveAccent gets a reference to the given NullableString and assigns it to the InteractiveAccent field.

func (*CustomColorPalette) SetInteractiveAccentNil added in v0.62.0

func (o *CustomColorPalette) SetInteractiveAccentNil()

SetInteractiveAccentNil sets the value for InteractiveAccent to be an explicit nil

func (*CustomColorPalette) SetTextDanger added in v0.62.0

func (o *CustomColorPalette) SetTextDanger(v string)

SetTextDanger gets a reference to the given NullableString and assigns it to the TextDanger field.

func (*CustomColorPalette) SetTextDangerNil added in v0.62.0

func (o *CustomColorPalette) SetTextDangerNil()

SetTextDangerNil sets the value for TextDanger to be an explicit nil

func (*CustomColorPalette) SetTextPrimary added in v0.62.0

func (o *CustomColorPalette) SetTextPrimary(v string)

SetTextPrimary gets a reference to the given NullableString and assigns it to the TextPrimary field.

func (*CustomColorPalette) SetTextPrimaryNil added in v0.62.0

func (o *CustomColorPalette) SetTextPrimaryNil()

SetTextPrimaryNil sets the value for TextPrimary to be an explicit nil

func (*CustomColorPalette) UnsetBackgroundHover added in v0.62.0

func (o *CustomColorPalette) UnsetBackgroundHover()

UnsetBackgroundHover ensures that no value is present for BackgroundHover, not even an explicit nil

func (*CustomColorPalette) UnsetBackgroundPrimary added in v0.62.0

func (o *CustomColorPalette) UnsetBackgroundPrimary()

UnsetBackgroundPrimary ensures that no value is present for BackgroundPrimary, not even an explicit nil

func (*CustomColorPalette) UnsetBackgroundSecondary added in v0.62.0

func (o *CustomColorPalette) UnsetBackgroundSecondary()

UnsetBackgroundSecondary ensures that no value is present for BackgroundSecondary, not even an explicit nil

func (*CustomColorPalette) UnsetInteractiveAccent added in v0.62.0

func (o *CustomColorPalette) UnsetInteractiveAccent()

UnsetInteractiveAccent ensures that no value is present for InteractiveAccent, not even an explicit nil

func (*CustomColorPalette) UnsetTextDanger added in v0.62.0

func (o *CustomColorPalette) UnsetTextDanger()

UnsetTextDanger ensures that no value is present for TextDanger, not even an explicit nil

func (*CustomColorPalette) UnsetTextPrimary added in v0.62.0

func (o *CustomColorPalette) UnsetTextPrimary()

UnsetTextPrimary ensures that no value is present for TextPrimary, not even an explicit nil

type CustomThemeOverride

type CustomThemeOverride struct {
	BorderRadius *BorderRadiusConfig `json:"borderRadius,omitempty"`
	FontSize     *FontSizeConfig     `json:"fontSize,omitempty"`
}

CustomThemeOverride struct for CustomThemeOverride

func NewCustomThemeOverride

func NewCustomThemeOverride() *CustomThemeOverride

NewCustomThemeOverride instantiates a new CustomThemeOverride 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 NewCustomThemeOverrideWithDefaults

func NewCustomThemeOverrideWithDefaults() *CustomThemeOverride

NewCustomThemeOverrideWithDefaults instantiates a new CustomThemeOverride 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 (*CustomThemeOverride) GetBorderRadius

func (o *CustomThemeOverride) GetBorderRadius() BorderRadiusConfig

GetBorderRadius returns the BorderRadius field value if set, zero value otherwise.

func (*CustomThemeOverride) GetBorderRadiusOk

func (o *CustomThemeOverride) GetBorderRadiusOk() (*BorderRadiusConfig, bool)

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

func (*CustomThemeOverride) GetFontSize

func (o *CustomThemeOverride) GetFontSize() FontSizeConfig

GetFontSize returns the FontSize field value if set, zero value otherwise.

func (*CustomThemeOverride) GetFontSizeOk

func (o *CustomThemeOverride) GetFontSizeOk() (*FontSizeConfig, bool)

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

func (*CustomThemeOverride) HasBorderRadius

func (o *CustomThemeOverride) HasBorderRadius() bool

HasBorderRadius returns a boolean if a field has been set.

func (*CustomThemeOverride) HasFontSize

func (o *CustomThemeOverride) HasFontSize() bool

HasFontSize returns a boolean if a field has been set.

func (CustomThemeOverride) MarshalJSON

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

func (*CustomThemeOverride) SetBorderRadius

func (o *CustomThemeOverride) SetBorderRadius(v BorderRadiusConfig)

SetBorderRadius gets a reference to the given BorderRadiusConfig and assigns it to the BorderRadius field.

func (*CustomThemeOverride) SetFontSize

func (o *CustomThemeOverride) SetFontSize(v FontSizeConfig)

SetFontSize gets a reference to the given FontSizeConfig and assigns it to the FontSize field.

type DashboardAccessIn added in v0.75.0

type DashboardAccessIn struct {
	FeatureFlags []string `json:"featureFlags,omitempty"`
}

DashboardAccessIn struct for DashboardAccessIn

func NewDashboardAccessIn added in v0.75.0

func NewDashboardAccessIn() *DashboardAccessIn

NewDashboardAccessIn instantiates a new DashboardAccessIn 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 NewDashboardAccessInWithDefaults added in v0.75.0

func NewDashboardAccessInWithDefaults() *DashboardAccessIn

NewDashboardAccessInWithDefaults instantiates a new DashboardAccessIn 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 (*DashboardAccessIn) GetFeatureFlags added in v0.75.0

func (o *DashboardAccessIn) GetFeatureFlags() []string

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

func (*DashboardAccessIn) GetFeatureFlagsOk added in v0.75.0

func (o *DashboardAccessIn) GetFeatureFlagsOk() (*[]string, bool)

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

func (*DashboardAccessIn) HasFeatureFlags added in v0.75.0

func (o *DashboardAccessIn) HasFeatureFlags() bool

HasFeatureFlags returns a boolean if a field has been set.

func (DashboardAccessIn) MarshalJSON added in v0.75.0

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

func (*DashboardAccessIn) SetFeatureFlags added in v0.75.0

func (o *DashboardAccessIn) SetFeatureFlags(v []string)

SetFeatureFlags gets a reference to the given []string and assigns it to the FeatureFlags field.

type DashboardAccessOut

type DashboardAccessOut struct {
	Token string `json:"token"`
	Url   string `json:"url"`
}

DashboardAccessOut struct for DashboardAccessOut

func NewDashboardAccessOut

func NewDashboardAccessOut(token string, url string) *DashboardAccessOut

NewDashboardAccessOut instantiates a new DashboardAccessOut 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 NewDashboardAccessOutWithDefaults

func NewDashboardAccessOutWithDefaults() *DashboardAccessOut

NewDashboardAccessOutWithDefaults instantiates a new DashboardAccessOut 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 (*DashboardAccessOut) GetToken

func (o *DashboardAccessOut) GetToken() string

GetToken returns the Token field value

func (*DashboardAccessOut) GetTokenOk

func (o *DashboardAccessOut) GetTokenOk() (*string, bool)

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

func (*DashboardAccessOut) GetUrl

func (o *DashboardAccessOut) GetUrl() string

GetUrl returns the Url field value

func (*DashboardAccessOut) GetUrlOk

func (o *DashboardAccessOut) GetUrlOk() (*string, bool)

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

func (DashboardAccessOut) MarshalJSON

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

func (*DashboardAccessOut) SetToken

func (o *DashboardAccessOut) SetToken(v string)

SetToken sets field value

func (*DashboardAccessOut) SetUrl

func (o *DashboardAccessOut) SetUrl(v string)

SetUrl sets field value

type EndpointApiService

type EndpointApiService service

EndpointApiService EndpointApi service

func (*EndpointApiService) V1EndpointCreate added in v0.84.0

func (a *EndpointApiService) V1EndpointCreate(ctx _context.Context, appId string) ApiV1EndpointCreateRequest
  • V1EndpointCreate Create Endpoint
  • Create a new endpoint for the application.

When `secret` is `null` the secret is automatically generated (recommended)

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @return ApiV1EndpointCreateRequest

func (*EndpointApiService) V1EndpointCreateExecute added in v0.84.0

* Execute executes the request * @return EndpointOut

func (*EndpointApiService) V1EndpointDelete added in v0.84.0

func (a *EndpointApiService) V1EndpointDelete(ctx _context.Context, appId string, endpointId string) ApiV1EndpointDeleteRequest

* V1EndpointDelete Delete Endpoint * Delete an endpoint. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointDeleteRequest

func (*EndpointApiService) V1EndpointDeleteExecute added in v0.84.0

func (a *EndpointApiService) V1EndpointDeleteExecute(r ApiV1EndpointDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EndpointApiService) V1EndpointGet added in v0.84.0

func (a *EndpointApiService) V1EndpointGet(ctx _context.Context, appId string, endpointId string) ApiV1EndpointGetRequest

* V1EndpointGet Get Endpoint * Get an endpoint. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointGetRequest

func (*EndpointApiService) V1EndpointGetExecute added in v0.84.0

* Execute executes the request * @return EndpointOut

func (*EndpointApiService) V1EndpointGetHeaders added in v0.84.0

func (a *EndpointApiService) V1EndpointGetHeaders(ctx _context.Context, appId string, endpointId string) ApiV1EndpointGetHeadersRequest

* V1EndpointGetHeaders Get Endpoint Headers * Get the additional headers to be sent with the webhook * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointGetHeadersRequest

func (*EndpointApiService) V1EndpointGetHeadersExecute added in v0.84.0

* Execute executes the request * @return EndpointHeadersOut

func (*EndpointApiService) V1EndpointGetSecret added in v0.84.0

func (a *EndpointApiService) V1EndpointGetSecret(ctx _context.Context, appId string, endpointId string) ApiV1EndpointGetSecretRequest
  • V1EndpointGetSecret Get Endpoint Secret
  • Get the endpoint's signing secret.

This is used to verify the authenticity of the webhook. For more information please refer to [the consuming webhooks docs](https://docs.svix.com/consuming-webhooks/).

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param endpointId The ep's ID or UID
  • @return ApiV1EndpointGetSecretRequest

func (*EndpointApiService) V1EndpointGetSecretExecute added in v0.84.0

* Execute executes the request * @return EndpointSecretOut

func (*EndpointApiService) V1EndpointGetStats added in v0.84.0

func (a *EndpointApiService) V1EndpointGetStats(ctx _context.Context, appId string, endpointId string) ApiV1EndpointGetStatsRequest

* V1EndpointGetStats Endpoint Stats * Get basic statistics for the endpoint. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointGetStatsRequest

func (*EndpointApiService) V1EndpointGetStatsExecute added in v0.84.0

* Execute executes the request * @return EndpointStats

func (*EndpointApiService) V1EndpointList added in v0.84.0

func (a *EndpointApiService) V1EndpointList(ctx _context.Context, appId string) ApiV1EndpointListRequest

* V1EndpointList List Endpoints * List the application's endpoints. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1EndpointListRequest

func (*EndpointApiService) V1EndpointListExecute added in v0.84.0

* Execute executes the request * @return ListResponseEndpointOut

func (*EndpointApiService) V1EndpointPatch added in v1.6.0

func (a *EndpointApiService) V1EndpointPatch(ctx _context.Context, appId string, endpointId string) ApiV1EndpointPatchRequest

* V1EndpointPatch Patch Endpoint * Partially update an endpoint. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointPatchRequest

func (*EndpointApiService) V1EndpointPatchExecute added in v1.6.0

* Execute executes the request * @return EndpointOut

func (*EndpointApiService) V1EndpointPatchHeaders added in v0.84.0

func (a *EndpointApiService) V1EndpointPatchHeaders(ctx _context.Context, appId string, endpointId string) ApiV1EndpointPatchHeadersRequest

* V1EndpointPatchHeaders Patch Endpoint Headers * Partially set the additional headers to be sent with the webhook * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointPatchHeadersRequest

func (*EndpointApiService) V1EndpointPatchHeadersExecute added in v0.84.0

func (a *EndpointApiService) V1EndpointPatchHeadersExecute(r ApiV1EndpointPatchHeadersRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EndpointApiService) V1EndpointRecover added in v0.84.0

func (a *EndpointApiService) V1EndpointRecover(ctx _context.Context, appId string, endpointId string) ApiV1EndpointRecoverRequest

* V1EndpointRecover Recover Failed Webhooks * Resend all failed messages since a given time. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointRecoverRequest

func (*EndpointApiService) V1EndpointRecoverExecute added in v0.84.0

* Execute executes the request * @return RecoverOut

func (*EndpointApiService) V1EndpointReplay added in v0.84.0

func (a *EndpointApiService) V1EndpointReplay(ctx _context.Context, appId string, endpointId string) ApiV1EndpointReplayRequest

* V1EndpointReplay Replay Missing Webhooks * Replays messages to the endpoint. Only messages that were created after `since` will be sent. Messages that were previously sent to the endpoint are not resent. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointReplayRequest

func (*EndpointApiService) V1EndpointReplayExecute added in v0.84.0

* Execute executes the request * @return ReplayOut

func (*EndpointApiService) V1EndpointRotateSecret added in v0.84.0

func (a *EndpointApiService) V1EndpointRotateSecret(ctx _context.Context, appId string, endpointId string) ApiV1EndpointRotateSecretRequest

* V1EndpointRotateSecret Rotate Endpoint Secret * Rotates the endpoint's signing secret. The previous secret will be valid for the next 24 hours. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointRotateSecretRequest

func (*EndpointApiService) V1EndpointRotateSecretExecute added in v0.84.0

func (a *EndpointApiService) V1EndpointRotateSecretExecute(r ApiV1EndpointRotateSecretRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EndpointApiService) V1EndpointSendExample added in v0.84.0

func (a *EndpointApiService) V1EndpointSendExample(ctx _context.Context, appId string, endpointId string) ApiV1EndpointSendExampleRequest

* V1EndpointSendExample Send Event Type Example Message * Send an example message for event * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointSendExampleRequest

func (*EndpointApiService) V1EndpointSendExampleExecute added in v0.84.0

func (a *EndpointApiService) V1EndpointSendExampleExecute(r ApiV1EndpointSendExampleRequest) (MessageOut, *_nethttp.Response, error)

* Execute executes the request * @return MessageOut

func (*EndpointApiService) V1EndpointTransformationGet added in v0.84.0

func (a *EndpointApiService) V1EndpointTransformationGet(ctx _context.Context, appId string, endpointId string) ApiV1EndpointTransformationGetRequest

* V1EndpointTransformationGet Get Endpoint Transformation * Get the transformation code associated with this endpoint * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointTransformationGetRequest

func (*EndpointApiService) V1EndpointTransformationGetExecute added in v0.84.0

* Execute executes the request * @return EndpointTransformationOut

func (*EndpointApiService) V1EndpointTransformationPartialUpdate added in v0.84.0

func (a *EndpointApiService) V1EndpointTransformationPartialUpdate(ctx _context.Context, appId string, endpointId string) ApiV1EndpointTransformationPartialUpdateRequest

* V1EndpointTransformationPartialUpdate Set Endpoint Transformation * Set or unset the transformation code associated with this endpoint * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointTransformationPartialUpdateRequest

func (*EndpointApiService) V1EndpointTransformationPartialUpdateExecute added in v0.84.0

func (a *EndpointApiService) V1EndpointTransformationPartialUpdateExecute(r ApiV1EndpointTransformationPartialUpdateRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EndpointApiService) V1EndpointTransformationSimulate added in v0.84.0

func (a *EndpointApiService) V1EndpointTransformationSimulate(ctx _context.Context, appId string, endpointId string) ApiV1EndpointTransformationSimulateRequest

* V1EndpointTransformationSimulate Simulate * Simulate running the transformation on the payload and code * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointTransformationSimulateRequest

func (*EndpointApiService) V1EndpointTransformationSimulateExecute added in v0.84.0

* Execute executes the request * @return EndpointTransformationSimulateOut

func (*EndpointApiService) V1EndpointUpdate added in v0.84.0

func (a *EndpointApiService) V1EndpointUpdate(ctx _context.Context, appId string, endpointId string) ApiV1EndpointUpdateRequest

* V1EndpointUpdate Update Endpoint * Update an endpoint. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointUpdateRequest

func (*EndpointApiService) V1EndpointUpdateExecute added in v0.84.0

* Execute executes the request * @return EndpointOut

func (*EndpointApiService) V1EndpointUpdateHeaders added in v0.84.0

func (a *EndpointApiService) V1EndpointUpdateHeaders(ctx _context.Context, appId string, endpointId string) ApiV1EndpointUpdateHeadersRequest

* V1EndpointUpdateHeaders Update Endpoint Headers * Set the additional headers to be sent with the webhook * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1EndpointUpdateHeadersRequest

func (*EndpointApiService) V1EndpointUpdateHeadersExecute added in v0.84.0

func (a *EndpointApiService) V1EndpointUpdateHeadersExecute(r ApiV1EndpointUpdateHeadersRequest) (*_nethttp.Response, error)

* Execute executes the request

type EndpointCreatedEvent

type EndpointCreatedEvent struct {
	Data EndpointCreatedEventData `json:"data"`
	Type string                   `json:"type"`
}

EndpointCreatedEvent Sent when an endpoint is created.

func NewEndpointCreatedEvent

func NewEndpointCreatedEvent(data EndpointCreatedEventData, type_ string) *EndpointCreatedEvent

NewEndpointCreatedEvent instantiates a new EndpointCreatedEvent 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 NewEndpointCreatedEventWithDefaults

func NewEndpointCreatedEventWithDefaults() *EndpointCreatedEvent

NewEndpointCreatedEventWithDefaults instantiates a new EndpointCreatedEvent 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 (*EndpointCreatedEvent) GetData

GetData returns the Data field value

func (*EndpointCreatedEvent) GetDataOk

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

func (*EndpointCreatedEvent) GetType

func (o *EndpointCreatedEvent) GetType() string

GetType returns the Type field value

func (*EndpointCreatedEvent) GetTypeOk

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

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

func (EndpointCreatedEvent) MarshalJSON

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

func (*EndpointCreatedEvent) SetData

SetData sets field value

func (*EndpointCreatedEvent) SetType

func (o *EndpointCreatedEvent) SetType(v string)

SetType sets field value

type EndpointCreatedEventData

type EndpointCreatedEventData struct {
	// The app's ID
	AppId string `json:"appId"`
	// The app's UID
	AppUid NullableString `json:"appUid,omitempty"`
	// The ep's ID
	EndpointId string `json:"endpointId"`
	// The ep's UID
	EndpointUid NullableString `json:"endpointUid,omitempty"`
}

EndpointCreatedEventData struct for EndpointCreatedEventData

func NewEndpointCreatedEventData

func NewEndpointCreatedEventData(appId string, endpointId string) *EndpointCreatedEventData

NewEndpointCreatedEventData instantiates a new EndpointCreatedEventData 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 NewEndpointCreatedEventDataWithDefaults

func NewEndpointCreatedEventDataWithDefaults() *EndpointCreatedEventData

NewEndpointCreatedEventDataWithDefaults instantiates a new EndpointCreatedEventData 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 (*EndpointCreatedEventData) GetAppId

func (o *EndpointCreatedEventData) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointCreatedEventData) GetAppIdOk

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

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

func (*EndpointCreatedEventData) GetAppUid

func (o *EndpointCreatedEventData) GetAppUid() string

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

func (*EndpointCreatedEventData) GetAppUidOk

func (o *EndpointCreatedEventData) GetAppUidOk() (*string, bool)

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

func (*EndpointCreatedEventData) GetEndpointId

func (o *EndpointCreatedEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*EndpointCreatedEventData) GetEndpointIdOk

func (o *EndpointCreatedEventData) GetEndpointIdOk() (*string, bool)

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

func (*EndpointCreatedEventData) GetEndpointUid added in v0.62.0

func (o *EndpointCreatedEventData) GetEndpointUid() string

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

func (*EndpointCreatedEventData) GetEndpointUidOk added in v0.62.0

func (o *EndpointCreatedEventData) GetEndpointUidOk() (*string, bool)

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

func (*EndpointCreatedEventData) HasAppUid

func (o *EndpointCreatedEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (*EndpointCreatedEventData) HasEndpointUid added in v0.62.0

func (o *EndpointCreatedEventData) HasEndpointUid() bool

HasEndpointUid returns a boolean if a field has been set.

func (EndpointCreatedEventData) MarshalJSON

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

func (*EndpointCreatedEventData) SetAppId

func (o *EndpointCreatedEventData) SetAppId(v string)

SetAppId sets field value

func (*EndpointCreatedEventData) SetAppUid

func (o *EndpointCreatedEventData) SetAppUid(v string)

SetAppUid gets a reference to the given NullableString and assigns it to the AppUid field.

func (*EndpointCreatedEventData) SetAppUidNil added in v0.62.0

func (o *EndpointCreatedEventData) SetAppUidNil()

SetAppUidNil sets the value for AppUid to be an explicit nil

func (*EndpointCreatedEventData) SetEndpointId

func (o *EndpointCreatedEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*EndpointCreatedEventData) SetEndpointUid added in v0.62.0

func (o *EndpointCreatedEventData) SetEndpointUid(v string)

SetEndpointUid gets a reference to the given NullableString and assigns it to the EndpointUid field.

func (*EndpointCreatedEventData) SetEndpointUidNil added in v0.62.0

func (o *EndpointCreatedEventData) SetEndpointUidNil()

SetEndpointUidNil sets the value for EndpointUid to be an explicit nil

func (*EndpointCreatedEventData) UnsetAppUid added in v0.62.0

func (o *EndpointCreatedEventData) UnsetAppUid()

UnsetAppUid ensures that no value is present for AppUid, not even an explicit nil

func (*EndpointCreatedEventData) UnsetEndpointUid added in v0.62.0

func (o *EndpointCreatedEventData) UnsetEndpointUid()

UnsetEndpointUid ensures that no value is present for EndpointUid, not even an explicit nil

type EndpointDeletedEvent

type EndpointDeletedEvent struct {
	Data EndpointDeletedEventData `json:"data"`
	Type string                   `json:"type"`
}

EndpointDeletedEvent Sent when an endpoint is deleted.

func NewEndpointDeletedEvent

func NewEndpointDeletedEvent(data EndpointDeletedEventData, type_ string) *EndpointDeletedEvent

NewEndpointDeletedEvent instantiates a new EndpointDeletedEvent 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 NewEndpointDeletedEventWithDefaults

func NewEndpointDeletedEventWithDefaults() *EndpointDeletedEvent

NewEndpointDeletedEventWithDefaults instantiates a new EndpointDeletedEvent 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 (*EndpointDeletedEvent) GetData

GetData returns the Data field value

func (*EndpointDeletedEvent) GetDataOk

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

func (*EndpointDeletedEvent) GetType

func (o *EndpointDeletedEvent) GetType() string

GetType returns the Type field value

func (*EndpointDeletedEvent) GetTypeOk

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

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

func (EndpointDeletedEvent) MarshalJSON

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

func (*EndpointDeletedEvent) SetData

SetData sets field value

func (*EndpointDeletedEvent) SetType

func (o *EndpointDeletedEvent) SetType(v string)

SetType sets field value

type EndpointDeletedEventData

type EndpointDeletedEventData struct {
	// The app's ID
	AppId string `json:"appId"`
	// The app's UID
	AppUid NullableString `json:"appUid,omitempty"`
	// The ep's ID
	EndpointId string `json:"endpointId"`
	// The ep's UID
	EndpointUid NullableString `json:"endpointUid,omitempty"`
}

EndpointDeletedEventData struct for EndpointDeletedEventData

func NewEndpointDeletedEventData

func NewEndpointDeletedEventData(appId string, endpointId string) *EndpointDeletedEventData

NewEndpointDeletedEventData instantiates a new EndpointDeletedEventData 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 NewEndpointDeletedEventDataWithDefaults

func NewEndpointDeletedEventDataWithDefaults() *EndpointDeletedEventData

NewEndpointDeletedEventDataWithDefaults instantiates a new EndpointDeletedEventData 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 (*EndpointDeletedEventData) GetAppId

func (o *EndpointDeletedEventData) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointDeletedEventData) GetAppIdOk

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

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

func (*EndpointDeletedEventData) GetAppUid

func (o *EndpointDeletedEventData) GetAppUid() string

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

func (*EndpointDeletedEventData) GetAppUidOk

func (o *EndpointDeletedEventData) GetAppUidOk() (*string, bool)

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

func (*EndpointDeletedEventData) GetEndpointId

func (o *EndpointDeletedEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*EndpointDeletedEventData) GetEndpointIdOk

func (o *EndpointDeletedEventData) GetEndpointIdOk() (*string, bool)

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

func (*EndpointDeletedEventData) GetEndpointUid added in v0.62.0

func (o *EndpointDeletedEventData) GetEndpointUid() string

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

func (*EndpointDeletedEventData) GetEndpointUidOk added in v0.62.0

func (o *EndpointDeletedEventData) GetEndpointUidOk() (*string, bool)

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

func (*EndpointDeletedEventData) HasAppUid

func (o *EndpointDeletedEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (*EndpointDeletedEventData) HasEndpointUid added in v0.62.0

func (o *EndpointDeletedEventData) HasEndpointUid() bool

HasEndpointUid returns a boolean if a field has been set.

func (EndpointDeletedEventData) MarshalJSON

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

func (*EndpointDeletedEventData) SetAppId

func (o *EndpointDeletedEventData) SetAppId(v string)

SetAppId sets field value

func (*EndpointDeletedEventData) SetAppUid

func (o *EndpointDeletedEventData) SetAppUid(v string)

SetAppUid gets a reference to the given NullableString and assigns it to the AppUid field.

func (*EndpointDeletedEventData) SetAppUidNil added in v0.62.0

func (o *EndpointDeletedEventData) SetAppUidNil()

SetAppUidNil sets the value for AppUid to be an explicit nil

func (*EndpointDeletedEventData) SetEndpointId

func (o *EndpointDeletedEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*EndpointDeletedEventData) SetEndpointUid added in v0.62.0

func (o *EndpointDeletedEventData) SetEndpointUid(v string)

SetEndpointUid gets a reference to the given NullableString and assigns it to the EndpointUid field.

func (*EndpointDeletedEventData) SetEndpointUidNil added in v0.62.0

func (o *EndpointDeletedEventData) SetEndpointUidNil()

SetEndpointUidNil sets the value for EndpointUid to be an explicit nil

func (*EndpointDeletedEventData) UnsetAppUid added in v0.62.0

func (o *EndpointDeletedEventData) UnsetAppUid()

UnsetAppUid ensures that no value is present for AppUid, not even an explicit nil

func (*EndpointDeletedEventData) UnsetEndpointUid added in v0.62.0

func (o *EndpointDeletedEventData) UnsetEndpointUid()

UnsetEndpointUid ensures that no value is present for EndpointUid, not even an explicit nil

type EndpointDisabledEvent

type EndpointDisabledEvent struct {
	Data EndpointDisabledEventData `json:"data"`
	Type string                    `json:"type"`
}

EndpointDisabledEvent Sent when an endpoint has been automatically disabled after continuous failures.

func NewEndpointDisabledEvent

func NewEndpointDisabledEvent(data EndpointDisabledEventData, type_ string) *EndpointDisabledEvent

NewEndpointDisabledEvent instantiates a new EndpointDisabledEvent 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 NewEndpointDisabledEventWithDefaults

func NewEndpointDisabledEventWithDefaults() *EndpointDisabledEvent

NewEndpointDisabledEventWithDefaults instantiates a new EndpointDisabledEvent 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 (*EndpointDisabledEvent) GetData

GetData returns the Data field value

func (*EndpointDisabledEvent) GetDataOk

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

func (*EndpointDisabledEvent) GetType

func (o *EndpointDisabledEvent) GetType() string

GetType returns the Type field value

func (*EndpointDisabledEvent) GetTypeOk

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

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

func (EndpointDisabledEvent) MarshalJSON

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

func (*EndpointDisabledEvent) SetData

SetData sets field value

func (*EndpointDisabledEvent) SetType

func (o *EndpointDisabledEvent) SetType(v string)

SetType sets field value

type EndpointDisabledEventData

type EndpointDisabledEventData struct {
	// The app's ID
	AppId string `json:"appId"`
	// The app's UID
	AppUid NullableString `json:"appUid,omitempty"`
	// The ep's ID
	EndpointId string `json:"endpointId"`
	// The ep's UID
	EndpointUid NullableString `json:"endpointUid,omitempty"`
	FailSince   time.Time      `json:"failSince"`
}

EndpointDisabledEventData Sent when an endpoint has been automatically disabled after continuous failures.

func NewEndpointDisabledEventData

func NewEndpointDisabledEventData(appId string, endpointId string, failSince time.Time) *EndpointDisabledEventData

NewEndpointDisabledEventData instantiates a new EndpointDisabledEventData 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 NewEndpointDisabledEventDataWithDefaults

func NewEndpointDisabledEventDataWithDefaults() *EndpointDisabledEventData

NewEndpointDisabledEventDataWithDefaults instantiates a new EndpointDisabledEventData 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 (*EndpointDisabledEventData) GetAppId

func (o *EndpointDisabledEventData) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointDisabledEventData) GetAppIdOk

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

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

func (*EndpointDisabledEventData) GetAppUid

func (o *EndpointDisabledEventData) GetAppUid() string

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

func (*EndpointDisabledEventData) GetAppUidOk

func (o *EndpointDisabledEventData) GetAppUidOk() (*string, bool)

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

func (*EndpointDisabledEventData) GetEndpointId

func (o *EndpointDisabledEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*EndpointDisabledEventData) GetEndpointIdOk

func (o *EndpointDisabledEventData) GetEndpointIdOk() (*string, bool)

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

func (*EndpointDisabledEventData) GetEndpointUid added in v0.62.0

func (o *EndpointDisabledEventData) GetEndpointUid() string

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

func (*EndpointDisabledEventData) GetEndpointUidOk added in v0.62.0

func (o *EndpointDisabledEventData) GetEndpointUidOk() (*string, bool)

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

func (*EndpointDisabledEventData) GetFailSince

func (o *EndpointDisabledEventData) GetFailSince() time.Time

GetFailSince returns the FailSince field value

func (*EndpointDisabledEventData) GetFailSinceOk

func (o *EndpointDisabledEventData) GetFailSinceOk() (*time.Time, bool)

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

func (*EndpointDisabledEventData) HasAppUid

func (o *EndpointDisabledEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (*EndpointDisabledEventData) HasEndpointUid added in v0.62.0

func (o *EndpointDisabledEventData) HasEndpointUid() bool

HasEndpointUid returns a boolean if a field has been set.

func (EndpointDisabledEventData) MarshalJSON

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

func (*EndpointDisabledEventData) SetAppId

func (o *EndpointDisabledEventData) SetAppId(v string)

SetAppId sets field value

func (*EndpointDisabledEventData) SetAppUid

func (o *EndpointDisabledEventData) SetAppUid(v string)

SetAppUid gets a reference to the given NullableString and assigns it to the AppUid field.

func (*EndpointDisabledEventData) SetAppUidNil added in v0.62.0

func (o *EndpointDisabledEventData) SetAppUidNil()

SetAppUidNil sets the value for AppUid to be an explicit nil

func (*EndpointDisabledEventData) SetEndpointId

func (o *EndpointDisabledEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*EndpointDisabledEventData) SetEndpointUid added in v0.62.0

func (o *EndpointDisabledEventData) SetEndpointUid(v string)

SetEndpointUid gets a reference to the given NullableString and assigns it to the EndpointUid field.

func (*EndpointDisabledEventData) SetEndpointUidNil added in v0.62.0

func (o *EndpointDisabledEventData) SetEndpointUidNil()

SetEndpointUidNil sets the value for EndpointUid to be an explicit nil

func (*EndpointDisabledEventData) SetFailSince

func (o *EndpointDisabledEventData) SetFailSince(v time.Time)

SetFailSince sets field value

func (*EndpointDisabledEventData) UnsetAppUid added in v0.62.0

func (o *EndpointDisabledEventData) UnsetAppUid()

UnsetAppUid ensures that no value is present for AppUid, not even an explicit nil

func (*EndpointDisabledEventData) UnsetEndpointUid added in v0.62.0

func (o *EndpointDisabledEventData) UnsetEndpointUid()

UnsetEndpointUid ensures that no value is present for EndpointUid, not even an explicit nil

type EndpointHeadersIn

type EndpointHeadersIn struct {
	Headers map[string]string `json:"headers"`
}

EndpointHeadersIn struct for EndpointHeadersIn

func NewEndpointHeadersIn

func NewEndpointHeadersIn(headers map[string]string) *EndpointHeadersIn

NewEndpointHeadersIn instantiates a new EndpointHeadersIn 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 NewEndpointHeadersInWithDefaults

func NewEndpointHeadersInWithDefaults() *EndpointHeadersIn

NewEndpointHeadersInWithDefaults instantiates a new EndpointHeadersIn 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 (*EndpointHeadersIn) GetHeaders

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

GetHeaders returns the Headers field value

func (*EndpointHeadersIn) GetHeadersOk

func (o *EndpointHeadersIn) 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 (EndpointHeadersIn) MarshalJSON

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

func (*EndpointHeadersIn) SetHeaders

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

SetHeaders sets field value

type EndpointHeadersOut

type EndpointHeadersOut struct {
	Headers   map[string]string `json:"headers"`
	Sensitive []string          `json:"sensitive"`
}

EndpointHeadersOut The value of the headers is returned in the `headers` field. Sensitive headers that have been redacted are returned in the sensitive field.

func NewEndpointHeadersOut

func NewEndpointHeadersOut(headers map[string]string, sensitive []string) *EndpointHeadersOut

NewEndpointHeadersOut instantiates a new EndpointHeadersOut 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 NewEndpointHeadersOutWithDefaults

func NewEndpointHeadersOutWithDefaults() *EndpointHeadersOut

NewEndpointHeadersOutWithDefaults instantiates a new EndpointHeadersOut 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 (*EndpointHeadersOut) GetHeaders

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

GetHeaders returns the Headers field value

func (*EndpointHeadersOut) GetHeadersOk

func (o *EndpointHeadersOut) 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 (*EndpointHeadersOut) GetSensitive

func (o *EndpointHeadersOut) GetSensitive() []string

GetSensitive returns the Sensitive field value

func (*EndpointHeadersOut) GetSensitiveOk

func (o *EndpointHeadersOut) GetSensitiveOk() (*[]string, bool)

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

func (EndpointHeadersOut) MarshalJSON

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

func (*EndpointHeadersOut) SetHeaders

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

SetHeaders sets field value

func (*EndpointHeadersOut) SetSensitive

func (o *EndpointHeadersOut) SetSensitive(v []string)

SetSensitive sets field value

type EndpointHeadersPatchIn added in v0.57.1

type EndpointHeadersPatchIn struct {
	Headers map[string]string `json:"headers"`
}

EndpointHeadersPatchIn struct for EndpointHeadersPatchIn

func NewEndpointHeadersPatchIn added in v0.57.1

func NewEndpointHeadersPatchIn(headers map[string]string) *EndpointHeadersPatchIn

NewEndpointHeadersPatchIn instantiates a new EndpointHeadersPatchIn 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 NewEndpointHeadersPatchInWithDefaults added in v0.57.1

func NewEndpointHeadersPatchInWithDefaults() *EndpointHeadersPatchIn

NewEndpointHeadersPatchInWithDefaults instantiates a new EndpointHeadersPatchIn 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 (*EndpointHeadersPatchIn) GetHeaders added in v0.57.1

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

GetHeaders returns the Headers field value

func (*EndpointHeadersPatchIn) GetHeadersOk added in v0.57.1

func (o *EndpointHeadersPatchIn) 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 (EndpointHeadersPatchIn) MarshalJSON added in v0.57.1

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

func (*EndpointHeadersPatchIn) SetHeaders added in v0.57.1

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

SetHeaders sets field value

type EndpointIn

type EndpointIn struct {
	// List of message channels this endpoint listens to (omit for all)
	Channels    []string           `json:"channels,omitempty"`
	Description *string            `json:"description,omitempty"`
	Disabled    *bool              `json:"disabled,omitempty"`
	FilterTypes []string           `json:"filterTypes,omitempty"`
	Metadata    *map[string]string `json:"metadata,omitempty"`
	RateLimit   NullableInt32      `json:"rateLimit,omitempty"`
	// The endpoint's verification secret. If `null` is passed, a secret is automatically generated. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24.
	Secret NullableString `json:"secret,omitempty"`
	// Optional unique identifier for the endpoint
	Uid     NullableString `json:"uid,omitempty"`
	Url     string         `json:"url"`
	Version NullableInt32  `json:"version,omitempty"`
}

EndpointIn struct for EndpointIn

func NewEndpointIn

func NewEndpointIn(url string) *EndpointIn

NewEndpointIn instantiates a new EndpointIn 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 NewEndpointInWithDefaults

func NewEndpointInWithDefaults() *EndpointIn

NewEndpointInWithDefaults instantiates a new EndpointIn 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 (*EndpointIn) GetChannels

func (o *EndpointIn) GetChannels() []string

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

func (*EndpointIn) GetChannelsOk

func (o *EndpointIn) GetChannelsOk() (*[]string, bool)

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

func (*EndpointIn) GetDescription

func (o *EndpointIn) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*EndpointIn) GetDescriptionOk

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

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

func (*EndpointIn) GetDisabled

func (o *EndpointIn) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*EndpointIn) GetDisabledOk

func (o *EndpointIn) GetDisabledOk() (*bool, bool)

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

func (*EndpointIn) GetFilterTypes

func (o *EndpointIn) GetFilterTypes() []string

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

func (*EndpointIn) GetFilterTypesOk

func (o *EndpointIn) GetFilterTypesOk() (*[]string, bool)

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

func (*EndpointIn) GetMetadata added in v0.69.0

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

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*EndpointIn) GetMetadataOk added in v0.69.0

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

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

func (*EndpointIn) GetRateLimit

func (o *EndpointIn) GetRateLimit() int32

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

func (*EndpointIn) GetRateLimitOk

func (o *EndpointIn) GetRateLimitOk() (*int32, bool)

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

func (*EndpointIn) GetSecret

func (o *EndpointIn) GetSecret() string

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

func (*EndpointIn) GetSecretOk

func (o *EndpointIn) GetSecretOk() (*string, bool)

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

func (*EndpointIn) GetUid

func (o *EndpointIn) GetUid() string

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

func (*EndpointIn) GetUidOk

func (o *EndpointIn) GetUidOk() (*string, bool)

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

func (*EndpointIn) GetUrl

func (o *EndpointIn) GetUrl() string

GetUrl returns the Url field value

func (*EndpointIn) GetUrlOk

func (o *EndpointIn) GetUrlOk() (*string, bool)

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

func (*EndpointIn) GetVersion

func (o *EndpointIn) GetVersion() int32

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

func (*EndpointIn) GetVersionOk

func (o *EndpointIn) GetVersionOk() (*int32, bool)

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

func (*EndpointIn) HasChannels

func (o *EndpointIn) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*EndpointIn) HasDescription

func (o *EndpointIn) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EndpointIn) HasDisabled

func (o *EndpointIn) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*EndpointIn) HasFilterTypes

func (o *EndpointIn) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*EndpointIn) HasMetadata added in v0.69.0

func (o *EndpointIn) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*EndpointIn) HasRateLimit

func (o *EndpointIn) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*EndpointIn) HasSecret

func (o *EndpointIn) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*EndpointIn) HasUid

func (o *EndpointIn) HasUid() bool

HasUid returns a boolean if a field has been set.

func (*EndpointIn) HasVersion added in v1.8.0

func (o *EndpointIn) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (EndpointIn) MarshalJSON

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

func (*EndpointIn) SetChannels

func (o *EndpointIn) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*EndpointIn) SetDescription

func (o *EndpointIn) SetDescription(v string)

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

func (*EndpointIn) SetDisabled

func (o *EndpointIn) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*EndpointIn) SetFilterTypes

func (o *EndpointIn) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*EndpointIn) SetMetadata added in v0.69.0

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

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

func (*EndpointIn) SetRateLimit

func (o *EndpointIn) SetRateLimit(v int32)

SetRateLimit gets a reference to the given NullableInt32 and assigns it to the RateLimit field.

func (*EndpointIn) SetRateLimitNil added in v0.62.0

func (o *EndpointIn) SetRateLimitNil()

SetRateLimitNil sets the value for RateLimit to be an explicit nil

func (*EndpointIn) SetSecret

func (o *EndpointIn) SetSecret(v string)

SetSecret gets a reference to the given NullableString and assigns it to the Secret field.

func (*EndpointIn) SetSecretNil added in v0.62.0

func (o *EndpointIn) SetSecretNil()

SetSecretNil sets the value for Secret to be an explicit nil

func (*EndpointIn) SetUid

func (o *EndpointIn) SetUid(v string)

SetUid gets a reference to the given NullableString and assigns it to the Uid field.

func (*EndpointIn) SetUidNil added in v0.62.0

func (o *EndpointIn) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*EndpointIn) SetUrl

func (o *EndpointIn) SetUrl(v string)

SetUrl sets field value

func (*EndpointIn) SetVersion

func (o *EndpointIn) SetVersion(v int32)

SetVersion gets a reference to the given NullableInt32 and assigns it to the Version field.

func (*EndpointIn) SetVersionNil added in v1.8.0

func (o *EndpointIn) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (*EndpointIn) UnsetRateLimit added in v0.62.0

func (o *EndpointIn) UnsetRateLimit()

UnsetRateLimit ensures that no value is present for RateLimit, not even an explicit nil

func (*EndpointIn) UnsetSecret added in v0.62.0

func (o *EndpointIn) UnsetSecret()

UnsetSecret ensures that no value is present for Secret, not even an explicit nil

func (*EndpointIn) UnsetUid added in v0.62.0

func (o *EndpointIn) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

func (*EndpointIn) UnsetVersion added in v1.8.0

func (o *EndpointIn) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type EndpointMessageOut

type EndpointMessageOut struct {
	// List of free-form identifiers that endpoints can filter by
	Channels []string `json:"channels,omitempty"`
	// Optional unique identifier for the message
	EventId NullableString `json:"eventId,omitempty"`
	// The event type's name
	EventType string `json:"eventType"`
	// The msg's ID
	Id          string                 `json:"id"`
	NextAttempt NullableTime           `json:"nextAttempt,omitempty"`
	Payload     map[string]interface{} `json:"payload"`
	Status      MessageStatus          `json:"status"`
	Timestamp   time.Time              `json:"timestamp"`
}

EndpointMessageOut A model containing information on a given message plus additional fields on the last attempt for that message.

func NewEndpointMessageOut

func NewEndpointMessageOut(eventType string, id string, payload map[string]interface{}, status MessageStatus, timestamp time.Time) *EndpointMessageOut

NewEndpointMessageOut instantiates a new EndpointMessageOut 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 NewEndpointMessageOutWithDefaults

func NewEndpointMessageOutWithDefaults() *EndpointMessageOut

NewEndpointMessageOutWithDefaults instantiates a new EndpointMessageOut 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 (*EndpointMessageOut) GetChannels

func (o *EndpointMessageOut) GetChannels() []string

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

func (*EndpointMessageOut) GetChannelsOk

func (o *EndpointMessageOut) GetChannelsOk() (*[]string, bool)

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

func (*EndpointMessageOut) GetEventId

func (o *EndpointMessageOut) GetEventId() string

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

func (*EndpointMessageOut) GetEventIdOk

func (o *EndpointMessageOut) GetEventIdOk() (*string, bool)

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

func (*EndpointMessageOut) GetEventType

func (o *EndpointMessageOut) GetEventType() string

GetEventType returns the EventType field value

func (*EndpointMessageOut) GetEventTypeOk

func (o *EndpointMessageOut) GetEventTypeOk() (*string, bool)

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

func (*EndpointMessageOut) GetId

func (o *EndpointMessageOut) GetId() string

GetId returns the Id field value

func (*EndpointMessageOut) GetIdOk

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

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

func (*EndpointMessageOut) GetNextAttempt

func (o *EndpointMessageOut) GetNextAttempt() time.Time

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

func (*EndpointMessageOut) GetNextAttemptOk

func (o *EndpointMessageOut) GetNextAttemptOk() (*time.Time, bool)

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

func (*EndpointMessageOut) GetPayload

func (o *EndpointMessageOut) GetPayload() map[string]interface{}

GetPayload returns the Payload field value

func (*EndpointMessageOut) GetPayloadOk

func (o *EndpointMessageOut) GetPayloadOk() (*map[string]interface{}, bool)

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

func (*EndpointMessageOut) GetStatus

func (o *EndpointMessageOut) GetStatus() MessageStatus

GetStatus returns the Status field value

func (*EndpointMessageOut) GetStatusOk

func (o *EndpointMessageOut) GetStatusOk() (*MessageStatus, bool)

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

func (*EndpointMessageOut) GetTimestamp

func (o *EndpointMessageOut) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*EndpointMessageOut) GetTimestampOk

func (o *EndpointMessageOut) GetTimestampOk() (*time.Time, bool)

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

func (*EndpointMessageOut) HasChannels

func (o *EndpointMessageOut) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*EndpointMessageOut) HasEventId

func (o *EndpointMessageOut) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*EndpointMessageOut) HasNextAttempt

func (o *EndpointMessageOut) HasNextAttempt() bool

HasNextAttempt returns a boolean if a field has been set.

func (EndpointMessageOut) MarshalJSON

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

func (*EndpointMessageOut) SetChannels

func (o *EndpointMessageOut) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*EndpointMessageOut) SetEventId

func (o *EndpointMessageOut) SetEventId(v string)

SetEventId gets a reference to the given NullableString and assigns it to the EventId field.

func (*EndpointMessageOut) SetEventIdNil added in v0.62.0

func (o *EndpointMessageOut) SetEventIdNil()

SetEventIdNil sets the value for EventId to be an explicit nil

func (*EndpointMessageOut) SetEventType

func (o *EndpointMessageOut) SetEventType(v string)

SetEventType sets field value

func (*EndpointMessageOut) SetId

func (o *EndpointMessageOut) SetId(v string)

SetId sets field value

func (*EndpointMessageOut) SetNextAttempt

func (o *EndpointMessageOut) SetNextAttempt(v time.Time)

SetNextAttempt gets a reference to the given NullableTime and assigns it to the NextAttempt field.

func (*EndpointMessageOut) SetNextAttemptNil added in v0.62.0

func (o *EndpointMessageOut) SetNextAttemptNil()

SetNextAttemptNil sets the value for NextAttempt to be an explicit nil

func (*EndpointMessageOut) SetPayload

func (o *EndpointMessageOut) SetPayload(v map[string]interface{})

SetPayload sets field value

func (*EndpointMessageOut) SetStatus

func (o *EndpointMessageOut) SetStatus(v MessageStatus)

SetStatus sets field value

func (*EndpointMessageOut) SetTimestamp

func (o *EndpointMessageOut) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*EndpointMessageOut) UnsetEventId added in v0.62.0

func (o *EndpointMessageOut) UnsetEventId()

UnsetEventId ensures that no value is present for EventId, not even an explicit nil

func (*EndpointMessageOut) UnsetNextAttempt added in v0.62.0

func (o *EndpointMessageOut) UnsetNextAttempt()

UnsetNextAttempt ensures that no value is present for NextAttempt, not even an explicit nil

type EndpointOut

type EndpointOut struct {
	// List of message channels this endpoint listens to (omit for all)
	Channels  []string  `json:"channels,omitempty"`
	CreatedAt time.Time `json:"createdAt"`
	// An example endpoint name
	Description string   `json:"description"`
	Disabled    *bool    `json:"disabled,omitempty"`
	FilterTypes []string `json:"filterTypes,omitempty"`
	// The ep's ID
	Id        string            `json:"id"`
	Metadata  map[string]string `json:"metadata"`
	RateLimit NullableInt32     `json:"rateLimit,omitempty"`
	// Optional unique identifier for the endpoint
	Uid       NullableString `json:"uid,omitempty"`
	UpdatedAt time.Time      `json:"updatedAt"`
	Url       string         `json:"url"`
	Version   int32          `json:"version"`
}

EndpointOut struct for EndpointOut

func NewEndpointOut

func NewEndpointOut(createdAt time.Time, description string, id string, metadata map[string]string, updatedAt time.Time, url string, version int32) *EndpointOut

NewEndpointOut instantiates a new EndpointOut 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 NewEndpointOutWithDefaults

func NewEndpointOutWithDefaults() *EndpointOut

NewEndpointOutWithDefaults instantiates a new EndpointOut 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 (*EndpointOut) GetChannels

func (o *EndpointOut) GetChannels() []string

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

func (*EndpointOut) GetChannelsOk

func (o *EndpointOut) GetChannelsOk() (*[]string, bool)

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

func (*EndpointOut) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*EndpointOut) GetCreatedAtOk

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

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

func (*EndpointOut) GetDescription

func (o *EndpointOut) GetDescription() string

GetDescription returns the Description field value

func (*EndpointOut) GetDescriptionOk

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

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

func (*EndpointOut) GetDisabled

func (o *EndpointOut) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*EndpointOut) GetDisabledOk

func (o *EndpointOut) GetDisabledOk() (*bool, bool)

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

func (*EndpointOut) GetFilterTypes

func (o *EndpointOut) GetFilterTypes() []string

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

func (*EndpointOut) GetFilterTypesOk

func (o *EndpointOut) GetFilterTypesOk() (*[]string, bool)

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

func (*EndpointOut) GetId

func (o *EndpointOut) GetId() string

GetId returns the Id field value

func (*EndpointOut) GetIdOk

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

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

func (*EndpointOut) GetMetadata added in v0.69.0

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

GetMetadata returns the Metadata field value

func (*EndpointOut) GetMetadataOk added in v0.69.0

func (o *EndpointOut) 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 (*EndpointOut) GetRateLimit

func (o *EndpointOut) GetRateLimit() int32

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

func (*EndpointOut) GetRateLimitOk

func (o *EndpointOut) GetRateLimitOk() (*int32, bool)

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

func (*EndpointOut) GetUid

func (o *EndpointOut) GetUid() string

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

func (*EndpointOut) GetUidOk

func (o *EndpointOut) GetUidOk() (*string, bool)

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

func (*EndpointOut) GetUpdatedAt

func (o *EndpointOut) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*EndpointOut) GetUpdatedAtOk

func (o *EndpointOut) GetUpdatedAtOk() (*time.Time, bool)

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

func (*EndpointOut) GetUrl

func (o *EndpointOut) GetUrl() string

GetUrl returns the Url field value

func (*EndpointOut) GetUrlOk

func (o *EndpointOut) GetUrlOk() (*string, bool)

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

func (*EndpointOut) GetVersion

func (o *EndpointOut) GetVersion() int32

GetVersion returns the Version field value

func (*EndpointOut) GetVersionOk

func (o *EndpointOut) GetVersionOk() (*int32, bool)

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

func (*EndpointOut) HasChannels

func (o *EndpointOut) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*EndpointOut) HasDisabled

func (o *EndpointOut) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*EndpointOut) HasFilterTypes

func (o *EndpointOut) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*EndpointOut) HasRateLimit

func (o *EndpointOut) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*EndpointOut) HasUid

func (o *EndpointOut) HasUid() bool

HasUid returns a boolean if a field has been set.

func (EndpointOut) MarshalJSON

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

func (*EndpointOut) SetChannels

func (o *EndpointOut) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*EndpointOut) SetCreatedAt

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

SetCreatedAt sets field value

func (*EndpointOut) SetDescription

func (o *EndpointOut) SetDescription(v string)

SetDescription sets field value

func (*EndpointOut) SetDisabled

func (o *EndpointOut) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*EndpointOut) SetFilterTypes

func (o *EndpointOut) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*EndpointOut) SetId

func (o *EndpointOut) SetId(v string)

SetId sets field value

func (*EndpointOut) SetMetadata added in v0.69.0

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

SetMetadata sets field value

func (*EndpointOut) SetRateLimit

func (o *EndpointOut) SetRateLimit(v int32)

SetRateLimit gets a reference to the given NullableInt32 and assigns it to the RateLimit field.

func (*EndpointOut) SetRateLimitNil added in v0.62.0

func (o *EndpointOut) SetRateLimitNil()

SetRateLimitNil sets the value for RateLimit to be an explicit nil

func (*EndpointOut) SetUid

func (o *EndpointOut) SetUid(v string)

SetUid gets a reference to the given NullableString and assigns it to the Uid field.

func (*EndpointOut) SetUidNil added in v0.62.0

func (o *EndpointOut) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*EndpointOut) SetUpdatedAt

func (o *EndpointOut) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*EndpointOut) SetUrl

func (o *EndpointOut) SetUrl(v string)

SetUrl sets field value

func (*EndpointOut) SetVersion

func (o *EndpointOut) SetVersion(v int32)

SetVersion sets field value

func (*EndpointOut) UnsetRateLimit added in v0.62.0

func (o *EndpointOut) UnsetRateLimit()

UnsetRateLimit ensures that no value is present for RateLimit, not even an explicit nil

func (*EndpointOut) UnsetUid added in v0.62.0

func (o *EndpointOut) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

type EndpointPatch added in v0.84.0

type EndpointPatch struct {
	Channels    []string           `json:"channels,omitempty"`
	Description *string            `json:"description,omitempty"`
	Disabled    *bool              `json:"disabled,omitempty"`
	FilterTypes []string           `json:"filterTypes,omitempty"`
	Metadata    *map[string]string `json:"metadata,omitempty"`
	RateLimit   NullableInt32      `json:"rateLimit,omitempty"`
	// The endpoint's verification secret. If `null` is passed, a secret is automatically generated. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24.
	Secret NullableString `json:"secret,omitempty"`
	// The ep's UID
	Uid     NullableString `json:"uid,omitempty"`
	Url     *string        `json:"url,omitempty"`
	Version *int32         `json:"version,omitempty"`
}

EndpointPatch struct for EndpointPatch

func NewEndpointPatch added in v0.84.0

func NewEndpointPatch() *EndpointPatch

NewEndpointPatch instantiates a new EndpointPatch 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 NewEndpointPatchWithDefaults added in v0.84.0

func NewEndpointPatchWithDefaults() *EndpointPatch

NewEndpointPatchWithDefaults instantiates a new EndpointPatch 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 (*EndpointPatch) GetChannels added in v0.84.0

func (o *EndpointPatch) GetChannels() []string

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

func (*EndpointPatch) GetChannelsOk added in v0.84.0

func (o *EndpointPatch) GetChannelsOk() (*[]string, bool)

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

func (*EndpointPatch) GetDescription added in v0.84.0

func (o *EndpointPatch) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*EndpointPatch) GetDescriptionOk added in v0.84.0

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

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

func (*EndpointPatch) GetDisabled added in v0.84.0

func (o *EndpointPatch) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*EndpointPatch) GetDisabledOk added in v0.84.0

func (o *EndpointPatch) GetDisabledOk() (*bool, bool)

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

func (*EndpointPatch) GetFilterTypes added in v0.84.0

func (o *EndpointPatch) GetFilterTypes() []string

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

func (*EndpointPatch) GetFilterTypesOk added in v0.84.0

func (o *EndpointPatch) GetFilterTypesOk() (*[]string, bool)

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

func (*EndpointPatch) GetMetadata added in v0.84.0

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

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*EndpointPatch) GetMetadataOk added in v0.84.0

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

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

func (*EndpointPatch) GetRateLimit added in v0.84.0

func (o *EndpointPatch) GetRateLimit() int32

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

func (*EndpointPatch) GetRateLimitOk added in v0.84.0

func (o *EndpointPatch) GetRateLimitOk() (*int32, bool)

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

func (*EndpointPatch) GetSecret added in v0.84.0

func (o *EndpointPatch) GetSecret() string

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

func (*EndpointPatch) GetSecretOk added in v0.84.0

func (o *EndpointPatch) GetSecretOk() (*string, bool)

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

func (*EndpointPatch) GetUid added in v0.84.0

func (o *EndpointPatch) GetUid() string

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

func (*EndpointPatch) GetUidOk added in v0.84.0

func (o *EndpointPatch) GetUidOk() (*string, bool)

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

func (*EndpointPatch) GetUrl added in v0.84.0

func (o *EndpointPatch) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*EndpointPatch) GetUrlOk added in v0.84.0

func (o *EndpointPatch) GetUrlOk() (*string, bool)

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

func (*EndpointPatch) GetVersion added in v0.84.0

func (o *EndpointPatch) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*EndpointPatch) GetVersionOk added in v0.84.0

func (o *EndpointPatch) GetVersionOk() (*int32, bool)

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

func (*EndpointPatch) HasChannels added in v0.84.0

func (o *EndpointPatch) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*EndpointPatch) HasDescription added in v0.84.0

func (o *EndpointPatch) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EndpointPatch) HasDisabled added in v0.84.0

func (o *EndpointPatch) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*EndpointPatch) HasFilterTypes added in v0.84.0

func (o *EndpointPatch) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*EndpointPatch) HasMetadata added in v0.84.0

func (o *EndpointPatch) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*EndpointPatch) HasRateLimit added in v0.84.0

func (o *EndpointPatch) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*EndpointPatch) HasSecret added in v0.84.0

func (o *EndpointPatch) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*EndpointPatch) HasUid added in v0.84.0

func (o *EndpointPatch) HasUid() bool

HasUid returns a boolean if a field has been set.

func (*EndpointPatch) HasUrl added in v0.84.0

func (o *EndpointPatch) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*EndpointPatch) HasVersion added in v0.84.0

func (o *EndpointPatch) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (EndpointPatch) MarshalJSON added in v0.84.0

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

func (*EndpointPatch) SetChannels added in v0.84.0

func (o *EndpointPatch) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*EndpointPatch) SetDescription added in v0.84.0

func (o *EndpointPatch) SetDescription(v string)

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

func (*EndpointPatch) SetDisabled added in v0.84.0

func (o *EndpointPatch) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*EndpointPatch) SetFilterTypes added in v0.84.0

func (o *EndpointPatch) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*EndpointPatch) SetMetadata added in v0.84.0

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

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

func (*EndpointPatch) SetRateLimit added in v0.84.0

func (o *EndpointPatch) SetRateLimit(v int32)

SetRateLimit gets a reference to the given NullableInt32 and assigns it to the RateLimit field.

func (*EndpointPatch) SetRateLimitNil added in v0.84.0

func (o *EndpointPatch) SetRateLimitNil()

SetRateLimitNil sets the value for RateLimit to be an explicit nil

func (*EndpointPatch) SetSecret added in v0.84.0

func (o *EndpointPatch) SetSecret(v string)

SetSecret gets a reference to the given NullableString and assigns it to the Secret field.

func (*EndpointPatch) SetSecretNil added in v0.84.0

func (o *EndpointPatch) SetSecretNil()

SetSecretNil sets the value for Secret to be an explicit nil

func (*EndpointPatch) SetUid added in v0.84.0

func (o *EndpointPatch) SetUid(v string)

SetUid gets a reference to the given NullableString and assigns it to the Uid field.

func (*EndpointPatch) SetUidNil added in v0.84.0

func (o *EndpointPatch) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*EndpointPatch) SetUrl added in v0.84.0

func (o *EndpointPatch) SetUrl(v string)

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

func (*EndpointPatch) SetVersion added in v0.84.0

func (o *EndpointPatch) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (*EndpointPatch) UnsetRateLimit added in v0.84.0

func (o *EndpointPatch) UnsetRateLimit()

UnsetRateLimit ensures that no value is present for RateLimit, not even an explicit nil

func (*EndpointPatch) UnsetSecret added in v0.84.0

func (o *EndpointPatch) UnsetSecret()

UnsetSecret ensures that no value is present for Secret, not even an explicit nil

func (*EndpointPatch) UnsetUid added in v0.84.0

func (o *EndpointPatch) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

type EndpointSecretOut

type EndpointSecretOut struct {
	// The endpoint's verification secret. If `null` is passed, a secret is automatically generated. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24.
	Key string `json:"key"`
}

EndpointSecretOut struct for EndpointSecretOut

func NewEndpointSecretOut

func NewEndpointSecretOut(key string) *EndpointSecretOut

NewEndpointSecretOut instantiates a new EndpointSecretOut 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 NewEndpointSecretOutWithDefaults

func NewEndpointSecretOutWithDefaults() *EndpointSecretOut

NewEndpointSecretOutWithDefaults instantiates a new EndpointSecretOut 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 (*EndpointSecretOut) GetKey

func (o *EndpointSecretOut) GetKey() string

GetKey returns the Key field value

func (*EndpointSecretOut) GetKeyOk

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

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

func (EndpointSecretOut) MarshalJSON

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

func (*EndpointSecretOut) SetKey

func (o *EndpointSecretOut) SetKey(v string)

SetKey sets field value

type EndpointSecretRotateIn

type EndpointSecretRotateIn struct {
	// The endpoint's verification secret. If `null` is passed, a secret is automatically generated. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24.
	Key NullableString `json:"key,omitempty"`
}

EndpointSecretRotateIn struct for EndpointSecretRotateIn

func NewEndpointSecretRotateIn

func NewEndpointSecretRotateIn() *EndpointSecretRotateIn

NewEndpointSecretRotateIn instantiates a new EndpointSecretRotateIn 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 NewEndpointSecretRotateInWithDefaults

func NewEndpointSecretRotateInWithDefaults() *EndpointSecretRotateIn

NewEndpointSecretRotateInWithDefaults instantiates a new EndpointSecretRotateIn 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 (*EndpointSecretRotateIn) GetKey

func (o *EndpointSecretRotateIn) GetKey() string

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

func (*EndpointSecretRotateIn) GetKeyOk

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

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

func (*EndpointSecretRotateIn) HasKey

func (o *EndpointSecretRotateIn) HasKey() bool

HasKey returns a boolean if a field has been set.

func (EndpointSecretRotateIn) MarshalJSON

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

func (*EndpointSecretRotateIn) SetKey

func (o *EndpointSecretRotateIn) SetKey(v string)

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

func (*EndpointSecretRotateIn) SetKeyNil added in v0.62.0

func (o *EndpointSecretRotateIn) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*EndpointSecretRotateIn) UnsetKey added in v0.62.0

func (o *EndpointSecretRotateIn) UnsetKey()

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

type EndpointStats

type EndpointStats struct {
	Fail    int64 `json:"fail"`
	Pending int64 `json:"pending"`
	Sending int64 `json:"sending"`
	Success int64 `json:"success"`
}

EndpointStats struct for EndpointStats

func NewEndpointStats

func NewEndpointStats(fail int64, pending int64, sending int64, success int64) *EndpointStats

NewEndpointStats instantiates a new EndpointStats 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 NewEndpointStatsWithDefaults

func NewEndpointStatsWithDefaults() *EndpointStats

NewEndpointStatsWithDefaults instantiates a new EndpointStats 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 (*EndpointStats) GetFail

func (o *EndpointStats) GetFail() int64

GetFail returns the Fail field value

func (*EndpointStats) GetFailOk

func (o *EndpointStats) GetFailOk() (*int64, bool)

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

func (*EndpointStats) GetPending

func (o *EndpointStats) GetPending() int64

GetPending returns the Pending field value

func (*EndpointStats) GetPendingOk

func (o *EndpointStats) GetPendingOk() (*int64, bool)

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

func (*EndpointStats) GetSending

func (o *EndpointStats) GetSending() int64

GetSending returns the Sending field value

func (*EndpointStats) GetSendingOk

func (o *EndpointStats) GetSendingOk() (*int64, bool)

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

func (*EndpointStats) GetSuccess

func (o *EndpointStats) GetSuccess() int64

GetSuccess returns the Success field value

func (*EndpointStats) GetSuccessOk

func (o *EndpointStats) GetSuccessOk() (*int64, bool)

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

func (EndpointStats) MarshalJSON

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

func (*EndpointStats) SetFail

func (o *EndpointStats) SetFail(v int64)

SetFail sets field value

func (*EndpointStats) SetPending

func (o *EndpointStats) SetPending(v int64)

SetPending sets field value

func (*EndpointStats) SetSending

func (o *EndpointStats) SetSending(v int64)

SetSending sets field value

func (*EndpointStats) SetSuccess

func (o *EndpointStats) SetSuccess(v int64)

SetSuccess sets field value

type EndpointTransformationIn added in v0.66.0

type EndpointTransformationIn struct {
	Code    NullableString `json:"code,omitempty"`
	Enabled *bool          `json:"enabled,omitempty"`
}

EndpointTransformationIn struct for EndpointTransformationIn

func NewEndpointTransformationIn added in v0.66.0

func NewEndpointTransformationIn() *EndpointTransformationIn

NewEndpointTransformationIn instantiates a new EndpointTransformationIn 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 NewEndpointTransformationInWithDefaults added in v0.66.0

func NewEndpointTransformationInWithDefaults() *EndpointTransformationIn

NewEndpointTransformationInWithDefaults instantiates a new EndpointTransformationIn 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 (*EndpointTransformationIn) GetCode added in v0.66.0

func (o *EndpointTransformationIn) GetCode() string

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

func (*EndpointTransformationIn) GetCodeOk added in v0.66.0

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

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

func (*EndpointTransformationIn) GetEnabled added in v0.66.0

func (o *EndpointTransformationIn) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*EndpointTransformationIn) GetEnabledOk added in v0.66.0

func (o *EndpointTransformationIn) GetEnabledOk() (*bool, bool)

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

func (*EndpointTransformationIn) HasCode added in v0.66.0

func (o *EndpointTransformationIn) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*EndpointTransformationIn) HasEnabled added in v0.66.0

func (o *EndpointTransformationIn) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (EndpointTransformationIn) MarshalJSON added in v0.66.0

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

func (*EndpointTransformationIn) SetCode added in v0.66.0

func (o *EndpointTransformationIn) SetCode(v string)

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

func (*EndpointTransformationIn) SetCodeNil added in v0.66.0

func (o *EndpointTransformationIn) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*EndpointTransformationIn) SetEnabled added in v0.66.0

func (o *EndpointTransformationIn) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*EndpointTransformationIn) UnsetCode added in v0.66.0

func (o *EndpointTransformationIn) UnsetCode()

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

type EndpointTransformationOut added in v0.66.0

type EndpointTransformationOut struct {
	Code    NullableString `json:"code,omitempty"`
	Enabled *bool          `json:"enabled,omitempty"`
}

EndpointTransformationOut struct for EndpointTransformationOut

func NewEndpointTransformationOut added in v0.66.0

func NewEndpointTransformationOut() *EndpointTransformationOut

NewEndpointTransformationOut instantiates a new EndpointTransformationOut 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 NewEndpointTransformationOutWithDefaults added in v0.66.0

func NewEndpointTransformationOutWithDefaults() *EndpointTransformationOut

NewEndpointTransformationOutWithDefaults instantiates a new EndpointTransformationOut 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 (*EndpointTransformationOut) GetCode added in v0.66.0

func (o *EndpointTransformationOut) GetCode() string

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

func (*EndpointTransformationOut) GetCodeOk added in v0.66.0

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

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

func (*EndpointTransformationOut) GetEnabled added in v0.66.0

func (o *EndpointTransformationOut) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*EndpointTransformationOut) GetEnabledOk added in v0.66.0

func (o *EndpointTransformationOut) GetEnabledOk() (*bool, bool)

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

func (*EndpointTransformationOut) HasCode added in v0.66.0

func (o *EndpointTransformationOut) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*EndpointTransformationOut) HasEnabled added in v0.66.0

func (o *EndpointTransformationOut) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (EndpointTransformationOut) MarshalJSON added in v0.66.0

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

func (*EndpointTransformationOut) SetCode added in v0.66.0

func (o *EndpointTransformationOut) SetCode(v string)

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

func (*EndpointTransformationOut) SetCodeNil added in v0.66.0

func (o *EndpointTransformationOut) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*EndpointTransformationOut) SetEnabled added in v0.66.0

func (o *EndpointTransformationOut) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*EndpointTransformationOut) UnsetCode added in v0.66.0

func (o *EndpointTransformationOut) UnsetCode()

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

type EndpointTransformationSimulateIn added in v0.66.0

type EndpointTransformationSimulateIn struct {
	Channels []string `json:"channels,omitempty"`
	Code     string   `json:"code"`
	// The event type's name
	EventType string                 `json:"eventType"`
	Payload   map[string]interface{} `json:"payload"`
}

EndpointTransformationSimulateIn struct for EndpointTransformationSimulateIn

func NewEndpointTransformationSimulateIn added in v0.66.0

func NewEndpointTransformationSimulateIn(code string, eventType string, payload map[string]interface{}) *EndpointTransformationSimulateIn

NewEndpointTransformationSimulateIn instantiates a new EndpointTransformationSimulateIn 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 NewEndpointTransformationSimulateInWithDefaults added in v0.66.0

func NewEndpointTransformationSimulateInWithDefaults() *EndpointTransformationSimulateIn

NewEndpointTransformationSimulateInWithDefaults instantiates a new EndpointTransformationSimulateIn 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 (*EndpointTransformationSimulateIn) GetChannels added in v0.66.0

func (o *EndpointTransformationSimulateIn) GetChannels() []string

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

func (*EndpointTransformationSimulateIn) GetChannelsOk added in v0.66.0

func (o *EndpointTransformationSimulateIn) GetChannelsOk() (*[]string, bool)

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

func (*EndpointTransformationSimulateIn) GetCode added in v0.66.0

GetCode returns the Code field value

func (*EndpointTransformationSimulateIn) GetCodeOk added in v0.66.0

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

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

func (*EndpointTransformationSimulateIn) GetEventType added in v0.66.0

func (o *EndpointTransformationSimulateIn) GetEventType() string

GetEventType returns the EventType field value

func (*EndpointTransformationSimulateIn) GetEventTypeOk added in v0.66.0

func (o *EndpointTransformationSimulateIn) GetEventTypeOk() (*string, bool)

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

func (*EndpointTransformationSimulateIn) GetPayload added in v0.66.0

func (o *EndpointTransformationSimulateIn) GetPayload() map[string]interface{}

GetPayload returns the Payload field value

func (*EndpointTransformationSimulateIn) GetPayloadOk added in v0.66.0

func (o *EndpointTransformationSimulateIn) GetPayloadOk() (*map[string]interface{}, bool)

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

func (*EndpointTransformationSimulateIn) HasChannels added in v0.66.0

func (o *EndpointTransformationSimulateIn) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (EndpointTransformationSimulateIn) MarshalJSON added in v0.66.0

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

func (*EndpointTransformationSimulateIn) SetChannels added in v0.66.0

func (o *EndpointTransformationSimulateIn) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*EndpointTransformationSimulateIn) SetCode added in v0.66.0

SetCode sets field value

func (*EndpointTransformationSimulateIn) SetEventType added in v0.66.0

func (o *EndpointTransformationSimulateIn) SetEventType(v string)

SetEventType sets field value

func (*EndpointTransformationSimulateIn) SetPayload added in v0.66.0

func (o *EndpointTransformationSimulateIn) SetPayload(v map[string]interface{})

SetPayload sets field value

type EndpointTransformationSimulateOut added in v0.66.0

type EndpointTransformationSimulateOut struct {
	Method  *TransformationHttpMethod `json:"method,omitempty"`
	Payload string                    `json:"payload"`
	Url     string                    `json:"url"`
}

EndpointTransformationSimulateOut struct for EndpointTransformationSimulateOut

func NewEndpointTransformationSimulateOut added in v0.66.0

func NewEndpointTransformationSimulateOut(payload string, url string) *EndpointTransformationSimulateOut

NewEndpointTransformationSimulateOut instantiates a new EndpointTransformationSimulateOut 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 NewEndpointTransformationSimulateOutWithDefaults added in v0.66.0

func NewEndpointTransformationSimulateOutWithDefaults() *EndpointTransformationSimulateOut

NewEndpointTransformationSimulateOutWithDefaults instantiates a new EndpointTransformationSimulateOut 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 (*EndpointTransformationSimulateOut) GetMethod added in v0.66.0

GetMethod returns the Method field value if set, zero value otherwise.

func (*EndpointTransformationSimulateOut) GetMethodOk added in v0.66.0

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

func (*EndpointTransformationSimulateOut) GetPayload added in v0.66.0

func (o *EndpointTransformationSimulateOut) GetPayload() string

GetPayload returns the Payload field value

func (*EndpointTransformationSimulateOut) GetPayloadOk added in v0.66.0

func (o *EndpointTransformationSimulateOut) GetPayloadOk() (*string, bool)

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

func (*EndpointTransformationSimulateOut) GetUrl added in v0.66.0

GetUrl returns the Url field value

func (*EndpointTransformationSimulateOut) GetUrlOk added in v0.66.0

func (o *EndpointTransformationSimulateOut) GetUrlOk() (*string, bool)

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

func (*EndpointTransformationSimulateOut) HasMethod added in v0.66.0

func (o *EndpointTransformationSimulateOut) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (EndpointTransformationSimulateOut) MarshalJSON added in v0.66.0

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

func (*EndpointTransformationSimulateOut) SetMethod added in v0.66.0

SetMethod gets a reference to the given TransformationHttpMethod and assigns it to the Method field.

func (*EndpointTransformationSimulateOut) SetPayload added in v0.66.0

func (o *EndpointTransformationSimulateOut) SetPayload(v string)

SetPayload sets field value

func (*EndpointTransformationSimulateOut) SetUrl added in v0.66.0

SetUrl sets field value

type EndpointUpdate

type EndpointUpdate struct {
	// List of message channels this endpoint listens to (omit for all)
	Channels    []string           `json:"channels,omitempty"`
	Description *string            `json:"description,omitempty"`
	Disabled    *bool              `json:"disabled,omitempty"`
	FilterTypes []string           `json:"filterTypes,omitempty"`
	Metadata    *map[string]string `json:"metadata,omitempty"`
	RateLimit   NullableInt32      `json:"rateLimit,omitempty"`
	// Optional unique identifier for the endpoint
	Uid     NullableString `json:"uid,omitempty"`
	Url     string         `json:"url"`
	Version NullableInt32  `json:"version,omitempty"`
}

EndpointUpdate struct for EndpointUpdate

func NewEndpointUpdate

func NewEndpointUpdate(url string) *EndpointUpdate

NewEndpointUpdate instantiates a new EndpointUpdate 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 NewEndpointUpdateWithDefaults

func NewEndpointUpdateWithDefaults() *EndpointUpdate

NewEndpointUpdateWithDefaults instantiates a new EndpointUpdate 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 (*EndpointUpdate) GetChannels

func (o *EndpointUpdate) GetChannels() []string

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

func (*EndpointUpdate) GetChannelsOk

func (o *EndpointUpdate) GetChannelsOk() (*[]string, bool)

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

func (*EndpointUpdate) GetDescription

func (o *EndpointUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*EndpointUpdate) GetDescriptionOk

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

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

func (*EndpointUpdate) GetDisabled

func (o *EndpointUpdate) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*EndpointUpdate) GetDisabledOk

func (o *EndpointUpdate) GetDisabledOk() (*bool, bool)

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

func (*EndpointUpdate) GetFilterTypes

func (o *EndpointUpdate) GetFilterTypes() []string

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

func (*EndpointUpdate) GetFilterTypesOk

func (o *EndpointUpdate) GetFilterTypesOk() (*[]string, bool)

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

func (*EndpointUpdate) GetMetadata added in v0.69.0

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

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*EndpointUpdate) GetMetadataOk added in v0.69.0

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

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

func (*EndpointUpdate) GetRateLimit

func (o *EndpointUpdate) GetRateLimit() int32

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

func (*EndpointUpdate) GetRateLimitOk

func (o *EndpointUpdate) GetRateLimitOk() (*int32, bool)

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

func (*EndpointUpdate) GetUid

func (o *EndpointUpdate) GetUid() string

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

func (*EndpointUpdate) GetUidOk

func (o *EndpointUpdate) GetUidOk() (*string, bool)

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

func (*EndpointUpdate) GetUrl

func (o *EndpointUpdate) GetUrl() string

GetUrl returns the Url field value

func (*EndpointUpdate) GetUrlOk

func (o *EndpointUpdate) GetUrlOk() (*string, bool)

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

func (*EndpointUpdate) GetVersion

func (o *EndpointUpdate) GetVersion() int32

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

func (*EndpointUpdate) GetVersionOk

func (o *EndpointUpdate) GetVersionOk() (*int32, bool)

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

func (*EndpointUpdate) HasChannels

func (o *EndpointUpdate) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*EndpointUpdate) HasDescription

func (o *EndpointUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EndpointUpdate) HasDisabled

func (o *EndpointUpdate) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*EndpointUpdate) HasFilterTypes

func (o *EndpointUpdate) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*EndpointUpdate) HasMetadata added in v0.69.0

func (o *EndpointUpdate) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*EndpointUpdate) HasRateLimit

func (o *EndpointUpdate) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*EndpointUpdate) HasUid

func (o *EndpointUpdate) HasUid() bool

HasUid returns a boolean if a field has been set.

func (*EndpointUpdate) HasVersion added in v1.8.0

func (o *EndpointUpdate) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (EndpointUpdate) MarshalJSON

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

func (*EndpointUpdate) SetChannels

func (o *EndpointUpdate) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*EndpointUpdate) SetDescription

func (o *EndpointUpdate) SetDescription(v string)

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

func (*EndpointUpdate) SetDisabled

func (o *EndpointUpdate) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*EndpointUpdate) SetFilterTypes

func (o *EndpointUpdate) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*EndpointUpdate) SetMetadata added in v0.69.0

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

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

func (*EndpointUpdate) SetRateLimit

func (o *EndpointUpdate) SetRateLimit(v int32)

SetRateLimit gets a reference to the given NullableInt32 and assigns it to the RateLimit field.

func (*EndpointUpdate) SetRateLimitNil added in v0.62.0

func (o *EndpointUpdate) SetRateLimitNil()

SetRateLimitNil sets the value for RateLimit to be an explicit nil

func (*EndpointUpdate) SetUid

func (o *EndpointUpdate) SetUid(v string)

SetUid gets a reference to the given NullableString and assigns it to the Uid field.

func (*EndpointUpdate) SetUidNil added in v0.62.0

func (o *EndpointUpdate) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*EndpointUpdate) SetUrl

func (o *EndpointUpdate) SetUrl(v string)

SetUrl sets field value

func (*EndpointUpdate) SetVersion

func (o *EndpointUpdate) SetVersion(v int32)

SetVersion gets a reference to the given NullableInt32 and assigns it to the Version field.

func (*EndpointUpdate) SetVersionNil added in v1.8.0

func (o *EndpointUpdate) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (*EndpointUpdate) UnsetRateLimit added in v0.62.0

func (o *EndpointUpdate) UnsetRateLimit()

UnsetRateLimit ensures that no value is present for RateLimit, not even an explicit nil

func (*EndpointUpdate) UnsetUid added in v0.62.0

func (o *EndpointUpdate) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

func (*EndpointUpdate) UnsetVersion added in v1.8.0

func (o *EndpointUpdate) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type EndpointUpdatedEvent

type EndpointUpdatedEvent struct {
	Data EndpointUpdatedEventData `json:"data"`
	Type string                   `json:"type"`
}

EndpointUpdatedEvent Sent when an endpoint is updated.

func NewEndpointUpdatedEvent

func NewEndpointUpdatedEvent(data EndpointUpdatedEventData, type_ string) *EndpointUpdatedEvent

NewEndpointUpdatedEvent instantiates a new EndpointUpdatedEvent 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 NewEndpointUpdatedEventWithDefaults

func NewEndpointUpdatedEventWithDefaults() *EndpointUpdatedEvent

NewEndpointUpdatedEventWithDefaults instantiates a new EndpointUpdatedEvent 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 (*EndpointUpdatedEvent) GetData

GetData returns the Data field value

func (*EndpointUpdatedEvent) GetDataOk

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

func (*EndpointUpdatedEvent) GetType

func (o *EndpointUpdatedEvent) GetType() string

GetType returns the Type field value

func (*EndpointUpdatedEvent) GetTypeOk

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

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

func (EndpointUpdatedEvent) MarshalJSON

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

func (*EndpointUpdatedEvent) SetData

SetData sets field value

func (*EndpointUpdatedEvent) SetType

func (o *EndpointUpdatedEvent) SetType(v string)

SetType sets field value

type EndpointUpdatedEventData

type EndpointUpdatedEventData struct {
	// The app's ID
	AppId string `json:"appId"`
	// The app's UID
	AppUid NullableString `json:"appUid,omitempty"`
	// The ep's ID
	EndpointId string `json:"endpointId"`
	// The ep's UID
	EndpointUid NullableString `json:"endpointUid,omitempty"`
}

EndpointUpdatedEventData struct for EndpointUpdatedEventData

func NewEndpointUpdatedEventData

func NewEndpointUpdatedEventData(appId string, endpointId string) *EndpointUpdatedEventData

NewEndpointUpdatedEventData instantiates a new EndpointUpdatedEventData 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 NewEndpointUpdatedEventDataWithDefaults

func NewEndpointUpdatedEventDataWithDefaults() *EndpointUpdatedEventData

NewEndpointUpdatedEventDataWithDefaults instantiates a new EndpointUpdatedEventData 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 (*EndpointUpdatedEventData) GetAppId

func (o *EndpointUpdatedEventData) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointUpdatedEventData) GetAppIdOk

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

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

func (*EndpointUpdatedEventData) GetAppUid

func (o *EndpointUpdatedEventData) GetAppUid() string

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

func (*EndpointUpdatedEventData) GetAppUidOk

func (o *EndpointUpdatedEventData) GetAppUidOk() (*string, bool)

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

func (*EndpointUpdatedEventData) GetEndpointId

func (o *EndpointUpdatedEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*EndpointUpdatedEventData) GetEndpointIdOk

func (o *EndpointUpdatedEventData) GetEndpointIdOk() (*string, bool)

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

func (*EndpointUpdatedEventData) GetEndpointUid added in v0.62.0

func (o *EndpointUpdatedEventData) GetEndpointUid() string

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

func (*EndpointUpdatedEventData) GetEndpointUidOk added in v0.62.0

func (o *EndpointUpdatedEventData) GetEndpointUidOk() (*string, bool)

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

func (*EndpointUpdatedEventData) HasAppUid

func (o *EndpointUpdatedEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (*EndpointUpdatedEventData) HasEndpointUid added in v0.62.0

func (o *EndpointUpdatedEventData) HasEndpointUid() bool

HasEndpointUid returns a boolean if a field has been set.

func (EndpointUpdatedEventData) MarshalJSON

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

func (*EndpointUpdatedEventData) SetAppId

func (o *EndpointUpdatedEventData) SetAppId(v string)

SetAppId sets field value

func (*EndpointUpdatedEventData) SetAppUid

func (o *EndpointUpdatedEventData) SetAppUid(v string)

SetAppUid gets a reference to the given NullableString and assigns it to the AppUid field.

func (*EndpointUpdatedEventData) SetAppUidNil added in v0.62.0

func (o *EndpointUpdatedEventData) SetAppUidNil()

SetAppUidNil sets the value for AppUid to be an explicit nil

func (*EndpointUpdatedEventData) SetEndpointId

func (o *EndpointUpdatedEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*EndpointUpdatedEventData) SetEndpointUid added in v0.62.0

func (o *EndpointUpdatedEventData) SetEndpointUid(v string)

SetEndpointUid gets a reference to the given NullableString and assigns it to the EndpointUid field.

func (*EndpointUpdatedEventData) SetEndpointUidNil added in v0.62.0

func (o *EndpointUpdatedEventData) SetEndpointUidNil()

SetEndpointUidNil sets the value for EndpointUid to be an explicit nil

func (*EndpointUpdatedEventData) UnsetAppUid added in v0.62.0

func (o *EndpointUpdatedEventData) UnsetAppUid()

UnsetAppUid ensures that no value is present for AppUid, not even an explicit nil

func (*EndpointUpdatedEventData) UnsetEndpointUid added in v0.62.0

func (o *EndpointUpdatedEventData) UnsetEndpointUid()

UnsetEndpointUid ensures that no value is present for EndpointUid, not even an explicit nil

type EnvironmentApiService

type EnvironmentApiService service

EnvironmentApiService EnvironmentApi service

func (*EnvironmentApiService) V1EnvironmentExport added in v0.84.0

* V1EnvironmentExport Export Environment Configuration * Download a JSON file containing all org-settings and event types * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1EnvironmentExportRequest

func (*EnvironmentApiService) V1EnvironmentExportExecute added in v0.84.0

* Execute executes the request * @return EnvironmentOut

func (*EnvironmentApiService) V1EnvironmentImport added in v0.84.0

  • V1EnvironmentImport Import Environment Configuration
  • Import a configuration into the active organization.

It doesn't delete anything, only adds/updates what was passed to it.

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

func (*EnvironmentApiService) V1EnvironmentImportExecute added in v0.84.0

func (a *EnvironmentApiService) V1EnvironmentImportExecute(r ApiV1EnvironmentImportRequest) (*_nethttp.Response, error)

* Execute executes the request

type EnvironmentIn

type EnvironmentIn struct {
	CreatedAt  time.Time     `json:"createdAt"`
	EventTypes []EventTypeIn `json:"eventTypes,omitempty"`
	Settings   *SettingsIn   `json:"settings,omitempty"`
	Version    int32         `json:"version"`
}

EnvironmentIn struct for EnvironmentIn

func NewEnvironmentIn

func NewEnvironmentIn(createdAt time.Time, version int32) *EnvironmentIn

NewEnvironmentIn instantiates a new EnvironmentIn 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 NewEnvironmentInWithDefaults

func NewEnvironmentInWithDefaults() *EnvironmentIn

NewEnvironmentInWithDefaults instantiates a new EnvironmentIn 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 (*EnvironmentIn) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*EnvironmentIn) GetCreatedAtOk

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

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

func (*EnvironmentIn) GetEventTypes

func (o *EnvironmentIn) GetEventTypes() []EventTypeIn

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

func (*EnvironmentIn) GetEventTypesOk

func (o *EnvironmentIn) GetEventTypesOk() (*[]EventTypeIn, bool)

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

func (*EnvironmentIn) GetSettings

func (o *EnvironmentIn) GetSettings() SettingsIn

GetSettings returns the Settings field value if set, zero value otherwise.

func (*EnvironmentIn) GetSettingsOk

func (o *EnvironmentIn) GetSettingsOk() (*SettingsIn, bool)

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

func (*EnvironmentIn) GetVersion

func (o *EnvironmentIn) GetVersion() int32

GetVersion returns the Version field value

func (*EnvironmentIn) GetVersionOk

func (o *EnvironmentIn) GetVersionOk() (*int32, bool)

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

func (*EnvironmentIn) HasEventTypes

func (o *EnvironmentIn) HasEventTypes() bool

HasEventTypes returns a boolean if a field has been set.

func (*EnvironmentIn) HasSettings

func (o *EnvironmentIn) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (EnvironmentIn) MarshalJSON

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

func (*EnvironmentIn) SetCreatedAt

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

SetCreatedAt sets field value

func (*EnvironmentIn) SetEventTypes

func (o *EnvironmentIn) SetEventTypes(v []EventTypeIn)

SetEventTypes gets a reference to the given []EventTypeIn and assigns it to the EventTypes field.

func (*EnvironmentIn) SetSettings

func (o *EnvironmentIn) SetSettings(v SettingsIn)

SetSettings gets a reference to the given SettingsIn and assigns it to the Settings field.

func (*EnvironmentIn) SetVersion

func (o *EnvironmentIn) SetVersion(v int32)

SetVersion sets field value

type EnvironmentOut

type EnvironmentOut struct {
	CreatedAt  time.Time      `json:"createdAt"`
	EventTypes []EventTypeOut `json:"eventTypes"`
	Settings   *SettingsOut   `json:"settings,omitempty"`
	Version    *int32         `json:"version,omitempty"`
}

EnvironmentOut struct for EnvironmentOut

func NewEnvironmentOut

func NewEnvironmentOut(createdAt time.Time, eventTypes []EventTypeOut) *EnvironmentOut

NewEnvironmentOut instantiates a new EnvironmentOut 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 NewEnvironmentOutWithDefaults

func NewEnvironmentOutWithDefaults() *EnvironmentOut

NewEnvironmentOutWithDefaults instantiates a new EnvironmentOut 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 (*EnvironmentOut) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*EnvironmentOut) GetCreatedAtOk

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

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

func (*EnvironmentOut) GetEventTypes

func (o *EnvironmentOut) GetEventTypes() []EventTypeOut

GetEventTypes returns the EventTypes field value

func (*EnvironmentOut) GetEventTypesOk

func (o *EnvironmentOut) GetEventTypesOk() (*[]EventTypeOut, bool)

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

func (*EnvironmentOut) GetSettings

func (o *EnvironmentOut) GetSettings() SettingsOut

GetSettings returns the Settings field value if set, zero value otherwise.

func (*EnvironmentOut) GetSettingsOk

func (o *EnvironmentOut) GetSettingsOk() (*SettingsOut, bool)

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

func (*EnvironmentOut) GetVersion

func (o *EnvironmentOut) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*EnvironmentOut) GetVersionOk

func (o *EnvironmentOut) GetVersionOk() (*int32, bool)

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

func (*EnvironmentOut) HasSettings

func (o *EnvironmentOut) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (*EnvironmentOut) HasVersion

func (o *EnvironmentOut) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (EnvironmentOut) MarshalJSON

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

func (*EnvironmentOut) SetCreatedAt

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

SetCreatedAt sets field value

func (*EnvironmentOut) SetEventTypes

func (o *EnvironmentOut) SetEventTypes(v []EventTypeOut)

SetEventTypes sets field value

func (*EnvironmentOut) SetSettings

func (o *EnvironmentOut) SetSettings(v SettingsOut)

SetSettings gets a reference to the given SettingsOut and assigns it to the Settings field.

func (*EnvironmentOut) SetVersion

func (o *EnvironmentOut) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

type EnvironmentSettingsApiService

type EnvironmentSettingsApiService service

EnvironmentSettingsApiService EnvironmentSettingsApi service

func (*EnvironmentSettingsApiService) V1EnvironmentGetSettings added in v0.84.0

* V1EnvironmentGetSettings Get Org Settings * Get the environment's settings * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1EnvironmentGetSettingsRequest

func (*EnvironmentSettingsApiService) V1EnvironmentGetSettingsExecute added in v0.84.0

* Execute executes the request * @return EnvironmentSettingsOut

type EnvironmentSettingsOut

type EnvironmentSettingsOut struct {
	ColorPaletteDark            *CustomColorPalette  `json:"colorPaletteDark,omitempty"`
	ColorPaletteLight           *CustomColorPalette  `json:"colorPaletteLight,omitempty"`
	CustomColor                 NullableString       `json:"customColor,omitempty"`
	CustomFontFamily            NullableString       `json:"customFontFamily,omitempty"`
	CustomLogoUrl               NullableString       `json:"customLogoUrl,omitempty"`
	CustomThemeOverride         *CustomThemeOverride `json:"customThemeOverride,omitempty"`
	EnableChannels              *bool                `json:"enableChannels,omitempty"`
	EnableIntegrationManagement *bool                `json:"enableIntegrationManagement,omitempty"`
	EnableTransformations       *bool                `json:"enableTransformations,omitempty"`
}

EnvironmentSettingsOut struct for EnvironmentSettingsOut

func NewEnvironmentSettingsOut

func NewEnvironmentSettingsOut() *EnvironmentSettingsOut

NewEnvironmentSettingsOut instantiates a new EnvironmentSettingsOut 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 NewEnvironmentSettingsOutWithDefaults

func NewEnvironmentSettingsOutWithDefaults() *EnvironmentSettingsOut

NewEnvironmentSettingsOutWithDefaults instantiates a new EnvironmentSettingsOut 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 (*EnvironmentSettingsOut) GetColorPaletteDark added in v0.62.0

func (o *EnvironmentSettingsOut) GetColorPaletteDark() CustomColorPalette

GetColorPaletteDark returns the ColorPaletteDark field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetColorPaletteDarkOk added in v0.62.0

func (o *EnvironmentSettingsOut) GetColorPaletteDarkOk() (*CustomColorPalette, bool)

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

func (*EnvironmentSettingsOut) GetColorPaletteLight added in v0.62.0

func (o *EnvironmentSettingsOut) GetColorPaletteLight() CustomColorPalette

GetColorPaletteLight returns the ColorPaletteLight field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetColorPaletteLightOk added in v0.62.0

func (o *EnvironmentSettingsOut) GetColorPaletteLightOk() (*CustomColorPalette, bool)

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

func (*EnvironmentSettingsOut) GetCustomColor

func (o *EnvironmentSettingsOut) GetCustomColor() string

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

func (*EnvironmentSettingsOut) GetCustomColorOk

func (o *EnvironmentSettingsOut) GetCustomColorOk() (*string, bool)

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

func (*EnvironmentSettingsOut) GetCustomFontFamily

func (o *EnvironmentSettingsOut) GetCustomFontFamily() string

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

func (*EnvironmentSettingsOut) GetCustomFontFamilyOk

func (o *EnvironmentSettingsOut) GetCustomFontFamilyOk() (*string, bool)

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

func (*EnvironmentSettingsOut) GetCustomLogoUrl

func (o *EnvironmentSettingsOut) GetCustomLogoUrl() string

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

func (*EnvironmentSettingsOut) GetCustomLogoUrlOk

func (o *EnvironmentSettingsOut) GetCustomLogoUrlOk() (*string, bool)

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

func (*EnvironmentSettingsOut) GetCustomThemeOverride

func (o *EnvironmentSettingsOut) GetCustomThemeOverride() CustomThemeOverride

GetCustomThemeOverride returns the CustomThemeOverride field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetCustomThemeOverrideOk

func (o *EnvironmentSettingsOut) GetCustomThemeOverrideOk() (*CustomThemeOverride, bool)

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

func (*EnvironmentSettingsOut) GetEnableChannels

func (o *EnvironmentSettingsOut) GetEnableChannels() bool

GetEnableChannels returns the EnableChannels field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetEnableChannelsOk

func (o *EnvironmentSettingsOut) GetEnableChannelsOk() (*bool, bool)

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

func (*EnvironmentSettingsOut) GetEnableIntegrationManagement

func (o *EnvironmentSettingsOut) GetEnableIntegrationManagement() bool

GetEnableIntegrationManagement returns the EnableIntegrationManagement field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetEnableIntegrationManagementOk

func (o *EnvironmentSettingsOut) GetEnableIntegrationManagementOk() (*bool, bool)

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

func (*EnvironmentSettingsOut) GetEnableTransformations added in v0.67.0

func (o *EnvironmentSettingsOut) GetEnableTransformations() bool

GetEnableTransformations returns the EnableTransformations field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetEnableTransformationsOk added in v0.67.0

func (o *EnvironmentSettingsOut) GetEnableTransformationsOk() (*bool, bool)

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

func (*EnvironmentSettingsOut) HasColorPaletteDark added in v0.62.0

func (o *EnvironmentSettingsOut) HasColorPaletteDark() bool

HasColorPaletteDark returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasColorPaletteLight added in v0.62.0

func (o *EnvironmentSettingsOut) HasColorPaletteLight() bool

HasColorPaletteLight returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasCustomColor

func (o *EnvironmentSettingsOut) HasCustomColor() bool

HasCustomColor returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasCustomFontFamily

func (o *EnvironmentSettingsOut) HasCustomFontFamily() bool

HasCustomFontFamily returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasCustomLogoUrl

func (o *EnvironmentSettingsOut) HasCustomLogoUrl() bool

HasCustomLogoUrl returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasCustomThemeOverride

func (o *EnvironmentSettingsOut) HasCustomThemeOverride() bool

HasCustomThemeOverride returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasEnableChannels

func (o *EnvironmentSettingsOut) HasEnableChannels() bool

HasEnableChannels returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasEnableIntegrationManagement

func (o *EnvironmentSettingsOut) HasEnableIntegrationManagement() bool

HasEnableIntegrationManagement returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasEnableTransformations added in v0.67.0

func (o *EnvironmentSettingsOut) HasEnableTransformations() bool

HasEnableTransformations returns a boolean if a field has been set.

func (EnvironmentSettingsOut) MarshalJSON

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

func (*EnvironmentSettingsOut) SetColorPaletteDark added in v0.62.0

func (o *EnvironmentSettingsOut) SetColorPaletteDark(v CustomColorPalette)

SetColorPaletteDark gets a reference to the given CustomColorPalette and assigns it to the ColorPaletteDark field.

func (*EnvironmentSettingsOut) SetColorPaletteLight added in v0.62.0

func (o *EnvironmentSettingsOut) SetColorPaletteLight(v CustomColorPalette)

SetColorPaletteLight gets a reference to the given CustomColorPalette and assigns it to the ColorPaletteLight field.

func (*EnvironmentSettingsOut) SetCustomColor

func (o *EnvironmentSettingsOut) SetCustomColor(v string)

SetCustomColor gets a reference to the given NullableString and assigns it to the CustomColor field.

func (*EnvironmentSettingsOut) SetCustomColorNil added in v0.62.0

func (o *EnvironmentSettingsOut) SetCustomColorNil()

SetCustomColorNil sets the value for CustomColor to be an explicit nil

func (*EnvironmentSettingsOut) SetCustomFontFamily

func (o *EnvironmentSettingsOut) SetCustomFontFamily(v string)

SetCustomFontFamily gets a reference to the given NullableString and assigns it to the CustomFontFamily field.

func (*EnvironmentSettingsOut) SetCustomFontFamilyNil added in v0.62.0

func (o *EnvironmentSettingsOut) SetCustomFontFamilyNil()

SetCustomFontFamilyNil sets the value for CustomFontFamily to be an explicit nil

func (*EnvironmentSettingsOut) SetCustomLogoUrl

func (o *EnvironmentSettingsOut) SetCustomLogoUrl(v string)

SetCustomLogoUrl gets a reference to the given NullableString and assigns it to the CustomLogoUrl field.

func (*EnvironmentSettingsOut) SetCustomLogoUrlNil added in v0.62.0

func (o *EnvironmentSettingsOut) SetCustomLogoUrlNil()

SetCustomLogoUrlNil sets the value for CustomLogoUrl to be an explicit nil

func (*EnvironmentSettingsOut) SetCustomThemeOverride

func (o *EnvironmentSettingsOut) SetCustomThemeOverride(v CustomThemeOverride)

SetCustomThemeOverride gets a reference to the given CustomThemeOverride and assigns it to the CustomThemeOverride field.

func (*EnvironmentSettingsOut) SetEnableChannels

func (o *EnvironmentSettingsOut) SetEnableChannels(v bool)

SetEnableChannels gets a reference to the given bool and assigns it to the EnableChannels field.

func (*EnvironmentSettingsOut) SetEnableIntegrationManagement

func (o *EnvironmentSettingsOut) SetEnableIntegrationManagement(v bool)

SetEnableIntegrationManagement gets a reference to the given bool and assigns it to the EnableIntegrationManagement field.

func (*EnvironmentSettingsOut) SetEnableTransformations added in v0.67.0

func (o *EnvironmentSettingsOut) SetEnableTransformations(v bool)

SetEnableTransformations gets a reference to the given bool and assigns it to the EnableTransformations field.

func (*EnvironmentSettingsOut) UnsetCustomColor added in v0.62.0

func (o *EnvironmentSettingsOut) UnsetCustomColor()

UnsetCustomColor ensures that no value is present for CustomColor, not even an explicit nil

func (*EnvironmentSettingsOut) UnsetCustomFontFamily added in v0.62.0

func (o *EnvironmentSettingsOut) UnsetCustomFontFamily()

UnsetCustomFontFamily ensures that no value is present for CustomFontFamily, not even an explicit nil

func (*EnvironmentSettingsOut) UnsetCustomLogoUrl added in v0.62.0

func (o *EnvironmentSettingsOut) UnsetCustomLogoUrl()

UnsetCustomLogoUrl ensures that no value is present for CustomLogoUrl, not even an explicit nil

type EventExampleIn

type EventExampleIn struct {
	// The event type's name
	EventType string `json:"eventType"`
}

EventExampleIn struct for EventExampleIn

func NewEventExampleIn

func NewEventExampleIn(eventType string) *EventExampleIn

NewEventExampleIn instantiates a new EventExampleIn 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 NewEventExampleInWithDefaults

func NewEventExampleInWithDefaults() *EventExampleIn

NewEventExampleInWithDefaults instantiates a new EventExampleIn 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 (*EventExampleIn) GetEventType

func (o *EventExampleIn) GetEventType() string

GetEventType returns the EventType field value

func (*EventExampleIn) GetEventTypeOk

func (o *EventExampleIn) GetEventTypeOk() (*string, bool)

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

func (EventExampleIn) MarshalJSON

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

func (*EventExampleIn) SetEventType

func (o *EventExampleIn) SetEventType(v string)

SetEventType sets field value

type EventTypeApiService

type EventTypeApiService service

EventTypeApiService EventTypeApi service

func (*EventTypeApiService) V1EventTypeCreate added in v0.84.0

  • V1EventTypeCreate Create Event Type
  • Create new or unarchive existing event type.

Unarchiving an event type will allow endpoints to filter on it and messages to be sent with it. Endpoints filtering on the event type before archival will continue to filter on it. This operation does not preserve the description and schemas.

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

func (*EventTypeApiService) V1EventTypeCreateExecute added in v0.84.0

* Execute executes the request * @return EventTypeOut

func (*EventTypeApiService) V1EventTypeDelete added in v0.84.0

func (a *EventTypeApiService) V1EventTypeDelete(ctx _context.Context, eventTypeName string) ApiV1EventTypeDeleteRequest
  • V1EventTypeDelete Delete Event Type
  • Archive an event type.

Endpoints already configured to filter on an event type will continue to do so after archival. However, new messages can not be sent with it and endpoints can not filter on it. An event type can be unarchived with the [create operation](#operation/create_event_type_api_v1_event_type__post).

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param eventTypeName The event type's name
  • @return ApiV1EventTypeDeleteRequest

func (*EventTypeApiService) V1EventTypeDeleteExecute added in v0.84.0

func (a *EventTypeApiService) V1EventTypeDeleteExecute(r ApiV1EventTypeDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EventTypeApiService) V1EventTypeGenerateExample added in v0.84.0

func (a *EventTypeApiService) V1EventTypeGenerateExample(ctx _context.Context) ApiV1EventTypeGenerateExampleRequest

* V1EventTypeGenerateExample Generate Schema Example * Generates a fake example from the given JSONSchema * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1EventTypeGenerateExampleRequest

func (*EventTypeApiService) V1EventTypeGenerateExampleExecute added in v0.84.0

* Execute executes the request * @return EventTypeExampleOut

func (*EventTypeApiService) V1EventTypeGet added in v0.84.0

func (a *EventTypeApiService) V1EventTypeGet(ctx _context.Context, eventTypeName string) ApiV1EventTypeGetRequest

* V1EventTypeGet Get Event Type * Get an event type. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param eventTypeName The event type's name * @return ApiV1EventTypeGetRequest

func (*EventTypeApiService) V1EventTypeGetExecute added in v0.84.0

* Execute executes the request * @return EventTypeOut

func (*EventTypeApiService) V1EventTypeImportOpenapi added in v1.11.0

  • V1EventTypeImportOpenapi Event Type Import From Openapi
  • Given an OpenAPI spec, create new or update existing event types.

If an existing `archived` event type is updated, it will be unarchvied.

The importer will convert all webhooks found in the either the `webhooks` or `x-webhooks` top-level.

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

func (*EventTypeApiService) V1EventTypeImportOpenapiExecute added in v1.11.0

* Execute executes the request * @return EventTypeImportOpenApiOut

func (*EventTypeApiService) V1EventTypeList added in v0.84.0

* V1EventTypeList List Event Types * Return the list of event types. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1EventTypeListRequest

func (*EventTypeApiService) V1EventTypeListExecute added in v0.84.0

* Execute executes the request * @return ListResponseEventTypeOut

func (*EventTypeApiService) V1EventTypePatch added in v1.6.0

func (a *EventTypeApiService) V1EventTypePatch(ctx _context.Context, eventTypeName string) ApiV1EventTypePatchRequest

* V1EventTypePatch Patch Event Type * Partially update an event type. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param eventTypeName The event type's name * @return ApiV1EventTypePatchRequest

func (*EventTypeApiService) V1EventTypePatchExecute added in v1.6.0

* Execute executes the request * @return EventTypeOut

func (*EventTypeApiService) V1EventTypeUpdate added in v0.84.0

func (a *EventTypeApiService) V1EventTypeUpdate(ctx _context.Context, eventTypeName string) ApiV1EventTypeUpdateRequest

* V1EventTypeUpdate Update Event Type * Update an event type. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param eventTypeName The event type's name * @return ApiV1EventTypeUpdateRequest

func (*EventTypeApiService) V1EventTypeUpdateExecute added in v0.84.0

* Execute executes the request * @return EventTypeOut

type EventTypeExampleOut

type EventTypeExampleOut struct {
	Example map[string]map[string]interface{} `json:"example"`
}

EventTypeExampleOut struct for EventTypeExampleOut

func NewEventTypeExampleOut

func NewEventTypeExampleOut(example map[string]map[string]interface{}) *EventTypeExampleOut

NewEventTypeExampleOut instantiates a new EventTypeExampleOut 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 NewEventTypeExampleOutWithDefaults

func NewEventTypeExampleOutWithDefaults() *EventTypeExampleOut

NewEventTypeExampleOutWithDefaults instantiates a new EventTypeExampleOut 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 (*EventTypeExampleOut) GetExample

func (o *EventTypeExampleOut) GetExample() map[string]map[string]interface{}

GetExample returns the Example field value

func (*EventTypeExampleOut) GetExampleOk

func (o *EventTypeExampleOut) GetExampleOk() (*map[string]map[string]interface{}, bool)

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

func (EventTypeExampleOut) MarshalJSON

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

func (*EventTypeExampleOut) SetExample

func (o *EventTypeExampleOut) SetExample(v map[string]map[string]interface{})

SetExample sets field value

type EventTypeImportOpenApiIn added in v1.11.0

type EventTypeImportOpenApiIn struct {
	Spec map[string]map[string]interface{} `json:"spec"`
}

EventTypeImportOpenApiIn struct for EventTypeImportOpenApiIn

func NewEventTypeImportOpenApiIn added in v1.11.0

func NewEventTypeImportOpenApiIn(spec map[string]map[string]interface{}) *EventTypeImportOpenApiIn

NewEventTypeImportOpenApiIn instantiates a new EventTypeImportOpenApiIn 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 NewEventTypeImportOpenApiInWithDefaults added in v1.11.0

func NewEventTypeImportOpenApiInWithDefaults() *EventTypeImportOpenApiIn

NewEventTypeImportOpenApiInWithDefaults instantiates a new EventTypeImportOpenApiIn 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 (*EventTypeImportOpenApiIn) GetSpec added in v1.11.0

func (o *EventTypeImportOpenApiIn) GetSpec() map[string]map[string]interface{}

GetSpec returns the Spec field value

func (*EventTypeImportOpenApiIn) GetSpecOk added in v1.11.0

func (o *EventTypeImportOpenApiIn) GetSpecOk() (*map[string]map[string]interface{}, bool)

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

func (EventTypeImportOpenApiIn) MarshalJSON added in v1.11.0

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

func (*EventTypeImportOpenApiIn) SetSpec added in v1.11.0

func (o *EventTypeImportOpenApiIn) SetSpec(v map[string]map[string]interface{})

SetSpec sets field value

type EventTypeImportOpenApiOut added in v1.11.0

type EventTypeImportOpenApiOut struct {
	Data EventTypeImportOpenApiOutData `json:"data"`
}

EventTypeImportOpenApiOut struct for EventTypeImportOpenApiOut

func NewEventTypeImportOpenApiOut added in v1.11.0

func NewEventTypeImportOpenApiOut(data EventTypeImportOpenApiOutData) *EventTypeImportOpenApiOut

NewEventTypeImportOpenApiOut instantiates a new EventTypeImportOpenApiOut 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 NewEventTypeImportOpenApiOutWithDefaults added in v1.11.0

func NewEventTypeImportOpenApiOutWithDefaults() *EventTypeImportOpenApiOut

NewEventTypeImportOpenApiOutWithDefaults instantiates a new EventTypeImportOpenApiOut 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 (*EventTypeImportOpenApiOut) GetData added in v1.11.0

GetData returns the Data field value

func (*EventTypeImportOpenApiOut) GetDataOk added in v1.11.0

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

func (EventTypeImportOpenApiOut) MarshalJSON added in v1.11.0

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

func (*EventTypeImportOpenApiOut) SetData added in v1.11.0

SetData sets field value

type EventTypeImportOpenApiOutData added in v1.11.0

type EventTypeImportOpenApiOutData struct {
	Modified []string `json:"modified"`
}

EventTypeImportOpenApiOutData struct for EventTypeImportOpenApiOutData

func NewEventTypeImportOpenApiOutData added in v1.11.0

func NewEventTypeImportOpenApiOutData(modified []string) *EventTypeImportOpenApiOutData

NewEventTypeImportOpenApiOutData instantiates a new EventTypeImportOpenApiOutData 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 NewEventTypeImportOpenApiOutDataWithDefaults added in v1.11.0

func NewEventTypeImportOpenApiOutDataWithDefaults() *EventTypeImportOpenApiOutData

NewEventTypeImportOpenApiOutDataWithDefaults instantiates a new EventTypeImportOpenApiOutData 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 (*EventTypeImportOpenApiOutData) GetModified added in v1.11.0

func (o *EventTypeImportOpenApiOutData) GetModified() []string

GetModified returns the Modified field value

func (*EventTypeImportOpenApiOutData) GetModifiedOk added in v1.11.0

func (o *EventTypeImportOpenApiOutData) GetModifiedOk() (*[]string, bool)

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

func (EventTypeImportOpenApiOutData) MarshalJSON added in v1.11.0

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

func (*EventTypeImportOpenApiOutData) SetModified added in v1.11.0

func (o *EventTypeImportOpenApiOutData) SetModified(v []string)

SetModified sets field value

type EventTypeIn

type EventTypeIn struct {
	Archived    *bool          `json:"archived,omitempty"`
	Description string         `json:"description"`
	FeatureFlag NullableString `json:"featureFlag,omitempty"`
	// The event type's name
	Name string `json:"name"`
	// The schema for the event type for a specific version as a JSON schema.
	Schemas map[string]map[string]interface{} `json:"schemas,omitempty"`
}

EventTypeIn struct for EventTypeIn

func NewEventTypeIn

func NewEventTypeIn(description string, name string) *EventTypeIn

NewEventTypeIn instantiates a new EventTypeIn 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 NewEventTypeInWithDefaults

func NewEventTypeInWithDefaults() *EventTypeIn

NewEventTypeInWithDefaults instantiates a new EventTypeIn 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 (*EventTypeIn) GetArchived

func (o *EventTypeIn) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*EventTypeIn) GetArchivedOk

func (o *EventTypeIn) GetArchivedOk() (*bool, bool)

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

func (*EventTypeIn) GetDescription

func (o *EventTypeIn) GetDescription() string

GetDescription returns the Description field value

func (*EventTypeIn) GetDescriptionOk

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

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

func (*EventTypeIn) GetFeatureFlag added in v0.75.0

func (o *EventTypeIn) GetFeatureFlag() string

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

func (*EventTypeIn) GetFeatureFlagOk added in v0.75.0

func (o *EventTypeIn) GetFeatureFlagOk() (*string, bool)

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

func (*EventTypeIn) GetName

func (o *EventTypeIn) GetName() string

GetName returns the Name field value

func (*EventTypeIn) GetNameOk

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

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

func (*EventTypeIn) GetSchemas

func (o *EventTypeIn) GetSchemas() map[string]map[string]interface{}

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

func (*EventTypeIn) GetSchemasOk

func (o *EventTypeIn) GetSchemasOk() (*map[string]map[string]interface{}, bool)

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

func (*EventTypeIn) HasArchived

func (o *EventTypeIn) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*EventTypeIn) HasFeatureFlag added in v0.75.0

func (o *EventTypeIn) HasFeatureFlag() bool

HasFeatureFlag returns a boolean if a field has been set.

func (*EventTypeIn) HasSchemas

func (o *EventTypeIn) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

func (EventTypeIn) MarshalJSON

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

func (*EventTypeIn) SetArchived

func (o *EventTypeIn) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*EventTypeIn) SetDescription

func (o *EventTypeIn) SetDescription(v string)

SetDescription sets field value

func (*EventTypeIn) SetFeatureFlag added in v0.75.0

func (o *EventTypeIn) SetFeatureFlag(v string)

SetFeatureFlag gets a reference to the given NullableString and assigns it to the FeatureFlag field.

func (*EventTypeIn) SetFeatureFlagNil added in v0.75.0

func (o *EventTypeIn) SetFeatureFlagNil()

SetFeatureFlagNil sets the value for FeatureFlag to be an explicit nil

func (*EventTypeIn) SetName

func (o *EventTypeIn) SetName(v string)

SetName sets field value

func (*EventTypeIn) SetSchemas

func (o *EventTypeIn) SetSchemas(v map[string]map[string]interface{})

SetSchemas gets a reference to the given map[string]map[string]interface{} and assigns it to the Schemas field.

func (*EventTypeIn) UnsetFeatureFlag added in v0.75.0

func (o *EventTypeIn) UnsetFeatureFlag()

UnsetFeatureFlag ensures that no value is present for FeatureFlag, not even an explicit nil

type EventTypeOut

type EventTypeOut struct {
	Archived    *bool          `json:"archived,omitempty"`
	CreatedAt   time.Time      `json:"createdAt"`
	Description string         `json:"description"`
	FeatureFlag NullableString `json:"featureFlag,omitempty"`
	// The event type's name
	Name string `json:"name"`
	// The schema for the event type for a specific version as a JSON schema.
	Schemas   map[string]map[string]interface{} `json:"schemas,omitempty"`
	UpdatedAt time.Time                         `json:"updatedAt"`
}

EventTypeOut struct for EventTypeOut

func NewEventTypeOut

func NewEventTypeOut(createdAt time.Time, description string, name string, updatedAt time.Time) *EventTypeOut

NewEventTypeOut instantiates a new EventTypeOut 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 NewEventTypeOutWithDefaults

func NewEventTypeOutWithDefaults() *EventTypeOut

NewEventTypeOutWithDefaults instantiates a new EventTypeOut 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 (*EventTypeOut) GetArchived

func (o *EventTypeOut) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*EventTypeOut) GetArchivedOk

func (o *EventTypeOut) GetArchivedOk() (*bool, bool)

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

func (*EventTypeOut) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*EventTypeOut) GetCreatedAtOk

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

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

func (*EventTypeOut) GetDescription

func (o *EventTypeOut) GetDescription() string

GetDescription returns the Description field value

func (*EventTypeOut) GetDescriptionOk

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

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

func (*EventTypeOut) GetFeatureFlag added in v0.75.0

func (o *EventTypeOut) GetFeatureFlag() string

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

func (*EventTypeOut) GetFeatureFlagOk added in v0.75.0

func (o *EventTypeOut) GetFeatureFlagOk() (*string, bool)

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

func (*EventTypeOut) GetName

func (o *EventTypeOut) GetName() string

GetName returns the Name field value

func (*EventTypeOut) GetNameOk

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

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

func (*EventTypeOut) GetSchemas

func (o *EventTypeOut) GetSchemas() map[string]map[string]interface{}

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

func (*EventTypeOut) GetSchemasOk

func (o *EventTypeOut) GetSchemasOk() (*map[string]map[string]interface{}, bool)

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

func (*EventTypeOut) GetUpdatedAt

func (o *EventTypeOut) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*EventTypeOut) GetUpdatedAtOk

func (o *EventTypeOut) GetUpdatedAtOk() (*time.Time, bool)

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

func (*EventTypeOut) HasArchived

func (o *EventTypeOut) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*EventTypeOut) HasFeatureFlag added in v0.75.0

func (o *EventTypeOut) HasFeatureFlag() bool

HasFeatureFlag returns a boolean if a field has been set.

func (*EventTypeOut) HasSchemas

func (o *EventTypeOut) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

func (EventTypeOut) MarshalJSON

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

func (*EventTypeOut) SetArchived

func (o *EventTypeOut) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*EventTypeOut) SetCreatedAt

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

SetCreatedAt sets field value

func (*EventTypeOut) SetDescription

func (o *EventTypeOut) SetDescription(v string)

SetDescription sets field value

func (*EventTypeOut) SetFeatureFlag added in v0.75.0

func (o *EventTypeOut) SetFeatureFlag(v string)

SetFeatureFlag gets a reference to the given NullableString and assigns it to the FeatureFlag field.

func (*EventTypeOut) SetFeatureFlagNil added in v0.75.0

func (o *EventTypeOut) SetFeatureFlagNil()

SetFeatureFlagNil sets the value for FeatureFlag to be an explicit nil

func (*EventTypeOut) SetName

func (o *EventTypeOut) SetName(v string)

SetName sets field value

func (*EventTypeOut) SetSchemas

func (o *EventTypeOut) SetSchemas(v map[string]map[string]interface{})

SetSchemas gets a reference to the given map[string]map[string]interface{} and assigns it to the Schemas field.

func (*EventTypeOut) SetUpdatedAt

func (o *EventTypeOut) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*EventTypeOut) UnsetFeatureFlag added in v0.75.0

func (o *EventTypeOut) UnsetFeatureFlag()

UnsetFeatureFlag ensures that no value is present for FeatureFlag, not even an explicit nil

type EventTypePatch added in v0.84.0

type EventTypePatch struct {
	Archived    *bool                             `json:"archived,omitempty"`
	Description *string                           `json:"description,omitempty"`
	FeatureFlag NullableString                    `json:"featureFlag,omitempty"`
	Schemas     map[string]map[string]interface{} `json:"schemas,omitempty"`
}

EventTypePatch struct for EventTypePatch

func NewEventTypePatch added in v0.84.0

func NewEventTypePatch() *EventTypePatch

NewEventTypePatch instantiates a new EventTypePatch 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 NewEventTypePatchWithDefaults added in v0.84.0

func NewEventTypePatchWithDefaults() *EventTypePatch

NewEventTypePatchWithDefaults instantiates a new EventTypePatch 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 (*EventTypePatch) GetArchived added in v0.84.0

func (o *EventTypePatch) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*EventTypePatch) GetArchivedOk added in v0.84.0

func (o *EventTypePatch) GetArchivedOk() (*bool, bool)

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

func (*EventTypePatch) GetDescription added in v0.84.0

func (o *EventTypePatch) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*EventTypePatch) GetDescriptionOk added in v0.84.0

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

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

func (*EventTypePatch) GetFeatureFlag added in v0.84.0

func (o *EventTypePatch) GetFeatureFlag() string

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

func (*EventTypePatch) GetFeatureFlagOk added in v0.84.0

func (o *EventTypePatch) GetFeatureFlagOk() (*string, bool)

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

func (*EventTypePatch) GetSchemas added in v0.84.0

func (o *EventTypePatch) GetSchemas() map[string]map[string]interface{}

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

func (*EventTypePatch) GetSchemasOk added in v0.84.0

func (o *EventTypePatch) GetSchemasOk() (*map[string]map[string]interface{}, bool)

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

func (*EventTypePatch) HasArchived added in v0.84.0

func (o *EventTypePatch) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*EventTypePatch) HasDescription added in v0.84.0

func (o *EventTypePatch) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EventTypePatch) HasFeatureFlag added in v0.84.0

func (o *EventTypePatch) HasFeatureFlag() bool

HasFeatureFlag returns a boolean if a field has been set.

func (*EventTypePatch) HasSchemas added in v0.84.0

func (o *EventTypePatch) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

func (EventTypePatch) MarshalJSON added in v0.84.0

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

func (*EventTypePatch) SetArchived added in v0.84.0

func (o *EventTypePatch) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*EventTypePatch) SetDescription added in v0.84.0

func (o *EventTypePatch) SetDescription(v string)

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

func (*EventTypePatch) SetFeatureFlag added in v0.84.0

func (o *EventTypePatch) SetFeatureFlag(v string)

SetFeatureFlag gets a reference to the given NullableString and assigns it to the FeatureFlag field.

func (*EventTypePatch) SetFeatureFlagNil added in v0.84.0

func (o *EventTypePatch) SetFeatureFlagNil()

SetFeatureFlagNil sets the value for FeatureFlag to be an explicit nil

func (*EventTypePatch) SetSchemas added in v0.84.0

func (o *EventTypePatch) SetSchemas(v map[string]map[string]interface{})

SetSchemas gets a reference to the given map[string]map[string]interface{} and assigns it to the Schemas field.

func (*EventTypePatch) UnsetFeatureFlag added in v0.84.0

func (o *EventTypePatch) UnsetFeatureFlag()

UnsetFeatureFlag ensures that no value is present for FeatureFlag, not even an explicit nil

type EventTypeSchemaIn

type EventTypeSchemaIn struct {
	Schema map[string]interface{} `json:"schema"`
}

EventTypeSchemaIn struct for EventTypeSchemaIn

func NewEventTypeSchemaIn

func NewEventTypeSchemaIn(schema map[string]interface{}) *EventTypeSchemaIn

NewEventTypeSchemaIn instantiates a new EventTypeSchemaIn 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 NewEventTypeSchemaInWithDefaults

func NewEventTypeSchemaInWithDefaults() *EventTypeSchemaIn

NewEventTypeSchemaInWithDefaults instantiates a new EventTypeSchemaIn 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 (*EventTypeSchemaIn) GetSchema

func (o *EventTypeSchemaIn) GetSchema() map[string]interface{}

GetSchema returns the Schema field value

func (*EventTypeSchemaIn) GetSchemaOk

func (o *EventTypeSchemaIn) GetSchemaOk() (*map[string]interface{}, bool)

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

func (EventTypeSchemaIn) MarshalJSON

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

func (*EventTypeSchemaIn) SetSchema

func (o *EventTypeSchemaIn) SetSchema(v map[string]interface{})

SetSchema sets field value

type EventTypeUpdate

type EventTypeUpdate struct {
	Archived    *bool          `json:"archived,omitempty"`
	Description string         `json:"description"`
	FeatureFlag NullableString `json:"featureFlag,omitempty"`
	// The schema for the event type for a specific version as a JSON schema.
	Schemas map[string]map[string]interface{} `json:"schemas,omitempty"`
}

EventTypeUpdate struct for EventTypeUpdate

func NewEventTypeUpdate

func NewEventTypeUpdate(description string) *EventTypeUpdate

NewEventTypeUpdate instantiates a new EventTypeUpdate 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 NewEventTypeUpdateWithDefaults

func NewEventTypeUpdateWithDefaults() *EventTypeUpdate

NewEventTypeUpdateWithDefaults instantiates a new EventTypeUpdate 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 (*EventTypeUpdate) GetArchived

func (o *EventTypeUpdate) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*EventTypeUpdate) GetArchivedOk

func (o *EventTypeUpdate) GetArchivedOk() (*bool, bool)

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

func (*EventTypeUpdate) GetDescription

func (o *EventTypeUpdate) GetDescription() string

GetDescription returns the Description field value

func (*EventTypeUpdate) GetDescriptionOk

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

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

func (*EventTypeUpdate) GetFeatureFlag added in v0.75.0

func (o *EventTypeUpdate) GetFeatureFlag() string

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

func (*EventTypeUpdate) GetFeatureFlagOk added in v0.75.0

func (o *EventTypeUpdate) GetFeatureFlagOk() (*string, bool)

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

func (*EventTypeUpdate) GetSchemas

func (o *EventTypeUpdate) GetSchemas() map[string]map[string]interface{}

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

func (*EventTypeUpdate) GetSchemasOk

func (o *EventTypeUpdate) GetSchemasOk() (*map[string]map[string]interface{}, bool)

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

func (*EventTypeUpdate) HasArchived

func (o *EventTypeUpdate) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*EventTypeUpdate) HasFeatureFlag added in v0.75.0

func (o *EventTypeUpdate) HasFeatureFlag() bool

HasFeatureFlag returns a boolean if a field has been set.

func (*EventTypeUpdate) HasSchemas

func (o *EventTypeUpdate) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

func (EventTypeUpdate) MarshalJSON

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

func (*EventTypeUpdate) SetArchived

func (o *EventTypeUpdate) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*EventTypeUpdate) SetDescription

func (o *EventTypeUpdate) SetDescription(v string)

SetDescription sets field value

func (*EventTypeUpdate) SetFeatureFlag added in v0.75.0

func (o *EventTypeUpdate) SetFeatureFlag(v string)

SetFeatureFlag gets a reference to the given NullableString and assigns it to the FeatureFlag field.

func (*EventTypeUpdate) SetFeatureFlagNil added in v0.75.0

func (o *EventTypeUpdate) SetFeatureFlagNil()

SetFeatureFlagNil sets the value for FeatureFlag to be an explicit nil

func (*EventTypeUpdate) SetSchemas

func (o *EventTypeUpdate) SetSchemas(v map[string]map[string]interface{})

SetSchemas gets a reference to the given map[string]map[string]interface{} and assigns it to the Schemas field.

func (*EventTypeUpdate) UnsetFeatureFlag added in v0.75.0

func (o *EventTypeUpdate) UnsetFeatureFlag()

UnsetFeatureFlag ensures that no value is present for FeatureFlag, not even an explicit nil

type FontSizeConfig

type FontSizeConfig struct {
	Base NullableInt32 `json:"base,omitempty"`
}

FontSizeConfig struct for FontSizeConfig

func NewFontSizeConfig

func NewFontSizeConfig() *FontSizeConfig

NewFontSizeConfig instantiates a new FontSizeConfig 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 NewFontSizeConfigWithDefaults

func NewFontSizeConfigWithDefaults() *FontSizeConfig

NewFontSizeConfigWithDefaults instantiates a new FontSizeConfig 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 (*FontSizeConfig) GetBase

func (o *FontSizeConfig) GetBase() int32

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

func (*FontSizeConfig) GetBaseOk

func (o *FontSizeConfig) GetBaseOk() (*int32, bool)

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

func (*FontSizeConfig) HasBase

func (o *FontSizeConfig) HasBase() bool

HasBase returns a boolean if a field has been set.

func (FontSizeConfig) MarshalJSON

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

func (*FontSizeConfig) SetBase

func (o *FontSizeConfig) SetBase(v int32)

SetBase gets a reference to the given NullableInt32 and assigns it to the Base field.

func (*FontSizeConfig) SetBaseNil added in v0.62.0

func (o *FontSizeConfig) SetBaseNil()

SetBaseNil sets the value for Base to be an explicit nil

func (*FontSizeConfig) UnsetBase added in v0.62.0

func (o *FontSizeConfig) UnsetBase()

UnsetBase ensures that no value is present for Base, not even an explicit nil

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type HTTPValidationError

type HTTPValidationError struct {
	Detail []ValidationError `json:"detail"`
}

HTTPValidationError struct for HTTPValidationError

func NewHTTPValidationError

func NewHTTPValidationError(detail []ValidationError) *HTTPValidationError

NewHTTPValidationError instantiates a new HTTPValidationError 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 NewHTTPValidationErrorWithDefaults

func NewHTTPValidationErrorWithDefaults() *HTTPValidationError

NewHTTPValidationErrorWithDefaults instantiates a new HTTPValidationError 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 (*HTTPValidationError) GetDetail

func (o *HTTPValidationError) GetDetail() []ValidationError

GetDetail returns the Detail field value

func (*HTTPValidationError) GetDetailOk

func (o *HTTPValidationError) GetDetailOk() (*[]ValidationError, bool)

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

func (HTTPValidationError) MarshalJSON

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

func (*HTTPValidationError) SetDetail

func (o *HTTPValidationError) SetDetail(v []ValidationError)

SetDetail sets field value

type HealthApiService

type HealthApiService service

HealthApiService HealthApi service

func (*HealthApiService) V1HealthGet added in v0.84.0

* V1HealthGet Health * Verify the API server is up and running. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1HealthGetRequest

func (*HealthApiService) V1HealthGetExecute added in v0.84.0

func (a *HealthApiService) V1HealthGetExecute(r ApiV1HealthGetRequest) (*_nethttp.Response, error)

* Execute executes the request

type HttpErrorOut

type HttpErrorOut struct {
	Code   string `json:"code"`
	Detail string `json:"detail"`
}

HttpErrorOut struct for HttpErrorOut

func NewHttpErrorOut

func NewHttpErrorOut(code string, detail string) *HttpErrorOut

NewHttpErrorOut instantiates a new HttpErrorOut 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 NewHttpErrorOutWithDefaults

func NewHttpErrorOutWithDefaults() *HttpErrorOut

NewHttpErrorOutWithDefaults instantiates a new HttpErrorOut 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 (*HttpErrorOut) GetCode

func (o *HttpErrorOut) GetCode() string

GetCode returns the Code field value

func (*HttpErrorOut) GetCodeOk

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

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

func (*HttpErrorOut) GetDetail

func (o *HttpErrorOut) GetDetail() string

GetDetail returns the Detail field value

func (*HttpErrorOut) GetDetailOk

func (o *HttpErrorOut) GetDetailOk() (*string, bool)

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

func (HttpErrorOut) MarshalJSON

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

func (*HttpErrorOut) SetCode

func (o *HttpErrorOut) SetCode(v string)

SetCode sets field value

func (*HttpErrorOut) SetDetail

func (o *HttpErrorOut) SetDetail(v string)

SetDetail sets field value

type IntegrationApiService

type IntegrationApiService service

IntegrationApiService IntegrationApi service

func (*IntegrationApiService) V1IntegrationCreate added in v0.84.0

func (a *IntegrationApiService) V1IntegrationCreate(ctx _context.Context, appId string) ApiV1IntegrationCreateRequest

* V1IntegrationCreate Create Integration * Create an integration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1IntegrationCreateRequest

func (*IntegrationApiService) V1IntegrationCreateExecute added in v0.84.0

* Execute executes the request * @return IntegrationOut

func (*IntegrationApiService) V1IntegrationDelete added in v0.84.0

func (a *IntegrationApiService) V1IntegrationDelete(ctx _context.Context, appId string, integId string) ApiV1IntegrationDeleteRequest

* V1IntegrationDelete Delete Integration * Delete an integration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param integId The integ's ID * @return ApiV1IntegrationDeleteRequest

func (*IntegrationApiService) V1IntegrationDeleteExecute added in v0.84.0

func (a *IntegrationApiService) V1IntegrationDeleteExecute(r ApiV1IntegrationDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*IntegrationApiService) V1IntegrationGet added in v0.84.0

func (a *IntegrationApiService) V1IntegrationGet(ctx _context.Context, appId string, integId string) ApiV1IntegrationGetRequest

* V1IntegrationGet Get Integration * Get an integration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param integId The integ's ID * @return ApiV1IntegrationGetRequest

func (*IntegrationApiService) V1IntegrationGetExecute added in v0.84.0

* Execute executes the request * @return IntegrationOut

func (*IntegrationApiService) V1IntegrationGetKey added in v0.84.0

func (a *IntegrationApiService) V1IntegrationGetKey(ctx _context.Context, appId string, integId string) ApiV1IntegrationGetKeyRequest

* V1IntegrationGetKey Get Integration Key * Get an integration's key. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param integId The integ's ID * @return ApiV1IntegrationGetKeyRequest

func (*IntegrationApiService) V1IntegrationGetKeyExecute added in v0.84.0

* Execute executes the request * @return IntegrationKeyOut

func (*IntegrationApiService) V1IntegrationList added in v0.84.0

func (a *IntegrationApiService) V1IntegrationList(ctx _context.Context, appId string) ApiV1IntegrationListRequest

* V1IntegrationList List Integrations * List the application's integrations. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1IntegrationListRequest

func (*IntegrationApiService) V1IntegrationListExecute added in v0.84.0

* Execute executes the request * @return ListResponseIntegrationOut

func (*IntegrationApiService) V1IntegrationRotateKey added in v0.84.0

func (a *IntegrationApiService) V1IntegrationRotateKey(ctx _context.Context, appId string, integId string) ApiV1IntegrationRotateKeyRequest

* V1IntegrationRotateKey Rotate Integration Key * Rotate the integration's key. The previous key will be immediately revoked. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param integId The integ's ID * @return ApiV1IntegrationRotateKeyRequest

func (*IntegrationApiService) V1IntegrationRotateKeyExecute added in v0.84.0

* Execute executes the request * @return IntegrationKeyOut

func (*IntegrationApiService) V1IntegrationUpdate added in v0.84.0

func (a *IntegrationApiService) V1IntegrationUpdate(ctx _context.Context, appId string, integId string) ApiV1IntegrationUpdateRequest

* V1IntegrationUpdate Update Integration * Update an integration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param integId The integ's ID * @return ApiV1IntegrationUpdateRequest

func (*IntegrationApiService) V1IntegrationUpdateExecute added in v0.84.0

* Execute executes the request * @return IntegrationOut

type IntegrationIn

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

IntegrationIn struct for IntegrationIn

func NewIntegrationIn

func NewIntegrationIn(name string) *IntegrationIn

NewIntegrationIn instantiates a new IntegrationIn 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 NewIntegrationInWithDefaults

func NewIntegrationInWithDefaults() *IntegrationIn

NewIntegrationInWithDefaults instantiates a new IntegrationIn 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 (*IntegrationIn) GetName

func (o *IntegrationIn) GetName() string

GetName returns the Name field value

func (*IntegrationIn) GetNameOk

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

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

func (IntegrationIn) MarshalJSON

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

func (*IntegrationIn) SetName

func (o *IntegrationIn) SetName(v string)

SetName sets field value

type IntegrationKeyOut

type IntegrationKeyOut struct {
	Key string `json:"key"`
}

IntegrationKeyOut struct for IntegrationKeyOut

func NewIntegrationKeyOut

func NewIntegrationKeyOut(key string) *IntegrationKeyOut

NewIntegrationKeyOut instantiates a new IntegrationKeyOut 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 NewIntegrationKeyOutWithDefaults

func NewIntegrationKeyOutWithDefaults() *IntegrationKeyOut

NewIntegrationKeyOutWithDefaults instantiates a new IntegrationKeyOut 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 (*IntegrationKeyOut) GetKey

func (o *IntegrationKeyOut) GetKey() string

GetKey returns the Key field value

func (*IntegrationKeyOut) GetKeyOk

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

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

func (IntegrationKeyOut) MarshalJSON

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

func (*IntegrationKeyOut) SetKey

func (o *IntegrationKeyOut) SetKey(v string)

SetKey sets field value

type IntegrationOut

type IntegrationOut struct {
	CreatedAt time.Time `json:"createdAt"`
	// The integ's ID
	Id        string    `json:"id"`
	Name      string    `json:"name"`
	UpdatedAt time.Time `json:"updatedAt"`
}

IntegrationOut struct for IntegrationOut

func NewIntegrationOut

func NewIntegrationOut(createdAt time.Time, id string, name string, updatedAt time.Time) *IntegrationOut

NewIntegrationOut instantiates a new IntegrationOut 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 NewIntegrationOutWithDefaults

func NewIntegrationOutWithDefaults() *IntegrationOut

NewIntegrationOutWithDefaults instantiates a new IntegrationOut 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 (*IntegrationOut) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*IntegrationOut) GetCreatedAtOk

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

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

func (*IntegrationOut) GetId

func (o *IntegrationOut) GetId() string

GetId returns the Id field value

func (*IntegrationOut) GetIdOk

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

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

func (*IntegrationOut) GetName

func (o *IntegrationOut) GetName() string

GetName returns the Name field value

func (*IntegrationOut) GetNameOk

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

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

func (*IntegrationOut) GetUpdatedAt

func (o *IntegrationOut) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*IntegrationOut) GetUpdatedAtOk

func (o *IntegrationOut) GetUpdatedAtOk() (*time.Time, bool)

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

func (IntegrationOut) MarshalJSON

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

func (*IntegrationOut) SetCreatedAt

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

SetCreatedAt sets field value

func (*IntegrationOut) SetId

func (o *IntegrationOut) SetId(v string)

SetId sets field value

func (*IntegrationOut) SetName

func (o *IntegrationOut) SetName(v string)

SetName sets field value

func (*IntegrationOut) SetUpdatedAt

func (o *IntegrationOut) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

type IntegrationUpdate

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

IntegrationUpdate struct for IntegrationUpdate

func NewIntegrationUpdate

func NewIntegrationUpdate(name string) *IntegrationUpdate

NewIntegrationUpdate instantiates a new IntegrationUpdate 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 NewIntegrationUpdateWithDefaults

func NewIntegrationUpdateWithDefaults() *IntegrationUpdate

NewIntegrationUpdateWithDefaults instantiates a new IntegrationUpdate 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 (*IntegrationUpdate) GetName

func (o *IntegrationUpdate) GetName() string

GetName returns the Name field value

func (*IntegrationUpdate) GetNameOk

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

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

func (IntegrationUpdate) MarshalJSON

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

func (*IntegrationUpdate) SetName

func (o *IntegrationUpdate) SetName(v string)

SetName sets field value

type ListResponseApplicationOut

type ListResponseApplicationOut struct {
	Data         []ApplicationOut `json:"data"`
	Done         bool             `json:"done"`
	Iterator     NullableString   `json:"iterator,omitempty"`
	PrevIterator NullableString   `json:"prevIterator,omitempty"`
}

ListResponseApplicationOut struct for ListResponseApplicationOut

func NewListResponseApplicationOut

func NewListResponseApplicationOut(data []ApplicationOut, done bool) *ListResponseApplicationOut

NewListResponseApplicationOut instantiates a new ListResponseApplicationOut 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 NewListResponseApplicationOutWithDefaults

func NewListResponseApplicationOutWithDefaults() *ListResponseApplicationOut

NewListResponseApplicationOutWithDefaults instantiates a new ListResponseApplicationOut 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 (*ListResponseApplicationOut) GetData

GetData returns the Data field value

func (*ListResponseApplicationOut) GetDataOk

func (o *ListResponseApplicationOut) GetDataOk() (*[]ApplicationOut, bool)

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

func (*ListResponseApplicationOut) GetDone

func (o *ListResponseApplicationOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseApplicationOut) GetDoneOk

func (o *ListResponseApplicationOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseApplicationOut) GetIterator

func (o *ListResponseApplicationOut) GetIterator() string

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

func (*ListResponseApplicationOut) GetIteratorOk

func (o *ListResponseApplicationOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseApplicationOut) GetPrevIterator added in v0.78.0

func (o *ListResponseApplicationOut) GetPrevIterator() string

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

func (*ListResponseApplicationOut) GetPrevIteratorOk added in v0.78.0

func (o *ListResponseApplicationOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseApplicationOut) HasIterator

func (o *ListResponseApplicationOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseApplicationOut) HasPrevIterator added in v0.78.0

func (o *ListResponseApplicationOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseApplicationOut) MarshalJSON

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

func (*ListResponseApplicationOut) SetData

SetData sets field value

func (*ListResponseApplicationOut) SetDone

func (o *ListResponseApplicationOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseApplicationOut) SetIterator

func (o *ListResponseApplicationOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseApplicationOut) SetIteratorNil added in v0.62.0

func (o *ListResponseApplicationOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseApplicationOut) SetPrevIterator added in v0.78.0

func (o *ListResponseApplicationOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseApplicationOut) SetPrevIteratorNil added in v0.78.0

func (o *ListResponseApplicationOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseApplicationOut) UnsetIterator added in v0.62.0

func (o *ListResponseApplicationOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseApplicationOut) UnsetPrevIterator added in v0.78.0

func (o *ListResponseApplicationOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseApplicationStats added in v0.68.0

type ListResponseApplicationStats struct {
	Data         []ApplicationStats `json:"data"`
	Done         bool               `json:"done"`
	Iterator     NullableString     `json:"iterator,omitempty"`
	PrevIterator NullableString     `json:"prevIterator,omitempty"`
}

ListResponseApplicationStats struct for ListResponseApplicationStats

func NewListResponseApplicationStats added in v0.68.0

func NewListResponseApplicationStats(data []ApplicationStats, done bool) *ListResponseApplicationStats

NewListResponseApplicationStats instantiates a new ListResponseApplicationStats 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 NewListResponseApplicationStatsWithDefaults added in v0.68.0

func NewListResponseApplicationStatsWithDefaults() *ListResponseApplicationStats

NewListResponseApplicationStatsWithDefaults instantiates a new ListResponseApplicationStats 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 (*ListResponseApplicationStats) GetData added in v0.68.0

GetData returns the Data field value

func (*ListResponseApplicationStats) GetDataOk added in v0.68.0

func (o *ListResponseApplicationStats) GetDataOk() (*[]ApplicationStats, bool)

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

func (*ListResponseApplicationStats) GetDone added in v0.68.0

func (o *ListResponseApplicationStats) GetDone() bool

GetDone returns the Done field value

func (*ListResponseApplicationStats) GetDoneOk added in v0.68.0

func (o *ListResponseApplicationStats) GetDoneOk() (*bool, bool)

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

func (*ListResponseApplicationStats) GetIterator added in v0.68.0

func (o *ListResponseApplicationStats) GetIterator() string

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

func (*ListResponseApplicationStats) GetIteratorOk added in v0.68.0

func (o *ListResponseApplicationStats) GetIteratorOk() (*string, bool)

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

func (*ListResponseApplicationStats) GetPrevIterator added in v0.84.0

func (o *ListResponseApplicationStats) GetPrevIterator() string

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

func (*ListResponseApplicationStats) GetPrevIteratorOk added in v0.84.0

func (o *ListResponseApplicationStats) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseApplicationStats) HasIterator added in v0.68.0

func (o *ListResponseApplicationStats) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseApplicationStats) HasPrevIterator added in v0.84.0

func (o *ListResponseApplicationStats) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseApplicationStats) MarshalJSON added in v0.68.0

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

func (*ListResponseApplicationStats) SetData added in v0.68.0

SetData sets field value

func (*ListResponseApplicationStats) SetDone added in v0.68.0

func (o *ListResponseApplicationStats) SetDone(v bool)

SetDone sets field value

func (*ListResponseApplicationStats) SetIterator added in v0.68.0

func (o *ListResponseApplicationStats) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseApplicationStats) SetIteratorNil added in v0.68.0

func (o *ListResponseApplicationStats) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseApplicationStats) SetPrevIterator added in v0.84.0

func (o *ListResponseApplicationStats) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseApplicationStats) SetPrevIteratorNil added in v0.84.0

func (o *ListResponseApplicationStats) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseApplicationStats) UnsetIterator added in v0.68.0

func (o *ListResponseApplicationStats) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseApplicationStats) UnsetPrevIterator added in v0.84.0

func (o *ListResponseApplicationStats) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseBackgroundTaskOut added in v0.84.0

type ListResponseBackgroundTaskOut struct {
	Data         []BackgroundTaskOut `json:"data"`
	Done         bool                `json:"done"`
	Iterator     NullableString      `json:"iterator,omitempty"`
	PrevIterator NullableString      `json:"prevIterator,omitempty"`
}

ListResponseBackgroundTaskOut struct for ListResponseBackgroundTaskOut

func NewListResponseBackgroundTaskOut added in v0.84.0

func NewListResponseBackgroundTaskOut(data []BackgroundTaskOut, done bool) *ListResponseBackgroundTaskOut

NewListResponseBackgroundTaskOut instantiates a new ListResponseBackgroundTaskOut 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 NewListResponseBackgroundTaskOutWithDefaults added in v0.84.0

func NewListResponseBackgroundTaskOutWithDefaults() *ListResponseBackgroundTaskOut

NewListResponseBackgroundTaskOutWithDefaults instantiates a new ListResponseBackgroundTaskOut 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 (*ListResponseBackgroundTaskOut) GetData added in v0.84.0

GetData returns the Data field value

func (*ListResponseBackgroundTaskOut) GetDataOk added in v0.84.0

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

func (*ListResponseBackgroundTaskOut) GetDone added in v0.84.0

func (o *ListResponseBackgroundTaskOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseBackgroundTaskOut) GetDoneOk added in v0.84.0

func (o *ListResponseBackgroundTaskOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseBackgroundTaskOut) GetIterator added in v0.84.0

func (o *ListResponseBackgroundTaskOut) GetIterator() string

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

func (*ListResponseBackgroundTaskOut) GetIteratorOk added in v0.84.0

func (o *ListResponseBackgroundTaskOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseBackgroundTaskOut) GetPrevIterator added in v0.84.0

func (o *ListResponseBackgroundTaskOut) GetPrevIterator() string

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

func (*ListResponseBackgroundTaskOut) GetPrevIteratorOk added in v0.84.0

func (o *ListResponseBackgroundTaskOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseBackgroundTaskOut) HasIterator added in v0.84.0

func (o *ListResponseBackgroundTaskOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseBackgroundTaskOut) HasPrevIterator added in v0.84.0

func (o *ListResponseBackgroundTaskOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseBackgroundTaskOut) MarshalJSON added in v0.84.0

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

func (*ListResponseBackgroundTaskOut) SetData added in v0.84.0

SetData sets field value

func (*ListResponseBackgroundTaskOut) SetDone added in v0.84.0

func (o *ListResponseBackgroundTaskOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseBackgroundTaskOut) SetIterator added in v0.84.0

func (o *ListResponseBackgroundTaskOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseBackgroundTaskOut) SetIteratorNil added in v0.84.0

func (o *ListResponseBackgroundTaskOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseBackgroundTaskOut) SetPrevIterator added in v0.84.0

func (o *ListResponseBackgroundTaskOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseBackgroundTaskOut) SetPrevIteratorNil added in v0.84.0

func (o *ListResponseBackgroundTaskOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseBackgroundTaskOut) UnsetIterator added in v0.84.0

func (o *ListResponseBackgroundTaskOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseBackgroundTaskOut) UnsetPrevIterator added in v0.84.0

func (o *ListResponseBackgroundTaskOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseDoubleEndpointMessageOut added in v0.49.0

type ListResponseDoubleEndpointMessageOut struct {
	Data         []EndpointMessageOut `json:"data"`
	Done         bool                 `json:"done"`
	Iterator     *string              `json:"iterator,omitempty"`
	PrevIterator *string              `json:"prevIterator,omitempty"`
}

ListResponseDoubleEndpointMessageOut struct for ListResponseDoubleEndpointMessageOut

func NewListResponseDoubleEndpointMessageOut added in v0.49.0

func NewListResponseDoubleEndpointMessageOut(data []EndpointMessageOut, done bool) *ListResponseDoubleEndpointMessageOut

NewListResponseDoubleEndpointMessageOut instantiates a new ListResponseDoubleEndpointMessageOut 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 NewListResponseDoubleEndpointMessageOutWithDefaults added in v0.49.0

func NewListResponseDoubleEndpointMessageOutWithDefaults() *ListResponseDoubleEndpointMessageOut

NewListResponseDoubleEndpointMessageOutWithDefaults instantiates a new ListResponseDoubleEndpointMessageOut 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 (*ListResponseDoubleEndpointMessageOut) GetData added in v0.49.0

GetData returns the Data field value

func (*ListResponseDoubleEndpointMessageOut) GetDataOk added in v0.49.0

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

func (*ListResponseDoubleEndpointMessageOut) GetDone added in v0.49.0

GetDone returns the Done field value

func (*ListResponseDoubleEndpointMessageOut) GetDoneOk added in v0.49.0

func (o *ListResponseDoubleEndpointMessageOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseDoubleEndpointMessageOut) GetIterator added in v0.49.0

GetIterator returns the Iterator field value if set, zero value otherwise.

func (*ListResponseDoubleEndpointMessageOut) GetIteratorOk added in v0.49.0

func (o *ListResponseDoubleEndpointMessageOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseDoubleEndpointMessageOut) GetPrevIterator added in v0.49.0

func (o *ListResponseDoubleEndpointMessageOut) GetPrevIterator() string

GetPrevIterator returns the PrevIterator field value if set, zero value otherwise.

func (*ListResponseDoubleEndpointMessageOut) GetPrevIteratorOk added in v0.49.0

func (o *ListResponseDoubleEndpointMessageOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseDoubleEndpointMessageOut) HasIterator added in v0.49.0

func (o *ListResponseDoubleEndpointMessageOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseDoubleEndpointMessageOut) HasPrevIterator added in v0.49.0

func (o *ListResponseDoubleEndpointMessageOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseDoubleEndpointMessageOut) MarshalJSON added in v0.49.0

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

func (*ListResponseDoubleEndpointMessageOut) SetData added in v0.49.0

SetData sets field value

func (*ListResponseDoubleEndpointMessageOut) SetDone added in v0.49.0

SetDone sets field value

func (*ListResponseDoubleEndpointMessageOut) SetIterator added in v0.49.0

func (o *ListResponseDoubleEndpointMessageOut) SetIterator(v string)

SetIterator gets a reference to the given string and assigns it to the Iterator field.

func (*ListResponseDoubleEndpointMessageOut) SetPrevIterator added in v0.49.0

func (o *ListResponseDoubleEndpointMessageOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given string and assigns it to the PrevIterator field.

type ListResponseDoubleMessageAttemptEndpointOut added in v0.49.0

type ListResponseDoubleMessageAttemptEndpointOut struct {
	Data         []MessageAttemptEndpointOut `json:"data"`
	Done         bool                        `json:"done"`
	Iterator     *string                     `json:"iterator,omitempty"`
	PrevIterator *string                     `json:"prevIterator,omitempty"`
}

ListResponseDoubleMessageAttemptEndpointOut struct for ListResponseDoubleMessageAttemptEndpointOut

func NewListResponseDoubleMessageAttemptEndpointOut added in v0.49.0

func NewListResponseDoubleMessageAttemptEndpointOut(data []MessageAttemptEndpointOut, done bool) *ListResponseDoubleMessageAttemptEndpointOut

NewListResponseDoubleMessageAttemptEndpointOut instantiates a new ListResponseDoubleMessageAttemptEndpointOut 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 NewListResponseDoubleMessageAttemptEndpointOutWithDefaults added in v0.49.0

func NewListResponseDoubleMessageAttemptEndpointOutWithDefaults() *ListResponseDoubleMessageAttemptEndpointOut

NewListResponseDoubleMessageAttemptEndpointOutWithDefaults instantiates a new ListResponseDoubleMessageAttemptEndpointOut 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 (*ListResponseDoubleMessageAttemptEndpointOut) GetData added in v0.49.0

GetData returns the Data field value

func (*ListResponseDoubleMessageAttemptEndpointOut) GetDataOk added in v0.49.0

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

func (*ListResponseDoubleMessageAttemptEndpointOut) GetDone added in v0.49.0

GetDone returns the Done field value

func (*ListResponseDoubleMessageAttemptEndpointOut) GetDoneOk added in v0.49.0

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

func (*ListResponseDoubleMessageAttemptEndpointOut) GetIterator added in v0.49.0

GetIterator returns the Iterator field value if set, zero value otherwise.

func (*ListResponseDoubleMessageAttemptEndpointOut) GetIteratorOk added in v0.49.0

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

func (*ListResponseDoubleMessageAttemptEndpointOut) GetPrevIterator added in v0.49.0

GetPrevIterator returns the PrevIterator field value if set, zero value otherwise.

func (*ListResponseDoubleMessageAttemptEndpointOut) GetPrevIteratorOk added in v0.49.0

func (o *ListResponseDoubleMessageAttemptEndpointOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseDoubleMessageAttemptEndpointOut) HasIterator added in v0.49.0

HasIterator returns a boolean if a field has been set.

func (*ListResponseDoubleMessageAttemptEndpointOut) HasPrevIterator added in v0.49.0

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseDoubleMessageAttemptEndpointOut) MarshalJSON added in v0.49.0

func (*ListResponseDoubleMessageAttemptEndpointOut) SetData added in v0.49.0

SetData sets field value

func (*ListResponseDoubleMessageAttemptEndpointOut) SetDone added in v0.49.0

SetDone sets field value

func (*ListResponseDoubleMessageAttemptEndpointOut) SetIterator added in v0.49.0

SetIterator gets a reference to the given string and assigns it to the Iterator field.

func (*ListResponseDoubleMessageAttemptEndpointOut) SetPrevIterator added in v0.49.0

SetPrevIterator gets a reference to the given string and assigns it to the PrevIterator field.

type ListResponseDoubleMessageAttemptOut added in v0.49.0

type ListResponseDoubleMessageAttemptOut struct {
	Data         []MessageAttemptOut `json:"data"`
	Done         bool                `json:"done"`
	Iterator     *string             `json:"iterator,omitempty"`
	PrevIterator *string             `json:"prevIterator,omitempty"`
}

ListResponseDoubleMessageAttemptOut struct for ListResponseDoubleMessageAttemptOut

func NewListResponseDoubleMessageAttemptOut added in v0.49.0

func NewListResponseDoubleMessageAttemptOut(data []MessageAttemptOut, done bool) *ListResponseDoubleMessageAttemptOut

NewListResponseDoubleMessageAttemptOut instantiates a new ListResponseDoubleMessageAttemptOut 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 NewListResponseDoubleMessageAttemptOutWithDefaults added in v0.49.0

func NewListResponseDoubleMessageAttemptOutWithDefaults() *ListResponseDoubleMessageAttemptOut

NewListResponseDoubleMessageAttemptOutWithDefaults instantiates a new ListResponseDoubleMessageAttemptOut 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 (*ListResponseDoubleMessageAttemptOut) GetData added in v0.49.0

GetData returns the Data field value

func (*ListResponseDoubleMessageAttemptOut) GetDataOk added in v0.49.0

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

func (*ListResponseDoubleMessageAttemptOut) GetDone added in v0.49.0

GetDone returns the Done field value

func (*ListResponseDoubleMessageAttemptOut) GetDoneOk added in v0.49.0

func (o *ListResponseDoubleMessageAttemptOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseDoubleMessageAttemptOut) GetIterator added in v0.49.0

GetIterator returns the Iterator field value if set, zero value otherwise.

func (*ListResponseDoubleMessageAttemptOut) GetIteratorOk added in v0.49.0

func (o *ListResponseDoubleMessageAttemptOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseDoubleMessageAttemptOut) GetPrevIterator added in v0.49.0

func (o *ListResponseDoubleMessageAttemptOut) GetPrevIterator() string

GetPrevIterator returns the PrevIterator field value if set, zero value otherwise.

func (*ListResponseDoubleMessageAttemptOut) GetPrevIteratorOk added in v0.49.0

func (o *ListResponseDoubleMessageAttemptOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseDoubleMessageAttemptOut) HasIterator added in v0.49.0

func (o *ListResponseDoubleMessageAttemptOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseDoubleMessageAttemptOut) HasPrevIterator added in v0.49.0

func (o *ListResponseDoubleMessageAttemptOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseDoubleMessageAttemptOut) MarshalJSON added in v0.49.0

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

func (*ListResponseDoubleMessageAttemptOut) SetData added in v0.49.0

SetData sets field value

func (*ListResponseDoubleMessageAttemptOut) SetDone added in v0.49.0

SetDone sets field value

func (*ListResponseDoubleMessageAttemptOut) SetIterator added in v0.49.0

func (o *ListResponseDoubleMessageAttemptOut) SetIterator(v string)

SetIterator gets a reference to the given string and assigns it to the Iterator field.

func (*ListResponseDoubleMessageAttemptOut) SetPrevIterator added in v0.49.0

func (o *ListResponseDoubleMessageAttemptOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given string and assigns it to the PrevIterator field.

type ListResponseDoubleMessageOut added in v0.49.0

type ListResponseDoubleMessageOut struct {
	Data         []MessageOut `json:"data"`
	Done         bool         `json:"done"`
	Iterator     *string      `json:"iterator,omitempty"`
	PrevIterator *string      `json:"prevIterator,omitempty"`
}

ListResponseDoubleMessageOut struct for ListResponseDoubleMessageOut

func NewListResponseDoubleMessageOut added in v0.49.0

func NewListResponseDoubleMessageOut(data []MessageOut, done bool) *ListResponseDoubleMessageOut

NewListResponseDoubleMessageOut instantiates a new ListResponseDoubleMessageOut 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 NewListResponseDoubleMessageOutWithDefaults added in v0.49.0

func NewListResponseDoubleMessageOutWithDefaults() *ListResponseDoubleMessageOut

NewListResponseDoubleMessageOutWithDefaults instantiates a new ListResponseDoubleMessageOut 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 (*ListResponseDoubleMessageOut) GetData added in v0.49.0

GetData returns the Data field value

func (*ListResponseDoubleMessageOut) GetDataOk added in v0.49.0

func (o *ListResponseDoubleMessageOut) GetDataOk() (*[]MessageOut, bool)

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

func (*ListResponseDoubleMessageOut) GetDone added in v0.49.0

func (o *ListResponseDoubleMessageOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseDoubleMessageOut) GetDoneOk added in v0.49.0

func (o *ListResponseDoubleMessageOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseDoubleMessageOut) GetIterator added in v0.49.0

func (o *ListResponseDoubleMessageOut) GetIterator() string

GetIterator returns the Iterator field value if set, zero value otherwise.

func (*ListResponseDoubleMessageOut) GetIteratorOk added in v0.49.0

func (o *ListResponseDoubleMessageOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseDoubleMessageOut) GetPrevIterator added in v0.49.0

func (o *ListResponseDoubleMessageOut) GetPrevIterator() string

GetPrevIterator returns the PrevIterator field value if set, zero value otherwise.

func (*ListResponseDoubleMessageOut) GetPrevIteratorOk added in v0.49.0

func (o *ListResponseDoubleMessageOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseDoubleMessageOut) HasIterator added in v0.49.0

func (o *ListResponseDoubleMessageOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseDoubleMessageOut) HasPrevIterator added in v0.49.0

func (o *ListResponseDoubleMessageOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseDoubleMessageOut) MarshalJSON added in v0.49.0

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

func (*ListResponseDoubleMessageOut) SetData added in v0.49.0

func (o *ListResponseDoubleMessageOut) SetData(v []MessageOut)

SetData sets field value

func (*ListResponseDoubleMessageOut) SetDone added in v0.49.0

func (o *ListResponseDoubleMessageOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseDoubleMessageOut) SetIterator added in v0.49.0

func (o *ListResponseDoubleMessageOut) SetIterator(v string)

SetIterator gets a reference to the given string and assigns it to the Iterator field.

func (*ListResponseDoubleMessageOut) SetPrevIterator added in v0.49.0

func (o *ListResponseDoubleMessageOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given string and assigns it to the PrevIterator field.

type ListResponseEndpointMessageOut

type ListResponseEndpointMessageOut struct {
	Data         []EndpointMessageOut `json:"data"`
	Done         bool                 `json:"done"`
	Iterator     NullableString       `json:"iterator,omitempty"`
	PrevIterator NullableString       `json:"prevIterator,omitempty"`
}

ListResponseEndpointMessageOut struct for ListResponseEndpointMessageOut

func NewListResponseEndpointMessageOut

func NewListResponseEndpointMessageOut(data []EndpointMessageOut, done bool) *ListResponseEndpointMessageOut

NewListResponseEndpointMessageOut instantiates a new ListResponseEndpointMessageOut 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 NewListResponseEndpointMessageOutWithDefaults

func NewListResponseEndpointMessageOutWithDefaults() *ListResponseEndpointMessageOut

NewListResponseEndpointMessageOutWithDefaults instantiates a new ListResponseEndpointMessageOut 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 (*ListResponseEndpointMessageOut) GetData

GetData returns the Data field value

func (*ListResponseEndpointMessageOut) GetDataOk

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

func (*ListResponseEndpointMessageOut) GetDone

func (o *ListResponseEndpointMessageOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseEndpointMessageOut) GetDoneOk

func (o *ListResponseEndpointMessageOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseEndpointMessageOut) GetIterator

func (o *ListResponseEndpointMessageOut) GetIterator() string

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

func (*ListResponseEndpointMessageOut) GetIteratorOk

func (o *ListResponseEndpointMessageOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseEndpointMessageOut) GetPrevIterator added in v0.49.0

func (o *ListResponseEndpointMessageOut) GetPrevIterator() string

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

func (*ListResponseEndpointMessageOut) GetPrevIteratorOk added in v0.49.0

func (o *ListResponseEndpointMessageOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseEndpointMessageOut) HasIterator

func (o *ListResponseEndpointMessageOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseEndpointMessageOut) HasPrevIterator added in v0.49.0

func (o *ListResponseEndpointMessageOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseEndpointMessageOut) MarshalJSON

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

func (*ListResponseEndpointMessageOut) SetData

SetData sets field value

func (*ListResponseEndpointMessageOut) SetDone

func (o *ListResponseEndpointMessageOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseEndpointMessageOut) SetIterator

func (o *ListResponseEndpointMessageOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseEndpointMessageOut) SetIteratorNil added in v0.62.0

func (o *ListResponseEndpointMessageOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseEndpointMessageOut) SetPrevIterator added in v0.49.0

func (o *ListResponseEndpointMessageOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseEndpointMessageOut) SetPrevIteratorNil added in v0.62.0

func (o *ListResponseEndpointMessageOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseEndpointMessageOut) UnsetIterator added in v0.62.0

func (o *ListResponseEndpointMessageOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseEndpointMessageOut) UnsetPrevIterator added in v0.62.0

func (o *ListResponseEndpointMessageOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseEndpointOut

type ListResponseEndpointOut struct {
	Data         []EndpointOut  `json:"data"`
	Done         bool           `json:"done"`
	Iterator     NullableString `json:"iterator,omitempty"`
	PrevIterator NullableString `json:"prevIterator,omitempty"`
}

ListResponseEndpointOut struct for ListResponseEndpointOut

func NewListResponseEndpointOut

func NewListResponseEndpointOut(data []EndpointOut, done bool) *ListResponseEndpointOut

NewListResponseEndpointOut instantiates a new ListResponseEndpointOut 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 NewListResponseEndpointOutWithDefaults

func NewListResponseEndpointOutWithDefaults() *ListResponseEndpointOut

NewListResponseEndpointOutWithDefaults instantiates a new ListResponseEndpointOut 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 (*ListResponseEndpointOut) GetData

func (o *ListResponseEndpointOut) GetData() []EndpointOut

GetData returns the Data field value

func (*ListResponseEndpointOut) GetDataOk

func (o *ListResponseEndpointOut) GetDataOk() (*[]EndpointOut, bool)

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

func (*ListResponseEndpointOut) GetDone

func (o *ListResponseEndpointOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseEndpointOut) GetDoneOk

func (o *ListResponseEndpointOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseEndpointOut) GetIterator

func (o *ListResponseEndpointOut) GetIterator() string

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

func (*ListResponseEndpointOut) GetIteratorOk

func (o *ListResponseEndpointOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseEndpointOut) GetPrevIterator added in v0.78.0

func (o *ListResponseEndpointOut) GetPrevIterator() string

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

func (*ListResponseEndpointOut) GetPrevIteratorOk added in v0.78.0

func (o *ListResponseEndpointOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseEndpointOut) HasIterator

func (o *ListResponseEndpointOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseEndpointOut) HasPrevIterator added in v0.78.0

func (o *ListResponseEndpointOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseEndpointOut) MarshalJSON

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

func (*ListResponseEndpointOut) SetData

func (o *ListResponseEndpointOut) SetData(v []EndpointOut)

SetData sets field value

func (*ListResponseEndpointOut) SetDone

func (o *ListResponseEndpointOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseEndpointOut) SetIterator

func (o *ListResponseEndpointOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseEndpointOut) SetIteratorNil added in v0.62.0

func (o *ListResponseEndpointOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseEndpointOut) SetPrevIterator added in v0.78.0

func (o *ListResponseEndpointOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseEndpointOut) SetPrevIteratorNil added in v0.78.0

func (o *ListResponseEndpointOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseEndpointOut) UnsetIterator added in v0.62.0

func (o *ListResponseEndpointOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseEndpointOut) UnsetPrevIterator added in v0.78.0

func (o *ListResponseEndpointOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseEventTypeOut

type ListResponseEventTypeOut struct {
	Data         []EventTypeOut `json:"data"`
	Done         bool           `json:"done"`
	Iterator     NullableString `json:"iterator,omitempty"`
	PrevIterator NullableString `json:"prevIterator,omitempty"`
}

ListResponseEventTypeOut struct for ListResponseEventTypeOut

func NewListResponseEventTypeOut

func NewListResponseEventTypeOut(data []EventTypeOut, done bool) *ListResponseEventTypeOut

NewListResponseEventTypeOut instantiates a new ListResponseEventTypeOut 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 NewListResponseEventTypeOutWithDefaults

func NewListResponseEventTypeOutWithDefaults() *ListResponseEventTypeOut

NewListResponseEventTypeOutWithDefaults instantiates a new ListResponseEventTypeOut 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 (*ListResponseEventTypeOut) GetData

func (o *ListResponseEventTypeOut) GetData() []EventTypeOut

GetData returns the Data field value

func (*ListResponseEventTypeOut) GetDataOk

func (o *ListResponseEventTypeOut) GetDataOk() (*[]EventTypeOut, bool)

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

func (*ListResponseEventTypeOut) GetDone

func (o *ListResponseEventTypeOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseEventTypeOut) GetDoneOk

func (o *ListResponseEventTypeOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseEventTypeOut) GetIterator

func (o *ListResponseEventTypeOut) GetIterator() string

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

func (*ListResponseEventTypeOut) GetIteratorOk

func (o *ListResponseEventTypeOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseEventTypeOut) GetPrevIterator added in v0.80.0

func (o *ListResponseEventTypeOut) GetPrevIterator() string

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

func (*ListResponseEventTypeOut) GetPrevIteratorOk added in v0.80.0

func (o *ListResponseEventTypeOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseEventTypeOut) HasIterator

func (o *ListResponseEventTypeOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseEventTypeOut) HasPrevIterator added in v0.80.0

func (o *ListResponseEventTypeOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseEventTypeOut) MarshalJSON

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

func (*ListResponseEventTypeOut) SetData

func (o *ListResponseEventTypeOut) SetData(v []EventTypeOut)

SetData sets field value

func (*ListResponseEventTypeOut) SetDone

func (o *ListResponseEventTypeOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseEventTypeOut) SetIterator

func (o *ListResponseEventTypeOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseEventTypeOut) SetIteratorNil added in v0.62.0

func (o *ListResponseEventTypeOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseEventTypeOut) SetPrevIterator added in v0.80.0

func (o *ListResponseEventTypeOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseEventTypeOut) SetPrevIteratorNil added in v0.80.0

func (o *ListResponseEventTypeOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseEventTypeOut) UnsetIterator added in v0.62.0

func (o *ListResponseEventTypeOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseEventTypeOut) UnsetPrevIterator added in v0.80.0

func (o *ListResponseEventTypeOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseIntegrationOut

type ListResponseIntegrationOut struct {
	Data         []IntegrationOut `json:"data"`
	Done         bool             `json:"done"`
	Iterator     NullableString   `json:"iterator,omitempty"`
	PrevIterator NullableString   `json:"prevIterator,omitempty"`
}

ListResponseIntegrationOut struct for ListResponseIntegrationOut

func NewListResponseIntegrationOut

func NewListResponseIntegrationOut(data []IntegrationOut, done bool) *ListResponseIntegrationOut

NewListResponseIntegrationOut instantiates a new ListResponseIntegrationOut 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 NewListResponseIntegrationOutWithDefaults

func NewListResponseIntegrationOutWithDefaults() *ListResponseIntegrationOut

NewListResponseIntegrationOutWithDefaults instantiates a new ListResponseIntegrationOut 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 (*ListResponseIntegrationOut) GetData

GetData returns the Data field value

func (*ListResponseIntegrationOut) GetDataOk

func (o *ListResponseIntegrationOut) GetDataOk() (*[]IntegrationOut, bool)

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

func (*ListResponseIntegrationOut) GetDone

func (o *ListResponseIntegrationOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseIntegrationOut) GetDoneOk

func (o *ListResponseIntegrationOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseIntegrationOut) GetIterator

func (o *ListResponseIntegrationOut) GetIterator() string

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

func (*ListResponseIntegrationOut) GetIteratorOk

func (o *ListResponseIntegrationOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseIntegrationOut) GetPrevIterator added in v0.84.0

func (o *ListResponseIntegrationOut) GetPrevIterator() string

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

func (*ListResponseIntegrationOut) GetPrevIteratorOk added in v0.84.0

func (o *ListResponseIntegrationOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseIntegrationOut) HasIterator

func (o *ListResponseIntegrationOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseIntegrationOut) HasPrevIterator added in v0.84.0

func (o *ListResponseIntegrationOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseIntegrationOut) MarshalJSON

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

func (*ListResponseIntegrationOut) SetData

SetData sets field value

func (*ListResponseIntegrationOut) SetDone

func (o *ListResponseIntegrationOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseIntegrationOut) SetIterator

func (o *ListResponseIntegrationOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseIntegrationOut) SetIteratorNil added in v0.62.0

func (o *ListResponseIntegrationOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseIntegrationOut) SetPrevIterator added in v0.84.0

func (o *ListResponseIntegrationOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseIntegrationOut) SetPrevIteratorNil added in v0.84.0

func (o *ListResponseIntegrationOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseIntegrationOut) UnsetIterator added in v0.62.0

func (o *ListResponseIntegrationOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseIntegrationOut) UnsetPrevIterator added in v0.84.0

func (o *ListResponseIntegrationOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseMessageAttemptEndpointOut

type ListResponseMessageAttemptEndpointOut struct {
	Data         []MessageAttemptEndpointOut `json:"data"`
	Done         bool                        `json:"done"`
	Iterator     NullableString              `json:"iterator,omitempty"`
	PrevIterator NullableString              `json:"prevIterator,omitempty"`
}

ListResponseMessageAttemptEndpointOut struct for ListResponseMessageAttemptEndpointOut

func NewListResponseMessageAttemptEndpointOut

func NewListResponseMessageAttemptEndpointOut(data []MessageAttemptEndpointOut, done bool) *ListResponseMessageAttemptEndpointOut

NewListResponseMessageAttemptEndpointOut instantiates a new ListResponseMessageAttemptEndpointOut 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 NewListResponseMessageAttemptEndpointOutWithDefaults

func NewListResponseMessageAttemptEndpointOutWithDefaults() *ListResponseMessageAttemptEndpointOut

NewListResponseMessageAttemptEndpointOutWithDefaults instantiates a new ListResponseMessageAttemptEndpointOut 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 (*ListResponseMessageAttemptEndpointOut) GetData

GetData returns the Data field value

func (*ListResponseMessageAttemptEndpointOut) GetDataOk

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

func (*ListResponseMessageAttemptEndpointOut) GetDone

GetDone returns the Done field value

func (*ListResponseMessageAttemptEndpointOut) GetDoneOk

func (o *ListResponseMessageAttemptEndpointOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseMessageAttemptEndpointOut) GetIterator

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

func (*ListResponseMessageAttemptEndpointOut) GetIteratorOk

func (o *ListResponseMessageAttemptEndpointOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseMessageAttemptEndpointOut) GetPrevIterator added in v0.49.0

func (o *ListResponseMessageAttemptEndpointOut) GetPrevIterator() string

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

func (*ListResponseMessageAttemptEndpointOut) GetPrevIteratorOk added in v0.49.0

func (o *ListResponseMessageAttemptEndpointOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseMessageAttemptEndpointOut) HasIterator

HasIterator returns a boolean if a field has been set.

func (*ListResponseMessageAttemptEndpointOut) HasPrevIterator added in v0.49.0

func (o *ListResponseMessageAttemptEndpointOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseMessageAttemptEndpointOut) MarshalJSON

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

func (*ListResponseMessageAttemptEndpointOut) SetData

SetData sets field value

func (*ListResponseMessageAttemptEndpointOut) SetDone

SetDone sets field value

func (*ListResponseMessageAttemptEndpointOut) SetIterator

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseMessageAttemptEndpointOut) SetIteratorNil added in v0.62.0

func (o *ListResponseMessageAttemptEndpointOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseMessageAttemptEndpointOut) SetPrevIterator added in v0.49.0

func (o *ListResponseMessageAttemptEndpointOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseMessageAttemptEndpointOut) SetPrevIteratorNil added in v0.62.0

func (o *ListResponseMessageAttemptEndpointOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseMessageAttemptEndpointOut) UnsetIterator added in v0.62.0

func (o *ListResponseMessageAttemptEndpointOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseMessageAttemptEndpointOut) UnsetPrevIterator added in v0.62.0

func (o *ListResponseMessageAttemptEndpointOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseMessageAttemptOut

type ListResponseMessageAttemptOut struct {
	Data         []MessageAttemptOut `json:"data"`
	Done         bool                `json:"done"`
	Iterator     NullableString      `json:"iterator,omitempty"`
	PrevIterator NullableString      `json:"prevIterator,omitempty"`
}

ListResponseMessageAttemptOut struct for ListResponseMessageAttemptOut

func NewListResponseMessageAttemptOut

func NewListResponseMessageAttemptOut(data []MessageAttemptOut, done bool) *ListResponseMessageAttemptOut

NewListResponseMessageAttemptOut instantiates a new ListResponseMessageAttemptOut 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 NewListResponseMessageAttemptOutWithDefaults

func NewListResponseMessageAttemptOutWithDefaults() *ListResponseMessageAttemptOut

NewListResponseMessageAttemptOutWithDefaults instantiates a new ListResponseMessageAttemptOut 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 (*ListResponseMessageAttemptOut) GetData

GetData returns the Data field value

func (*ListResponseMessageAttemptOut) GetDataOk

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

func (*ListResponseMessageAttemptOut) GetDone

func (o *ListResponseMessageAttemptOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseMessageAttemptOut) GetDoneOk

func (o *ListResponseMessageAttemptOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseMessageAttemptOut) GetIterator

func (o *ListResponseMessageAttemptOut) GetIterator() string

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

func (*ListResponseMessageAttemptOut) GetIteratorOk

func (o *ListResponseMessageAttemptOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseMessageAttemptOut) GetPrevIterator added in v0.49.0

func (o *ListResponseMessageAttemptOut) GetPrevIterator() string

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

func (*ListResponseMessageAttemptOut) GetPrevIteratorOk added in v0.49.0

func (o *ListResponseMessageAttemptOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseMessageAttemptOut) HasIterator

func (o *ListResponseMessageAttemptOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseMessageAttemptOut) HasPrevIterator added in v0.49.0

func (o *ListResponseMessageAttemptOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseMessageAttemptOut) MarshalJSON

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

func (*ListResponseMessageAttemptOut) SetData

SetData sets field value

func (*ListResponseMessageAttemptOut) SetDone

func (o *ListResponseMessageAttemptOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseMessageAttemptOut) SetIterator

func (o *ListResponseMessageAttemptOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseMessageAttemptOut) SetIteratorNil added in v0.62.0

func (o *ListResponseMessageAttemptOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseMessageAttemptOut) SetPrevIterator added in v0.49.0

func (o *ListResponseMessageAttemptOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseMessageAttemptOut) SetPrevIteratorNil added in v0.62.0

func (o *ListResponseMessageAttemptOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseMessageAttemptOut) UnsetIterator added in v0.62.0

func (o *ListResponseMessageAttemptOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseMessageAttemptOut) UnsetPrevIterator added in v0.62.0

func (o *ListResponseMessageAttemptOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseMessageEndpointOut

type ListResponseMessageEndpointOut struct {
	Data         []MessageEndpointOut `json:"data"`
	Done         bool                 `json:"done"`
	Iterator     NullableString       `json:"iterator,omitempty"`
	PrevIterator NullableString       `json:"prevIterator,omitempty"`
}

ListResponseMessageEndpointOut struct for ListResponseMessageEndpointOut

func NewListResponseMessageEndpointOut

func NewListResponseMessageEndpointOut(data []MessageEndpointOut, done bool) *ListResponseMessageEndpointOut

NewListResponseMessageEndpointOut instantiates a new ListResponseMessageEndpointOut 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 NewListResponseMessageEndpointOutWithDefaults

func NewListResponseMessageEndpointOutWithDefaults() *ListResponseMessageEndpointOut

NewListResponseMessageEndpointOutWithDefaults instantiates a new ListResponseMessageEndpointOut 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 (*ListResponseMessageEndpointOut) GetData

GetData returns the Data field value

func (*ListResponseMessageEndpointOut) GetDataOk

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

func (*ListResponseMessageEndpointOut) GetDone

func (o *ListResponseMessageEndpointOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseMessageEndpointOut) GetDoneOk

func (o *ListResponseMessageEndpointOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseMessageEndpointOut) GetIterator

func (o *ListResponseMessageEndpointOut) GetIterator() string

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

func (*ListResponseMessageEndpointOut) GetIteratorOk

func (o *ListResponseMessageEndpointOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseMessageEndpointOut) GetPrevIterator added in v0.84.0

func (o *ListResponseMessageEndpointOut) GetPrevIterator() string

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

func (*ListResponseMessageEndpointOut) GetPrevIteratorOk added in v0.84.0

func (o *ListResponseMessageEndpointOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseMessageEndpointOut) HasIterator

func (o *ListResponseMessageEndpointOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseMessageEndpointOut) HasPrevIterator added in v0.84.0

func (o *ListResponseMessageEndpointOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseMessageEndpointOut) MarshalJSON

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

func (*ListResponseMessageEndpointOut) SetData

SetData sets field value

func (*ListResponseMessageEndpointOut) SetDone

func (o *ListResponseMessageEndpointOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseMessageEndpointOut) SetIterator

func (o *ListResponseMessageEndpointOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseMessageEndpointOut) SetIteratorNil added in v0.62.0

func (o *ListResponseMessageEndpointOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseMessageEndpointOut) SetPrevIterator added in v0.84.0

func (o *ListResponseMessageEndpointOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseMessageEndpointOut) SetPrevIteratorNil added in v0.84.0

func (o *ListResponseMessageEndpointOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseMessageEndpointOut) UnsetIterator added in v0.62.0

func (o *ListResponseMessageEndpointOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseMessageEndpointOut) UnsetPrevIterator added in v0.84.0

func (o *ListResponseMessageEndpointOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseMessageOut

type ListResponseMessageOut struct {
	Data         []MessageOut   `json:"data"`
	Done         bool           `json:"done"`
	Iterator     NullableString `json:"iterator,omitempty"`
	PrevIterator NullableString `json:"prevIterator,omitempty"`
}

ListResponseMessageOut struct for ListResponseMessageOut

func NewListResponseMessageOut

func NewListResponseMessageOut(data []MessageOut, done bool) *ListResponseMessageOut

NewListResponseMessageOut instantiates a new ListResponseMessageOut 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 NewListResponseMessageOutWithDefaults

func NewListResponseMessageOutWithDefaults() *ListResponseMessageOut

NewListResponseMessageOutWithDefaults instantiates a new ListResponseMessageOut 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 (*ListResponseMessageOut) GetData

func (o *ListResponseMessageOut) GetData() []MessageOut

GetData returns the Data field value

func (*ListResponseMessageOut) GetDataOk

func (o *ListResponseMessageOut) GetDataOk() (*[]MessageOut, bool)

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

func (*ListResponseMessageOut) GetDone

func (o *ListResponseMessageOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseMessageOut) GetDoneOk

func (o *ListResponseMessageOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseMessageOut) GetIterator

func (o *ListResponseMessageOut) GetIterator() string

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

func (*ListResponseMessageOut) GetIteratorOk

func (o *ListResponseMessageOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseMessageOut) GetPrevIterator added in v0.49.0

func (o *ListResponseMessageOut) GetPrevIterator() string

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

func (*ListResponseMessageOut) GetPrevIteratorOk added in v0.49.0

func (o *ListResponseMessageOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseMessageOut) HasIterator

func (o *ListResponseMessageOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseMessageOut) HasPrevIterator added in v0.49.0

func (o *ListResponseMessageOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseMessageOut) MarshalJSON

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

func (*ListResponseMessageOut) SetData

func (o *ListResponseMessageOut) SetData(v []MessageOut)

SetData sets field value

func (*ListResponseMessageOut) SetDone

func (o *ListResponseMessageOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseMessageOut) SetIterator

func (o *ListResponseMessageOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseMessageOut) SetIteratorNil added in v0.62.0

func (o *ListResponseMessageOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseMessageOut) SetPrevIterator added in v0.49.0

func (o *ListResponseMessageOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseMessageOut) SetPrevIteratorNil added in v0.62.0

func (o *ListResponseMessageOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseMessageOut) UnsetIterator added in v0.62.0

func (o *ListResponseMessageOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseMessageOut) UnsetPrevIterator added in v0.62.0

func (o *ListResponseMessageOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type ListResponseTemplateOut added in v1.8.0

type ListResponseTemplateOut struct {
	Data         []TemplateOut  `json:"data"`
	Done         bool           `json:"done"`
	Iterator     NullableString `json:"iterator,omitempty"`
	PrevIterator NullableString `json:"prevIterator,omitempty"`
}

ListResponseTemplateOut struct for ListResponseTemplateOut

func NewListResponseTemplateOut added in v1.8.0

func NewListResponseTemplateOut(data []TemplateOut, done bool) *ListResponseTemplateOut

NewListResponseTemplateOut instantiates a new ListResponseTemplateOut 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 NewListResponseTemplateOutWithDefaults added in v1.8.0

func NewListResponseTemplateOutWithDefaults() *ListResponseTemplateOut

NewListResponseTemplateOutWithDefaults instantiates a new ListResponseTemplateOut 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 (*ListResponseTemplateOut) GetData added in v1.8.0

func (o *ListResponseTemplateOut) GetData() []TemplateOut

GetData returns the Data field value

func (*ListResponseTemplateOut) GetDataOk added in v1.8.0

func (o *ListResponseTemplateOut) GetDataOk() (*[]TemplateOut, bool)

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

func (*ListResponseTemplateOut) GetDone added in v1.8.0

func (o *ListResponseTemplateOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseTemplateOut) GetDoneOk added in v1.8.0

func (o *ListResponseTemplateOut) GetDoneOk() (*bool, bool)

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

func (*ListResponseTemplateOut) GetIterator added in v1.8.0

func (o *ListResponseTemplateOut) GetIterator() string

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

func (*ListResponseTemplateOut) GetIteratorOk added in v1.8.0

func (o *ListResponseTemplateOut) GetIteratorOk() (*string, bool)

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

func (*ListResponseTemplateOut) GetPrevIterator added in v1.8.0

func (o *ListResponseTemplateOut) GetPrevIterator() string

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

func (*ListResponseTemplateOut) GetPrevIteratorOk added in v1.8.0

func (o *ListResponseTemplateOut) GetPrevIteratorOk() (*string, bool)

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

func (*ListResponseTemplateOut) HasIterator added in v1.8.0

func (o *ListResponseTemplateOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (*ListResponseTemplateOut) HasPrevIterator added in v1.8.0

func (o *ListResponseTemplateOut) HasPrevIterator() bool

HasPrevIterator returns a boolean if a field has been set.

func (ListResponseTemplateOut) MarshalJSON added in v1.8.0

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

func (*ListResponseTemplateOut) SetData added in v1.8.0

func (o *ListResponseTemplateOut) SetData(v []TemplateOut)

SetData sets field value

func (*ListResponseTemplateOut) SetDone added in v1.8.0

func (o *ListResponseTemplateOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseTemplateOut) SetIterator added in v1.8.0

func (o *ListResponseTemplateOut) SetIterator(v string)

SetIterator gets a reference to the given NullableString and assigns it to the Iterator field.

func (*ListResponseTemplateOut) SetIteratorNil added in v1.8.0

func (o *ListResponseTemplateOut) SetIteratorNil()

SetIteratorNil sets the value for Iterator to be an explicit nil

func (*ListResponseTemplateOut) SetPrevIterator added in v1.8.0

func (o *ListResponseTemplateOut) SetPrevIterator(v string)

SetPrevIterator gets a reference to the given NullableString and assigns it to the PrevIterator field.

func (*ListResponseTemplateOut) SetPrevIteratorNil added in v1.8.0

func (o *ListResponseTemplateOut) SetPrevIteratorNil()

SetPrevIteratorNil sets the value for PrevIterator to be an explicit nil

func (*ListResponseTemplateOut) UnsetIterator added in v1.8.0

func (o *ListResponseTemplateOut) UnsetIterator()

UnsetIterator ensures that no value is present for Iterator, not even an explicit nil

func (*ListResponseTemplateOut) UnsetPrevIterator added in v1.8.0

func (o *ListResponseTemplateOut) UnsetPrevIterator()

UnsetPrevIterator ensures that no value is present for PrevIterator, not even an explicit nil

type MessageApiService

type MessageApiService service

MessageApiService MessageApi service

func (*MessageApiService) CreateMessageAttemptForEndpoint added in v1.4.12

func (a *MessageApiService) CreateMessageAttemptForEndpoint(ctx _context.Context, appId string, endpointId string) ApiCreateMessageAttemptForEndpointRequest
  • CreateMessageAttemptForEndpoint Create Message Attempt For Endpoint
  • Creates and sends a message to the specified endpoint. The message attempt and response from the endpoint is returned.

FIXME: use MessageIn for expediency, even though the `application` parameter is unused. Since this endpoint isn't publicly documented anyway, it should be fine

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param endpointId The ep's ID or UID
  • @return ApiCreateMessageAttemptForEndpointRequest

func (*MessageApiService) CreateMessageAttemptForEndpointExecute added in v1.4.12

func (a *MessageApiService) CreateMessageAttemptForEndpointExecute(r ApiCreateMessageAttemptForEndpointRequest) (MessageAttemptOut, *_nethttp.Response, error)

* Execute executes the request * @return MessageAttemptOut

func (*MessageApiService) V1MessageCreate added in v0.84.0

func (a *MessageApiService) V1MessageCreate(ctx _context.Context, appId string) ApiV1MessageCreateRequest
  • V1MessageCreate Create Message
  • Creates a new message and dispatches it to all of the application's endpoints.

The `eventId` is an optional custom unique ID. It's verified to be unique only up to a day, after that no verification will be made. If a message with the same `eventId` already exists for any application in your environment, a 409 conflict error will be returned.

The `eventType` indicates the type and schema of the event. All messages of a certain `eventType` are expected to have the same schema. Endpoints can choose to only listen to specific event types. Messages can also have `channels`, which similar to event types let endpoints filter by them. Unlike event types, messages can have multiple channels, and channels don't imply a specific message content or schema.

The `payload` property is the webhook's body (the actual webhook message). Svix supports payload sizes of up to ~350kb, though it's generally a good idea to keep webhook payloads small, probably no larger than 40kb.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @return ApiV1MessageCreateRequest

func (*MessageApiService) V1MessageCreateExecute added in v0.84.0

* Execute executes the request * @return MessageOut

func (*MessageApiService) V1MessageExpungeContent added in v0.84.0

func (a *MessageApiService) V1MessageExpungeContent(ctx _context.Context, appId string, msgId string) ApiV1MessageExpungeContentRequest
  • V1MessageExpungeContent Delete message payload
  • Delete the given message's payload. Useful in cases when a message was accidentally sent with sensitive content.

The message can't be replayed or resent once its payload has been deleted or expired.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param msgId The msg's ID or UID
  • @return ApiV1MessageExpungeContentRequest

func (*MessageApiService) V1MessageExpungeContentExecute added in v0.84.0

func (a *MessageApiService) V1MessageExpungeContentExecute(r ApiV1MessageExpungeContentRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*MessageApiService) V1MessageGet added in v0.84.0

func (a *MessageApiService) V1MessageGet(ctx _context.Context, appId string, msgId string) ApiV1MessageGetRequest

* V1MessageGet Get Message * Get a message by its ID or eventID. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param msgId The msg's ID or UID * @return ApiV1MessageGetRequest

func (*MessageApiService) V1MessageGetExecute added in v0.84.0

* Execute executes the request * @return MessageOut

func (*MessageApiService) V1MessageGetRawPayload added in v1.11.0

func (a *MessageApiService) V1MessageGetRawPayload(ctx _context.Context, appId string, msgId string) ApiV1MessageGetRawPayloadRequest

* V1MessageGetRawPayload Get Raw Message Payload * Get a message raw payload by its ID or eventID. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param msgId The msg's ID or UID * @return ApiV1MessageGetRawPayloadRequest

func (*MessageApiService) V1MessageGetRawPayloadExecute added in v1.11.0

* Execute executes the request * @return MessageRawPayloadOut

func (*MessageApiService) V1MessageList added in v0.84.0

func (a *MessageApiService) V1MessageList(ctx _context.Context, appId string) ApiV1MessageListRequest
  • V1MessageList List Messages
  • List all of the application's messages.

The `before` and `after` parameters let you filter all items created before or after a certain date. These can be used alongside an iterator to paginate over results within a certain window.

Note that by default this endpoint is limited to retrieving 90 days' worth of data relative to now or, if an iterator is provided, 90 days before/after the time indicated by the iterator ID. If you require data beyond those time ranges, you will need to explicitly set the `before` or `after` parameter as appropriate.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @return ApiV1MessageListRequest

func (*MessageApiService) V1MessageListExecute added in v0.84.0

* Execute executes the request * @return ListResponseMessageOut

type MessageAttemptApiService

type MessageAttemptApiService service

MessageAttemptApiService MessageAttemptApi service

func (*MessageAttemptApiService) V1MessageAttemptExpungeContent added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptExpungeContent(ctx _context.Context, appId string, msgId string, attemptId string) ApiV1MessageAttemptExpungeContentRequest

* V1MessageAttemptExpungeContent Delete attempt response body * Deletes the given attempt's response body. Useful when an endpoint accidentally returned sensitive content. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param msgId The msg's ID or UID * @param attemptId The attempt's ID * @return ApiV1MessageAttemptExpungeContentRequest

func (*MessageAttemptApiService) V1MessageAttemptExpungeContentExecute added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptExpungeContentExecute(r ApiV1MessageAttemptExpungeContentRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*MessageAttemptApiService) V1MessageAttemptGet added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptGet(ctx _context.Context, appId string, msgId string, attemptId string) ApiV1MessageAttemptGetRequest

* V1MessageAttemptGet Get Attempt * `msg_id`: Use a message id or a message `eventId` * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param msgId The msg's ID or UID * @param attemptId The attempt's ID * @return ApiV1MessageAttemptGetRequest

func (*MessageAttemptApiService) V1MessageAttemptGetExecute added in v0.84.0

* Execute executes the request * @return MessageAttemptOut

func (*MessageAttemptApiService) V1MessageAttemptGetHeaders added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptGetHeaders(ctx _context.Context, appId string, msgId string, attemptId string) ApiV1MessageAttemptGetHeadersRequest

* V1MessageAttemptGetHeaders Get Attempt Headers * Calculate and return headers used on a given message attempt * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param msgId The msg's ID or UID * @param attemptId The attempt's ID * @return ApiV1MessageAttemptGetHeadersRequest

func (*MessageAttemptApiService) V1MessageAttemptGetHeadersExecute added in v0.84.0

* Execute executes the request * @return MessageAttemptHeadersOut

func (*MessageAttemptApiService) V1MessageAttemptListAttemptedDestinations added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptListAttemptedDestinations(ctx _context.Context, appId string, msgId string) ApiV1MessageAttemptListAttemptedDestinationsRequest
  • V1MessageAttemptListAttemptedDestinations List Attempted Destinations
  • List endpoints attempted by a given message. Additionally includes metadata about the latest message attempt.

By default, endpoints are listed in ascending order by ID.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param msgId The msg's ID or UID
  • @return ApiV1MessageAttemptListAttemptedDestinationsRequest

func (*MessageAttemptApiService) V1MessageAttemptListAttemptedDestinationsExecute added in v0.84.0

* Execute executes the request * @return ListResponseMessageEndpointOut

func (*MessageAttemptApiService) V1MessageAttemptListAttemptedMessages added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptListAttemptedMessages(ctx _context.Context, appId string, endpointId string) ApiV1MessageAttemptListAttemptedMessagesRequest
  • V1MessageAttemptListAttemptedMessages List Attempted Messages
  • List messages for a particular endpoint. Additionally includes metadata about the latest message attempt.

The `before` parameter lets you filter all items created before a certain date and is ignored if an iterator is passed.

Note that by default this endpoint is limited to retrieving 90 days' worth of data relative to now or, if an iterator is provided, 90 days before/after the time indicated by the iterator ID. If you require data beyond those time ranges, you will need to explicitly set the `before` or `after` parameter as appropriate.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param endpointId The ep's ID or UID
  • @return ApiV1MessageAttemptListAttemptedMessagesRequest

func (*MessageAttemptApiService) V1MessageAttemptListAttemptedMessagesExecute added in v0.84.0

* Execute executes the request * @return ListResponseEndpointMessageOut

func (*MessageAttemptApiService) V1MessageAttemptListByEndpoint added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptListByEndpoint(ctx _context.Context, appId string, endpointId string) ApiV1MessageAttemptListByEndpointRequest
  • V1MessageAttemptListByEndpoint List Attempts By Endpoint
  • List attempts by endpoint id

Note that by default this endpoint is limited to retrieving 90 days' worth of data relative to now or, if an iterator is provided, 90 days before/after the time indicated by the iterator ID. If you require data beyond those time ranges, you will need to explicitly set the `before` or `after` parameter as appropriate.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param endpointId The ep's ID or UID
  • @return ApiV1MessageAttemptListByEndpointRequest

func (*MessageAttemptApiService) V1MessageAttemptListByEndpointDeprecated added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptListByEndpointDeprecated(ctx _context.Context, appId string, msgId string, endpointId string) ApiV1MessageAttemptListByEndpointDeprecatedRequest
  • V1MessageAttemptListByEndpointDeprecated List Attempts For Endpoint
  • DEPRECATED: please use list_attempts with endpoint_id as a query parameter instead.

List the message attempts for a particular endpoint.

Returning the endpoint.

The `before` parameter lets you filter all items created before a certain date and is ignored if an iterator is passed.

Note that by default this endpoint is limited to retrieving 90 days' worth of data relative to now or, if an iterator is provided, 90 days before/after the time indicated by the iterator ID. If you require data beyond those time ranges, you will need to explicitly set the `before` or `after` parameter as appropriate.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param msgId The msg's ID or UID
  • @param endpointId The ep's ID or UID
  • @return ApiV1MessageAttemptListByEndpointDeprecatedRequest

func (*MessageAttemptApiService) V1MessageAttemptListByEndpointDeprecatedExecute added in v0.84.0

* Execute executes the request * @return ListResponseMessageAttemptEndpointOut

func (*MessageAttemptApiService) V1MessageAttemptListByEndpointExecute added in v0.84.0

* Execute executes the request * @return ListResponseMessageAttemptOut

func (*MessageAttemptApiService) V1MessageAttemptListByMsg added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptListByMsg(ctx _context.Context, appId string, msgId string) ApiV1MessageAttemptListByMsgRequest
  • V1MessageAttemptListByMsg List Attempts By Msg
  • List attempts by message id

Note that by default this endpoint is limited to retrieving 90 days' worth of data relative to now or, if an iterator is provided, 90 days before/after the time indicated by the iterator ID. If you require data beyond those time ranges, you will need to explicitly set the `before` or `after` parameter as appropriate.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param msgId The msg's ID or UID
  • @return ApiV1MessageAttemptListByMsgRequest

func (*MessageAttemptApiService) V1MessageAttemptListByMsgDeprecated added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptListByMsgDeprecated(ctx _context.Context, appId string, msgId string) ApiV1MessageAttemptListByMsgDeprecatedRequest
  • V1MessageAttemptListByMsgDeprecated List Attempts
  • Deprecated: Please use "List Attempts by Endpoint" and "List Attempts by Msg" instead.

Note that by default this endpoint is limited to retrieving 90 days' worth of data relative to now or, if an iterator is provided, 90 days before/after the time indicated by the iterator ID. If you require data beyond those time ranges, you will need to explicitly set the `before` or `after` parameter as appropriate.

`msg_id`: Use a message id or a message `eventId`

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param appId The app's ID or UID
  • @param msgId The msg's ID or UID
  • @return ApiV1MessageAttemptListByMsgDeprecatedRequest

func (*MessageAttemptApiService) V1MessageAttemptListByMsgDeprecatedExecute added in v0.84.0

* Execute executes the request * @return ListResponseMessageAttemptOut

func (*MessageAttemptApiService) V1MessageAttemptListByMsgExecute added in v0.84.0

* Execute executes the request * @return ListResponseMessageAttemptOut

func (*MessageAttemptApiService) V1MessageAttemptResend added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptResend(ctx _context.Context, appId string, msgId string, endpointId string) ApiV1MessageAttemptResendRequest

* V1MessageAttemptResend Resend Webhook * Resend a message to the specified endpoint. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param msgId The msg's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1MessageAttemptResendRequest

func (*MessageAttemptApiService) V1MessageAttemptResendExecute added in v0.84.0

func (a *MessageAttemptApiService) V1MessageAttemptResendExecute(r ApiV1MessageAttemptResendRequest) (*_nethttp.Response, error)

* Execute executes the request

type MessageAttemptEndpointOut

type MessageAttemptEndpointOut struct {
	// The ep's ID
	EndpointId string `json:"endpointId"`
	// The attempt's ID
	Id string `json:"id"`
	// The msg's ID
	MsgId              string                    `json:"msgId"`
	Response           string                    `json:"response"`
	ResponseStatusCode int32                     `json:"responseStatusCode"`
	Status             MessageStatus             `json:"status"`
	Timestamp          time.Time                 `json:"timestamp"`
	TriggerType        MessageAttemptTriggerType `json:"triggerType"`
	Url                string                    `json:"url"`
}

MessageAttemptEndpointOut struct for MessageAttemptEndpointOut

func NewMessageAttemptEndpointOut

func NewMessageAttemptEndpointOut(endpointId string, id string, msgId string, response string, responseStatusCode int32, status MessageStatus, timestamp time.Time, triggerType MessageAttemptTriggerType, url string) *MessageAttemptEndpointOut

NewMessageAttemptEndpointOut instantiates a new MessageAttemptEndpointOut 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 NewMessageAttemptEndpointOutWithDefaults

func NewMessageAttemptEndpointOutWithDefaults() *MessageAttemptEndpointOut

NewMessageAttemptEndpointOutWithDefaults instantiates a new MessageAttemptEndpointOut 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 (*MessageAttemptEndpointOut) GetEndpointId added in v0.48.0

func (o *MessageAttemptEndpointOut) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*MessageAttemptEndpointOut) GetEndpointIdOk added in v0.48.0

func (o *MessageAttemptEndpointOut) GetEndpointIdOk() (*string, bool)

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

func (*MessageAttemptEndpointOut) GetId

func (o *MessageAttemptEndpointOut) GetId() string

GetId returns the Id field value

func (*MessageAttemptEndpointOut) GetIdOk

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

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

func (*MessageAttemptEndpointOut) GetMsgId added in v0.52.0

func (o *MessageAttemptEndpointOut) GetMsgId() string

GetMsgId returns the MsgId field value

func (*MessageAttemptEndpointOut) GetMsgIdOk added in v0.52.0

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

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

func (*MessageAttemptEndpointOut) GetResponse

func (o *MessageAttemptEndpointOut) GetResponse() string

GetResponse returns the Response field value

func (*MessageAttemptEndpointOut) GetResponseOk

func (o *MessageAttemptEndpointOut) GetResponseOk() (*string, bool)

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

func (*MessageAttemptEndpointOut) GetResponseStatusCode

func (o *MessageAttemptEndpointOut) GetResponseStatusCode() int32

GetResponseStatusCode returns the ResponseStatusCode field value

func (*MessageAttemptEndpointOut) GetResponseStatusCodeOk

func (o *MessageAttemptEndpointOut) GetResponseStatusCodeOk() (*int32, bool)

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

func (*MessageAttemptEndpointOut) GetStatus

GetStatus returns the Status field value

func (*MessageAttemptEndpointOut) GetStatusOk

func (o *MessageAttemptEndpointOut) GetStatusOk() (*MessageStatus, bool)

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

func (*MessageAttemptEndpointOut) GetTimestamp

func (o *MessageAttemptEndpointOut) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*MessageAttemptEndpointOut) GetTimestampOk

func (o *MessageAttemptEndpointOut) GetTimestampOk() (*time.Time, bool)

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

func (*MessageAttemptEndpointOut) GetTriggerType

GetTriggerType returns the TriggerType field value

func (*MessageAttemptEndpointOut) GetTriggerTypeOk

func (o *MessageAttemptEndpointOut) GetTriggerTypeOk() (*MessageAttemptTriggerType, bool)

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

func (*MessageAttemptEndpointOut) GetUrl added in v0.75.0

func (o *MessageAttemptEndpointOut) GetUrl() string

GetUrl returns the Url field value

func (*MessageAttemptEndpointOut) GetUrlOk added in v0.75.0

func (o *MessageAttemptEndpointOut) GetUrlOk() (*string, bool)

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

func (MessageAttemptEndpointOut) MarshalJSON

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

func (*MessageAttemptEndpointOut) SetEndpointId added in v0.48.0

func (o *MessageAttemptEndpointOut) SetEndpointId(v string)

SetEndpointId sets field value

func (*MessageAttemptEndpointOut) SetId

func (o *MessageAttemptEndpointOut) SetId(v string)

SetId sets field value

func (*MessageAttemptEndpointOut) SetMsgId added in v0.52.0

func (o *MessageAttemptEndpointOut) SetMsgId(v string)

SetMsgId sets field value

func (*MessageAttemptEndpointOut) SetResponse

func (o *MessageAttemptEndpointOut) SetResponse(v string)

SetResponse sets field value

func (*MessageAttemptEndpointOut) SetResponseStatusCode

func (o *MessageAttemptEndpointOut) SetResponseStatusCode(v int32)

SetResponseStatusCode sets field value

func (*MessageAttemptEndpointOut) SetStatus

func (o *MessageAttemptEndpointOut) SetStatus(v MessageStatus)

SetStatus sets field value

func (*MessageAttemptEndpointOut) SetTimestamp

func (o *MessageAttemptEndpointOut) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*MessageAttemptEndpointOut) SetTriggerType

SetTriggerType sets field value

func (*MessageAttemptEndpointOut) SetUrl added in v0.75.0

func (o *MessageAttemptEndpointOut) SetUrl(v string)

SetUrl sets field value

type MessageAttemptExhaustedEvent

type MessageAttemptExhaustedEvent struct {
	Data MessageAttemptExhaustedEventData `json:"data"`
	Type string                           `json:"type"`
}

MessageAttemptExhaustedEvent Sent when a message delivery has failed (all of the retry attempts have been exhausted).

func NewMessageAttemptExhaustedEvent

func NewMessageAttemptExhaustedEvent(data MessageAttemptExhaustedEventData, type_ string) *MessageAttemptExhaustedEvent

NewMessageAttemptExhaustedEvent instantiates a new MessageAttemptExhaustedEvent 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 NewMessageAttemptExhaustedEventWithDefaults

func NewMessageAttemptExhaustedEventWithDefaults() *MessageAttemptExhaustedEvent

NewMessageAttemptExhaustedEventWithDefaults instantiates a new MessageAttemptExhaustedEvent 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 (*MessageAttemptExhaustedEvent) GetData

GetData returns the Data field value

func (*MessageAttemptExhaustedEvent) GetDataOk

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

func (*MessageAttemptExhaustedEvent) GetType

func (o *MessageAttemptExhaustedEvent) GetType() string

GetType returns the Type field value

func (*MessageAttemptExhaustedEvent) GetTypeOk

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

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

func (MessageAttemptExhaustedEvent) MarshalJSON

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

func (*MessageAttemptExhaustedEvent) SetData

SetData sets field value

func (*MessageAttemptExhaustedEvent) SetType

func (o *MessageAttemptExhaustedEvent) SetType(v string)

SetType sets field value

type MessageAttemptExhaustedEventData

type MessageAttemptExhaustedEventData struct {
	// The app's ID
	AppId string `json:"appId"`
	// The app's UID
	AppUid NullableString `json:"appUid,omitempty"`
	// The ep's ID
	EndpointId  string                   `json:"endpointId"`
	LastAttempt MessageAttemptFailedData `json:"lastAttempt"`
	// The msg's UID
	MsgEventId NullableString `json:"msgEventId,omitempty"`
	// The msg's ID
	MsgId string `json:"msgId"`
}

MessageAttemptExhaustedEventData Sent when a message delivery has failed (all of the retry attempts have been exhausted) as a \"message.attempt.exhausted\" type or after it's failed four times as a \"message.attempt.failing\" event.

func NewMessageAttemptExhaustedEventData

func NewMessageAttemptExhaustedEventData(appId string, endpointId string, lastAttempt MessageAttemptFailedData, msgId string) *MessageAttemptExhaustedEventData

NewMessageAttemptExhaustedEventData instantiates a new MessageAttemptExhaustedEventData 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 NewMessageAttemptExhaustedEventDataWithDefaults

func NewMessageAttemptExhaustedEventDataWithDefaults() *MessageAttemptExhaustedEventData

NewMessageAttemptExhaustedEventDataWithDefaults instantiates a new MessageAttemptExhaustedEventData 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 (*MessageAttemptExhaustedEventData) GetAppId

GetAppId returns the AppId field value

func (*MessageAttemptExhaustedEventData) GetAppIdOk

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

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

func (*MessageAttemptExhaustedEventData) GetAppUid

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

func (*MessageAttemptExhaustedEventData) GetAppUidOk

func (o *MessageAttemptExhaustedEventData) GetAppUidOk() (*string, bool)

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

func (*MessageAttemptExhaustedEventData) GetEndpointId

func (o *MessageAttemptExhaustedEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*MessageAttemptExhaustedEventData) GetEndpointIdOk

func (o *MessageAttemptExhaustedEventData) GetEndpointIdOk() (*string, bool)

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

func (*MessageAttemptExhaustedEventData) GetLastAttempt

GetLastAttempt returns the LastAttempt field value

func (*MessageAttemptExhaustedEventData) GetLastAttemptOk

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

func (*MessageAttemptExhaustedEventData) GetMsgEventId added in v0.62.0

func (o *MessageAttemptExhaustedEventData) GetMsgEventId() string

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

func (*MessageAttemptExhaustedEventData) GetMsgEventIdOk added in v0.62.0

func (o *MessageAttemptExhaustedEventData) GetMsgEventIdOk() (*string, bool)

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

func (*MessageAttemptExhaustedEventData) GetMsgId

GetMsgId returns the MsgId field value

func (*MessageAttemptExhaustedEventData) GetMsgIdOk

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

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

func (*MessageAttemptExhaustedEventData) HasAppUid

func (o *MessageAttemptExhaustedEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (*MessageAttemptExhaustedEventData) HasMsgEventId added in v0.62.0

func (o *MessageAttemptExhaustedEventData) HasMsgEventId() bool

HasMsgEventId returns a boolean if a field has been set.

func (MessageAttemptExhaustedEventData) MarshalJSON

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

func (*MessageAttemptExhaustedEventData) SetAppId

SetAppId sets field value

func (*MessageAttemptExhaustedEventData) SetAppUid

func (o *MessageAttemptExhaustedEventData) SetAppUid(v string)

SetAppUid gets a reference to the given NullableString and assigns it to the AppUid field.

func (*MessageAttemptExhaustedEventData) SetAppUidNil added in v0.62.0

func (o *MessageAttemptExhaustedEventData) SetAppUidNil()

SetAppUidNil sets the value for AppUid to be an explicit nil

func (*MessageAttemptExhaustedEventData) SetEndpointId

func (o *MessageAttemptExhaustedEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*MessageAttemptExhaustedEventData) SetLastAttempt

SetLastAttempt sets field value

func (*MessageAttemptExhaustedEventData) SetMsgEventId added in v0.62.0

func (o *MessageAttemptExhaustedEventData) SetMsgEventId(v string)

SetMsgEventId gets a reference to the given NullableString and assigns it to the MsgEventId field.

func (*MessageAttemptExhaustedEventData) SetMsgEventIdNil added in v0.62.0

func (o *MessageAttemptExhaustedEventData) SetMsgEventIdNil()

SetMsgEventIdNil sets the value for MsgEventId to be an explicit nil

func (*MessageAttemptExhaustedEventData) SetMsgId

SetMsgId sets field value

func (*MessageAttemptExhaustedEventData) UnsetAppUid added in v0.62.0

func (o *MessageAttemptExhaustedEventData) UnsetAppUid()

UnsetAppUid ensures that no value is present for AppUid, not even an explicit nil

func (*MessageAttemptExhaustedEventData) UnsetMsgEventId added in v0.62.0

func (o *MessageAttemptExhaustedEventData) UnsetMsgEventId()

UnsetMsgEventId ensures that no value is present for MsgEventId, not even an explicit nil

type MessageAttemptFailedData added in v0.50.0

type MessageAttemptFailedData struct {
	// The attempt's ID
	Id                 string    `json:"id"`
	ResponseStatusCode int32     `json:"responseStatusCode"`
	Timestamp          time.Time `json:"timestamp"`
}

MessageAttemptFailedData struct for MessageAttemptFailedData

func NewMessageAttemptFailedData added in v0.50.0

func NewMessageAttemptFailedData(id string, responseStatusCode int32, timestamp time.Time) *MessageAttemptFailedData

NewMessageAttemptFailedData instantiates a new MessageAttemptFailedData 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 NewMessageAttemptFailedDataWithDefaults added in v0.50.0

func NewMessageAttemptFailedDataWithDefaults() *MessageAttemptFailedData

NewMessageAttemptFailedDataWithDefaults instantiates a new MessageAttemptFailedData 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 (*MessageAttemptFailedData) GetId added in v0.50.0

func (o *MessageAttemptFailedData) GetId() string

GetId returns the Id field value

func (*MessageAttemptFailedData) GetIdOk added in v0.50.0

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

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

func (*MessageAttemptFailedData) GetResponseStatusCode added in v0.50.0

func (o *MessageAttemptFailedData) GetResponseStatusCode() int32

GetResponseStatusCode returns the ResponseStatusCode field value

func (*MessageAttemptFailedData) GetResponseStatusCodeOk added in v0.50.0

func (o *MessageAttemptFailedData) GetResponseStatusCodeOk() (*int32, bool)

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

func (*MessageAttemptFailedData) GetTimestamp added in v0.50.0

func (o *MessageAttemptFailedData) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*MessageAttemptFailedData) GetTimestampOk added in v0.50.0

func (o *MessageAttemptFailedData) GetTimestampOk() (*time.Time, bool)

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

func (MessageAttemptFailedData) MarshalJSON added in v0.50.0

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

func (*MessageAttemptFailedData) SetId added in v0.50.0

func (o *MessageAttemptFailedData) SetId(v string)

SetId sets field value

func (*MessageAttemptFailedData) SetResponseStatusCode added in v0.50.0

func (o *MessageAttemptFailedData) SetResponseStatusCode(v int32)

SetResponseStatusCode sets field value

func (*MessageAttemptFailedData) SetTimestamp added in v0.50.0

func (o *MessageAttemptFailedData) SetTimestamp(v time.Time)

SetTimestamp sets field value

type MessageAttemptFailedEvent

type MessageAttemptFailedEvent struct {
	Id                 string    `json:"id"`
	ResponseStatusCode int32     `json:"responseStatusCode"`
	Timestamp          time.Time `json:"timestamp"`
}

MessageAttemptFailedEvent struct for MessageAttemptFailedEvent

func NewMessageAttemptFailedEvent

func NewMessageAttemptFailedEvent(id string, responseStatusCode int32, timestamp time.Time) *MessageAttemptFailedEvent

NewMessageAttemptFailedEvent instantiates a new MessageAttemptFailedEvent 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 NewMessageAttemptFailedEventWithDefaults

func NewMessageAttemptFailedEventWithDefaults() *MessageAttemptFailedEvent

NewMessageAttemptFailedEventWithDefaults instantiates a new MessageAttemptFailedEvent 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 (*MessageAttemptFailedEvent) GetId

func (o *MessageAttemptFailedEvent) GetId() string

GetId returns the Id field value

func (*MessageAttemptFailedEvent) GetIdOk

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

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

func (*MessageAttemptFailedEvent) GetResponseStatusCode

func (o *MessageAttemptFailedEvent) GetResponseStatusCode() int32

GetResponseStatusCode returns the ResponseStatusCode field value

func (*MessageAttemptFailedEvent) GetResponseStatusCodeOk

func (o *MessageAttemptFailedEvent) GetResponseStatusCodeOk() (*int32, bool)

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

func (*MessageAttemptFailedEvent) GetTimestamp

func (o *MessageAttemptFailedEvent) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*MessageAttemptFailedEvent) GetTimestampOk

func (o *MessageAttemptFailedEvent) GetTimestampOk() (*time.Time, bool)

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

func (MessageAttemptFailedEvent) MarshalJSON

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

func (*MessageAttemptFailedEvent) SetId

func (o *MessageAttemptFailedEvent) SetId(v string)

SetId sets field value

func (*MessageAttemptFailedEvent) SetResponseStatusCode

func (o *MessageAttemptFailedEvent) SetResponseStatusCode(v int32)

SetResponseStatusCode sets field value

func (*MessageAttemptFailedEvent) SetTimestamp

func (o *MessageAttemptFailedEvent) SetTimestamp(v time.Time)

SetTimestamp sets field value

type MessageAttemptFailingEvent added in v0.50.0

type MessageAttemptFailingEvent struct {
	Data MessageAttemptFailingEventData `json:"data"`
	Type string                         `json:"type"`
}

MessageAttemptFailingEvent Sent after a message has been failing for a few times. It's sent on the fourth failure. It complements `message.attempt.exhausted` which is sent after the last failure.

func NewMessageAttemptFailingEvent added in v0.50.0

func NewMessageAttemptFailingEvent(data MessageAttemptFailingEventData, type_ string) *MessageAttemptFailingEvent

NewMessageAttemptFailingEvent instantiates a new MessageAttemptFailingEvent 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 NewMessageAttemptFailingEventWithDefaults added in v0.50.0

func NewMessageAttemptFailingEventWithDefaults() *MessageAttemptFailingEvent

NewMessageAttemptFailingEventWithDefaults instantiates a new MessageAttemptFailingEvent 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 (*MessageAttemptFailingEvent) GetData added in v0.50.0

GetData returns the Data field value

func (*MessageAttemptFailingEvent) GetDataOk added in v0.50.0

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

func (*MessageAttemptFailingEvent) GetType added in v0.50.0

func (o *MessageAttemptFailingEvent) GetType() string

GetType returns the Type field value

func (*MessageAttemptFailingEvent) GetTypeOk added in v0.50.0

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

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

func (MessageAttemptFailingEvent) MarshalJSON added in v0.50.0

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

func (*MessageAttemptFailingEvent) SetData added in v0.50.0

SetData sets field value

func (*MessageAttemptFailingEvent) SetType added in v0.50.0

func (o *MessageAttemptFailingEvent) SetType(v string)

SetType sets field value

type MessageAttemptFailingEventData added in v0.50.0

type MessageAttemptFailingEventData struct {
	// The app's ID
	AppId string `json:"appId"`
	// The app's UID
	AppUid NullableString `json:"appUid,omitempty"`
	// The ep's ID
	EndpointId  string                   `json:"endpointId"`
	LastAttempt MessageAttemptFailedData `json:"lastAttempt"`
	// The msg's UID
	MsgEventId NullableString `json:"msgEventId,omitempty"`
	// The msg's ID
	MsgId string `json:"msgId"`
}

MessageAttemptFailingEventData Sent when a message delivery has failed (all of the retry attempts have been exhausted) as a \"message.attempt.exhausted\" type or after it's failed four times as a \"message.attempt.failing\" event.

func NewMessageAttemptFailingEventData added in v0.50.0

func NewMessageAttemptFailingEventData(appId string, endpointId string, lastAttempt MessageAttemptFailedData, msgId string) *MessageAttemptFailingEventData

NewMessageAttemptFailingEventData instantiates a new MessageAttemptFailingEventData 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 NewMessageAttemptFailingEventDataWithDefaults added in v0.50.0

func NewMessageAttemptFailingEventDataWithDefaults() *MessageAttemptFailingEventData

NewMessageAttemptFailingEventDataWithDefaults instantiates a new MessageAttemptFailingEventData 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 (*MessageAttemptFailingEventData) GetAppId added in v0.50.0

func (o *MessageAttemptFailingEventData) GetAppId() string

GetAppId returns the AppId field value

func (*MessageAttemptFailingEventData) GetAppIdOk added in v0.50.0

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

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

func (*MessageAttemptFailingEventData) GetAppUid added in v0.50.0

func (o *MessageAttemptFailingEventData) GetAppUid() string

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

func (*MessageAttemptFailingEventData) GetAppUidOk added in v0.50.0

func (o *MessageAttemptFailingEventData) GetAppUidOk() (*string, bool)

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

func (*MessageAttemptFailingEventData) GetEndpointId added in v0.50.0

func (o *MessageAttemptFailingEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*MessageAttemptFailingEventData) GetEndpointIdOk added in v0.50.0

func (o *MessageAttemptFailingEventData) GetEndpointIdOk() (*string, bool)

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

func (*MessageAttemptFailingEventData) GetLastAttempt added in v0.50.0

GetLastAttempt returns the LastAttempt field value

func (*MessageAttemptFailingEventData) GetLastAttemptOk added in v0.50.0

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

func (*MessageAttemptFailingEventData) GetMsgEventId added in v0.62.0

func (o *MessageAttemptFailingEventData) GetMsgEventId() string

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

func (*MessageAttemptFailingEventData) GetMsgEventIdOk added in v0.62.0

func (o *MessageAttemptFailingEventData) GetMsgEventIdOk() (*string, bool)

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

func (*MessageAttemptFailingEventData) GetMsgId added in v0.50.0

func (o *MessageAttemptFailingEventData) GetMsgId() string

GetMsgId returns the MsgId field value

func (*MessageAttemptFailingEventData) GetMsgIdOk added in v0.50.0

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

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

func (*MessageAttemptFailingEventData) HasAppUid added in v0.50.0

func (o *MessageAttemptFailingEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (*MessageAttemptFailingEventData) HasMsgEventId added in v0.62.0

func (o *MessageAttemptFailingEventData) HasMsgEventId() bool

HasMsgEventId returns a boolean if a field has been set.

func (MessageAttemptFailingEventData) MarshalJSON added in v0.50.0

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

func (*MessageAttemptFailingEventData) SetAppId added in v0.50.0

func (o *MessageAttemptFailingEventData) SetAppId(v string)

SetAppId sets field value

func (*MessageAttemptFailingEventData) SetAppUid added in v0.50.0

func (o *MessageAttemptFailingEventData) SetAppUid(v string)

SetAppUid gets a reference to the given NullableString and assigns it to the AppUid field.

func (*MessageAttemptFailingEventData) SetAppUidNil added in v0.62.0

func (o *MessageAttemptFailingEventData) SetAppUidNil()

SetAppUidNil sets the value for AppUid to be an explicit nil

func (*MessageAttemptFailingEventData) SetEndpointId added in v0.50.0

func (o *MessageAttemptFailingEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*MessageAttemptFailingEventData) SetLastAttempt added in v0.50.0

SetLastAttempt sets field value

func (*MessageAttemptFailingEventData) SetMsgEventId added in v0.62.0

func (o *MessageAttemptFailingEventData) SetMsgEventId(v string)

SetMsgEventId gets a reference to the given NullableString and assigns it to the MsgEventId field.

func (*MessageAttemptFailingEventData) SetMsgEventIdNil added in v0.62.0

func (o *MessageAttemptFailingEventData) SetMsgEventIdNil()

SetMsgEventIdNil sets the value for MsgEventId to be an explicit nil

func (*MessageAttemptFailingEventData) SetMsgId added in v0.50.0

func (o *MessageAttemptFailingEventData) SetMsgId(v string)

SetMsgId sets field value

func (*MessageAttemptFailingEventData) UnsetAppUid added in v0.62.0

func (o *MessageAttemptFailingEventData) UnsetAppUid()

UnsetAppUid ensures that no value is present for AppUid, not even an explicit nil

func (*MessageAttemptFailingEventData) UnsetMsgEventId added in v0.62.0

func (o *MessageAttemptFailingEventData) UnsetMsgEventId()

UnsetMsgEventId ensures that no value is present for MsgEventId, not even an explicit nil

type MessageAttemptHeadersOut added in v0.57.0

type MessageAttemptHeadersOut struct {
	Sensitive   []string          `json:"sensitive"`
	SentHeaders map[string]string `json:"sentHeaders"`
}

MessageAttemptHeadersOut struct for MessageAttemptHeadersOut

func NewMessageAttemptHeadersOut added in v0.57.0

func NewMessageAttemptHeadersOut(sensitive []string, sentHeaders map[string]string) *MessageAttemptHeadersOut

NewMessageAttemptHeadersOut instantiates a new MessageAttemptHeadersOut 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 NewMessageAttemptHeadersOutWithDefaults added in v0.57.0

func NewMessageAttemptHeadersOutWithDefaults() *MessageAttemptHeadersOut

NewMessageAttemptHeadersOutWithDefaults instantiates a new MessageAttemptHeadersOut 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 (*MessageAttemptHeadersOut) GetSensitive added in v0.84.1

func (o *MessageAttemptHeadersOut) GetSensitive() []string

GetSensitive returns the Sensitive field value

func (*MessageAttemptHeadersOut) GetSensitiveOk added in v0.84.1

func (o *MessageAttemptHeadersOut) GetSensitiveOk() (*[]string, bool)

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

func (*MessageAttemptHeadersOut) GetSentHeaders added in v0.57.0

func (o *MessageAttemptHeadersOut) GetSentHeaders() map[string]string

GetSentHeaders returns the SentHeaders field value

func (*MessageAttemptHeadersOut) GetSentHeadersOk added in v0.57.0

func (o *MessageAttemptHeadersOut) GetSentHeadersOk() (*map[string]string, bool)

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

func (MessageAttemptHeadersOut) MarshalJSON added in v0.57.0

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

func (*MessageAttemptHeadersOut) SetSensitive added in v0.84.1

func (o *MessageAttemptHeadersOut) SetSensitive(v []string)

SetSensitive sets field value

func (*MessageAttemptHeadersOut) SetSentHeaders added in v0.57.0

func (o *MessageAttemptHeadersOut) SetSentHeaders(v map[string]string)

SetSentHeaders sets field value

type MessageAttemptOut

type MessageAttemptOut struct {
	// The ep's ID
	EndpointId string `json:"endpointId"`
	// The attempt's ID
	Id string `json:"id"`
	// The msg's ID
	MsgId              string                    `json:"msgId"`
	Response           string                    `json:"response"`
	ResponseStatusCode int32                     `json:"responseStatusCode"`
	Status             MessageStatus             `json:"status"`
	Timestamp          time.Time                 `json:"timestamp"`
	TriggerType        MessageAttemptTriggerType `json:"triggerType"`
	Url                string                    `json:"url"`
}

MessageAttemptOut struct for MessageAttemptOut

func NewMessageAttemptOut

func NewMessageAttemptOut(endpointId string, id string, msgId string, response string, responseStatusCode int32, status MessageStatus, timestamp time.Time, triggerType MessageAttemptTriggerType, url string) *MessageAttemptOut

NewMessageAttemptOut instantiates a new MessageAttemptOut 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 NewMessageAttemptOutWithDefaults

func NewMessageAttemptOutWithDefaults() *MessageAttemptOut

NewMessageAttemptOutWithDefaults instantiates a new MessageAttemptOut 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 (*MessageAttemptOut) GetEndpointId

func (o *MessageAttemptOut) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*MessageAttemptOut) GetEndpointIdOk

func (o *MessageAttemptOut) GetEndpointIdOk() (*string, bool)

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

func (*MessageAttemptOut) GetId

func (o *MessageAttemptOut) GetId() string

GetId returns the Id field value

func (*MessageAttemptOut) GetIdOk

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

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

func (*MessageAttemptOut) GetMsgId added in v0.52.0

func (o *MessageAttemptOut) GetMsgId() string

GetMsgId returns the MsgId field value

func (*MessageAttemptOut) GetMsgIdOk added in v0.52.0

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

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

func (*MessageAttemptOut) GetResponse

func (o *MessageAttemptOut) GetResponse() string

GetResponse returns the Response field value

func (*MessageAttemptOut) GetResponseOk

func (o *MessageAttemptOut) GetResponseOk() (*string, bool)

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

func (*MessageAttemptOut) GetResponseStatusCode

func (o *MessageAttemptOut) GetResponseStatusCode() int32

GetResponseStatusCode returns the ResponseStatusCode field value

func (*MessageAttemptOut) GetResponseStatusCodeOk

func (o *MessageAttemptOut) GetResponseStatusCodeOk() (*int32, bool)

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

func (*MessageAttemptOut) GetStatus

func (o *MessageAttemptOut) GetStatus() MessageStatus

GetStatus returns the Status field value

func (*MessageAttemptOut) GetStatusOk

func (o *MessageAttemptOut) GetStatusOk() (*MessageStatus, bool)

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

func (*MessageAttemptOut) GetTimestamp

func (o *MessageAttemptOut) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*MessageAttemptOut) GetTimestampOk

func (o *MessageAttemptOut) GetTimestampOk() (*time.Time, bool)

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

func (*MessageAttemptOut) GetTriggerType

func (o *MessageAttemptOut) GetTriggerType() MessageAttemptTriggerType

GetTriggerType returns the TriggerType field value

func (*MessageAttemptOut) GetTriggerTypeOk

func (o *MessageAttemptOut) GetTriggerTypeOk() (*MessageAttemptTriggerType, bool)

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

func (*MessageAttemptOut) GetUrl added in v0.75.0

func (o *MessageAttemptOut) GetUrl() string

GetUrl returns the Url field value

func (*MessageAttemptOut) GetUrlOk added in v0.75.0

func (o *MessageAttemptOut) GetUrlOk() (*string, bool)

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

func (MessageAttemptOut) MarshalJSON

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

func (*MessageAttemptOut) SetEndpointId

func (o *MessageAttemptOut) SetEndpointId(v string)

SetEndpointId sets field value

func (*MessageAttemptOut) SetId

func (o *MessageAttemptOut) SetId(v string)

SetId sets field value

func (*MessageAttemptOut) SetMsgId added in v0.52.0

func (o *MessageAttemptOut) SetMsgId(v string)

SetMsgId sets field value

func (*MessageAttemptOut) SetResponse

func (o *MessageAttemptOut) SetResponse(v string)

SetResponse sets field value

func (*MessageAttemptOut) SetResponseStatusCode

func (o *MessageAttemptOut) SetResponseStatusCode(v int32)

SetResponseStatusCode sets field value

func (*MessageAttemptOut) SetStatus

func (o *MessageAttemptOut) SetStatus(v MessageStatus)

SetStatus sets field value

func (*MessageAttemptOut) SetTimestamp

func (o *MessageAttemptOut) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*MessageAttemptOut) SetTriggerType

func (o *MessageAttemptOut) SetTriggerType(v MessageAttemptTriggerType)

SetTriggerType sets field value

func (*MessageAttemptOut) SetUrl added in v0.75.0

func (o *MessageAttemptOut) SetUrl(v string)

SetUrl sets field value

type MessageAttemptRecoveredEvent added in v1.8.0

type MessageAttemptRecoveredEvent struct {
	Data MessageAttemptRecoveredEventData `json:"data"`
	Type string                           `json:"type"`
}

MessageAttemptRecoveredEvent Sent on a successful dispatch after an earlier failure op webhook has already been sent.

func NewMessageAttemptRecoveredEvent added in v1.8.0

func NewMessageAttemptRecoveredEvent(data MessageAttemptRecoveredEventData, type_ string) *MessageAttemptRecoveredEvent

NewMessageAttemptRecoveredEvent instantiates a new MessageAttemptRecoveredEvent 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 NewMessageAttemptRecoveredEventWithDefaults added in v1.8.0

func NewMessageAttemptRecoveredEventWithDefaults() *MessageAttemptRecoveredEvent

NewMessageAttemptRecoveredEventWithDefaults instantiates a new MessageAttemptRecoveredEvent 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 (*MessageAttemptRecoveredEvent) GetData added in v1.8.0

GetData returns the Data field value

func (*MessageAttemptRecoveredEvent) GetDataOk added in v1.8.0

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

func (*MessageAttemptRecoveredEvent) GetType added in v1.8.0

func (o *MessageAttemptRecoveredEvent) GetType() string

GetType returns the Type field value

func (*MessageAttemptRecoveredEvent) GetTypeOk added in v1.8.0

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

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

func (MessageAttemptRecoveredEvent) MarshalJSON added in v1.8.0

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

func (*MessageAttemptRecoveredEvent) SetData added in v1.8.0

SetData sets field value

func (*MessageAttemptRecoveredEvent) SetType added in v1.8.0

func (o *MessageAttemptRecoveredEvent) SetType(v string)

SetType sets field value

type MessageAttemptRecoveredEventData added in v1.8.0

type MessageAttemptRecoveredEventData struct {
	// The app's ID
	AppId string `json:"appId"`
	// The app's UID
	AppUid NullableString `json:"appUid,omitempty"`
	// The ep's ID
	EndpointId  string                   `json:"endpointId"`
	LastAttempt MessageAttemptFailedData `json:"lastAttempt"`
	// The msg's UID
	MsgEventId NullableString `json:"msgEventId,omitempty"`
	// The msg's ID
	MsgId string `json:"msgId"`
}

MessageAttemptRecoveredEventData Sent when a message delivery has failed (all of the retry attempts have been exhausted) as a \"message.attempt.exhausted\" type or after it's failed four times as a \"message.attempt.failing\" event.

func NewMessageAttemptRecoveredEventData added in v1.8.0

func NewMessageAttemptRecoveredEventData(appId string, endpointId string, lastAttempt MessageAttemptFailedData, msgId string) *MessageAttemptRecoveredEventData

NewMessageAttemptRecoveredEventData instantiates a new MessageAttemptRecoveredEventData 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 NewMessageAttemptRecoveredEventDataWithDefaults added in v1.8.0

func NewMessageAttemptRecoveredEventDataWithDefaults() *MessageAttemptRecoveredEventData

NewMessageAttemptRecoveredEventDataWithDefaults instantiates a new MessageAttemptRecoveredEventData 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 (*MessageAttemptRecoveredEventData) GetAppId added in v1.8.0

GetAppId returns the AppId field value

func (*MessageAttemptRecoveredEventData) GetAppIdOk added in v1.8.0

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

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

func (*MessageAttemptRecoveredEventData) GetAppUid added in v1.8.0

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

func (*MessageAttemptRecoveredEventData) GetAppUidOk added in v1.8.0

func (o *MessageAttemptRecoveredEventData) GetAppUidOk() (*string, bool)

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

func (*MessageAttemptRecoveredEventData) GetEndpointId added in v1.8.0

func (o *MessageAttemptRecoveredEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*MessageAttemptRecoveredEventData) GetEndpointIdOk added in v1.8.0

func (o *MessageAttemptRecoveredEventData) GetEndpointIdOk() (*string, bool)

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

func (*MessageAttemptRecoveredEventData) GetLastAttempt added in v1.8.0

GetLastAttempt returns the LastAttempt field value

func (*MessageAttemptRecoveredEventData) GetLastAttemptOk added in v1.8.0

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

func (*MessageAttemptRecoveredEventData) GetMsgEventId added in v1.8.0

func (o *MessageAttemptRecoveredEventData) GetMsgEventId() string

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

func (*MessageAttemptRecoveredEventData) GetMsgEventIdOk added in v1.8.0

func (o *MessageAttemptRecoveredEventData) GetMsgEventIdOk() (*string, bool)

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

func (*MessageAttemptRecoveredEventData) GetMsgId added in v1.8.0

GetMsgId returns the MsgId field value

func (*MessageAttemptRecoveredEventData) GetMsgIdOk added in v1.8.0

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

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

func (*MessageAttemptRecoveredEventData) HasAppUid added in v1.8.0

func (o *MessageAttemptRecoveredEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (*MessageAttemptRecoveredEventData) HasMsgEventId added in v1.8.0

func (o *MessageAttemptRecoveredEventData) HasMsgEventId() bool

HasMsgEventId returns a boolean if a field has been set.

func (MessageAttemptRecoveredEventData) MarshalJSON added in v1.8.0

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

func (*MessageAttemptRecoveredEventData) SetAppId added in v1.8.0

SetAppId sets field value

func (*MessageAttemptRecoveredEventData) SetAppUid added in v1.8.0

func (o *MessageAttemptRecoveredEventData) SetAppUid(v string)

SetAppUid gets a reference to the given NullableString and assigns it to the AppUid field.

func (*MessageAttemptRecoveredEventData) SetAppUidNil added in v1.8.0

func (o *MessageAttemptRecoveredEventData) SetAppUidNil()

SetAppUidNil sets the value for AppUid to be an explicit nil

func (*MessageAttemptRecoveredEventData) SetEndpointId added in v1.8.0

func (o *MessageAttemptRecoveredEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*MessageAttemptRecoveredEventData) SetLastAttempt added in v1.8.0

SetLastAttempt sets field value

func (*MessageAttemptRecoveredEventData) SetMsgEventId added in v1.8.0

func (o *MessageAttemptRecoveredEventData) SetMsgEventId(v string)

SetMsgEventId gets a reference to the given NullableString and assigns it to the MsgEventId field.

func (*MessageAttemptRecoveredEventData) SetMsgEventIdNil added in v1.8.0

func (o *MessageAttemptRecoveredEventData) SetMsgEventIdNil()

SetMsgEventIdNil sets the value for MsgEventId to be an explicit nil

func (*MessageAttemptRecoveredEventData) SetMsgId added in v1.8.0

SetMsgId sets field value

func (*MessageAttemptRecoveredEventData) UnsetAppUid added in v1.8.0

func (o *MessageAttemptRecoveredEventData) UnsetAppUid()

UnsetAppUid ensures that no value is present for AppUid, not even an explicit nil

func (*MessageAttemptRecoveredEventData) UnsetMsgEventId added in v1.8.0

func (o *MessageAttemptRecoveredEventData) UnsetMsgEventId()

UnsetMsgEventId ensures that no value is present for MsgEventId, not even an explicit nil

type MessageAttemptTriggerType

type MessageAttemptTriggerType int32

MessageAttemptTriggerType The reason an attempt was made: - Scheduled = 0 - Manual = 1

const (
	MESSAGEATTEMPTTRIGGERTYPE_Scheduled MessageAttemptTriggerType = 0
	MESSAGEATTEMPTTRIGGERTYPE_Manual    MessageAttemptTriggerType = 1
)

List of MessageAttemptTriggerType

func NewMessageAttemptTriggerTypeFromValue

func NewMessageAttemptTriggerTypeFromValue(v int32) (*MessageAttemptTriggerType, error)

NewMessageAttemptTriggerTypeFromValue returns a pointer to a valid MessageAttemptTriggerType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MessageAttemptTriggerType) IsValid

func (v MessageAttemptTriggerType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MessageAttemptTriggerType) Ptr

Ptr returns reference to MessageAttemptTriggerType value

func (*MessageAttemptTriggerType) UnmarshalJSON

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

type MessageBroadcastIn added in v1.4.12

type MessageBroadcastIn struct {
	// List of free-form identifiers that endpoints can filter by
	Channels []string `json:"channels,omitempty"`
	// Optional unique identifier for the message
	EventId NullableString `json:"eventId,omitempty"`
	// The event type's name
	EventType              string                 `json:"eventType"`
	Payload                map[string]interface{} `json:"payload"`
	PayloadRetentionPeriod *int64                 `json:"payloadRetentionPeriod,omitempty"`
}

MessageBroadcastIn struct for MessageBroadcastIn

func NewMessageBroadcastIn added in v1.4.12

func NewMessageBroadcastIn(eventType string, payload map[string]interface{}) *MessageBroadcastIn

NewMessageBroadcastIn instantiates a new MessageBroadcastIn 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 NewMessageBroadcastInWithDefaults added in v1.4.12

func NewMessageBroadcastInWithDefaults() *MessageBroadcastIn

NewMessageBroadcastInWithDefaults instantiates a new MessageBroadcastIn 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 (*MessageBroadcastIn) GetChannels added in v1.4.12

func (o *MessageBroadcastIn) GetChannels() []string

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

func (*MessageBroadcastIn) GetChannelsOk added in v1.4.12

func (o *MessageBroadcastIn) GetChannelsOk() (*[]string, bool)

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

func (*MessageBroadcastIn) GetEventId added in v1.4.12

func (o *MessageBroadcastIn) GetEventId() string

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

func (*MessageBroadcastIn) GetEventIdOk added in v1.4.12

func (o *MessageBroadcastIn) GetEventIdOk() (*string, bool)

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

func (*MessageBroadcastIn) GetEventType added in v1.4.12

func (o *MessageBroadcastIn) GetEventType() string

GetEventType returns the EventType field value

func (*MessageBroadcastIn) GetEventTypeOk added in v1.4.12

func (o *MessageBroadcastIn) GetEventTypeOk() (*string, bool)

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

func (*MessageBroadcastIn) GetPayload added in v1.4.12

func (o *MessageBroadcastIn) GetPayload() map[string]interface{}

GetPayload returns the Payload field value

func (*MessageBroadcastIn) GetPayloadOk added in v1.4.12

func (o *MessageBroadcastIn) GetPayloadOk() (*map[string]interface{}, bool)

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

func (*MessageBroadcastIn) GetPayloadRetentionPeriod added in v1.4.12

func (o *MessageBroadcastIn) GetPayloadRetentionPeriod() int64

GetPayloadRetentionPeriod returns the PayloadRetentionPeriod field value if set, zero value otherwise.

func (*MessageBroadcastIn) GetPayloadRetentionPeriodOk added in v1.4.12

func (o *MessageBroadcastIn) GetPayloadRetentionPeriodOk() (*int64, bool)

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

func (*MessageBroadcastIn) HasChannels added in v1.4.12

func (o *MessageBroadcastIn) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*MessageBroadcastIn) HasEventId added in v1.4.12

func (o *MessageBroadcastIn) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*MessageBroadcastIn) HasPayloadRetentionPeriod added in v1.4.12

func (o *MessageBroadcastIn) HasPayloadRetentionPeriod() bool

HasPayloadRetentionPeriod returns a boolean if a field has been set.

func (MessageBroadcastIn) MarshalJSON added in v1.4.12

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

func (*MessageBroadcastIn) SetChannels added in v1.4.12

func (o *MessageBroadcastIn) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*MessageBroadcastIn) SetEventId added in v1.4.12

func (o *MessageBroadcastIn) SetEventId(v string)

SetEventId gets a reference to the given NullableString and assigns it to the EventId field.

func (*MessageBroadcastIn) SetEventIdNil added in v1.4.12

func (o *MessageBroadcastIn) SetEventIdNil()

SetEventIdNil sets the value for EventId to be an explicit nil

func (*MessageBroadcastIn) SetEventType added in v1.4.12

func (o *MessageBroadcastIn) SetEventType(v string)

SetEventType sets field value

func (*MessageBroadcastIn) SetPayload added in v1.4.12

func (o *MessageBroadcastIn) SetPayload(v map[string]interface{})

SetPayload sets field value

func (*MessageBroadcastIn) SetPayloadRetentionPeriod added in v1.4.12

func (o *MessageBroadcastIn) SetPayloadRetentionPeriod(v int64)

SetPayloadRetentionPeriod gets a reference to the given int64 and assigns it to the PayloadRetentionPeriod field.

func (*MessageBroadcastIn) UnsetEventId added in v1.4.12

func (o *MessageBroadcastIn) UnsetEventId()

UnsetEventId ensures that no value is present for EventId, not even an explicit nil

type MessageBroadcastOut added in v1.4.12

type MessageBroadcastOut struct {
	Id     string               `json:"id"`
	Status BackgroundTaskStatus `json:"status"`
	Task   BackgroundTaskType   `json:"task"`
}

MessageBroadcastOut struct for MessageBroadcastOut

func NewMessageBroadcastOut added in v1.4.12

func NewMessageBroadcastOut(id string, status BackgroundTaskStatus, task BackgroundTaskType) *MessageBroadcastOut

NewMessageBroadcastOut instantiates a new MessageBroadcastOut 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 NewMessageBroadcastOutWithDefaults added in v1.4.12

func NewMessageBroadcastOutWithDefaults() *MessageBroadcastOut

NewMessageBroadcastOutWithDefaults instantiates a new MessageBroadcastOut 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 (*MessageBroadcastOut) GetId added in v1.4.12

func (o *MessageBroadcastOut) GetId() string

GetId returns the Id field value

func (*MessageBroadcastOut) GetIdOk added in v1.4.12

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

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

func (*MessageBroadcastOut) GetStatus added in v1.4.12

GetStatus returns the Status field value

func (*MessageBroadcastOut) GetStatusOk added in v1.4.12

func (o *MessageBroadcastOut) GetStatusOk() (*BackgroundTaskStatus, bool)

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

func (*MessageBroadcastOut) GetTask added in v1.4.12

GetTask returns the Task field value

func (*MessageBroadcastOut) GetTaskOk added in v1.4.12

func (o *MessageBroadcastOut) GetTaskOk() (*BackgroundTaskType, bool)

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

func (MessageBroadcastOut) MarshalJSON added in v1.4.12

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

func (*MessageBroadcastOut) SetId added in v1.4.12

func (o *MessageBroadcastOut) SetId(v string)

SetId sets field value

func (*MessageBroadcastOut) SetStatus added in v1.4.12

func (o *MessageBroadcastOut) SetStatus(v BackgroundTaskStatus)

SetStatus sets field value

func (*MessageBroadcastOut) SetTask added in v1.4.12

SetTask sets field value

type MessageEndpointOut

type MessageEndpointOut struct {
	// List of message channels this endpoint listens to (omit for all)
	Channels  []string  `json:"channels,omitempty"`
	CreatedAt time.Time `json:"createdAt"`
	// An example endpoint name
	Description string   `json:"description"`
	Disabled    *bool    `json:"disabled,omitempty"`
	FilterTypes []string `json:"filterTypes,omitempty"`
	// The ep's ID
	Id          string        `json:"id"`
	NextAttempt NullableTime  `json:"nextAttempt,omitempty"`
	RateLimit   NullableInt32 `json:"rateLimit,omitempty"`
	Status      MessageStatus `json:"status"`
	// Optional unique identifier for the endpoint
	Uid       NullableString `json:"uid,omitempty"`
	UpdatedAt time.Time      `json:"updatedAt"`
	Url       string         `json:"url"`
	Version   int32          `json:"version"`
}

MessageEndpointOut struct for MessageEndpointOut

func NewMessageEndpointOut

func NewMessageEndpointOut(createdAt time.Time, description string, id string, status MessageStatus, updatedAt time.Time, url string, version int32) *MessageEndpointOut

NewMessageEndpointOut instantiates a new MessageEndpointOut 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 NewMessageEndpointOutWithDefaults

func NewMessageEndpointOutWithDefaults() *MessageEndpointOut

NewMessageEndpointOutWithDefaults instantiates a new MessageEndpointOut 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 (*MessageEndpointOut) GetChannels

func (o *MessageEndpointOut) GetChannels() []string

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

func (*MessageEndpointOut) GetChannelsOk

func (o *MessageEndpointOut) GetChannelsOk() (*[]string, bool)

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

func (*MessageEndpointOut) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*MessageEndpointOut) GetCreatedAtOk

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

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

func (*MessageEndpointOut) GetDescription

func (o *MessageEndpointOut) GetDescription() string

GetDescription returns the Description field value

func (*MessageEndpointOut) GetDescriptionOk

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

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

func (*MessageEndpointOut) GetDisabled

func (o *MessageEndpointOut) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*MessageEndpointOut) GetDisabledOk

func (o *MessageEndpointOut) GetDisabledOk() (*bool, bool)

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

func (*MessageEndpointOut) GetFilterTypes

func (o *MessageEndpointOut) GetFilterTypes() []string

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

func (*MessageEndpointOut) GetFilterTypesOk

func (o *MessageEndpointOut) GetFilterTypesOk() (*[]string, bool)

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

func (*MessageEndpointOut) GetId

func (o *MessageEndpointOut) GetId() string

GetId returns the Id field value

func (*MessageEndpointOut) GetIdOk

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

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

func (*MessageEndpointOut) GetNextAttempt

func (o *MessageEndpointOut) GetNextAttempt() time.Time

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

func (*MessageEndpointOut) GetNextAttemptOk

func (o *MessageEndpointOut) GetNextAttemptOk() (*time.Time, bool)

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

func (*MessageEndpointOut) GetRateLimit

func (o *MessageEndpointOut) GetRateLimit() int32

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

func (*MessageEndpointOut) GetRateLimitOk

func (o *MessageEndpointOut) GetRateLimitOk() (*int32, bool)

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

func (*MessageEndpointOut) GetStatus

func (o *MessageEndpointOut) GetStatus() MessageStatus

GetStatus returns the Status field value

func (*MessageEndpointOut) GetStatusOk

func (o *MessageEndpointOut) GetStatusOk() (*MessageStatus, bool)

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

func (*MessageEndpointOut) GetUid

func (o *MessageEndpointOut) GetUid() string

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

func (*MessageEndpointOut) GetUidOk

func (o *MessageEndpointOut) GetUidOk() (*string, bool)

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

func (*MessageEndpointOut) GetUpdatedAt added in v0.84.0

func (o *MessageEndpointOut) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*MessageEndpointOut) GetUpdatedAtOk added in v0.84.0

func (o *MessageEndpointOut) GetUpdatedAtOk() (*time.Time, bool)

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

func (*MessageEndpointOut) GetUrl

func (o *MessageEndpointOut) GetUrl() string

GetUrl returns the Url field value

func (*MessageEndpointOut) GetUrlOk

func (o *MessageEndpointOut) GetUrlOk() (*string, bool)

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

func (*MessageEndpointOut) GetVersion

func (o *MessageEndpointOut) GetVersion() int32

GetVersion returns the Version field value

func (*MessageEndpointOut) GetVersionOk

func (o *MessageEndpointOut) GetVersionOk() (*int32, bool)

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

func (*MessageEndpointOut) HasChannels

func (o *MessageEndpointOut) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*MessageEndpointOut) HasDisabled

func (o *MessageEndpointOut) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*MessageEndpointOut) HasFilterTypes

func (o *MessageEndpointOut) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*MessageEndpointOut) HasNextAttempt

func (o *MessageEndpointOut) HasNextAttempt() bool

HasNextAttempt returns a boolean if a field has been set.

func (*MessageEndpointOut) HasRateLimit

func (o *MessageEndpointOut) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*MessageEndpointOut) HasUid

func (o *MessageEndpointOut) HasUid() bool

HasUid returns a boolean if a field has been set.

func (MessageEndpointOut) MarshalJSON

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

func (*MessageEndpointOut) SetChannels

func (o *MessageEndpointOut) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*MessageEndpointOut) SetCreatedAt

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

SetCreatedAt sets field value

func (*MessageEndpointOut) SetDescription

func (o *MessageEndpointOut) SetDescription(v string)

SetDescription sets field value

func (*MessageEndpointOut) SetDisabled

func (o *MessageEndpointOut) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*MessageEndpointOut) SetFilterTypes

func (o *MessageEndpointOut) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*MessageEndpointOut) SetId

func (o *MessageEndpointOut) SetId(v string)

SetId sets field value

func (*MessageEndpointOut) SetNextAttempt

func (o *MessageEndpointOut) SetNextAttempt(v time.Time)

SetNextAttempt gets a reference to the given NullableTime and assigns it to the NextAttempt field.

func (*MessageEndpointOut) SetNextAttemptNil added in v0.62.0

func (o *MessageEndpointOut) SetNextAttemptNil()

SetNextAttemptNil sets the value for NextAttempt to be an explicit nil

func (*MessageEndpointOut) SetRateLimit

func (o *MessageEndpointOut) SetRateLimit(v int32)

SetRateLimit gets a reference to the given NullableInt32 and assigns it to the RateLimit field.

func (*MessageEndpointOut) SetRateLimitNil added in v0.62.0

func (o *MessageEndpointOut) SetRateLimitNil()

SetRateLimitNil sets the value for RateLimit to be an explicit nil

func (*MessageEndpointOut) SetStatus

func (o *MessageEndpointOut) SetStatus(v MessageStatus)

SetStatus sets field value

func (*MessageEndpointOut) SetUid

func (o *MessageEndpointOut) SetUid(v string)

SetUid gets a reference to the given NullableString and assigns it to the Uid field.

func (*MessageEndpointOut) SetUidNil added in v0.62.0

func (o *MessageEndpointOut) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*MessageEndpointOut) SetUpdatedAt added in v0.84.0

func (o *MessageEndpointOut) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*MessageEndpointOut) SetUrl

func (o *MessageEndpointOut) SetUrl(v string)

SetUrl sets field value

func (*MessageEndpointOut) SetVersion

func (o *MessageEndpointOut) SetVersion(v int32)

SetVersion sets field value

func (*MessageEndpointOut) UnsetNextAttempt added in v0.62.0

func (o *MessageEndpointOut) UnsetNextAttempt()

UnsetNextAttempt ensures that no value is present for NextAttempt, not even an explicit nil

func (*MessageEndpointOut) UnsetRateLimit added in v0.62.0

func (o *MessageEndpointOut) UnsetRateLimit()

UnsetRateLimit ensures that no value is present for RateLimit, not even an explicit nil

func (*MessageEndpointOut) UnsetUid added in v0.62.0

func (o *MessageEndpointOut) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

type MessageIn

type MessageIn struct {
	Application *ApplicationIn `json:"application,omitempty"`
	// List of free-form identifiers that endpoints can filter by
	Channels []string `json:"channels,omitempty"`
	// Optional unique identifier for the message
	EventId NullableString `json:"eventId,omitempty"`
	// The event type's name
	EventType              string                 `json:"eventType"`
	Payload                map[string]interface{} `json:"payload"`
	PayloadRetentionPeriod *int64                 `json:"payloadRetentionPeriod,omitempty"`
}

MessageIn struct for MessageIn

func NewMessageIn

func NewMessageIn(eventType string, payload map[string]interface{}) *MessageIn

NewMessageIn instantiates a new MessageIn 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 NewMessageInWithDefaults

func NewMessageInWithDefaults() *MessageIn

NewMessageInWithDefaults instantiates a new MessageIn 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 (*MessageIn) GetApplication added in v0.81.0

func (o *MessageIn) GetApplication() ApplicationIn

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

func (*MessageIn) GetApplicationOk added in v0.81.0

func (o *MessageIn) GetApplicationOk() (*ApplicationIn, bool)

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

func (*MessageIn) GetChannels

func (o *MessageIn) GetChannels() []string

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

func (*MessageIn) GetChannelsOk

func (o *MessageIn) GetChannelsOk() (*[]string, bool)

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

func (*MessageIn) GetEventId

func (o *MessageIn) GetEventId() string

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

func (*MessageIn) GetEventIdOk

func (o *MessageIn) GetEventIdOk() (*string, bool)

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

func (*MessageIn) GetEventType

func (o *MessageIn) GetEventType() string

GetEventType returns the EventType field value

func (*MessageIn) GetEventTypeOk

func (o *MessageIn) GetEventTypeOk() (*string, bool)

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

func (*MessageIn) GetPayload

func (o *MessageIn) GetPayload() map[string]interface{}

GetPayload returns the Payload field value

func (*MessageIn) GetPayloadOk

func (o *MessageIn) GetPayloadOk() (*map[string]interface{}, bool)

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

func (*MessageIn) GetPayloadRetentionPeriod

func (o *MessageIn) GetPayloadRetentionPeriod() int64

GetPayloadRetentionPeriod returns the PayloadRetentionPeriod field value if set, zero value otherwise.

func (*MessageIn) GetPayloadRetentionPeriodOk

func (o *MessageIn) GetPayloadRetentionPeriodOk() (*int64, bool)

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

func (*MessageIn) HasApplication added in v0.81.0

func (o *MessageIn) HasApplication() bool

HasApplication returns a boolean if a field has been set.

func (*MessageIn) HasChannels

func (o *MessageIn) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*MessageIn) HasEventId

func (o *MessageIn) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*MessageIn) HasPayloadRetentionPeriod

func (o *MessageIn) HasPayloadRetentionPeriod() bool

HasPayloadRetentionPeriod returns a boolean if a field has been set.

func (MessageIn) MarshalJSON

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

func (*MessageIn) SetApplication added in v0.81.0

func (o *MessageIn) SetApplication(v ApplicationIn)

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

func (*MessageIn) SetChannels

func (o *MessageIn) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*MessageIn) SetEventId

func (o *MessageIn) SetEventId(v string)

SetEventId gets a reference to the given NullableString and assigns it to the EventId field.

func (*MessageIn) SetEventIdNil added in v0.62.0

func (o *MessageIn) SetEventIdNil()

SetEventIdNil sets the value for EventId to be an explicit nil

func (*MessageIn) SetEventType

func (o *MessageIn) SetEventType(v string)

SetEventType sets field value

func (*MessageIn) SetPayload

func (o *MessageIn) SetPayload(v map[string]interface{})

SetPayload sets field value

func (*MessageIn) SetPayloadRetentionPeriod

func (o *MessageIn) SetPayloadRetentionPeriod(v int64)

SetPayloadRetentionPeriod gets a reference to the given int64 and assigns it to the PayloadRetentionPeriod field.

func (*MessageIn) UnsetEventId added in v0.62.0

func (o *MessageIn) UnsetEventId()

UnsetEventId ensures that no value is present for EventId, not even an explicit nil

type MessageOut

type MessageOut struct {
	// List of free-form identifiers that endpoints can filter by
	Channels []string `json:"channels,omitempty"`
	// Optional unique identifier for the message
	EventId NullableString `json:"eventId,omitempty"`
	// The event type's name
	EventType string `json:"eventType"`
	// The msg's ID
	Id        string                 `json:"id"`
	Payload   map[string]interface{} `json:"payload"`
	Timestamp time.Time              `json:"timestamp"`
}

MessageOut struct for MessageOut

func NewMessageOut

func NewMessageOut(eventType string, id string, payload map[string]interface{}, timestamp time.Time) *MessageOut

NewMessageOut instantiates a new MessageOut 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 NewMessageOutWithDefaults

func NewMessageOutWithDefaults() *MessageOut

NewMessageOutWithDefaults instantiates a new MessageOut 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 (*MessageOut) GetChannels

func (o *MessageOut) GetChannels() []string

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

func (*MessageOut) GetChannelsOk

func (o *MessageOut) GetChannelsOk() (*[]string, bool)

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

func (*MessageOut) GetEventId

func (o *MessageOut) GetEventId() string

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

func (*MessageOut) GetEventIdOk

func (o *MessageOut) GetEventIdOk() (*string, bool)

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

func (*MessageOut) GetEventType

func (o *MessageOut) GetEventType() string

GetEventType returns the EventType field value

func (*MessageOut) GetEventTypeOk

func (o *MessageOut) GetEventTypeOk() (*string, bool)

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

func (*MessageOut) GetId

func (o *MessageOut) GetId() string

GetId returns the Id field value

func (*MessageOut) GetIdOk

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

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

func (*MessageOut) GetPayload

func (o *MessageOut) GetPayload() map[string]interface{}

GetPayload returns the Payload field value

func (*MessageOut) GetPayloadOk

func (o *MessageOut) GetPayloadOk() (*map[string]interface{}, bool)

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

func (*MessageOut) GetTimestamp

func (o *MessageOut) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*MessageOut) GetTimestampOk

func (o *MessageOut) GetTimestampOk() (*time.Time, bool)

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

func (*MessageOut) HasChannels

func (o *MessageOut) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*MessageOut) HasEventId

func (o *MessageOut) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (MessageOut) MarshalJSON

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

func (*MessageOut) SetChannels

func (o *MessageOut) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*MessageOut) SetEventId

func (o *MessageOut) SetEventId(v string)

SetEventId gets a reference to the given NullableString and assigns it to the EventId field.

func (*MessageOut) SetEventIdNil added in v0.62.0

func (o *MessageOut) SetEventIdNil()

SetEventIdNil sets the value for EventId to be an explicit nil

func (*MessageOut) SetEventType

func (o *MessageOut) SetEventType(v string)

SetEventType sets field value

func (*MessageOut) SetId

func (o *MessageOut) SetId(v string)

SetId sets field value

func (*MessageOut) SetPayload

func (o *MessageOut) SetPayload(v map[string]interface{})

SetPayload sets field value

func (*MessageOut) SetTimestamp

func (o *MessageOut) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*MessageOut) UnsetEventId added in v0.62.0

func (o *MessageOut) UnsetEventId()

UnsetEventId ensures that no value is present for EventId, not even an explicit nil

type MessageRawPayloadOut added in v1.11.0

type MessageRawPayloadOut struct {
	Payload string `json:"payload"`
}

MessageRawPayloadOut struct for MessageRawPayloadOut

func NewMessageRawPayloadOut added in v1.11.0

func NewMessageRawPayloadOut(payload string) *MessageRawPayloadOut

NewMessageRawPayloadOut instantiates a new MessageRawPayloadOut 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 NewMessageRawPayloadOutWithDefaults added in v1.11.0

func NewMessageRawPayloadOutWithDefaults() *MessageRawPayloadOut

NewMessageRawPayloadOutWithDefaults instantiates a new MessageRawPayloadOut 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 (*MessageRawPayloadOut) GetPayload added in v1.11.0

func (o *MessageRawPayloadOut) GetPayload() string

GetPayload returns the Payload field value

func (*MessageRawPayloadOut) GetPayloadOk added in v1.11.0

func (o *MessageRawPayloadOut) GetPayloadOk() (*string, bool)

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

func (MessageRawPayloadOut) MarshalJSON added in v1.11.0

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

func (*MessageRawPayloadOut) SetPayload added in v1.11.0

func (o *MessageRawPayloadOut) SetPayload(v string)

SetPayload sets field value

type MessageStatus

type MessageStatus int32

MessageStatus The sending status of the message: - Success = 0 - Pending = 1 - Fail = 2 - Sending = 3

const (
	MESSAGESTATUS_Success MessageStatus = 0
	MESSAGESTATUS_Pending MessageStatus = 1
	MESSAGESTATUS_Fail    MessageStatus = 2
	MESSAGESTATUS_Sending MessageStatus = 3
)

List of MessageStatus

func NewMessageStatusFromValue

func NewMessageStatusFromValue(v int32) (*MessageStatus, error)

NewMessageStatusFromValue returns a pointer to a valid MessageStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MessageStatus) IsValid

func (v MessageStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MessageStatus) Ptr

func (v MessageStatus) Ptr() *MessageStatus

Ptr returns reference to MessageStatus value

func (*MessageStatus) UnmarshalJSON

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

type NullableAppPortalAccessIn added in v0.75.0

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

func NewNullableAppPortalAccessIn added in v0.75.0

func NewNullableAppPortalAccessIn(val *AppPortalAccessIn) *NullableAppPortalAccessIn

func (NullableAppPortalAccessIn) Get added in v0.75.0

func (NullableAppPortalAccessIn) IsSet added in v0.75.0

func (v NullableAppPortalAccessIn) IsSet() bool

func (NullableAppPortalAccessIn) MarshalJSON added in v0.75.0

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

func (*NullableAppPortalAccessIn) Set added in v0.75.0

func (*NullableAppPortalAccessIn) UnmarshalJSON added in v0.75.0

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

func (*NullableAppPortalAccessIn) Unset added in v0.75.0

func (v *NullableAppPortalAccessIn) Unset()

type NullableAppPortalAccessOut added in v0.75.0

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

func NewNullableAppPortalAccessOut added in v0.75.0

func NewNullableAppPortalAccessOut(val *AppPortalAccessOut) *NullableAppPortalAccessOut

func (NullableAppPortalAccessOut) Get added in v0.75.0

func (NullableAppPortalAccessOut) IsSet added in v0.75.0

func (v NullableAppPortalAccessOut) IsSet() bool

func (NullableAppPortalAccessOut) MarshalJSON added in v0.75.0

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

func (*NullableAppPortalAccessOut) Set added in v0.75.0

func (*NullableAppPortalAccessOut) UnmarshalJSON added in v0.75.0

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

func (*NullableAppPortalAccessOut) Unset added in v0.75.0

func (v *NullableAppPortalAccessOut) Unset()

type NullableAppUsageStatsIn added in v0.84.1

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

func NewNullableAppUsageStatsIn added in v0.84.1

func NewNullableAppUsageStatsIn(val *AppUsageStatsIn) *NullableAppUsageStatsIn

func (NullableAppUsageStatsIn) Get added in v0.84.1

func (NullableAppUsageStatsIn) IsSet added in v0.84.1

func (v NullableAppUsageStatsIn) IsSet() bool

func (NullableAppUsageStatsIn) MarshalJSON added in v0.84.1

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

func (*NullableAppUsageStatsIn) Set added in v0.84.1

func (*NullableAppUsageStatsIn) UnmarshalJSON added in v0.84.1

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

func (*NullableAppUsageStatsIn) Unset added in v0.84.1

func (v *NullableAppUsageStatsIn) Unset()

type NullableAppUsageStatsOut added in v0.84.1

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

func NewNullableAppUsageStatsOut added in v0.84.1

func NewNullableAppUsageStatsOut(val *AppUsageStatsOut) *NullableAppUsageStatsOut

func (NullableAppUsageStatsOut) Get added in v0.84.1

func (NullableAppUsageStatsOut) IsSet added in v0.84.1

func (v NullableAppUsageStatsOut) IsSet() bool

func (NullableAppUsageStatsOut) MarshalJSON added in v0.84.1

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

func (*NullableAppUsageStatsOut) Set added in v0.84.1

func (*NullableAppUsageStatsOut) UnmarshalJSON added in v0.84.1

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

func (*NullableAppUsageStatsOut) Unset added in v0.84.1

func (v *NullableAppUsageStatsOut) Unset()

type NullableApplicationIn

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

func NewNullableApplicationIn

func NewNullableApplicationIn(val *ApplicationIn) *NullableApplicationIn

func (NullableApplicationIn) Get

func (NullableApplicationIn) IsSet

func (v NullableApplicationIn) IsSet() bool

func (NullableApplicationIn) MarshalJSON

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

func (*NullableApplicationIn) Set

func (v *NullableApplicationIn) Set(val *ApplicationIn)

func (*NullableApplicationIn) UnmarshalJSON

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

func (*NullableApplicationIn) Unset

func (v *NullableApplicationIn) Unset()

type NullableApplicationOut

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

func NewNullableApplicationOut

func NewNullableApplicationOut(val *ApplicationOut) *NullableApplicationOut

func (NullableApplicationOut) Get

func (NullableApplicationOut) IsSet

func (v NullableApplicationOut) IsSet() bool

func (NullableApplicationOut) MarshalJSON

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

func (*NullableApplicationOut) Set

func (*NullableApplicationOut) UnmarshalJSON

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

func (*NullableApplicationOut) Unset

func (v *NullableApplicationOut) Unset()

type NullableApplicationPatch added in v0.84.0

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

func NewNullableApplicationPatch added in v0.84.0

func NewNullableApplicationPatch(val *ApplicationPatch) *NullableApplicationPatch

func (NullableApplicationPatch) Get added in v0.84.0

func (NullableApplicationPatch) IsSet added in v0.84.0

func (v NullableApplicationPatch) IsSet() bool

func (NullableApplicationPatch) MarshalJSON added in v0.84.0

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

func (*NullableApplicationPatch) Set added in v0.84.0

func (*NullableApplicationPatch) UnmarshalJSON added in v0.84.0

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

func (*NullableApplicationPatch) Unset added in v0.84.0

func (v *NullableApplicationPatch) Unset()

type NullableApplicationStats added in v0.68.0

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

func NewNullableApplicationStats added in v0.68.0

func NewNullableApplicationStats(val *ApplicationStats) *NullableApplicationStats

func (NullableApplicationStats) Get added in v0.68.0

func (NullableApplicationStats) IsSet added in v0.68.0

func (v NullableApplicationStats) IsSet() bool

func (NullableApplicationStats) MarshalJSON added in v0.68.0

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

func (*NullableApplicationStats) Set added in v0.68.0

func (*NullableApplicationStats) UnmarshalJSON added in v0.68.0

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

func (*NullableApplicationStats) Unset added in v0.68.0

func (v *NullableApplicationStats) Unset()

type NullableApplicationTokenExpireIn added in v0.72.0

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

func NewNullableApplicationTokenExpireIn added in v0.72.0

func NewNullableApplicationTokenExpireIn(val *ApplicationTokenExpireIn) *NullableApplicationTokenExpireIn

func (NullableApplicationTokenExpireIn) Get added in v0.72.0

func (NullableApplicationTokenExpireIn) IsSet added in v0.72.0

func (NullableApplicationTokenExpireIn) MarshalJSON added in v0.72.0

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

func (*NullableApplicationTokenExpireIn) Set added in v0.72.0

func (*NullableApplicationTokenExpireIn) UnmarshalJSON added in v0.72.0

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

func (*NullableApplicationTokenExpireIn) Unset added in v0.72.0

type NullableAttemptStatisticsData

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

func (NullableAttemptStatisticsData) Get

func (NullableAttemptStatisticsData) IsSet

func (NullableAttemptStatisticsData) MarshalJSON

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

func (*NullableAttemptStatisticsData) Set

func (*NullableAttemptStatisticsData) UnmarshalJSON

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

func (*NullableAttemptStatisticsData) Unset

func (v *NullableAttemptStatisticsData) Unset()

type NullableAttemptStatisticsResponse

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

func (NullableAttemptStatisticsResponse) Get

func (NullableAttemptStatisticsResponse) IsSet

func (NullableAttemptStatisticsResponse) MarshalJSON

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

func (*NullableAttemptStatisticsResponse) Set

func (*NullableAttemptStatisticsResponse) UnmarshalJSON

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

func (*NullableAttemptStatisticsResponse) Unset

type NullableBackgroundTaskOut added in v0.84.0

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

func NewNullableBackgroundTaskOut added in v0.84.0

func NewNullableBackgroundTaskOut(val *BackgroundTaskOut) *NullableBackgroundTaskOut

func (NullableBackgroundTaskOut) Get added in v0.84.0

func (NullableBackgroundTaskOut) IsSet added in v0.84.0

func (v NullableBackgroundTaskOut) IsSet() bool

func (NullableBackgroundTaskOut) MarshalJSON added in v0.84.0

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

func (*NullableBackgroundTaskOut) Set added in v0.84.0

func (*NullableBackgroundTaskOut) UnmarshalJSON added in v0.84.0

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

func (*NullableBackgroundTaskOut) Unset added in v0.84.0

func (v *NullableBackgroundTaskOut) Unset()

type NullableBackgroundTaskOutCommon added in v0.84.0

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

func NewNullableBackgroundTaskOutCommon added in v0.84.0

func NewNullableBackgroundTaskOutCommon(val *BackgroundTaskOutCommon) *NullableBackgroundTaskOutCommon

func (NullableBackgroundTaskOutCommon) Get added in v0.84.0

func (NullableBackgroundTaskOutCommon) IsSet added in v0.84.0

func (NullableBackgroundTaskOutCommon) MarshalJSON added in v0.84.0

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

func (*NullableBackgroundTaskOutCommon) Set added in v0.84.0

func (*NullableBackgroundTaskOutCommon) UnmarshalJSON added in v0.84.0

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

func (*NullableBackgroundTaskOutCommon) Unset added in v0.84.0

type NullableBackgroundTaskStatus added in v0.84.0

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

func NewNullableBackgroundTaskStatus added in v0.84.0

func NewNullableBackgroundTaskStatus(val *BackgroundTaskStatus) *NullableBackgroundTaskStatus

func (NullableBackgroundTaskStatus) Get added in v0.84.0

func (NullableBackgroundTaskStatus) IsSet added in v0.84.0

func (NullableBackgroundTaskStatus) MarshalJSON added in v0.84.0

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

func (*NullableBackgroundTaskStatus) Set added in v0.84.0

func (*NullableBackgroundTaskStatus) UnmarshalJSON added in v0.84.0

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

func (*NullableBackgroundTaskStatus) Unset added in v0.84.0

func (v *NullableBackgroundTaskStatus) Unset()

type NullableBackgroundTaskType added in v0.84.0

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

func NewNullableBackgroundTaskType added in v0.84.0

func NewNullableBackgroundTaskType(val *BackgroundTaskType) *NullableBackgroundTaskType

func (NullableBackgroundTaskType) Get added in v0.84.0

func (NullableBackgroundTaskType) IsSet added in v0.84.0

func (v NullableBackgroundTaskType) IsSet() bool

func (NullableBackgroundTaskType) MarshalJSON added in v0.84.0

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

func (*NullableBackgroundTaskType) Set added in v0.84.0

func (*NullableBackgroundTaskType) UnmarshalJSON added in v0.84.0

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

func (*NullableBackgroundTaskType) Unset added in v0.84.0

func (v *NullableBackgroundTaskType) 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 NullableBorderRadiusConfig

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

func NewNullableBorderRadiusConfig

func NewNullableBorderRadiusConfig(val *BorderRadiusConfig) *NullableBorderRadiusConfig

func (NullableBorderRadiusConfig) Get

func (NullableBorderRadiusConfig) IsSet

func (v NullableBorderRadiusConfig) IsSet() bool

func (NullableBorderRadiusConfig) MarshalJSON

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

func (*NullableBorderRadiusConfig) Set

func (*NullableBorderRadiusConfig) UnmarshalJSON

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

func (*NullableBorderRadiusConfig) Unset

func (v *NullableBorderRadiusConfig) Unset()

type NullableBorderRadiusEnum

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

func NewNullableBorderRadiusEnum

func NewNullableBorderRadiusEnum(val *BorderRadiusEnum) *NullableBorderRadiusEnum

func (NullableBorderRadiusEnum) Get

func (NullableBorderRadiusEnum) IsSet

func (v NullableBorderRadiusEnum) IsSet() bool

func (NullableBorderRadiusEnum) MarshalJSON

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

func (*NullableBorderRadiusEnum) Set

func (*NullableBorderRadiusEnum) UnmarshalJSON

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

func (*NullableBorderRadiusEnum) Unset

func (v *NullableBorderRadiusEnum) Unset()

type NullableCalculateAppStatsIn added in v0.84.0

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

func NewNullableCalculateAppStatsIn added in v0.84.0

func NewNullableCalculateAppStatsIn(val *CalculateAppStatsIn) *NullableCalculateAppStatsIn

func (NullableCalculateAppStatsIn) Get added in v0.84.0

func (NullableCalculateAppStatsIn) IsSet added in v0.84.0

func (NullableCalculateAppStatsIn) MarshalJSON added in v0.84.0

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

func (*NullableCalculateAppStatsIn) Set added in v0.84.0

func (*NullableCalculateAppStatsIn) UnmarshalJSON added in v0.84.0

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

func (*NullableCalculateAppStatsIn) Unset added in v0.84.0

func (v *NullableCalculateAppStatsIn) Unset()

type NullableCustomColorPalette added in v0.62.0

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

func NewNullableCustomColorPalette added in v0.62.0

func NewNullableCustomColorPalette(val *CustomColorPalette) *NullableCustomColorPalette

func (NullableCustomColorPalette) Get added in v0.62.0

func (NullableCustomColorPalette) IsSet added in v0.62.0

func (v NullableCustomColorPalette) IsSet() bool

func (NullableCustomColorPalette) MarshalJSON added in v0.62.0

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

func (*NullableCustomColorPalette) Set added in v0.62.0

func (*NullableCustomColorPalette) UnmarshalJSON added in v0.62.0

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

func (*NullableCustomColorPalette) Unset added in v0.62.0

func (v *NullableCustomColorPalette) Unset()

type NullableCustomThemeOverride

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

func NewNullableCustomThemeOverride

func NewNullableCustomThemeOverride(val *CustomThemeOverride) *NullableCustomThemeOverride

func (NullableCustomThemeOverride) Get

func (NullableCustomThemeOverride) IsSet

func (NullableCustomThemeOverride) MarshalJSON

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

func (*NullableCustomThemeOverride) Set

func (*NullableCustomThemeOverride) UnmarshalJSON

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

func (*NullableCustomThemeOverride) Unset

func (v *NullableCustomThemeOverride) Unset()

type NullableDashboardAccessIn added in v0.75.0

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

func NewNullableDashboardAccessIn added in v0.75.0

func NewNullableDashboardAccessIn(val *DashboardAccessIn) *NullableDashboardAccessIn

func (NullableDashboardAccessIn) Get added in v0.75.0

func (NullableDashboardAccessIn) IsSet added in v0.75.0

func (v NullableDashboardAccessIn) IsSet() bool

func (NullableDashboardAccessIn) MarshalJSON added in v0.75.0

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

func (*NullableDashboardAccessIn) Set added in v0.75.0

func (*NullableDashboardAccessIn) UnmarshalJSON added in v0.75.0

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

func (*NullableDashboardAccessIn) Unset added in v0.75.0

func (v *NullableDashboardAccessIn) Unset()

type NullableDashboardAccessOut

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

func NewNullableDashboardAccessOut

func NewNullableDashboardAccessOut(val *DashboardAccessOut) *NullableDashboardAccessOut

func (NullableDashboardAccessOut) Get

func (NullableDashboardAccessOut) IsSet

func (v NullableDashboardAccessOut) IsSet() bool

func (NullableDashboardAccessOut) MarshalJSON

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

func (*NullableDashboardAccessOut) Set

func (*NullableDashboardAccessOut) UnmarshalJSON

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

func (*NullableDashboardAccessOut) Unset

func (v *NullableDashboardAccessOut) Unset()

type NullableEndpointCreatedEvent

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

func NewNullableEndpointCreatedEvent

func NewNullableEndpointCreatedEvent(val *EndpointCreatedEvent) *NullableEndpointCreatedEvent

func (NullableEndpointCreatedEvent) Get

func (NullableEndpointCreatedEvent) IsSet

func (NullableEndpointCreatedEvent) MarshalJSON

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

func (*NullableEndpointCreatedEvent) Set

func (*NullableEndpointCreatedEvent) UnmarshalJSON

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

func (*NullableEndpointCreatedEvent) Unset

func (v *NullableEndpointCreatedEvent) Unset()

type NullableEndpointCreatedEventData

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

func (NullableEndpointCreatedEventData) Get

func (NullableEndpointCreatedEventData) IsSet

func (NullableEndpointCreatedEventData) MarshalJSON

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

func (*NullableEndpointCreatedEventData) Set

func (*NullableEndpointCreatedEventData) UnmarshalJSON

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

func (*NullableEndpointCreatedEventData) Unset

type NullableEndpointDeletedEvent

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

func NewNullableEndpointDeletedEvent

func NewNullableEndpointDeletedEvent(val *EndpointDeletedEvent) *NullableEndpointDeletedEvent

func (NullableEndpointDeletedEvent) Get

func (NullableEndpointDeletedEvent) IsSet

func (NullableEndpointDeletedEvent) MarshalJSON

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

func (*NullableEndpointDeletedEvent) Set

func (*NullableEndpointDeletedEvent) UnmarshalJSON

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

func (*NullableEndpointDeletedEvent) Unset

func (v *NullableEndpointDeletedEvent) Unset()

type NullableEndpointDeletedEventData

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

func (NullableEndpointDeletedEventData) Get

func (NullableEndpointDeletedEventData) IsSet

func (NullableEndpointDeletedEventData) MarshalJSON

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

func (*NullableEndpointDeletedEventData) Set

func (*NullableEndpointDeletedEventData) UnmarshalJSON

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

func (*NullableEndpointDeletedEventData) Unset

type NullableEndpointDisabledEvent

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

func (NullableEndpointDisabledEvent) Get

func (NullableEndpointDisabledEvent) IsSet

func (NullableEndpointDisabledEvent) MarshalJSON

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

func (*NullableEndpointDisabledEvent) Set

func (*NullableEndpointDisabledEvent) UnmarshalJSON

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

func (*NullableEndpointDisabledEvent) Unset

func (v *NullableEndpointDisabledEvent) Unset()

type NullableEndpointDisabledEventData

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

func (NullableEndpointDisabledEventData) Get

func (NullableEndpointDisabledEventData) IsSet

func (NullableEndpointDisabledEventData) MarshalJSON

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

func (*NullableEndpointDisabledEventData) Set

func (*NullableEndpointDisabledEventData) UnmarshalJSON

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

func (*NullableEndpointDisabledEventData) Unset

type NullableEndpointHeadersIn

type NullableEndpointHeadersIn struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointHeadersIn

func NewNullableEndpointHeadersIn(val *EndpointHeadersIn) *NullableEndpointHeadersIn

func (NullableEndpointHeadersIn) Get

func (NullableEndpointHeadersIn) IsSet

func (v NullableEndpointHeadersIn) IsSet() bool

func (NullableEndpointHeadersIn) MarshalJSON

func (v NullableEndpointHeadersIn) MarshalJSON() ([]byte, error)

func (*NullableEndpointHeadersIn) Set

func (*NullableEndpointHeadersIn) UnmarshalJSON

func (v *NullableEndpointHeadersIn) UnmarshalJSON(src []byte) error

func (*NullableEndpointHeadersIn) Unset

func (v *NullableEndpointHeadersIn) Unset()

type NullableEndpointHeadersOut

type NullableEndpointHeadersOut struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointHeadersOut

func NewNullableEndpointHeadersOut(val *EndpointHeadersOut) *NullableEndpointHeadersOut

func (NullableEndpointHeadersOut) Get

func (NullableEndpointHeadersOut) IsSet

func (v NullableEndpointHeadersOut) IsSet() bool

func (NullableEndpointHeadersOut) MarshalJSON

func (v NullableEndpointHeadersOut) MarshalJSON() ([]byte, error)

func (*NullableEndpointHeadersOut) Set

func (*NullableEndpointHeadersOut) UnmarshalJSON

func (v *NullableEndpointHeadersOut) UnmarshalJSON(src []byte) error

func (*NullableEndpointHeadersOut) Unset

func (v *NullableEndpointHeadersOut) Unset()

type NullableEndpointHeadersPatchIn added in v0.57.1

type NullableEndpointHeadersPatchIn struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointHeadersPatchIn added in v0.57.1

func NewNullableEndpointHeadersPatchIn(val *EndpointHeadersPatchIn) *NullableEndpointHeadersPatchIn

func (NullableEndpointHeadersPatchIn) Get added in v0.57.1

func (NullableEndpointHeadersPatchIn) IsSet added in v0.57.1

func (NullableEndpointHeadersPatchIn) MarshalJSON added in v0.57.1

func (v NullableEndpointHeadersPatchIn) MarshalJSON() ([]byte, error)

func (*NullableEndpointHeadersPatchIn) Set added in v0.57.1

func (*NullableEndpointHeadersPatchIn) UnmarshalJSON added in v0.57.1

func (v *NullableEndpointHeadersPatchIn) UnmarshalJSON(src []byte) error

func (*NullableEndpointHeadersPatchIn) Unset added in v0.57.1

func (v *NullableEndpointHeadersPatchIn) Unset()

type NullableEndpointIn

type NullableEndpointIn struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointIn

func NewNullableEndpointIn(val *EndpointIn) *NullableEndpointIn

func (NullableEndpointIn) Get

func (v NullableEndpointIn) Get() *EndpointIn

func (NullableEndpointIn) IsSet

func (v NullableEndpointIn) IsSet() bool

func (NullableEndpointIn) MarshalJSON

func (v NullableEndpointIn) MarshalJSON() ([]byte, error)

func (*NullableEndpointIn) Set

func (v *NullableEndpointIn) Set(val *EndpointIn)

func (*NullableEndpointIn) UnmarshalJSON

func (v *NullableEndpointIn) UnmarshalJSON(src []byte) error

func (*NullableEndpointIn) Unset

func (v *NullableEndpointIn) Unset()

type NullableEndpointMessageOut

type NullableEndpointMessageOut struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointMessageOut

func NewNullableEndpointMessageOut(val *EndpointMessageOut) *NullableEndpointMessageOut

func (NullableEndpointMessageOut) Get

func (NullableEndpointMessageOut) IsSet

func (v NullableEndpointMessageOut) IsSet() bool

func (NullableEndpointMessageOut) MarshalJSON

func (v NullableEndpointMessageOut) MarshalJSON() ([]byte, error)

func (*NullableEndpointMessageOut) Set

func (*NullableEndpointMessageOut) UnmarshalJSON

func (v *NullableEndpointMessageOut) UnmarshalJSON(src []byte) error

func (*NullableEndpointMessageOut) Unset

func (v *NullableEndpointMessageOut) Unset()

type NullableEndpointOut

type NullableEndpointOut struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointOut

func NewNullableEndpointOut(val *EndpointOut) *NullableEndpointOut

func (NullableEndpointOut) Get

func (NullableEndpointOut) IsSet

func (v NullableEndpointOut) IsSet() bool

func (NullableEndpointOut) MarshalJSON

func (v NullableEndpointOut) MarshalJSON() ([]byte, error)

func (*NullableEndpointOut) Set

func (v *NullableEndpointOut) Set(val *EndpointOut)

func (*NullableEndpointOut) UnmarshalJSON

func (v *NullableEndpointOut) UnmarshalJSON(src []byte) error

func (*NullableEndpointOut) Unset

func (v *NullableEndpointOut) Unset()

type NullableEndpointPatch added in v0.84.0

type NullableEndpointPatch struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointPatch added in v0.84.0

func NewNullableEndpointPatch(val *EndpointPatch) *NullableEndpointPatch

func (NullableEndpointPatch) Get added in v0.84.0

func (NullableEndpointPatch) IsSet added in v0.84.0

func (v NullableEndpointPatch) IsSet() bool

func (NullableEndpointPatch) MarshalJSON added in v0.84.0

func (v NullableEndpointPatch) MarshalJSON() ([]byte, error)

func (*NullableEndpointPatch) Set added in v0.84.0

func (v *NullableEndpointPatch) Set(val *EndpointPatch)

func (*NullableEndpointPatch) UnmarshalJSON added in v0.84.0

func (v *NullableEndpointPatch) UnmarshalJSON(src []byte) error

func (*NullableEndpointPatch) Unset added in v0.84.0

func (v *NullableEndpointPatch) Unset()

type NullableEndpointSecretOut

type NullableEndpointSecretOut struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointSecretOut

func NewNullableEndpointSecretOut(val *EndpointSecretOut) *NullableEndpointSecretOut

func (NullableEndpointSecretOut) Get

func (NullableEndpointSecretOut) IsSet

func (v NullableEndpointSecretOut) IsSet() bool

func (NullableEndpointSecretOut) MarshalJSON

func (v NullableEndpointSecretOut) MarshalJSON() ([]byte, error)

func (*NullableEndpointSecretOut) Set

func (*NullableEndpointSecretOut) UnmarshalJSON

func (v *NullableEndpointSecretOut) UnmarshalJSON(src []byte) error

func (*NullableEndpointSecretOut) Unset

func (v *NullableEndpointSecretOut) Unset()

type NullableEndpointSecretRotateIn

type NullableEndpointSecretRotateIn struct {
	// contains filtered or unexported fields
}

func (NullableEndpointSecretRotateIn) Get

func (NullableEndpointSecretRotateIn) IsSet

func (NullableEndpointSecretRotateIn) MarshalJSON

func (v NullableEndpointSecretRotateIn) MarshalJSON() ([]byte, error)

func (*NullableEndpointSecretRotateIn) Set

func (*NullableEndpointSecretRotateIn) UnmarshalJSON

func (v *NullableEndpointSecretRotateIn) UnmarshalJSON(src []byte) error

func (*NullableEndpointSecretRotateIn) Unset

func (v *NullableEndpointSecretRotateIn) Unset()

type NullableEndpointStats

type NullableEndpointStats struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointStats

func NewNullableEndpointStats(val *EndpointStats) *NullableEndpointStats

func (NullableEndpointStats) Get

func (NullableEndpointStats) IsSet

func (v NullableEndpointStats) IsSet() bool

func (NullableEndpointStats) MarshalJSON

func (v NullableEndpointStats) MarshalJSON() ([]byte, error)

func (*NullableEndpointStats) Set

func (v *NullableEndpointStats) Set(val *EndpointStats)

func (*NullableEndpointStats) UnmarshalJSON

func (v *NullableEndpointStats) UnmarshalJSON(src []byte) error

func (*NullableEndpointStats) Unset

func (v *NullableEndpointStats) Unset()

type NullableEndpointTransformationIn added in v0.66.0

type NullableEndpointTransformationIn struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointTransformationIn added in v0.66.0

func NewNullableEndpointTransformationIn(val *EndpointTransformationIn) *NullableEndpointTransformationIn

func (NullableEndpointTransformationIn) Get added in v0.66.0

func (NullableEndpointTransformationIn) IsSet added in v0.66.0

func (NullableEndpointTransformationIn) MarshalJSON added in v0.66.0

func (v NullableEndpointTransformationIn) MarshalJSON() ([]byte, error)

func (*NullableEndpointTransformationIn) Set added in v0.66.0

func (*NullableEndpointTransformationIn) UnmarshalJSON added in v0.66.0

func (v *NullableEndpointTransformationIn) UnmarshalJSON(src []byte) error

func (*NullableEndpointTransformationIn) Unset added in v0.66.0

type NullableEndpointTransformationOut added in v0.66.0

type NullableEndpointTransformationOut struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointTransformationOut added in v0.66.0

func NewNullableEndpointTransformationOut(val *EndpointTransformationOut) *NullableEndpointTransformationOut

func (NullableEndpointTransformationOut) Get added in v0.66.0

func (NullableEndpointTransformationOut) IsSet added in v0.66.0

func (NullableEndpointTransformationOut) MarshalJSON added in v0.66.0

func (v NullableEndpointTransformationOut) MarshalJSON() ([]byte, error)

func (*NullableEndpointTransformationOut) Set added in v0.66.0

func (*NullableEndpointTransformationOut) UnmarshalJSON added in v0.66.0

func (v *NullableEndpointTransformationOut) UnmarshalJSON(src []byte) error

func (*NullableEndpointTransformationOut) Unset added in v0.66.0

type NullableEndpointTransformationSimulateIn added in v0.66.0

type NullableEndpointTransformationSimulateIn struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointTransformationSimulateIn added in v0.66.0

func NewNullableEndpointTransformationSimulateIn(val *EndpointTransformationSimulateIn) *NullableEndpointTransformationSimulateIn

func (NullableEndpointTransformationSimulateIn) Get added in v0.66.0

func (NullableEndpointTransformationSimulateIn) IsSet added in v0.66.0

func (NullableEndpointTransformationSimulateIn) MarshalJSON added in v0.66.0

func (*NullableEndpointTransformationSimulateIn) Set added in v0.66.0

func (*NullableEndpointTransformationSimulateIn) UnmarshalJSON added in v0.66.0

func (v *NullableEndpointTransformationSimulateIn) UnmarshalJSON(src []byte) error

func (*NullableEndpointTransformationSimulateIn) Unset added in v0.66.0

type NullableEndpointTransformationSimulateOut added in v0.66.0

type NullableEndpointTransformationSimulateOut struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointTransformationSimulateOut added in v0.66.0

func NewNullableEndpointTransformationSimulateOut(val *EndpointTransformationSimulateOut) *NullableEndpointTransformationSimulateOut

func (NullableEndpointTransformationSimulateOut) Get added in v0.66.0

func (NullableEndpointTransformationSimulateOut) IsSet added in v0.66.0

func (NullableEndpointTransformationSimulateOut) MarshalJSON added in v0.66.0

func (*NullableEndpointTransformationSimulateOut) Set added in v0.66.0

func (*NullableEndpointTransformationSimulateOut) UnmarshalJSON added in v0.66.0

func (v *NullableEndpointTransformationSimulateOut) UnmarshalJSON(src []byte) error

func (*NullableEndpointTransformationSimulateOut) Unset added in v0.66.0

type NullableEndpointUpdate

type NullableEndpointUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointUpdate

func NewNullableEndpointUpdate(val *EndpointUpdate) *NullableEndpointUpdate

func (NullableEndpointUpdate) Get

func (NullableEndpointUpdate) IsSet

func (v NullableEndpointUpdate) IsSet() bool

func (NullableEndpointUpdate) MarshalJSON

func (v NullableEndpointUpdate) MarshalJSON() ([]byte, error)

func (*NullableEndpointUpdate) Set

func (*NullableEndpointUpdate) UnmarshalJSON

func (v *NullableEndpointUpdate) UnmarshalJSON(src []byte) error

func (*NullableEndpointUpdate) Unset

func (v *NullableEndpointUpdate) Unset()

type NullableEndpointUpdatedEvent

type NullableEndpointUpdatedEvent struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointUpdatedEvent

func NewNullableEndpointUpdatedEvent(val *EndpointUpdatedEvent) *NullableEndpointUpdatedEvent

func (NullableEndpointUpdatedEvent) Get

func (NullableEndpointUpdatedEvent) IsSet

func (NullableEndpointUpdatedEvent) MarshalJSON

func (v NullableEndpointUpdatedEvent) MarshalJSON() ([]byte, error)

func (*NullableEndpointUpdatedEvent) Set

func (*NullableEndpointUpdatedEvent) UnmarshalJSON

func (v *NullableEndpointUpdatedEvent) UnmarshalJSON(src []byte) error

func (*NullableEndpointUpdatedEvent) Unset

func (v *NullableEndpointUpdatedEvent) Unset()

type NullableEndpointUpdatedEventData

type NullableEndpointUpdatedEventData struct {
	// contains filtered or unexported fields
}

func (NullableEndpointUpdatedEventData) Get

func (NullableEndpointUpdatedEventData) IsSet

func (NullableEndpointUpdatedEventData) MarshalJSON

func (v NullableEndpointUpdatedEventData) MarshalJSON() ([]byte, error)

func (*NullableEndpointUpdatedEventData) Set

func (*NullableEndpointUpdatedEventData) UnmarshalJSON

func (v *NullableEndpointUpdatedEventData) UnmarshalJSON(src []byte) error

func (*NullableEndpointUpdatedEventData) Unset

type NullableEnvironmentIn

type NullableEnvironmentIn struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentIn

func NewNullableEnvironmentIn(val *EnvironmentIn) *NullableEnvironmentIn

func (NullableEnvironmentIn) Get

func (NullableEnvironmentIn) IsSet

func (v NullableEnvironmentIn) IsSet() bool

func (NullableEnvironmentIn) MarshalJSON

func (v NullableEnvironmentIn) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentIn) Set

func (v *NullableEnvironmentIn) Set(val *EnvironmentIn)

func (*NullableEnvironmentIn) UnmarshalJSON

func (v *NullableEnvironmentIn) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentIn) Unset

func (v *NullableEnvironmentIn) Unset()

type NullableEnvironmentOut

type NullableEnvironmentOut struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentOut

func NewNullableEnvironmentOut(val *EnvironmentOut) *NullableEnvironmentOut

func (NullableEnvironmentOut) Get

func (NullableEnvironmentOut) IsSet

func (v NullableEnvironmentOut) IsSet() bool

func (NullableEnvironmentOut) MarshalJSON

func (v NullableEnvironmentOut) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentOut) Set

func (*NullableEnvironmentOut) UnmarshalJSON

func (v *NullableEnvironmentOut) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentOut) Unset

func (v *NullableEnvironmentOut) Unset()

type NullableEnvironmentSettingsOut

type NullableEnvironmentSettingsOut struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentSettingsOut) Get

func (NullableEnvironmentSettingsOut) IsSet

func (NullableEnvironmentSettingsOut) MarshalJSON

func (v NullableEnvironmentSettingsOut) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentSettingsOut) Set

func (*NullableEnvironmentSettingsOut) UnmarshalJSON

func (v *NullableEnvironmentSettingsOut) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentSettingsOut) Unset

func (v *NullableEnvironmentSettingsOut) Unset()

type NullableEventExampleIn

type NullableEventExampleIn struct {
	// contains filtered or unexported fields
}

func NewNullableEventExampleIn

func NewNullableEventExampleIn(val *EventExampleIn) *NullableEventExampleIn

func (NullableEventExampleIn) Get

func (NullableEventExampleIn) IsSet

func (v NullableEventExampleIn) IsSet() bool

func (NullableEventExampleIn) MarshalJSON

func (v NullableEventExampleIn) MarshalJSON() ([]byte, error)

func (*NullableEventExampleIn) Set

func (*NullableEventExampleIn) UnmarshalJSON

func (v *NullableEventExampleIn) UnmarshalJSON(src []byte) error

func (*NullableEventExampleIn) Unset

func (v *NullableEventExampleIn) Unset()

type NullableEventTypeExampleOut

type NullableEventTypeExampleOut struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypeExampleOut

func NewNullableEventTypeExampleOut(val *EventTypeExampleOut) *NullableEventTypeExampleOut

func (NullableEventTypeExampleOut) Get

func (NullableEventTypeExampleOut) IsSet

func (NullableEventTypeExampleOut) MarshalJSON

func (v NullableEventTypeExampleOut) MarshalJSON() ([]byte, error)

func (*NullableEventTypeExampleOut) Set

func (*NullableEventTypeExampleOut) UnmarshalJSON

func (v *NullableEventTypeExampleOut) UnmarshalJSON(src []byte) error

func (*NullableEventTypeExampleOut) Unset

func (v *NullableEventTypeExampleOut) Unset()

type NullableEventTypeImportOpenApiIn added in v1.11.0

type NullableEventTypeImportOpenApiIn struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypeImportOpenApiIn added in v1.11.0

func NewNullableEventTypeImportOpenApiIn(val *EventTypeImportOpenApiIn) *NullableEventTypeImportOpenApiIn

func (NullableEventTypeImportOpenApiIn) Get added in v1.11.0

func (NullableEventTypeImportOpenApiIn) IsSet added in v1.11.0

func (NullableEventTypeImportOpenApiIn) MarshalJSON added in v1.11.0

func (v NullableEventTypeImportOpenApiIn) MarshalJSON() ([]byte, error)

func (*NullableEventTypeImportOpenApiIn) Set added in v1.11.0

func (*NullableEventTypeImportOpenApiIn) UnmarshalJSON added in v1.11.0

func (v *NullableEventTypeImportOpenApiIn) UnmarshalJSON(src []byte) error

func (*NullableEventTypeImportOpenApiIn) Unset added in v1.11.0

type NullableEventTypeImportOpenApiOut added in v1.11.0

type NullableEventTypeImportOpenApiOut struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypeImportOpenApiOut added in v1.11.0

func NewNullableEventTypeImportOpenApiOut(val *EventTypeImportOpenApiOut) *NullableEventTypeImportOpenApiOut

func (NullableEventTypeImportOpenApiOut) Get added in v1.11.0

func (NullableEventTypeImportOpenApiOut) IsSet added in v1.11.0

func (NullableEventTypeImportOpenApiOut) MarshalJSON added in v1.11.0

func (v NullableEventTypeImportOpenApiOut) MarshalJSON() ([]byte, error)

func (*NullableEventTypeImportOpenApiOut) Set added in v1.11.0

func (*NullableEventTypeImportOpenApiOut) UnmarshalJSON added in v1.11.0

func (v *NullableEventTypeImportOpenApiOut) UnmarshalJSON(src []byte) error

func (*NullableEventTypeImportOpenApiOut) Unset added in v1.11.0

type NullableEventTypeImportOpenApiOutData added in v1.11.0

type NullableEventTypeImportOpenApiOutData struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypeImportOpenApiOutData added in v1.11.0

func NewNullableEventTypeImportOpenApiOutData(val *EventTypeImportOpenApiOutData) *NullableEventTypeImportOpenApiOutData

func (NullableEventTypeImportOpenApiOutData) Get added in v1.11.0

func (NullableEventTypeImportOpenApiOutData) IsSet added in v1.11.0

func (NullableEventTypeImportOpenApiOutData) MarshalJSON added in v1.11.0

func (v NullableEventTypeImportOpenApiOutData) MarshalJSON() ([]byte, error)

func (*NullableEventTypeImportOpenApiOutData) Set added in v1.11.0

func (*NullableEventTypeImportOpenApiOutData) UnmarshalJSON added in v1.11.0

func (v *NullableEventTypeImportOpenApiOutData) UnmarshalJSON(src []byte) error

func (*NullableEventTypeImportOpenApiOutData) Unset added in v1.11.0

type NullableEventTypeIn

type NullableEventTypeIn struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypeIn

func NewNullableEventTypeIn(val *EventTypeIn) *NullableEventTypeIn

func (NullableEventTypeIn) Get

func (NullableEventTypeIn) IsSet

func (v NullableEventTypeIn) IsSet() bool

func (NullableEventTypeIn) MarshalJSON

func (v NullableEventTypeIn) MarshalJSON() ([]byte, error)

func (*NullableEventTypeIn) Set

func (v *NullableEventTypeIn) Set(val *EventTypeIn)

func (*NullableEventTypeIn) UnmarshalJSON

func (v *NullableEventTypeIn) UnmarshalJSON(src []byte) error

func (*NullableEventTypeIn) Unset

func (v *NullableEventTypeIn) Unset()

type NullableEventTypeOut

type NullableEventTypeOut struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypeOut

func NewNullableEventTypeOut(val *EventTypeOut) *NullableEventTypeOut

func (NullableEventTypeOut) Get

func (NullableEventTypeOut) IsSet

func (v NullableEventTypeOut) IsSet() bool

func (NullableEventTypeOut) MarshalJSON

func (v NullableEventTypeOut) MarshalJSON() ([]byte, error)

func (*NullableEventTypeOut) Set

func (v *NullableEventTypeOut) Set(val *EventTypeOut)

func (*NullableEventTypeOut) UnmarshalJSON

func (v *NullableEventTypeOut) UnmarshalJSON(src []byte) error

func (*NullableEventTypeOut) Unset

func (v *NullableEventTypeOut) Unset()

type NullableEventTypePatch added in v0.84.0

type NullableEventTypePatch struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypePatch added in v0.84.0

func NewNullableEventTypePatch(val *EventTypePatch) *NullableEventTypePatch

func (NullableEventTypePatch) Get added in v0.84.0

func (NullableEventTypePatch) IsSet added in v0.84.0

func (v NullableEventTypePatch) IsSet() bool

func (NullableEventTypePatch) MarshalJSON added in v0.84.0

func (v NullableEventTypePatch) MarshalJSON() ([]byte, error)

func (*NullableEventTypePatch) Set added in v0.84.0

func (*NullableEventTypePatch) UnmarshalJSON added in v0.84.0

func (v *NullableEventTypePatch) UnmarshalJSON(src []byte) error

func (*NullableEventTypePatch) Unset added in v0.84.0

func (v *NullableEventTypePatch) Unset()

type NullableEventTypeSchemaIn

type NullableEventTypeSchemaIn struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypeSchemaIn

func NewNullableEventTypeSchemaIn(val *EventTypeSchemaIn) *NullableEventTypeSchemaIn

func (NullableEventTypeSchemaIn) Get

func (NullableEventTypeSchemaIn) IsSet

func (v NullableEventTypeSchemaIn) IsSet() bool

func (NullableEventTypeSchemaIn) MarshalJSON

func (v NullableEventTypeSchemaIn) MarshalJSON() ([]byte, error)

func (*NullableEventTypeSchemaIn) Set

func (*NullableEventTypeSchemaIn) UnmarshalJSON

func (v *NullableEventTypeSchemaIn) UnmarshalJSON(src []byte) error

func (*NullableEventTypeSchemaIn) Unset

func (v *NullableEventTypeSchemaIn) Unset()

type NullableEventTypeUpdate

type NullableEventTypeUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableEventTypeUpdate

func NewNullableEventTypeUpdate(val *EventTypeUpdate) *NullableEventTypeUpdate

func (NullableEventTypeUpdate) Get

func (NullableEventTypeUpdate) IsSet

func (v NullableEventTypeUpdate) IsSet() bool

func (NullableEventTypeUpdate) MarshalJSON

func (v NullableEventTypeUpdate) MarshalJSON() ([]byte, error)

func (*NullableEventTypeUpdate) Set

func (*NullableEventTypeUpdate) UnmarshalJSON

func (v *NullableEventTypeUpdate) UnmarshalJSON(src []byte) error

func (*NullableEventTypeUpdate) Unset

func (v *NullableEventTypeUpdate) 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 NullableFontSizeConfig

type NullableFontSizeConfig struct {
	// contains filtered or unexported fields
}

func NewNullableFontSizeConfig

func NewNullableFontSizeConfig(val *FontSizeConfig) *NullableFontSizeConfig

func (NullableFontSizeConfig) Get

func (NullableFontSizeConfig) IsSet

func (v NullableFontSizeConfig) IsSet() bool

func (NullableFontSizeConfig) MarshalJSON

func (v NullableFontSizeConfig) MarshalJSON() ([]byte, error)

func (*NullableFontSizeConfig) Set

func (*NullableFontSizeConfig) UnmarshalJSON

func (v *NullableFontSizeConfig) UnmarshalJSON(src []byte) error

func (*NullableFontSizeConfig) Unset

func (v *NullableFontSizeConfig) Unset()

type NullableHTTPValidationError

type NullableHTTPValidationError struct {
	// contains filtered or unexported fields
}

func NewNullableHTTPValidationError

func NewNullableHTTPValidationError(val *HTTPValidationError) *NullableHTTPValidationError

func (NullableHTTPValidationError) Get

func (NullableHTTPValidationError) IsSet

func (NullableHTTPValidationError) MarshalJSON

func (v NullableHTTPValidationError) MarshalJSON() ([]byte, error)

func (*NullableHTTPValidationError) Set

func (*NullableHTTPValidationError) UnmarshalJSON

func (v *NullableHTTPValidationError) UnmarshalJSON(src []byte) error

func (*NullableHTTPValidationError) Unset

func (v *NullableHTTPValidationError) Unset()

type NullableHttpErrorOut

type NullableHttpErrorOut struct {
	// contains filtered or unexported fields
}

func NewNullableHttpErrorOut

func NewNullableHttpErrorOut(val *HttpErrorOut) *NullableHttpErrorOut

func (NullableHttpErrorOut) Get

func (NullableHttpErrorOut) IsSet

func (v NullableHttpErrorOut) IsSet() bool

func (NullableHttpErrorOut) MarshalJSON

func (v NullableHttpErrorOut) MarshalJSON() ([]byte, error)

func (*NullableHttpErrorOut) Set

func (v *NullableHttpErrorOut) Set(val *HttpErrorOut)

func (*NullableHttpErrorOut) UnmarshalJSON

func (v *NullableHttpErrorOut) UnmarshalJSON(src []byte) error

func (*NullableHttpErrorOut) Unset

func (v *NullableHttpErrorOut) 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 NullableIntegrationIn

type NullableIntegrationIn struct {
	// contains filtered or unexported fields
}

func NewNullableIntegrationIn

func NewNullableIntegrationIn(val *IntegrationIn) *NullableIntegrationIn

func (NullableIntegrationIn) Get

func (NullableIntegrationIn) IsSet

func (v NullableIntegrationIn) IsSet() bool

func (NullableIntegrationIn) MarshalJSON

func (v NullableIntegrationIn) MarshalJSON() ([]byte, error)

func (*NullableIntegrationIn) Set

func (v *NullableIntegrationIn) Set(val *IntegrationIn)

func (*NullableIntegrationIn) UnmarshalJSON

func (v *NullableIntegrationIn) UnmarshalJSON(src []byte) error

func (*NullableIntegrationIn) Unset

func (v *NullableIntegrationIn) Unset()

type NullableIntegrationKeyOut

type NullableIntegrationKeyOut struct {
	// contains filtered or unexported fields
}

func NewNullableIntegrationKeyOut

func NewNullableIntegrationKeyOut(val *IntegrationKeyOut) *NullableIntegrationKeyOut

func (NullableIntegrationKeyOut) Get

func (NullableIntegrationKeyOut) IsSet

func (v NullableIntegrationKeyOut) IsSet() bool

func (NullableIntegrationKeyOut) MarshalJSON

func (v NullableIntegrationKeyOut) MarshalJSON() ([]byte, error)

func (*NullableIntegrationKeyOut) Set

func (*NullableIntegrationKeyOut) UnmarshalJSON

func (v *NullableIntegrationKeyOut) UnmarshalJSON(src []byte) error

func (*NullableIntegrationKeyOut) Unset

func (v *NullableIntegrationKeyOut) Unset()

type NullableIntegrationOut

type NullableIntegrationOut struct {
	// contains filtered or unexported fields
}

func NewNullableIntegrationOut

func NewNullableIntegrationOut(val *IntegrationOut) *NullableIntegrationOut

func (NullableIntegrationOut) Get

func (NullableIntegrationOut) IsSet

func (v NullableIntegrationOut) IsSet() bool

func (NullableIntegrationOut) MarshalJSON

func (v NullableIntegrationOut) MarshalJSON() ([]byte, error)

func (*NullableIntegrationOut) Set

func (*NullableIntegrationOut) UnmarshalJSON

func (v *NullableIntegrationOut) UnmarshalJSON(src []byte) error

func (*NullableIntegrationOut) Unset

func (v *NullableIntegrationOut) Unset()

type NullableIntegrationUpdate

type NullableIntegrationUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableIntegrationUpdate

func NewNullableIntegrationUpdate(val *IntegrationUpdate) *NullableIntegrationUpdate

func (NullableIntegrationUpdate) Get

func (NullableIntegrationUpdate) IsSet

func (v NullableIntegrationUpdate) IsSet() bool

func (NullableIntegrationUpdate) MarshalJSON

func (v NullableIntegrationUpdate) MarshalJSON() ([]byte, error)

func (*NullableIntegrationUpdate) Set

func (*NullableIntegrationUpdate) UnmarshalJSON

func (v *NullableIntegrationUpdate) UnmarshalJSON(src []byte) error

func (*NullableIntegrationUpdate) Unset

func (v *NullableIntegrationUpdate) Unset()

type NullableListResponseApplicationOut

type NullableListResponseApplicationOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseApplicationOut) Get

func (NullableListResponseApplicationOut) IsSet

func (NullableListResponseApplicationOut) MarshalJSON

func (v NullableListResponseApplicationOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseApplicationOut) Set

func (*NullableListResponseApplicationOut) UnmarshalJSON

func (v *NullableListResponseApplicationOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseApplicationOut) Unset

type NullableListResponseApplicationStats added in v0.68.0

type NullableListResponseApplicationStats struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseApplicationStats added in v0.68.0

func NewNullableListResponseApplicationStats(val *ListResponseApplicationStats) *NullableListResponseApplicationStats

func (NullableListResponseApplicationStats) Get added in v0.68.0

func (NullableListResponseApplicationStats) IsSet added in v0.68.0

func (NullableListResponseApplicationStats) MarshalJSON added in v0.68.0

func (v NullableListResponseApplicationStats) MarshalJSON() ([]byte, error)

func (*NullableListResponseApplicationStats) Set added in v0.68.0

func (*NullableListResponseApplicationStats) UnmarshalJSON added in v0.68.0

func (v *NullableListResponseApplicationStats) UnmarshalJSON(src []byte) error

func (*NullableListResponseApplicationStats) Unset added in v0.68.0

type NullableListResponseBackgroundTaskOut added in v0.84.0

type NullableListResponseBackgroundTaskOut struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseBackgroundTaskOut added in v0.84.0

func NewNullableListResponseBackgroundTaskOut(val *ListResponseBackgroundTaskOut) *NullableListResponseBackgroundTaskOut

func (NullableListResponseBackgroundTaskOut) Get added in v0.84.0

func (NullableListResponseBackgroundTaskOut) IsSet added in v0.84.0

func (NullableListResponseBackgroundTaskOut) MarshalJSON added in v0.84.0

func (v NullableListResponseBackgroundTaskOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseBackgroundTaskOut) Set added in v0.84.0

func (*NullableListResponseBackgroundTaskOut) UnmarshalJSON added in v0.84.0

func (v *NullableListResponseBackgroundTaskOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseBackgroundTaskOut) Unset added in v0.84.0

type NullableListResponseDoubleEndpointMessageOut added in v0.49.0

type NullableListResponseDoubleEndpointMessageOut struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseDoubleEndpointMessageOut added in v0.49.0

func NewNullableListResponseDoubleEndpointMessageOut(val *ListResponseDoubleEndpointMessageOut) *NullableListResponseDoubleEndpointMessageOut

func (NullableListResponseDoubleEndpointMessageOut) Get added in v0.49.0

func (NullableListResponseDoubleEndpointMessageOut) IsSet added in v0.49.0

func (NullableListResponseDoubleEndpointMessageOut) MarshalJSON added in v0.49.0

func (*NullableListResponseDoubleEndpointMessageOut) Set added in v0.49.0

func (*NullableListResponseDoubleEndpointMessageOut) UnmarshalJSON added in v0.49.0

func (*NullableListResponseDoubleEndpointMessageOut) Unset added in v0.49.0

type NullableListResponseDoubleMessageAttemptEndpointOut added in v0.49.0

type NullableListResponseDoubleMessageAttemptEndpointOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseDoubleMessageAttemptEndpointOut) Get added in v0.49.0

func (NullableListResponseDoubleMessageAttemptEndpointOut) IsSet added in v0.49.0

func (NullableListResponseDoubleMessageAttemptEndpointOut) MarshalJSON added in v0.49.0

func (*NullableListResponseDoubleMessageAttemptEndpointOut) Set added in v0.49.0

func (*NullableListResponseDoubleMessageAttemptEndpointOut) UnmarshalJSON added in v0.49.0

func (*NullableListResponseDoubleMessageAttemptEndpointOut) Unset added in v0.49.0

type NullableListResponseDoubleMessageAttemptOut added in v0.49.0

type NullableListResponseDoubleMessageAttemptOut struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseDoubleMessageAttemptOut added in v0.49.0

func NewNullableListResponseDoubleMessageAttemptOut(val *ListResponseDoubleMessageAttemptOut) *NullableListResponseDoubleMessageAttemptOut

func (NullableListResponseDoubleMessageAttemptOut) Get added in v0.49.0

func (NullableListResponseDoubleMessageAttemptOut) IsSet added in v0.49.0

func (NullableListResponseDoubleMessageAttemptOut) MarshalJSON added in v0.49.0

func (*NullableListResponseDoubleMessageAttemptOut) Set added in v0.49.0

func (*NullableListResponseDoubleMessageAttemptOut) UnmarshalJSON added in v0.49.0

func (v *NullableListResponseDoubleMessageAttemptOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseDoubleMessageAttemptOut) Unset added in v0.49.0

type NullableListResponseDoubleMessageOut added in v0.49.0

type NullableListResponseDoubleMessageOut struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseDoubleMessageOut added in v0.49.0

func NewNullableListResponseDoubleMessageOut(val *ListResponseDoubleMessageOut) *NullableListResponseDoubleMessageOut

func (NullableListResponseDoubleMessageOut) Get added in v0.49.0

func (NullableListResponseDoubleMessageOut) IsSet added in v0.49.0

func (NullableListResponseDoubleMessageOut) MarshalJSON added in v0.49.0

func (v NullableListResponseDoubleMessageOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseDoubleMessageOut) Set added in v0.49.0

func (*NullableListResponseDoubleMessageOut) UnmarshalJSON added in v0.49.0

func (v *NullableListResponseDoubleMessageOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseDoubleMessageOut) Unset added in v0.49.0

type NullableListResponseEndpointMessageOut

type NullableListResponseEndpointMessageOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseEndpointMessageOut) Get

func (NullableListResponseEndpointMessageOut) IsSet

func (NullableListResponseEndpointMessageOut) MarshalJSON

func (v NullableListResponseEndpointMessageOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseEndpointMessageOut) Set

func (*NullableListResponseEndpointMessageOut) UnmarshalJSON

func (v *NullableListResponseEndpointMessageOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseEndpointMessageOut) Unset

type NullableListResponseEndpointOut

type NullableListResponseEndpointOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseEndpointOut) Get

func (NullableListResponseEndpointOut) IsSet

func (NullableListResponseEndpointOut) MarshalJSON

func (v NullableListResponseEndpointOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseEndpointOut) Set

func (*NullableListResponseEndpointOut) UnmarshalJSON

func (v *NullableListResponseEndpointOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseEndpointOut) Unset

type NullableListResponseEventTypeOut

type NullableListResponseEventTypeOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseEventTypeOut) Get

func (NullableListResponseEventTypeOut) IsSet

func (NullableListResponseEventTypeOut) MarshalJSON

func (v NullableListResponseEventTypeOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseEventTypeOut) Set

func (*NullableListResponseEventTypeOut) UnmarshalJSON

func (v *NullableListResponseEventTypeOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseEventTypeOut) Unset

type NullableListResponseIntegrationOut

type NullableListResponseIntegrationOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseIntegrationOut) Get

func (NullableListResponseIntegrationOut) IsSet

func (NullableListResponseIntegrationOut) MarshalJSON

func (v NullableListResponseIntegrationOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseIntegrationOut) Set

func (*NullableListResponseIntegrationOut) UnmarshalJSON

func (v *NullableListResponseIntegrationOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseIntegrationOut) Unset

type NullableListResponseMessageAttemptEndpointOut

type NullableListResponseMessageAttemptEndpointOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseMessageAttemptEndpointOut) Get

func (NullableListResponseMessageAttemptEndpointOut) IsSet

func (NullableListResponseMessageAttemptEndpointOut) MarshalJSON

func (*NullableListResponseMessageAttemptEndpointOut) Set

func (*NullableListResponseMessageAttemptEndpointOut) UnmarshalJSON

func (*NullableListResponseMessageAttemptEndpointOut) Unset

type NullableListResponseMessageAttemptOut

type NullableListResponseMessageAttemptOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseMessageAttemptOut) Get

func (NullableListResponseMessageAttemptOut) IsSet

func (NullableListResponseMessageAttemptOut) MarshalJSON

func (v NullableListResponseMessageAttemptOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseMessageAttemptOut) Set

func (*NullableListResponseMessageAttemptOut) UnmarshalJSON

func (v *NullableListResponseMessageAttemptOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseMessageAttemptOut) Unset

type NullableListResponseMessageEndpointOut

type NullableListResponseMessageEndpointOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseMessageEndpointOut) Get

func (NullableListResponseMessageEndpointOut) IsSet

func (NullableListResponseMessageEndpointOut) MarshalJSON

func (v NullableListResponseMessageEndpointOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseMessageEndpointOut) Set

func (*NullableListResponseMessageEndpointOut) UnmarshalJSON

func (v *NullableListResponseMessageEndpointOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseMessageEndpointOut) Unset

type NullableListResponseMessageOut

type NullableListResponseMessageOut struct {
	// contains filtered or unexported fields
}

func (NullableListResponseMessageOut) Get

func (NullableListResponseMessageOut) IsSet

func (NullableListResponseMessageOut) MarshalJSON

func (v NullableListResponseMessageOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseMessageOut) Set

func (*NullableListResponseMessageOut) UnmarshalJSON

func (v *NullableListResponseMessageOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseMessageOut) Unset

func (v *NullableListResponseMessageOut) Unset()

type NullableListResponseTemplateOut added in v1.8.0

type NullableListResponseTemplateOut struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseTemplateOut added in v1.8.0

func NewNullableListResponseTemplateOut(val *ListResponseTemplateOut) *NullableListResponseTemplateOut

func (NullableListResponseTemplateOut) Get added in v1.8.0

func (NullableListResponseTemplateOut) IsSet added in v1.8.0

func (NullableListResponseTemplateOut) MarshalJSON added in v1.8.0

func (v NullableListResponseTemplateOut) MarshalJSON() ([]byte, error)

func (*NullableListResponseTemplateOut) Set added in v1.8.0

func (*NullableListResponseTemplateOut) UnmarshalJSON added in v1.8.0

func (v *NullableListResponseTemplateOut) UnmarshalJSON(src []byte) error

func (*NullableListResponseTemplateOut) Unset added in v1.8.0

type NullableMessageAttemptEndpointOut

type NullableMessageAttemptEndpointOut struct {
	// contains filtered or unexported fields
}

func (NullableMessageAttemptEndpointOut) Get

func (NullableMessageAttemptEndpointOut) IsSet

func (NullableMessageAttemptEndpointOut) MarshalJSON

func (v NullableMessageAttemptEndpointOut) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptEndpointOut) Set

func (*NullableMessageAttemptEndpointOut) UnmarshalJSON

func (v *NullableMessageAttemptEndpointOut) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptEndpointOut) Unset

type NullableMessageAttemptExhaustedEvent

type NullableMessageAttemptExhaustedEvent struct {
	// contains filtered or unexported fields
}

func (NullableMessageAttemptExhaustedEvent) Get

func (NullableMessageAttemptExhaustedEvent) IsSet

func (NullableMessageAttemptExhaustedEvent) MarshalJSON

func (v NullableMessageAttemptExhaustedEvent) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptExhaustedEvent) Set

func (*NullableMessageAttemptExhaustedEvent) UnmarshalJSON

func (v *NullableMessageAttemptExhaustedEvent) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptExhaustedEvent) Unset

type NullableMessageAttemptExhaustedEventData

type NullableMessageAttemptExhaustedEventData struct {
	// contains filtered or unexported fields
}

func (NullableMessageAttemptExhaustedEventData) Get

func (NullableMessageAttemptExhaustedEventData) IsSet

func (NullableMessageAttemptExhaustedEventData) MarshalJSON

func (*NullableMessageAttemptExhaustedEventData) Set

func (*NullableMessageAttemptExhaustedEventData) UnmarshalJSON

func (v *NullableMessageAttemptExhaustedEventData) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptExhaustedEventData) Unset

type NullableMessageAttemptFailedData added in v0.50.0

type NullableMessageAttemptFailedData struct {
	// contains filtered or unexported fields
}

func NewNullableMessageAttemptFailedData added in v0.50.0

func NewNullableMessageAttemptFailedData(val *MessageAttemptFailedData) *NullableMessageAttemptFailedData

func (NullableMessageAttemptFailedData) Get added in v0.50.0

func (NullableMessageAttemptFailedData) IsSet added in v0.50.0

func (NullableMessageAttemptFailedData) MarshalJSON added in v0.50.0

func (v NullableMessageAttemptFailedData) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptFailedData) Set added in v0.50.0

func (*NullableMessageAttemptFailedData) UnmarshalJSON added in v0.50.0

func (v *NullableMessageAttemptFailedData) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptFailedData) Unset added in v0.50.0

type NullableMessageAttemptFailedEvent

type NullableMessageAttemptFailedEvent struct {
	// contains filtered or unexported fields
}

func (NullableMessageAttemptFailedEvent) Get

func (NullableMessageAttemptFailedEvent) IsSet

func (NullableMessageAttemptFailedEvent) MarshalJSON

func (v NullableMessageAttemptFailedEvent) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptFailedEvent) Set

func (*NullableMessageAttemptFailedEvent) UnmarshalJSON

func (v *NullableMessageAttemptFailedEvent) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptFailedEvent) Unset

type NullableMessageAttemptFailingEvent added in v0.50.0

type NullableMessageAttemptFailingEvent struct {
	// contains filtered or unexported fields
}

func NewNullableMessageAttemptFailingEvent added in v0.50.0

func NewNullableMessageAttemptFailingEvent(val *MessageAttemptFailingEvent) *NullableMessageAttemptFailingEvent

func (NullableMessageAttemptFailingEvent) Get added in v0.50.0

func (NullableMessageAttemptFailingEvent) IsSet added in v0.50.0

func (NullableMessageAttemptFailingEvent) MarshalJSON added in v0.50.0

func (v NullableMessageAttemptFailingEvent) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptFailingEvent) Set added in v0.50.0

func (*NullableMessageAttemptFailingEvent) UnmarshalJSON added in v0.50.0

func (v *NullableMessageAttemptFailingEvent) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptFailingEvent) Unset added in v0.50.0

type NullableMessageAttemptFailingEventData added in v0.50.0

type NullableMessageAttemptFailingEventData struct {
	// contains filtered or unexported fields
}

func NewNullableMessageAttemptFailingEventData added in v0.50.0

func NewNullableMessageAttemptFailingEventData(val *MessageAttemptFailingEventData) *NullableMessageAttemptFailingEventData

func (NullableMessageAttemptFailingEventData) Get added in v0.50.0

func (NullableMessageAttemptFailingEventData) IsSet added in v0.50.0

func (NullableMessageAttemptFailingEventData) MarshalJSON added in v0.50.0

func (v NullableMessageAttemptFailingEventData) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptFailingEventData) Set added in v0.50.0

func (*NullableMessageAttemptFailingEventData) UnmarshalJSON added in v0.50.0

func (v *NullableMessageAttemptFailingEventData) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptFailingEventData) Unset added in v0.50.0

type NullableMessageAttemptHeadersOut added in v0.57.0

type NullableMessageAttemptHeadersOut struct {
	// contains filtered or unexported fields
}

func NewNullableMessageAttemptHeadersOut added in v0.57.0

func NewNullableMessageAttemptHeadersOut(val *MessageAttemptHeadersOut) *NullableMessageAttemptHeadersOut

func (NullableMessageAttemptHeadersOut) Get added in v0.57.0

func (NullableMessageAttemptHeadersOut) IsSet added in v0.57.0

func (NullableMessageAttemptHeadersOut) MarshalJSON added in v0.57.0

func (v NullableMessageAttemptHeadersOut) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptHeadersOut) Set added in v0.57.0

func (*NullableMessageAttemptHeadersOut) UnmarshalJSON added in v0.57.0

func (v *NullableMessageAttemptHeadersOut) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptHeadersOut) Unset added in v0.57.0

type NullableMessageAttemptOut

type NullableMessageAttemptOut struct {
	// contains filtered or unexported fields
}

func NewNullableMessageAttemptOut

func NewNullableMessageAttemptOut(val *MessageAttemptOut) *NullableMessageAttemptOut

func (NullableMessageAttemptOut) Get

func (NullableMessageAttemptOut) IsSet

func (v NullableMessageAttemptOut) IsSet() bool

func (NullableMessageAttemptOut) MarshalJSON

func (v NullableMessageAttemptOut) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptOut) Set

func (*NullableMessageAttemptOut) UnmarshalJSON

func (v *NullableMessageAttemptOut) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptOut) Unset

func (v *NullableMessageAttemptOut) Unset()

type NullableMessageAttemptRecoveredEvent added in v1.8.0

type NullableMessageAttemptRecoveredEvent struct {
	// contains filtered or unexported fields
}

func NewNullableMessageAttemptRecoveredEvent added in v1.8.0

func NewNullableMessageAttemptRecoveredEvent(val *MessageAttemptRecoveredEvent) *NullableMessageAttemptRecoveredEvent

func (NullableMessageAttemptRecoveredEvent) Get added in v1.8.0

func (NullableMessageAttemptRecoveredEvent) IsSet added in v1.8.0

func (NullableMessageAttemptRecoveredEvent) MarshalJSON added in v1.8.0

func (v NullableMessageAttemptRecoveredEvent) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptRecoveredEvent) Set added in v1.8.0

func (*NullableMessageAttemptRecoveredEvent) UnmarshalJSON added in v1.8.0

func (v *NullableMessageAttemptRecoveredEvent) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptRecoveredEvent) Unset added in v1.8.0

type NullableMessageAttemptRecoveredEventData added in v1.8.0

type NullableMessageAttemptRecoveredEventData struct {
	// contains filtered or unexported fields
}

func NewNullableMessageAttemptRecoveredEventData added in v1.8.0

func NewNullableMessageAttemptRecoveredEventData(val *MessageAttemptRecoveredEventData) *NullableMessageAttemptRecoveredEventData

func (NullableMessageAttemptRecoveredEventData) Get added in v1.8.0

func (NullableMessageAttemptRecoveredEventData) IsSet added in v1.8.0

func (NullableMessageAttemptRecoveredEventData) MarshalJSON added in v1.8.0

func (*NullableMessageAttemptRecoveredEventData) Set added in v1.8.0

func (*NullableMessageAttemptRecoveredEventData) UnmarshalJSON added in v1.8.0

func (v *NullableMessageAttemptRecoveredEventData) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptRecoveredEventData) Unset added in v1.8.0

type NullableMessageAttemptTriggerType

type NullableMessageAttemptTriggerType struct {
	// contains filtered or unexported fields
}

func (NullableMessageAttemptTriggerType) Get

func (NullableMessageAttemptTriggerType) IsSet

func (NullableMessageAttemptTriggerType) MarshalJSON

func (v NullableMessageAttemptTriggerType) MarshalJSON() ([]byte, error)

func (*NullableMessageAttemptTriggerType) Set

func (*NullableMessageAttemptTriggerType) UnmarshalJSON

func (v *NullableMessageAttemptTriggerType) UnmarshalJSON(src []byte) error

func (*NullableMessageAttemptTriggerType) Unset

type NullableMessageBroadcastIn added in v1.4.12

type NullableMessageBroadcastIn struct {
	// contains filtered or unexported fields
}

func NewNullableMessageBroadcastIn added in v1.4.12

func NewNullableMessageBroadcastIn(val *MessageBroadcastIn) *NullableMessageBroadcastIn

func (NullableMessageBroadcastIn) Get added in v1.4.12

func (NullableMessageBroadcastIn) IsSet added in v1.4.12

func (v NullableMessageBroadcastIn) IsSet() bool

func (NullableMessageBroadcastIn) MarshalJSON added in v1.4.12

func (v NullableMessageBroadcastIn) MarshalJSON() ([]byte, error)

func (*NullableMessageBroadcastIn) Set added in v1.4.12

func (*NullableMessageBroadcastIn) UnmarshalJSON added in v1.4.12

func (v *NullableMessageBroadcastIn) UnmarshalJSON(src []byte) error

func (*NullableMessageBroadcastIn) Unset added in v1.4.12

func (v *NullableMessageBroadcastIn) Unset()

type NullableMessageBroadcastOut added in v1.4.12

type NullableMessageBroadcastOut struct {
	// contains filtered or unexported fields
}

func NewNullableMessageBroadcastOut added in v1.4.12

func NewNullableMessageBroadcastOut(val *MessageBroadcastOut) *NullableMessageBroadcastOut

func (NullableMessageBroadcastOut) Get added in v1.4.12

func (NullableMessageBroadcastOut) IsSet added in v1.4.12

func (NullableMessageBroadcastOut) MarshalJSON added in v1.4.12

func (v NullableMessageBroadcastOut) MarshalJSON() ([]byte, error)

func (*NullableMessageBroadcastOut) Set added in v1.4.12

func (*NullableMessageBroadcastOut) UnmarshalJSON added in v1.4.12

func (v *NullableMessageBroadcastOut) UnmarshalJSON(src []byte) error

func (*NullableMessageBroadcastOut) Unset added in v1.4.12

func (v *NullableMessageBroadcastOut) Unset()

type NullableMessageEndpointOut

type NullableMessageEndpointOut struct {
	// contains filtered or unexported fields
}

func NewNullableMessageEndpointOut

func NewNullableMessageEndpointOut(val *MessageEndpointOut) *NullableMessageEndpointOut

func (NullableMessageEndpointOut) Get

func (NullableMessageEndpointOut) IsSet

func (v NullableMessageEndpointOut) IsSet() bool

func (NullableMessageEndpointOut) MarshalJSON

func (v NullableMessageEndpointOut) MarshalJSON() ([]byte, error)

func (*NullableMessageEndpointOut) Set

func (*NullableMessageEndpointOut) UnmarshalJSON

func (v *NullableMessageEndpointOut) UnmarshalJSON(src []byte) error

func (*NullableMessageEndpointOut) Unset

func (v *NullableMessageEndpointOut) Unset()

type NullableMessageIn

type NullableMessageIn struct {
	// contains filtered or unexported fields
}

func NewNullableMessageIn

func NewNullableMessageIn(val *MessageIn) *NullableMessageIn

func (NullableMessageIn) Get

func (v NullableMessageIn) Get() *MessageIn

func (NullableMessageIn) IsSet

func (v NullableMessageIn) IsSet() bool

func (NullableMessageIn) MarshalJSON

func (v NullableMessageIn) MarshalJSON() ([]byte, error)

func (*NullableMessageIn) Set

func (v *NullableMessageIn) Set(val *MessageIn)

func (*NullableMessageIn) UnmarshalJSON

func (v *NullableMessageIn) UnmarshalJSON(src []byte) error

func (*NullableMessageIn) Unset

func (v *NullableMessageIn) Unset()

type NullableMessageOut

type NullableMessageOut struct {
	// contains filtered or unexported fields
}

func NewNullableMessageOut

func NewNullableMessageOut(val *MessageOut) *NullableMessageOut

func (NullableMessageOut) Get

func (v NullableMessageOut) Get() *MessageOut

func (NullableMessageOut) IsSet

func (v NullableMessageOut) IsSet() bool

func (NullableMessageOut) MarshalJSON

func (v NullableMessageOut) MarshalJSON() ([]byte, error)

func (*NullableMessageOut) Set

func (v *NullableMessageOut) Set(val *MessageOut)

func (*NullableMessageOut) UnmarshalJSON

func (v *NullableMessageOut) UnmarshalJSON(src []byte) error

func (*NullableMessageOut) Unset

func (v *NullableMessageOut) Unset()

type NullableMessageRawPayloadOut added in v1.11.0

type NullableMessageRawPayloadOut struct {
	// contains filtered or unexported fields
}

func NewNullableMessageRawPayloadOut added in v1.11.0

func NewNullableMessageRawPayloadOut(val *MessageRawPayloadOut) *NullableMessageRawPayloadOut

func (NullableMessageRawPayloadOut) Get added in v1.11.0

func (NullableMessageRawPayloadOut) IsSet added in v1.11.0

func (NullableMessageRawPayloadOut) MarshalJSON added in v1.11.0

func (v NullableMessageRawPayloadOut) MarshalJSON() ([]byte, error)

func (*NullableMessageRawPayloadOut) Set added in v1.11.0

func (*NullableMessageRawPayloadOut) UnmarshalJSON added in v1.11.0

func (v *NullableMessageRawPayloadOut) UnmarshalJSON(src []byte) error

func (*NullableMessageRawPayloadOut) Unset added in v1.11.0

func (v *NullableMessageRawPayloadOut) Unset()

type NullableMessageStatus

type NullableMessageStatus struct {
	// contains filtered or unexported fields
}

func NewNullableMessageStatus

func NewNullableMessageStatus(val *MessageStatus) *NullableMessageStatus

func (NullableMessageStatus) Get

func (NullableMessageStatus) IsSet

func (v NullableMessageStatus) IsSet() bool

func (NullableMessageStatus) MarshalJSON

func (v NullableMessageStatus) MarshalJSON() ([]byte, error)

func (*NullableMessageStatus) Set

func (v *NullableMessageStatus) Set(val *MessageStatus)

func (*NullableMessageStatus) UnmarshalJSON

func (v *NullableMessageStatus) UnmarshalJSON(src []byte) error

func (*NullableMessageStatus) Unset

func (v *NullableMessageStatus) Unset()

type NullableOneTimeTokenIn added in v0.83.1

type NullableOneTimeTokenIn struct {
	// contains filtered or unexported fields
}

func NewNullableOneTimeTokenIn added in v0.83.1

func NewNullableOneTimeTokenIn(val *OneTimeTokenIn) *NullableOneTimeTokenIn

func (NullableOneTimeTokenIn) Get added in v0.83.1

func (NullableOneTimeTokenIn) IsSet added in v0.83.1

func (v NullableOneTimeTokenIn) IsSet() bool

func (NullableOneTimeTokenIn) MarshalJSON added in v0.83.1

func (v NullableOneTimeTokenIn) MarshalJSON() ([]byte, error)

func (*NullableOneTimeTokenIn) Set added in v0.83.1

func (*NullableOneTimeTokenIn) UnmarshalJSON added in v0.83.1

func (v *NullableOneTimeTokenIn) UnmarshalJSON(src []byte) error

func (*NullableOneTimeTokenIn) Unset added in v0.83.1

func (v *NullableOneTimeTokenIn) Unset()

type NullableOneTimeTokenOut added in v0.83.1

type NullableOneTimeTokenOut struct {
	// contains filtered or unexported fields
}

func NewNullableOneTimeTokenOut added in v0.83.1

func NewNullableOneTimeTokenOut(val *OneTimeTokenOut) *NullableOneTimeTokenOut

func (NullableOneTimeTokenOut) Get added in v0.83.1

func (NullableOneTimeTokenOut) IsSet added in v0.83.1

func (v NullableOneTimeTokenOut) IsSet() bool

func (NullableOneTimeTokenOut) MarshalJSON added in v0.83.1

func (v NullableOneTimeTokenOut) MarshalJSON() ([]byte, error)

func (*NullableOneTimeTokenOut) Set added in v0.83.1

func (*NullableOneTimeTokenOut) UnmarshalJSON added in v0.83.1

func (v *NullableOneTimeTokenOut) UnmarshalJSON(src []byte) error

func (*NullableOneTimeTokenOut) Unset added in v0.83.1

func (v *NullableOneTimeTokenOut) Unset()

type NullableOrdering added in v0.78.0

type NullableOrdering struct {
	// contains filtered or unexported fields
}

func NewNullableOrdering added in v0.78.0

func NewNullableOrdering(val *Ordering) *NullableOrdering

func (NullableOrdering) Get added in v0.78.0

func (v NullableOrdering) Get() *Ordering

func (NullableOrdering) IsSet added in v0.78.0

func (v NullableOrdering) IsSet() bool

func (NullableOrdering) MarshalJSON added in v0.78.0

func (v NullableOrdering) MarshalJSON() ([]byte, error)

func (*NullableOrdering) Set added in v0.78.0

func (v *NullableOrdering) Set(val *Ordering)

func (*NullableOrdering) UnmarshalJSON added in v0.78.0

func (v *NullableOrdering) UnmarshalJSON(src []byte) error

func (*NullableOrdering) Unset added in v0.78.0

func (v *NullableOrdering) Unset()

type NullableRecoverIn

type NullableRecoverIn struct {
	// contains filtered or unexported fields
}

func NewNullableRecoverIn

func NewNullableRecoverIn(val *RecoverIn) *NullableRecoverIn

func (NullableRecoverIn) Get

func (v NullableRecoverIn) Get() *RecoverIn

func (NullableRecoverIn) IsSet

func (v NullableRecoverIn) IsSet() bool

func (NullableRecoverIn) MarshalJSON

func (v NullableRecoverIn) MarshalJSON() ([]byte, error)

func (*NullableRecoverIn) Set

func (v *NullableRecoverIn) Set(val *RecoverIn)

func (*NullableRecoverIn) UnmarshalJSON

func (v *NullableRecoverIn) UnmarshalJSON(src []byte) error

func (*NullableRecoverIn) Unset

func (v *NullableRecoverIn) Unset()

type NullableRecoverOut added in v0.84.0

type NullableRecoverOut struct {
	// contains filtered or unexported fields
}

func NewNullableRecoverOut added in v0.84.0

func NewNullableRecoverOut(val *RecoverOut) *NullableRecoverOut

func (NullableRecoverOut) Get added in v0.84.0

func (v NullableRecoverOut) Get() *RecoverOut

func (NullableRecoverOut) IsSet added in v0.84.0

func (v NullableRecoverOut) IsSet() bool

func (NullableRecoverOut) MarshalJSON added in v0.84.0

func (v NullableRecoverOut) MarshalJSON() ([]byte, error)

func (*NullableRecoverOut) Set added in v0.84.0

func (v *NullableRecoverOut) Set(val *RecoverOut)

func (*NullableRecoverOut) UnmarshalJSON added in v0.84.0

func (v *NullableRecoverOut) UnmarshalJSON(src []byte) error

func (*NullableRecoverOut) Unset added in v0.84.0

func (v *NullableRecoverOut) Unset()

type NullableReplayIn added in v0.68.0

type NullableReplayIn struct {
	// contains filtered or unexported fields
}

func NewNullableReplayIn added in v0.68.0

func NewNullableReplayIn(val *ReplayIn) *NullableReplayIn

func (NullableReplayIn) Get added in v0.68.0

func (v NullableReplayIn) Get() *ReplayIn

func (NullableReplayIn) IsSet added in v0.68.0

func (v NullableReplayIn) IsSet() bool

func (NullableReplayIn) MarshalJSON added in v0.68.0

func (v NullableReplayIn) MarshalJSON() ([]byte, error)

func (*NullableReplayIn) Set added in v0.68.0

func (v *NullableReplayIn) Set(val *ReplayIn)

func (*NullableReplayIn) UnmarshalJSON added in v0.68.0

func (v *NullableReplayIn) UnmarshalJSON(src []byte) error

func (*NullableReplayIn) Unset added in v0.68.0

func (v *NullableReplayIn) Unset()

type NullableReplayOut added in v0.84.0

type NullableReplayOut struct {
	// contains filtered or unexported fields
}

func NewNullableReplayOut added in v0.84.0

func NewNullableReplayOut(val *ReplayOut) *NullableReplayOut

func (NullableReplayOut) Get added in v0.84.0

func (v NullableReplayOut) Get() *ReplayOut

func (NullableReplayOut) IsSet added in v0.84.0

func (v NullableReplayOut) IsSet() bool

func (NullableReplayOut) MarshalJSON added in v0.84.0

func (v NullableReplayOut) MarshalJSON() ([]byte, error)

func (*NullableReplayOut) Set added in v0.84.0

func (v *NullableReplayOut) Set(val *ReplayOut)

func (*NullableReplayOut) UnmarshalJSON added in v0.84.0

func (v *NullableReplayOut) UnmarshalJSON(src []byte) error

func (*NullableReplayOut) Unset added in v0.84.0

func (v *NullableReplayOut) Unset()

type NullableSettingsIn

type NullableSettingsIn struct {
	// contains filtered or unexported fields
}

func NewNullableSettingsIn

func NewNullableSettingsIn(val *SettingsIn) *NullableSettingsIn

func (NullableSettingsIn) Get

func (v NullableSettingsIn) Get() *SettingsIn

func (NullableSettingsIn) IsSet

func (v NullableSettingsIn) IsSet() bool

func (NullableSettingsIn) MarshalJSON

func (v NullableSettingsIn) MarshalJSON() ([]byte, error)

func (*NullableSettingsIn) Set

func (v *NullableSettingsIn) Set(val *SettingsIn)

func (*NullableSettingsIn) UnmarshalJSON

func (v *NullableSettingsIn) UnmarshalJSON(src []byte) error

func (*NullableSettingsIn) Unset

func (v *NullableSettingsIn) Unset()

type NullableSettingsOut

type NullableSettingsOut struct {
	// contains filtered or unexported fields
}

func NewNullableSettingsOut

func NewNullableSettingsOut(val *SettingsOut) *NullableSettingsOut

func (NullableSettingsOut) Get

func (NullableSettingsOut) IsSet

func (v NullableSettingsOut) IsSet() bool

func (NullableSettingsOut) MarshalJSON

func (v NullableSettingsOut) MarshalJSON() ([]byte, error)

func (*NullableSettingsOut) Set

func (v *NullableSettingsOut) Set(val *SettingsOut)

func (*NullableSettingsOut) UnmarshalJSON

func (v *NullableSettingsOut) UnmarshalJSON(src []byte) error

func (*NullableSettingsOut) Unset

func (v *NullableSettingsOut) Unset()

type NullableStatisticsPeriod

type NullableStatisticsPeriod struct {
	// contains filtered or unexported fields
}

func NewNullableStatisticsPeriod

func NewNullableStatisticsPeriod(val *StatisticsPeriod) *NullableStatisticsPeriod

func (NullableStatisticsPeriod) Get

func (NullableStatisticsPeriod) IsSet

func (v NullableStatisticsPeriod) IsSet() bool

func (NullableStatisticsPeriod) MarshalJSON

func (v NullableStatisticsPeriod) MarshalJSON() ([]byte, error)

func (*NullableStatisticsPeriod) Set

func (*NullableStatisticsPeriod) UnmarshalJSON

func (v *NullableStatisticsPeriod) UnmarshalJSON(src []byte) error

func (*NullableStatisticsPeriod) Unset

func (v *NullableStatisticsPeriod) Unset()

type NullableStatusCodeClass added in v0.50.0

type NullableStatusCodeClass struct {
	// contains filtered or unexported fields
}

func NewNullableStatusCodeClass added in v0.50.0

func NewNullableStatusCodeClass(val *StatusCodeClass) *NullableStatusCodeClass

func (NullableStatusCodeClass) Get added in v0.50.0

func (NullableStatusCodeClass) IsSet added in v0.50.0

func (v NullableStatusCodeClass) IsSet() bool

func (NullableStatusCodeClass) MarshalJSON added in v0.50.0

func (v NullableStatusCodeClass) MarshalJSON() ([]byte, error)

func (*NullableStatusCodeClass) Set added in v0.50.0

func (*NullableStatusCodeClass) UnmarshalJSON added in v0.50.0

func (v *NullableStatusCodeClass) UnmarshalJSON(src []byte) error

func (*NullableStatusCodeClass) Unset added in v0.50.0

func (v *NullableStatusCodeClass) 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 NullableTemplateIn added in v1.8.0

type NullableTemplateIn struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateIn added in v1.8.0

func NewNullableTemplateIn(val *TemplateIn) *NullableTemplateIn

func (NullableTemplateIn) Get added in v1.8.0

func (v NullableTemplateIn) Get() *TemplateIn

func (NullableTemplateIn) IsSet added in v1.8.0

func (v NullableTemplateIn) IsSet() bool

func (NullableTemplateIn) MarshalJSON added in v1.8.0

func (v NullableTemplateIn) MarshalJSON() ([]byte, error)

func (*NullableTemplateIn) Set added in v1.8.0

func (v *NullableTemplateIn) Set(val *TemplateIn)

func (*NullableTemplateIn) UnmarshalJSON added in v1.8.0

func (v *NullableTemplateIn) UnmarshalJSON(src []byte) error

func (*NullableTemplateIn) Unset added in v1.8.0

func (v *NullableTemplateIn) Unset()

type NullableTemplateOut added in v1.8.0

type NullableTemplateOut struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateOut added in v1.8.0

func NewNullableTemplateOut(val *TemplateOut) *NullableTemplateOut

func (NullableTemplateOut) Get added in v1.8.0

func (NullableTemplateOut) IsSet added in v1.8.0

func (v NullableTemplateOut) IsSet() bool

func (NullableTemplateOut) MarshalJSON added in v1.8.0

func (v NullableTemplateOut) MarshalJSON() ([]byte, error)

func (*NullableTemplateOut) Set added in v1.8.0

func (v *NullableTemplateOut) Set(val *TemplateOut)

func (*NullableTemplateOut) UnmarshalJSON added in v1.8.0

func (v *NullableTemplateOut) UnmarshalJSON(src []byte) error

func (*NullableTemplateOut) Unset added in v1.8.0

func (v *NullableTemplateOut) Unset()

type NullableTemplatePatch added in v1.8.0

type NullableTemplatePatch struct {
	// contains filtered or unexported fields
}

func NewNullableTemplatePatch added in v1.8.0

func NewNullableTemplatePatch(val *TemplatePatch) *NullableTemplatePatch

func (NullableTemplatePatch) Get added in v1.8.0

func (NullableTemplatePatch) IsSet added in v1.8.0

func (v NullableTemplatePatch) IsSet() bool

func (NullableTemplatePatch) MarshalJSON added in v1.8.0

func (v NullableTemplatePatch) MarshalJSON() ([]byte, error)

func (*NullableTemplatePatch) Set added in v1.8.0

func (v *NullableTemplatePatch) Set(val *TemplatePatch)

func (*NullableTemplatePatch) UnmarshalJSON added in v1.8.0

func (v *NullableTemplatePatch) UnmarshalJSON(src []byte) error

func (*NullableTemplatePatch) Unset added in v1.8.0

func (v *NullableTemplatePatch) Unset()

type NullableTemplateUpdate added in v1.8.0

type NullableTemplateUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateUpdate added in v1.8.0

func NewNullableTemplateUpdate(val *TemplateUpdate) *NullableTemplateUpdate

func (NullableTemplateUpdate) Get added in v1.8.0

func (NullableTemplateUpdate) IsSet added in v1.8.0

func (v NullableTemplateUpdate) IsSet() bool

func (NullableTemplateUpdate) MarshalJSON added in v1.8.0

func (v NullableTemplateUpdate) MarshalJSON() ([]byte, error)

func (*NullableTemplateUpdate) Set added in v1.8.0

func (*NullableTemplateUpdate) UnmarshalJSON added in v1.8.0

func (v *NullableTemplateUpdate) UnmarshalJSON(src []byte) error

func (*NullableTemplateUpdate) Unset added in v1.8.0

func (v *NullableTemplateUpdate) 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 NullableTransformationHttpMethod added in v0.66.0

type NullableTransformationHttpMethod struct {
	// contains filtered or unexported fields
}

func NewNullableTransformationHttpMethod added in v0.66.0

func NewNullableTransformationHttpMethod(val *TransformationHttpMethod) *NullableTransformationHttpMethod

func (NullableTransformationHttpMethod) Get added in v0.66.0

func (NullableTransformationHttpMethod) IsSet added in v0.66.0

func (NullableTransformationHttpMethod) MarshalJSON added in v0.66.0

func (v NullableTransformationHttpMethod) MarshalJSON() ([]byte, error)

func (*NullableTransformationHttpMethod) Set added in v0.66.0

func (*NullableTransformationHttpMethod) UnmarshalJSON added in v0.66.0

func (v *NullableTransformationHttpMethod) UnmarshalJSON(src []byte) error

func (*NullableTransformationHttpMethod) Unset added in v0.66.0

type NullableTransformationSimulateIn added in v1.8.1

type NullableTransformationSimulateIn struct {
	// contains filtered or unexported fields
}

func NewNullableTransformationSimulateIn added in v1.8.1

func NewNullableTransformationSimulateIn(val *TransformationSimulateIn) *NullableTransformationSimulateIn

func (NullableTransformationSimulateIn) Get added in v1.8.1

func (NullableTransformationSimulateIn) IsSet added in v1.8.1

func (NullableTransformationSimulateIn) MarshalJSON added in v1.8.1

func (v NullableTransformationSimulateIn) MarshalJSON() ([]byte, error)

func (*NullableTransformationSimulateIn) Set added in v1.8.1

func (*NullableTransformationSimulateIn) UnmarshalJSON added in v1.8.1

func (v *NullableTransformationSimulateIn) UnmarshalJSON(src []byte) error

func (*NullableTransformationSimulateIn) Unset added in v1.8.1

type NullableTransformationSimulateOut added in v1.8.1

type NullableTransformationSimulateOut struct {
	// contains filtered or unexported fields
}

func NewNullableTransformationSimulateOut added in v1.8.1

func NewNullableTransformationSimulateOut(val *TransformationSimulateOut) *NullableTransformationSimulateOut

func (NullableTransformationSimulateOut) Get added in v1.8.1

func (NullableTransformationSimulateOut) IsSet added in v1.8.1

func (NullableTransformationSimulateOut) MarshalJSON added in v1.8.1

func (v NullableTransformationSimulateOut) MarshalJSON() ([]byte, error)

func (*NullableTransformationSimulateOut) Set added in v1.8.1

func (*NullableTransformationSimulateOut) UnmarshalJSON added in v1.8.1

func (v *NullableTransformationSimulateOut) UnmarshalJSON(src []byte) error

func (*NullableTransformationSimulateOut) Unset added in v1.8.1

type NullableTransformationTemplateKind added in v1.8.0

type NullableTransformationTemplateKind struct {
	// contains filtered or unexported fields
}

func NewNullableTransformationTemplateKind added in v1.8.0

func NewNullableTransformationTemplateKind(val *TransformationTemplateKind) *NullableTransformationTemplateKind

func (NullableTransformationTemplateKind) Get added in v1.8.0

func (NullableTransformationTemplateKind) IsSet added in v1.8.0

func (NullableTransformationTemplateKind) MarshalJSON added in v1.8.0

func (v NullableTransformationTemplateKind) MarshalJSON() ([]byte, error)

func (*NullableTransformationTemplateKind) Set added in v1.8.0

func (*NullableTransformationTemplateKind) UnmarshalJSON added in v1.8.0

func (v *NullableTransformationTemplateKind) UnmarshalJSON(src []byte) error

func (*NullableTransformationTemplateKind) Unset added in v1.8.0

type NullableValidationError

type NullableValidationError struct {
	// contains filtered or unexported fields
}

func NewNullableValidationError

func NewNullableValidationError(val *ValidationError) *NullableValidationError

func (NullableValidationError) Get

func (NullableValidationError) IsSet

func (v NullableValidationError) IsSet() bool

func (NullableValidationError) MarshalJSON

func (v NullableValidationError) MarshalJSON() ([]byte, error)

func (*NullableValidationError) Set

func (*NullableValidationError) UnmarshalJSON

func (v *NullableValidationError) UnmarshalJSON(src []byte) error

func (*NullableValidationError) Unset

func (v *NullableValidationError) Unset()

type NullableWebhookTypes

type NullableWebhookTypes struct {
	// contains filtered or unexported fields
}

func NewNullableWebhookTypes

func NewNullableWebhookTypes(val *WebhookTypes) *NullableWebhookTypes

func (NullableWebhookTypes) Get

func (NullableWebhookTypes) IsSet

func (v NullableWebhookTypes) IsSet() bool

func (NullableWebhookTypes) MarshalJSON

func (v NullableWebhookTypes) MarshalJSON() ([]byte, error)

func (*NullableWebhookTypes) Set

func (v *NullableWebhookTypes) Set(val *WebhookTypes)

func (*NullableWebhookTypes) UnmarshalJSON

func (v *NullableWebhookTypes) UnmarshalJSON(src []byte) error

func (*NullableWebhookTypes) Unset

func (v *NullableWebhookTypes) Unset()

type OneTimeTokenIn added in v0.83.1

type OneTimeTokenIn struct {
	OneTimeToken string `json:"oneTimeToken"`
}

OneTimeTokenIn struct for OneTimeTokenIn

func NewOneTimeTokenIn added in v0.83.1

func NewOneTimeTokenIn(oneTimeToken string) *OneTimeTokenIn

NewOneTimeTokenIn instantiates a new OneTimeTokenIn 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 NewOneTimeTokenInWithDefaults added in v0.83.1

func NewOneTimeTokenInWithDefaults() *OneTimeTokenIn

NewOneTimeTokenInWithDefaults instantiates a new OneTimeTokenIn 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 (*OneTimeTokenIn) GetOneTimeToken added in v0.83.1

func (o *OneTimeTokenIn) GetOneTimeToken() string

GetOneTimeToken returns the OneTimeToken field value

func (*OneTimeTokenIn) GetOneTimeTokenOk added in v0.83.1

func (o *OneTimeTokenIn) GetOneTimeTokenOk() (*string, bool)

GetOneTimeTokenOk returns a tuple with the OneTimeToken field value and a boolean to check if the value has been set.

func (OneTimeTokenIn) MarshalJSON added in v0.83.1

func (o OneTimeTokenIn) MarshalJSON() ([]byte, error)

func (*OneTimeTokenIn) SetOneTimeToken added in v0.83.1

func (o *OneTimeTokenIn) SetOneTimeToken(v string)

SetOneTimeToken sets field value

type OneTimeTokenOut added in v0.83.1

type OneTimeTokenOut struct {
	Token string `json:"token"`
}

OneTimeTokenOut struct for OneTimeTokenOut

func NewOneTimeTokenOut added in v0.83.1

func NewOneTimeTokenOut(token string) *OneTimeTokenOut

NewOneTimeTokenOut instantiates a new OneTimeTokenOut 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 NewOneTimeTokenOutWithDefaults added in v0.83.1

func NewOneTimeTokenOutWithDefaults() *OneTimeTokenOut

NewOneTimeTokenOutWithDefaults instantiates a new OneTimeTokenOut 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 (*OneTimeTokenOut) GetToken added in v0.83.1

func (o *OneTimeTokenOut) GetToken() string

GetToken returns the Token field value

func (*OneTimeTokenOut) GetTokenOk added in v0.83.1

func (o *OneTimeTokenOut) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (OneTimeTokenOut) MarshalJSON added in v0.83.1

func (o OneTimeTokenOut) MarshalJSON() ([]byte, error)

func (*OneTimeTokenOut) SetToken added in v0.83.1

func (o *OneTimeTokenOut) SetToken(v string)

SetToken sets field value

type Ordering added in v0.78.0

type Ordering string

Ordering Defines the ordering in a listing of results.

const (
	ORDERING_ASCENDING  Ordering = "ascending"
	ORDERING_DESCENDING Ordering = "descending"
)

List of Ordering

func NewOrderingFromValue added in v0.78.0

func NewOrderingFromValue(v string) (*Ordering, error)

NewOrderingFromValue returns a pointer to a valid Ordering for the value passed as argument, or an error if the value passed is not allowed by the enum

func (Ordering) IsValid added in v0.78.0

func (v Ordering) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (Ordering) Ptr added in v0.78.0

func (v Ordering) Ptr() *Ordering

Ptr returns reference to Ordering value

func (*Ordering) UnmarshalJSON added in v0.78.0

func (v *Ordering) UnmarshalJSON(src []byte) error

type RecoverIn

type RecoverIn struct {
	Since time.Time    `json:"since"`
	Until NullableTime `json:"until,omitempty"`
}

RecoverIn struct for RecoverIn

func NewRecoverIn

func NewRecoverIn(since time.Time) *RecoverIn

NewRecoverIn instantiates a new RecoverIn 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 NewRecoverInWithDefaults

func NewRecoverInWithDefaults() *RecoverIn

NewRecoverInWithDefaults instantiates a new RecoverIn 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 (*RecoverIn) GetSince

func (o *RecoverIn) GetSince() time.Time

GetSince returns the Since field value

func (*RecoverIn) GetSinceOk

func (o *RecoverIn) GetSinceOk() (*time.Time, bool)

GetSinceOk returns a tuple with the Since field value and a boolean to check if the value has been set.

func (*RecoverIn) GetUntil added in v0.70.0

func (o *RecoverIn) GetUntil() time.Time

GetUntil returns the Until field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RecoverIn) GetUntilOk added in v0.70.0

func (o *RecoverIn) GetUntilOk() (*time.Time, bool)

GetUntilOk returns a tuple with the Until field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RecoverIn) HasUntil added in v0.70.0

func (o *RecoverIn) HasUntil() bool

HasUntil returns a boolean if a field has been set.

func (RecoverIn) MarshalJSON

func (o RecoverIn) MarshalJSON() ([]byte, error)

func (*RecoverIn) SetSince

func (o *RecoverIn) SetSince(v time.Time)

SetSince sets field value

func (*RecoverIn) SetUntil added in v0.70.0

func (o *RecoverIn) SetUntil(v time.Time)

SetUntil gets a reference to the given NullableTime and assigns it to the Until field.

func (*RecoverIn) SetUntilNil added in v0.70.0

func (o *RecoverIn) SetUntilNil()

SetUntilNil sets the value for Until to be an explicit nil

func (*RecoverIn) UnsetUntil added in v0.70.0

func (o *RecoverIn) UnsetUntil()

UnsetUntil ensures that no value is present for Until, not even an explicit nil

type RecoverOut added in v0.84.0

type RecoverOut struct {
	Id     string               `json:"id"`
	Status BackgroundTaskStatus `json:"status"`
	Task   BackgroundTaskType   `json:"task"`
}

RecoverOut struct for RecoverOut

func NewRecoverOut added in v0.84.0

func NewRecoverOut(id string, status BackgroundTaskStatus, task BackgroundTaskType) *RecoverOut

NewRecoverOut instantiates a new RecoverOut 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 NewRecoverOutWithDefaults added in v0.84.0

func NewRecoverOutWithDefaults() *RecoverOut

NewRecoverOutWithDefaults instantiates a new RecoverOut 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 (*RecoverOut) GetId added in v0.84.0

func (o *RecoverOut) GetId() string

GetId returns the Id field value

func (*RecoverOut) GetIdOk added in v0.84.0

func (o *RecoverOut) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RecoverOut) GetStatus added in v0.84.0

func (o *RecoverOut) GetStatus() BackgroundTaskStatus

GetStatus returns the Status field value

func (*RecoverOut) GetStatusOk added in v0.84.0

func (o *RecoverOut) GetStatusOk() (*BackgroundTaskStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*RecoverOut) GetTask added in v0.84.0

func (o *RecoverOut) GetTask() BackgroundTaskType

GetTask returns the Task field value

func (*RecoverOut) GetTaskOk added in v0.84.0

func (o *RecoverOut) GetTaskOk() (*BackgroundTaskType, bool)

GetTaskOk returns a tuple with the Task field value and a boolean to check if the value has been set.

func (RecoverOut) MarshalJSON added in v0.84.0

func (o RecoverOut) MarshalJSON() ([]byte, error)

func (*RecoverOut) SetId added in v0.84.0

func (o *RecoverOut) SetId(v string)

SetId sets field value

func (*RecoverOut) SetStatus added in v0.84.0

func (o *RecoverOut) SetStatus(v BackgroundTaskStatus)

SetStatus sets field value

func (*RecoverOut) SetTask added in v0.84.0

func (o *RecoverOut) SetTask(v BackgroundTaskType)

SetTask sets field value

type ReplayIn added in v0.68.0

type ReplayIn struct {
	Since time.Time    `json:"since"`
	Until NullableTime `json:"until,omitempty"`
}

ReplayIn struct for ReplayIn

func NewReplayIn added in v0.68.0

func NewReplayIn(since time.Time) *ReplayIn

NewReplayIn instantiates a new ReplayIn 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 NewReplayInWithDefaults added in v0.68.0

func NewReplayInWithDefaults() *ReplayIn

NewReplayInWithDefaults instantiates a new ReplayIn 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 (*ReplayIn) GetSince added in v0.68.0

func (o *ReplayIn) GetSince() time.Time

GetSince returns the Since field value

func (*ReplayIn) GetSinceOk added in v0.68.0

func (o *ReplayIn) GetSinceOk() (*time.Time, bool)

GetSinceOk returns a tuple with the Since field value and a boolean to check if the value has been set.

func (*ReplayIn) GetUntil added in v0.70.0

func (o *ReplayIn) GetUntil() time.Time

GetUntil returns the Until field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReplayIn) GetUntilOk added in v0.70.0

func (o *ReplayIn) GetUntilOk() (*time.Time, bool)

GetUntilOk returns a tuple with the Until field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReplayIn) HasUntil added in v0.70.0

func (o *ReplayIn) HasUntil() bool

HasUntil returns a boolean if a field has been set.

func (ReplayIn) MarshalJSON added in v0.68.0

func (o ReplayIn) MarshalJSON() ([]byte, error)

func (*ReplayIn) SetSince added in v0.68.0

func (o *ReplayIn) SetSince(v time.Time)

SetSince sets field value

func (*ReplayIn) SetUntil added in v0.70.0

func (o *ReplayIn) SetUntil(v time.Time)

SetUntil gets a reference to the given NullableTime and assigns it to the Until field.

func (*ReplayIn) SetUntilNil added in v0.70.0

func (o *ReplayIn) SetUntilNil()

SetUntilNil sets the value for Until to be an explicit nil

func (*ReplayIn) UnsetUntil added in v0.70.0

func (o *ReplayIn) UnsetUntil()

UnsetUntil ensures that no value is present for Until, not even an explicit nil

type ReplayOut added in v0.84.0

type ReplayOut struct {
	Id     string               `json:"id"`
	Status BackgroundTaskStatus `json:"status"`
	Task   BackgroundTaskType   `json:"task"`
}

ReplayOut struct for ReplayOut

func NewReplayOut added in v0.84.0

func NewReplayOut(id string, status BackgroundTaskStatus, task BackgroundTaskType) *ReplayOut

NewReplayOut instantiates a new ReplayOut 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 NewReplayOutWithDefaults added in v0.84.0

func NewReplayOutWithDefaults() *ReplayOut

NewReplayOutWithDefaults instantiates a new ReplayOut 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 (*ReplayOut) GetId added in v0.84.0

func (o *ReplayOut) GetId() string

GetId returns the Id field value

func (*ReplayOut) GetIdOk added in v0.84.0

func (o *ReplayOut) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ReplayOut) GetStatus added in v0.84.0

func (o *ReplayOut) GetStatus() BackgroundTaskStatus

GetStatus returns the Status field value

func (*ReplayOut) GetStatusOk added in v0.84.0

func (o *ReplayOut) GetStatusOk() (*BackgroundTaskStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*ReplayOut) GetTask added in v0.84.0

func (o *ReplayOut) GetTask() BackgroundTaskType

GetTask returns the Task field value

func (*ReplayOut) GetTaskOk added in v0.84.0

func (o *ReplayOut) GetTaskOk() (*BackgroundTaskType, bool)

GetTaskOk returns a tuple with the Task field value and a boolean to check if the value has been set.

func (ReplayOut) MarshalJSON added in v0.84.0

func (o ReplayOut) MarshalJSON() ([]byte, error)

func (*ReplayOut) SetId added in v0.84.0

func (o *ReplayOut) SetId(v string)

SetId sets field value

func (*ReplayOut) SetStatus added in v0.84.0

func (o *ReplayOut) SetStatus(v BackgroundTaskStatus)

SetStatus sets field value

func (*ReplayOut) SetTask added in v0.84.0

func (o *ReplayOut) SetTask(v BackgroundTaskType)

SetTask sets field value

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SettingsIn

type SettingsIn struct {
	ColorPaletteDark            *CustomColorPalette  `json:"colorPaletteDark,omitempty"`
	ColorPaletteLight           *CustomColorPalette  `json:"colorPaletteLight,omitempty"`
	CustomBaseFontSize          NullableInt32        `json:"customBaseFontSize,omitempty"`
	CustomColor                 NullableString       `json:"customColor,omitempty"`
	CustomFontFamily            NullableString       `json:"customFontFamily,omitempty"`
	CustomLogoUrl               NullableString       `json:"customLogoUrl,omitempty"`
	CustomThemeOverride         *CustomThemeOverride `json:"customThemeOverride,omitempty"`
	DisableEndpointOnFailure    *bool                `json:"disableEndpointOnFailure,omitempty"`
	DisplayName                 NullableString       `json:"displayName,omitempty"`
	EnableChannels              *bool                `json:"enableChannels,omitempty"`
	EnableIntegrationManagement *bool                `json:"enableIntegrationManagement,omitempty"`
	EnableTransformations       *bool                `json:"enableTransformations,omitempty"`
	EnforceHttps                *bool                `json:"enforceHttps,omitempty"`
	EventCatalogPublished       *bool                `json:"eventCatalogPublished,omitempty"`
	ReadOnly                    *bool                `json:"readOnly,omitempty"`
}

SettingsIn struct for SettingsIn

func NewSettingsIn

func NewSettingsIn() *SettingsIn

NewSettingsIn instantiates a new SettingsIn 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 NewSettingsInWithDefaults

func NewSettingsInWithDefaults() *SettingsIn

NewSettingsInWithDefaults instantiates a new SettingsIn 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 (*SettingsIn) GetColorPaletteDark added in v0.62.0

func (o *SettingsIn) GetColorPaletteDark() CustomColorPalette

GetColorPaletteDark returns the ColorPaletteDark field value if set, zero value otherwise.

func (*SettingsIn) GetColorPaletteDarkOk added in v0.62.0

func (o *SettingsIn) GetColorPaletteDarkOk() (*CustomColorPalette, bool)

GetColorPaletteDarkOk returns a tuple with the ColorPaletteDark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetColorPaletteLight added in v0.62.0

func (o *SettingsIn) GetColorPaletteLight() CustomColorPalette

GetColorPaletteLight returns the ColorPaletteLight field value if set, zero value otherwise.

func (*SettingsIn) GetColorPaletteLightOk added in v0.62.0

func (o *SettingsIn) GetColorPaletteLightOk() (*CustomColorPalette, bool)

GetColorPaletteLightOk returns a tuple with the ColorPaletteLight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetCustomBaseFontSize

func (o *SettingsIn) GetCustomBaseFontSize() int32

GetCustomBaseFontSize returns the CustomBaseFontSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsIn) GetCustomBaseFontSizeOk

func (o *SettingsIn) GetCustomBaseFontSizeOk() (*int32, bool)

GetCustomBaseFontSizeOk returns a tuple with the CustomBaseFontSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsIn) GetCustomColor

func (o *SettingsIn) GetCustomColor() string

GetCustomColor returns the CustomColor field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsIn) GetCustomColorOk

func (o *SettingsIn) GetCustomColorOk() (*string, bool)

GetCustomColorOk returns a tuple with the CustomColor field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsIn) GetCustomFontFamily

func (o *SettingsIn) GetCustomFontFamily() string

GetCustomFontFamily returns the CustomFontFamily field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsIn) GetCustomFontFamilyOk

func (o *SettingsIn) GetCustomFontFamilyOk() (*string, bool)

GetCustomFontFamilyOk returns a tuple with the CustomFontFamily field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsIn) GetCustomLogoUrl

func (o *SettingsIn) GetCustomLogoUrl() string

GetCustomLogoUrl returns the CustomLogoUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsIn) GetCustomLogoUrlOk

func (o *SettingsIn) GetCustomLogoUrlOk() (*string, bool)

GetCustomLogoUrlOk returns a tuple with the CustomLogoUrl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsIn) GetCustomThemeOverride

func (o *SettingsIn) GetCustomThemeOverride() CustomThemeOverride

GetCustomThemeOverride returns the CustomThemeOverride field value if set, zero value otherwise.

func (*SettingsIn) GetCustomThemeOverrideOk

func (o *SettingsIn) GetCustomThemeOverrideOk() (*CustomThemeOverride, bool)

GetCustomThemeOverrideOk returns a tuple with the CustomThemeOverride field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetDisableEndpointOnFailure

func (o *SettingsIn) GetDisableEndpointOnFailure() bool

GetDisableEndpointOnFailure returns the DisableEndpointOnFailure field value if set, zero value otherwise.

func (*SettingsIn) GetDisableEndpointOnFailureOk

func (o *SettingsIn) GetDisableEndpointOnFailureOk() (*bool, bool)

GetDisableEndpointOnFailureOk returns a tuple with the DisableEndpointOnFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetDisplayName added in v0.62.0

func (o *SettingsIn) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsIn) GetDisplayNameOk added in v0.62.0

func (o *SettingsIn) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsIn) GetEnableChannels

func (o *SettingsIn) GetEnableChannels() bool

GetEnableChannels returns the EnableChannels field value if set, zero value otherwise.

func (*SettingsIn) GetEnableChannelsOk

func (o *SettingsIn) GetEnableChannelsOk() (*bool, bool)

GetEnableChannelsOk returns a tuple with the EnableChannels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetEnableIntegrationManagement

func (o *SettingsIn) GetEnableIntegrationManagement() bool

GetEnableIntegrationManagement returns the EnableIntegrationManagement field value if set, zero value otherwise.

func (*SettingsIn) GetEnableIntegrationManagementOk

func (o *SettingsIn) GetEnableIntegrationManagementOk() (*bool, bool)

GetEnableIntegrationManagementOk returns a tuple with the EnableIntegrationManagement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetEnableTransformations added in v0.67.0

func (o *SettingsIn) GetEnableTransformations() bool

GetEnableTransformations returns the EnableTransformations field value if set, zero value otherwise.

func (*SettingsIn) GetEnableTransformationsOk added in v0.67.0

func (o *SettingsIn) GetEnableTransformationsOk() (*bool, bool)

GetEnableTransformationsOk returns a tuple with the EnableTransformations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetEnforceHttps

func (o *SettingsIn) GetEnforceHttps() bool

GetEnforceHttps returns the EnforceHttps field value if set, zero value otherwise.

func (*SettingsIn) GetEnforceHttpsOk

func (o *SettingsIn) GetEnforceHttpsOk() (*bool, bool)

GetEnforceHttpsOk returns a tuple with the EnforceHttps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetEventCatalogPublished added in v0.62.0

func (o *SettingsIn) GetEventCatalogPublished() bool

GetEventCatalogPublished returns the EventCatalogPublished field value if set, zero value otherwise.

func (*SettingsIn) GetEventCatalogPublishedOk added in v0.62.0

func (o *SettingsIn) GetEventCatalogPublishedOk() (*bool, bool)

GetEventCatalogPublishedOk returns a tuple with the EventCatalogPublished field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) GetReadOnly added in v0.69.0

func (o *SettingsIn) GetReadOnly() bool

GetReadOnly returns the ReadOnly field value if set, zero value otherwise.

func (*SettingsIn) GetReadOnlyOk added in v0.69.0

func (o *SettingsIn) GetReadOnlyOk() (*bool, bool)

GetReadOnlyOk returns a tuple with the ReadOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsIn) HasColorPaletteDark added in v0.62.0

func (o *SettingsIn) HasColorPaletteDark() bool

HasColorPaletteDark returns a boolean if a field has been set.

func (*SettingsIn) HasColorPaletteLight added in v0.62.0

func (o *SettingsIn) HasColorPaletteLight() bool

HasColorPaletteLight returns a boolean if a field has been set.

func (*SettingsIn) HasCustomBaseFontSize

func (o *SettingsIn) HasCustomBaseFontSize() bool

HasCustomBaseFontSize returns a boolean if a field has been set.

func (*SettingsIn) HasCustomColor

func (o *SettingsIn) HasCustomColor() bool

HasCustomColor returns a boolean if a field has been set.

func (*SettingsIn) HasCustomFontFamily

func (o *SettingsIn) HasCustomFontFamily() bool

HasCustomFontFamily returns a boolean if a field has been set.

func (*SettingsIn) HasCustomLogoUrl

func (o *SettingsIn) HasCustomLogoUrl() bool

HasCustomLogoUrl returns a boolean if a field has been set.

func (*SettingsIn) HasCustomThemeOverride

func (o *SettingsIn) HasCustomThemeOverride() bool

HasCustomThemeOverride returns a boolean if a field has been set.

func (*SettingsIn) HasDisableEndpointOnFailure

func (o *SettingsIn) HasDisableEndpointOnFailure() bool

HasDisableEndpointOnFailure returns a boolean if a field has been set.

func (*SettingsIn) HasDisplayName added in v0.62.0

func (o *SettingsIn) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*SettingsIn) HasEnableChannels

func (o *SettingsIn) HasEnableChannels() bool

HasEnableChannels returns a boolean if a field has been set.

func (*SettingsIn) HasEnableIntegrationManagement

func (o *SettingsIn) HasEnableIntegrationManagement() bool

HasEnableIntegrationManagement returns a boolean if a field has been set.

func (*SettingsIn) HasEnableTransformations added in v0.67.0

func (o *SettingsIn) HasEnableTransformations() bool

HasEnableTransformations returns a boolean if a field has been set.

func (*SettingsIn) HasEnforceHttps

func (o *SettingsIn) HasEnforceHttps() bool

HasEnforceHttps returns a boolean if a field has been set.

func (*SettingsIn) HasEventCatalogPublished added in v0.62.0

func (o *SettingsIn) HasEventCatalogPublished() bool

HasEventCatalogPublished returns a boolean if a field has been set.

func (*SettingsIn) HasReadOnly added in v0.69.0

func (o *SettingsIn) HasReadOnly() bool

HasReadOnly returns a boolean if a field has been set.

func (SettingsIn) MarshalJSON

func (o SettingsIn) MarshalJSON() ([]byte, error)

func (*SettingsIn) SetColorPaletteDark added in v0.62.0

func (o *SettingsIn) SetColorPaletteDark(v CustomColorPalette)

SetColorPaletteDark gets a reference to the given CustomColorPalette and assigns it to the ColorPaletteDark field.

func (*SettingsIn) SetColorPaletteLight added in v0.62.0

func (o *SettingsIn) SetColorPaletteLight(v CustomColorPalette)

SetColorPaletteLight gets a reference to the given CustomColorPalette and assigns it to the ColorPaletteLight field.

func (*SettingsIn) SetCustomBaseFontSize

func (o *SettingsIn) SetCustomBaseFontSize(v int32)

SetCustomBaseFontSize gets a reference to the given NullableInt32 and assigns it to the CustomBaseFontSize field.

func (*SettingsIn) SetCustomBaseFontSizeNil added in v0.62.0

func (o *SettingsIn) SetCustomBaseFontSizeNil()

SetCustomBaseFontSizeNil sets the value for CustomBaseFontSize to be an explicit nil

func (*SettingsIn) SetCustomColor

func (o *SettingsIn) SetCustomColor(v string)

SetCustomColor gets a reference to the given NullableString and assigns it to the CustomColor field.

func (*SettingsIn) SetCustomColorNil added in v0.62.0

func (o *SettingsIn) SetCustomColorNil()

SetCustomColorNil sets the value for CustomColor to be an explicit nil

func (*SettingsIn) SetCustomFontFamily

func (o *SettingsIn) SetCustomFontFamily(v string)

SetCustomFontFamily gets a reference to the given NullableString and assigns it to the CustomFontFamily field.

func (*SettingsIn) SetCustomFontFamilyNil added in v0.62.0

func (o *SettingsIn) SetCustomFontFamilyNil()

SetCustomFontFamilyNil sets the value for CustomFontFamily to be an explicit nil

func (*SettingsIn) SetCustomLogoUrl

func (o *SettingsIn) SetCustomLogoUrl(v string)

SetCustomLogoUrl gets a reference to the given NullableString and assigns it to the CustomLogoUrl field.

func (*SettingsIn) SetCustomLogoUrlNil added in v0.62.0

func (o *SettingsIn) SetCustomLogoUrlNil()

SetCustomLogoUrlNil sets the value for CustomLogoUrl to be an explicit nil

func (*SettingsIn) SetCustomThemeOverride

func (o *SettingsIn) SetCustomThemeOverride(v CustomThemeOverride)

SetCustomThemeOverride gets a reference to the given CustomThemeOverride and assigns it to the CustomThemeOverride field.

func (*SettingsIn) SetDisableEndpointOnFailure

func (o *SettingsIn) SetDisableEndpointOnFailure(v bool)

SetDisableEndpointOnFailure gets a reference to the given bool and assigns it to the DisableEndpointOnFailure field.

func (*SettingsIn) SetDisplayName added in v0.62.0

func (o *SettingsIn) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*SettingsIn) SetDisplayNameNil added in v0.62.0

func (o *SettingsIn) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*SettingsIn) SetEnableChannels

func (o *SettingsIn) SetEnableChannels(v bool)

SetEnableChannels gets a reference to the given bool and assigns it to the EnableChannels field.

func (*SettingsIn) SetEnableIntegrationManagement

func (o *SettingsIn) SetEnableIntegrationManagement(v bool)

SetEnableIntegrationManagement gets a reference to the given bool and assigns it to the EnableIntegrationManagement field.

func (*SettingsIn) SetEnableTransformations added in v0.67.0

func (o *SettingsIn) SetEnableTransformations(v bool)

SetEnableTransformations gets a reference to the given bool and assigns it to the EnableTransformations field.

func (*SettingsIn) SetEnforceHttps

func (o *SettingsIn) SetEnforceHttps(v bool)

SetEnforceHttps gets a reference to the given bool and assigns it to the EnforceHttps field.

func (*SettingsIn) SetEventCatalogPublished added in v0.62.0

func (o *SettingsIn) SetEventCatalogPublished(v bool)

SetEventCatalogPublished gets a reference to the given bool and assigns it to the EventCatalogPublished field.

func (*SettingsIn) SetReadOnly added in v0.69.0

func (o *SettingsIn) SetReadOnly(v bool)

SetReadOnly gets a reference to the given bool and assigns it to the ReadOnly field.

func (*SettingsIn) UnsetCustomBaseFontSize added in v0.62.0

func (o *SettingsIn) UnsetCustomBaseFontSize()

UnsetCustomBaseFontSize ensures that no value is present for CustomBaseFontSize, not even an explicit nil

func (*SettingsIn) UnsetCustomColor added in v0.62.0

func (o *SettingsIn) UnsetCustomColor()

UnsetCustomColor ensures that no value is present for CustomColor, not even an explicit nil

func (*SettingsIn) UnsetCustomFontFamily added in v0.62.0

func (o *SettingsIn) UnsetCustomFontFamily()

UnsetCustomFontFamily ensures that no value is present for CustomFontFamily, not even an explicit nil

func (*SettingsIn) UnsetCustomLogoUrl added in v0.62.0

func (o *SettingsIn) UnsetCustomLogoUrl()

UnsetCustomLogoUrl ensures that no value is present for CustomLogoUrl, not even an explicit nil

func (*SettingsIn) UnsetDisplayName added in v0.62.0

func (o *SettingsIn) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

type SettingsOut

type SettingsOut struct {
	ColorPaletteDark            *CustomColorPalette  `json:"colorPaletteDark,omitempty"`
	ColorPaletteLight           *CustomColorPalette  `json:"colorPaletteLight,omitempty"`
	CustomBaseFontSize          NullableInt32        `json:"customBaseFontSize,omitempty"`
	CustomColor                 NullableString       `json:"customColor,omitempty"`
	CustomFontFamily            NullableString       `json:"customFontFamily,omitempty"`
	CustomLogoUrl               NullableString       `json:"customLogoUrl,omitempty"`
	CustomThemeOverride         *CustomThemeOverride `json:"customThemeOverride,omitempty"`
	DisableEndpointOnFailure    *bool                `json:"disableEndpointOnFailure,omitempty"`
	DisplayName                 NullableString       `json:"displayName,omitempty"`
	EnableChannels              *bool                `json:"enableChannels,omitempty"`
	EnableIntegrationManagement *bool                `json:"enableIntegrationManagement,omitempty"`
	EnableTransformations       *bool                `json:"enableTransformations,omitempty"`
	EnforceHttps                *bool                `json:"enforceHttps,omitempty"`
	EventCatalogPublished       *bool                `json:"eventCatalogPublished,omitempty"`
	ReadOnly                    *bool                `json:"readOnly,omitempty"`
}

SettingsOut struct for SettingsOut

func NewSettingsOut

func NewSettingsOut() *SettingsOut

NewSettingsOut instantiates a new SettingsOut 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 NewSettingsOutWithDefaults

func NewSettingsOutWithDefaults() *SettingsOut

NewSettingsOutWithDefaults instantiates a new SettingsOut 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 (*SettingsOut) GetColorPaletteDark added in v0.62.0

func (o *SettingsOut) GetColorPaletteDark() CustomColorPalette

GetColorPaletteDark returns the ColorPaletteDark field value if set, zero value otherwise.

func (*SettingsOut) GetColorPaletteDarkOk added in v0.62.0

func (o *SettingsOut) GetColorPaletteDarkOk() (*CustomColorPalette, bool)

GetColorPaletteDarkOk returns a tuple with the ColorPaletteDark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetColorPaletteLight added in v0.62.0

func (o *SettingsOut) GetColorPaletteLight() CustomColorPalette

GetColorPaletteLight returns the ColorPaletteLight field value if set, zero value otherwise.

func (*SettingsOut) GetColorPaletteLightOk added in v0.62.0

func (o *SettingsOut) GetColorPaletteLightOk() (*CustomColorPalette, bool)

GetColorPaletteLightOk returns a tuple with the ColorPaletteLight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetCustomBaseFontSize

func (o *SettingsOut) GetCustomBaseFontSize() int32

GetCustomBaseFontSize returns the CustomBaseFontSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsOut) GetCustomBaseFontSizeOk

func (o *SettingsOut) GetCustomBaseFontSizeOk() (*int32, bool)

GetCustomBaseFontSizeOk returns a tuple with the CustomBaseFontSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsOut) GetCustomColor

func (o *SettingsOut) GetCustomColor() string

GetCustomColor returns the CustomColor field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsOut) GetCustomColorOk

func (o *SettingsOut) GetCustomColorOk() (*string, bool)

GetCustomColorOk returns a tuple with the CustomColor field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsOut) GetCustomFontFamily

func (o *SettingsOut) GetCustomFontFamily() string

GetCustomFontFamily returns the CustomFontFamily field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsOut) GetCustomFontFamilyOk

func (o *SettingsOut) GetCustomFontFamilyOk() (*string, bool)

GetCustomFontFamilyOk returns a tuple with the CustomFontFamily field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsOut) GetCustomLogoUrl

func (o *SettingsOut) GetCustomLogoUrl() string

GetCustomLogoUrl returns the CustomLogoUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsOut) GetCustomLogoUrlOk

func (o *SettingsOut) GetCustomLogoUrlOk() (*string, bool)

GetCustomLogoUrlOk returns a tuple with the CustomLogoUrl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsOut) GetCustomThemeOverride

func (o *SettingsOut) GetCustomThemeOverride() CustomThemeOverride

GetCustomThemeOverride returns the CustomThemeOverride field value if set, zero value otherwise.

func (*SettingsOut) GetCustomThemeOverrideOk

func (o *SettingsOut) GetCustomThemeOverrideOk() (*CustomThemeOverride, bool)

GetCustomThemeOverrideOk returns a tuple with the CustomThemeOverride field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetDisableEndpointOnFailure

func (o *SettingsOut) GetDisableEndpointOnFailure() bool

GetDisableEndpointOnFailure returns the DisableEndpointOnFailure field value if set, zero value otherwise.

func (*SettingsOut) GetDisableEndpointOnFailureOk

func (o *SettingsOut) GetDisableEndpointOnFailureOk() (*bool, bool)

GetDisableEndpointOnFailureOk returns a tuple with the DisableEndpointOnFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetDisplayName added in v0.62.0

func (o *SettingsOut) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SettingsOut) GetDisplayNameOk added in v0.62.0

func (o *SettingsOut) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsOut) GetEnableChannels

func (o *SettingsOut) GetEnableChannels() bool

GetEnableChannels returns the EnableChannels field value if set, zero value otherwise.

func (*SettingsOut) GetEnableChannelsOk

func (o *SettingsOut) GetEnableChannelsOk() (*bool, bool)

GetEnableChannelsOk returns a tuple with the EnableChannels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetEnableIntegrationManagement

func (o *SettingsOut) GetEnableIntegrationManagement() bool

GetEnableIntegrationManagement returns the EnableIntegrationManagement field value if set, zero value otherwise.

func (*SettingsOut) GetEnableIntegrationManagementOk

func (o *SettingsOut) GetEnableIntegrationManagementOk() (*bool, bool)

GetEnableIntegrationManagementOk returns a tuple with the EnableIntegrationManagement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetEnableTransformations added in v0.67.0

func (o *SettingsOut) GetEnableTransformations() bool

GetEnableTransformations returns the EnableTransformations field value if set, zero value otherwise.

func (*SettingsOut) GetEnableTransformationsOk added in v0.67.0

func (o *SettingsOut) GetEnableTransformationsOk() (*bool, bool)

GetEnableTransformationsOk returns a tuple with the EnableTransformations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetEnforceHttps

func (o *SettingsOut) GetEnforceHttps() bool

GetEnforceHttps returns the EnforceHttps field value if set, zero value otherwise.

func (*SettingsOut) GetEnforceHttpsOk

func (o *SettingsOut) GetEnforceHttpsOk() (*bool, bool)

GetEnforceHttpsOk returns a tuple with the EnforceHttps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetEventCatalogPublished added in v0.62.0

func (o *SettingsOut) GetEventCatalogPublished() bool

GetEventCatalogPublished returns the EventCatalogPublished field value if set, zero value otherwise.

func (*SettingsOut) GetEventCatalogPublishedOk added in v0.62.0

func (o *SettingsOut) GetEventCatalogPublishedOk() (*bool, bool)

GetEventCatalogPublishedOk returns a tuple with the EventCatalogPublished field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) GetReadOnly added in v0.69.0

func (o *SettingsOut) GetReadOnly() bool

GetReadOnly returns the ReadOnly field value if set, zero value otherwise.

func (*SettingsOut) GetReadOnlyOk added in v0.69.0

func (o *SettingsOut) GetReadOnlyOk() (*bool, bool)

GetReadOnlyOk returns a tuple with the ReadOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsOut) HasColorPaletteDark added in v0.62.0

func (o *SettingsOut) HasColorPaletteDark() bool

HasColorPaletteDark returns a boolean if a field has been set.

func (*SettingsOut) HasColorPaletteLight added in v0.62.0

func (o *SettingsOut) HasColorPaletteLight() bool

HasColorPaletteLight returns a boolean if a field has been set.

func (*SettingsOut) HasCustomBaseFontSize

func (o *SettingsOut) HasCustomBaseFontSize() bool

HasCustomBaseFontSize returns a boolean if a field has been set.

func (*SettingsOut) HasCustomColor

func (o *SettingsOut) HasCustomColor() bool

HasCustomColor returns a boolean if a field has been set.

func (*SettingsOut) HasCustomFontFamily

func (o *SettingsOut) HasCustomFontFamily() bool

HasCustomFontFamily returns a boolean if a field has been set.

func (*SettingsOut) HasCustomLogoUrl

func (o *SettingsOut) HasCustomLogoUrl() bool

HasCustomLogoUrl returns a boolean if a field has been set.

func (*SettingsOut) HasCustomThemeOverride

func (o *SettingsOut) HasCustomThemeOverride() bool

HasCustomThemeOverride returns a boolean if a field has been set.

func (*SettingsOut) HasDisableEndpointOnFailure

func (o *SettingsOut) HasDisableEndpointOnFailure() bool

HasDisableEndpointOnFailure returns a boolean if a field has been set.

func (*SettingsOut) HasDisplayName added in v0.62.0

func (o *SettingsOut) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*SettingsOut) HasEnableChannels

func (o *SettingsOut) HasEnableChannels() bool

HasEnableChannels returns a boolean if a field has been set.

func (*SettingsOut) HasEnableIntegrationManagement

func (o *SettingsOut) HasEnableIntegrationManagement() bool

HasEnableIntegrationManagement returns a boolean if a field has been set.

func (*SettingsOut) HasEnableTransformations added in v0.67.0

func (o *SettingsOut) HasEnableTransformations() bool

HasEnableTransformations returns a boolean if a field has been set.

func (*SettingsOut) HasEnforceHttps

func (o *SettingsOut) HasEnforceHttps() bool

HasEnforceHttps returns a boolean if a field has been set.

func (*SettingsOut) HasEventCatalogPublished added in v0.62.0

func (o *SettingsOut) HasEventCatalogPublished() bool

HasEventCatalogPublished returns a boolean if a field has been set.

func (*SettingsOut) HasReadOnly added in v0.69.0

func (o *SettingsOut) HasReadOnly() bool

HasReadOnly returns a boolean if a field has been set.

func (SettingsOut) MarshalJSON

func (o SettingsOut) MarshalJSON() ([]byte, error)

func (*SettingsOut) SetColorPaletteDark added in v0.62.0

func (o *SettingsOut) SetColorPaletteDark(v CustomColorPalette)

SetColorPaletteDark gets a reference to the given CustomColorPalette and assigns it to the ColorPaletteDark field.

func (*SettingsOut) SetColorPaletteLight added in v0.62.0

func (o *SettingsOut) SetColorPaletteLight(v CustomColorPalette)

SetColorPaletteLight gets a reference to the given CustomColorPalette and assigns it to the ColorPaletteLight field.

func (*SettingsOut) SetCustomBaseFontSize

func (o *SettingsOut) SetCustomBaseFontSize(v int32)

SetCustomBaseFontSize gets a reference to the given NullableInt32 and assigns it to the CustomBaseFontSize field.

func (*SettingsOut) SetCustomBaseFontSizeNil added in v0.62.0

func (o *SettingsOut) SetCustomBaseFontSizeNil()

SetCustomBaseFontSizeNil sets the value for CustomBaseFontSize to be an explicit nil

func (*SettingsOut) SetCustomColor

func (o *SettingsOut) SetCustomColor(v string)

SetCustomColor gets a reference to the given NullableString and assigns it to the CustomColor field.

func (*SettingsOut) SetCustomColorNil added in v0.62.0

func (o *SettingsOut) SetCustomColorNil()

SetCustomColorNil sets the value for CustomColor to be an explicit nil

func (*SettingsOut) SetCustomFontFamily

func (o *SettingsOut) SetCustomFontFamily(v string)

SetCustomFontFamily gets a reference to the given NullableString and assigns it to the CustomFontFamily field.

func (*SettingsOut) SetCustomFontFamilyNil added in v0.62.0

func (o *SettingsOut) SetCustomFontFamilyNil()

SetCustomFontFamilyNil sets the value for CustomFontFamily to be an explicit nil

func (*SettingsOut) SetCustomLogoUrl

func (o *SettingsOut) SetCustomLogoUrl(v string)

SetCustomLogoUrl gets a reference to the given NullableString and assigns it to the CustomLogoUrl field.

func (*SettingsOut) SetCustomLogoUrlNil added in v0.62.0

func (o *SettingsOut) SetCustomLogoUrlNil()

SetCustomLogoUrlNil sets the value for CustomLogoUrl to be an explicit nil

func (*SettingsOut) SetCustomThemeOverride

func (o *SettingsOut) SetCustomThemeOverride(v CustomThemeOverride)

SetCustomThemeOverride gets a reference to the given CustomThemeOverride and assigns it to the CustomThemeOverride field.

func (*SettingsOut) SetDisableEndpointOnFailure

func (o *SettingsOut) SetDisableEndpointOnFailure(v bool)

SetDisableEndpointOnFailure gets a reference to the given bool and assigns it to the DisableEndpointOnFailure field.

func (*SettingsOut) SetDisplayName added in v0.62.0

func (o *SettingsOut) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*SettingsOut) SetDisplayNameNil added in v0.62.0

func (o *SettingsOut) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*SettingsOut) SetEnableChannels

func (o *SettingsOut) SetEnableChannels(v bool)

SetEnableChannels gets a reference to the given bool and assigns it to the EnableChannels field.

func (*SettingsOut) SetEnableIntegrationManagement

func (o *SettingsOut) SetEnableIntegrationManagement(v bool)

SetEnableIntegrationManagement gets a reference to the given bool and assigns it to the EnableIntegrationManagement field.

func (*SettingsOut) SetEnableTransformations added in v0.67.0

func (o *SettingsOut) SetEnableTransformations(v bool)

SetEnableTransformations gets a reference to the given bool and assigns it to the EnableTransformations field.

func (*SettingsOut) SetEnforceHttps

func (o *SettingsOut) SetEnforceHttps(v bool)

SetEnforceHttps gets a reference to the given bool and assigns it to the EnforceHttps field.

func (*SettingsOut) SetEventCatalogPublished added in v0.62.0

func (o *SettingsOut) SetEventCatalogPublished(v bool)

SetEventCatalogPublished gets a reference to the given bool and assigns it to the EventCatalogPublished field.

func (*SettingsOut) SetReadOnly added in v0.69.0

func (o *SettingsOut) SetReadOnly(v bool)

SetReadOnly gets a reference to the given bool and assigns it to the ReadOnly field.

func (*SettingsOut) UnsetCustomBaseFontSize added in v0.62.0

func (o *SettingsOut) UnsetCustomBaseFontSize()

UnsetCustomBaseFontSize ensures that no value is present for CustomBaseFontSize, not even an explicit nil

func (*SettingsOut) UnsetCustomColor added in v0.62.0

func (o *SettingsOut) UnsetCustomColor()

UnsetCustomColor ensures that no value is present for CustomColor, not even an explicit nil

func (*SettingsOut) UnsetCustomFontFamily added in v0.62.0

func (o *SettingsOut) UnsetCustomFontFamily()

UnsetCustomFontFamily ensures that no value is present for CustomFontFamily, not even an explicit nil

func (*SettingsOut) UnsetCustomLogoUrl added in v0.62.0

func (o *SettingsOut) UnsetCustomLogoUrl()

UnsetCustomLogoUrl ensures that no value is present for CustomLogoUrl, not even an explicit nil

func (*SettingsOut) UnsetDisplayName added in v0.62.0

func (o *SettingsOut) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

type StatisticsApiService

type StatisticsApiService service

StatisticsApiService StatisticsApi service

func (*StatisticsApiService) CalculateAggregateAppStats added in v0.84.0

* CalculateAggregateAppStats Calculate Aggregate App Stats * Creates a background task to calculate the message destinations for all applications in the environment. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCalculateAggregateAppStatsRequest

func (*StatisticsApiService) CalculateAggregateAppStatsExecute added in v0.84.0

* Execute executes the request * @return AppUsageStatsOut

func (*StatisticsApiService) V1StatsAppAttempts added in v0.84.0

func (a *StatisticsApiService) V1StatsAppAttempts(ctx _context.Context, appId string) ApiV1StatsAppAttemptsRequest

* V1StatsAppAttempts Get App Attempt Stats * Returns application-level statistics on message attempts * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @return ApiV1StatsAppAttemptsRequest

func (*StatisticsApiService) V1StatsAppAttemptsExecute added in v0.84.0

* Execute executes the request * @return AttemptStatisticsResponse

func (*StatisticsApiService) V1StatsEndpointAttempts added in v0.84.0

func (a *StatisticsApiService) V1StatsEndpointAttempts(ctx _context.Context, appId string, endpointId string) ApiV1StatsEndpointAttemptsRequest

* V1StatsEndpointAttempts Get Ep Stats * Returns endpoint-level statistics on message attempts * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId The app's ID or UID * @param endpointId The ep's ID or UID * @return ApiV1StatsEndpointAttemptsRequest

func (*StatisticsApiService) V1StatsEndpointAttemptsExecute added in v0.84.0

* Execute executes the request * @return AttemptStatisticsResponse

type StatisticsPeriod

type StatisticsPeriod string

StatisticsPeriod Period length for a statistics data point

const (
	STATISTICSPERIOD_ONE_DAY      StatisticsPeriod = "OneDay"
	STATISTICSPERIOD_FIVE_MINUTES StatisticsPeriod = "FiveMinutes"
)

List of StatisticsPeriod

func NewStatisticsPeriodFromValue

func NewStatisticsPeriodFromValue(v string) (*StatisticsPeriod, error)

NewStatisticsPeriodFromValue returns a pointer to a valid StatisticsPeriod for the value passed as argument, or an error if the value passed is not allowed by the enum

func (StatisticsPeriod) IsValid

func (v StatisticsPeriod) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (StatisticsPeriod) Ptr

Ptr returns reference to StatisticsPeriod value

func (*StatisticsPeriod) UnmarshalJSON

func (v *StatisticsPeriod) UnmarshalJSON(src []byte) error

type StatusCodeClass added in v0.50.0

type StatusCodeClass int32

StatusCodeClass The different classes of HTTP status codes: - CodeNone = 0 - Code1xx = 100 - Code2xx = 200 - Code3xx = 300 - Code4xx = 400 - Code5xx = 500

const (
	STATUSCODECLASS_CodeNone StatusCodeClass = 0
	STATUSCODECLASS_Code1xx  StatusCodeClass = 100
	STATUSCODECLASS_Code2xx  StatusCodeClass = 200
	STATUSCODECLASS_Code3xx  StatusCodeClass = 300
	STATUSCODECLASS_Code4xx  StatusCodeClass = 400
	STATUSCODECLASS_Code5xx  StatusCodeClass = 500
)

List of StatusCodeClass

func NewStatusCodeClassFromValue added in v0.50.0

func NewStatusCodeClassFromValue(v int32) (*StatusCodeClass, error)

NewStatusCodeClassFromValue returns a pointer to a valid StatusCodeClass for the value passed as argument, or an error if the value passed is not allowed by the enum

func (StatusCodeClass) IsValid added in v0.50.0

func (v StatusCodeClass) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (StatusCodeClass) Ptr added in v0.50.0

Ptr returns reference to StatusCodeClass value

func (*StatusCodeClass) UnmarshalJSON added in v0.50.0

func (v *StatusCodeClass) UnmarshalJSON(src []byte) error

type TemplateIn added in v1.8.0

type TemplateIn struct {
	Description      *string        `json:"description,omitempty"`
	FilterTypes      []string       `json:"filterTypes,omitempty"`
	Instructions     *string        `json:"instructions,omitempty"`
	InstructionsLink NullableString `json:"instructionsLink,omitempty"`
	Name             string         `json:"name"`
	Transformation   string         `json:"transformation"`
}

TemplateIn struct for TemplateIn

func NewTemplateIn added in v1.8.0

func NewTemplateIn(logo string, name string, transformation string) *TemplateIn

NewTemplateIn instantiates a new TemplateIn 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 NewTemplateInWithDefaults added in v1.8.0

func NewTemplateInWithDefaults() *TemplateIn

NewTemplateInWithDefaults instantiates a new TemplateIn 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 (*TemplateIn) GetDescription added in v1.8.0

func (o *TemplateIn) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TemplateIn) GetDescriptionOk added in v1.8.0

func (o *TemplateIn) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateIn) GetFilterTypes added in v1.8.0

func (o *TemplateIn) GetFilterTypes() []string

GetFilterTypes returns the FilterTypes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateIn) GetFilterTypesOk added in v1.8.0

func (o *TemplateIn) GetFilterTypesOk() (*[]string, bool)

GetFilterTypesOk returns a tuple with the FilterTypes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateIn) GetInstructions added in v1.8.0

func (o *TemplateIn) GetInstructions() string

GetInstructions returns the Instructions field value if set, zero value otherwise.

func (o *TemplateIn) GetInstructionsLink() string

GetInstructionsLink returns the InstructionsLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateIn) GetInstructionsLinkOk added in v1.8.0

func (o *TemplateIn) GetInstructionsLinkOk() (*string, bool)

GetInstructionsLinkOk returns a tuple with the InstructionsLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateIn) GetInstructionsOk added in v1.8.0

func (o *TemplateIn) GetInstructionsOk() (*string, bool)

GetInstructionsOk returns a tuple with the Instructions field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *TemplateIn) GetLogo() string

GetLogo returns the Logo field value

func (*TemplateIn) GetLogoOk added in v1.8.0

func (o *TemplateIn) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value and a boolean to check if the value has been set.

func (*TemplateIn) GetName added in v1.8.0

func (o *TemplateIn) GetName() string

GetName returns the Name field value

func (*TemplateIn) GetNameOk added in v1.8.0

func (o *TemplateIn) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TemplateIn) GetTransformation added in v1.8.0

func (o *TemplateIn) GetTransformation() string

GetTransformation returns the Transformation field value

func (*TemplateIn) GetTransformationOk added in v1.8.0

func (o *TemplateIn) GetTransformationOk() (*string, bool)

GetTransformationOk returns a tuple with the Transformation field value and a boolean to check if the value has been set.

func (*TemplateIn) HasDescription added in v1.8.0

func (o *TemplateIn) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TemplateIn) HasFilterTypes added in v1.8.0

func (o *TemplateIn) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*TemplateIn) HasInstructions added in v1.8.0

func (o *TemplateIn) HasInstructions() bool

HasInstructions returns a boolean if a field has been set.

func (o *TemplateIn) HasInstructionsLink() bool

HasInstructionsLink returns a boolean if a field has been set.

func (TemplateIn) MarshalJSON added in v1.8.0

func (o TemplateIn) MarshalJSON() ([]byte, error)

func (*TemplateIn) SetDescription added in v1.8.0

func (o *TemplateIn) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TemplateIn) SetFilterTypes added in v1.8.0

func (o *TemplateIn) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*TemplateIn) SetInstructions added in v1.8.0

func (o *TemplateIn) SetInstructions(v string)

SetInstructions gets a reference to the given string and assigns it to the Instructions field.

func (o *TemplateIn) SetInstructionsLink(v string)

SetInstructionsLink gets a reference to the given NullableString and assigns it to the InstructionsLink field.

func (*TemplateIn) SetInstructionsLinkNil added in v1.8.0

func (o *TemplateIn) SetInstructionsLinkNil()

SetInstructionsLinkNil sets the value for InstructionsLink to be an explicit nil

func (o *TemplateIn) SetLogo(v string)

SetLogo sets field value

func (*TemplateIn) SetName added in v1.8.0

func (o *TemplateIn) SetName(v string)

SetName sets field value

func (*TemplateIn) SetTransformation added in v1.8.0

func (o *TemplateIn) SetTransformation(v string)

SetTransformation sets field value

func (o *TemplateIn) UnsetInstructionsLink()

UnsetInstructionsLink ensures that no value is present for InstructionsLink, not even an explicit nil

type TemplateOut added in v1.8.0

type TemplateOut struct {
	CreatedAt        time.Time                  `json:"createdAt"`
	Description      string                     `json:"description"`
	FilterTypes      []string                   `json:"filterTypes,omitempty"`
	Id               string                     `json:"id"`
	Instructions     string                     `json:"instructions"`
	InstructionsLink NullableString             `json:"instructionsLink,omitempty"`
	Kind             TransformationTemplateKind `json:"kind"`
	Name             string                     `json:"name"`
	OrgId            string                     `json:"orgId"`
	Transformation   string                     `json:"transformation"`
	UpdatedAt        time.Time                  `json:"updatedAt"`
}

TemplateOut struct for TemplateOut

func NewTemplateOut added in v1.8.0

func NewTemplateOut(createdAt time.Time, description string, id string, instructions string, kind TransformationTemplateKind, logo string, name string, orgId string, transformation string, updatedAt time.Time) *TemplateOut

NewTemplateOut instantiates a new TemplateOut 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 NewTemplateOutWithDefaults added in v1.8.0

func NewTemplateOutWithDefaults() *TemplateOut

NewTemplateOutWithDefaults instantiates a new TemplateOut 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 (*TemplateOut) GetCreatedAt added in v1.8.0

func (o *TemplateOut) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*TemplateOut) GetCreatedAtOk added in v1.8.0

func (o *TemplateOut) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*TemplateOut) GetDescription added in v1.8.0

func (o *TemplateOut) GetDescription() string

GetDescription returns the Description field value

func (*TemplateOut) GetDescriptionOk added in v1.8.0

func (o *TemplateOut) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*TemplateOut) GetFilterTypes added in v1.8.0

func (o *TemplateOut) GetFilterTypes() []string

GetFilterTypes returns the FilterTypes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateOut) GetFilterTypesOk added in v1.8.0

func (o *TemplateOut) GetFilterTypesOk() (*[]string, bool)

GetFilterTypesOk returns a tuple with the FilterTypes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateOut) GetId added in v1.8.0

func (o *TemplateOut) GetId() string

GetId returns the Id field value

func (*TemplateOut) GetIdOk added in v1.8.0

func (o *TemplateOut) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*TemplateOut) GetInstructions added in v1.8.0

func (o *TemplateOut) GetInstructions() string

GetInstructions returns the Instructions field value

func (o *TemplateOut) GetInstructionsLink() string

GetInstructionsLink returns the InstructionsLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateOut) GetInstructionsLinkOk added in v1.8.0

func (o *TemplateOut) GetInstructionsLinkOk() (*string, bool)

GetInstructionsLinkOk returns a tuple with the InstructionsLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateOut) GetInstructionsOk added in v1.8.0

func (o *TemplateOut) GetInstructionsOk() (*string, bool)

GetInstructionsOk returns a tuple with the Instructions field value and a boolean to check if the value has been set.

func (*TemplateOut) GetKind added in v1.8.0

GetKind returns the Kind field value

func (*TemplateOut) GetKindOk added in v1.8.0

func (o *TemplateOut) GetKindOk() (*TransformationTemplateKind, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (o *TemplateOut) GetLogo() string

GetLogo returns the Logo field value

func (*TemplateOut) GetLogoOk added in v1.8.0

func (o *TemplateOut) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value and a boolean to check if the value has been set.

func (*TemplateOut) GetName added in v1.8.0

func (o *TemplateOut) GetName() string

GetName returns the Name field value

func (*TemplateOut) GetNameOk added in v1.8.0

func (o *TemplateOut) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TemplateOut) GetOrgId added in v1.8.0

func (o *TemplateOut) GetOrgId() string

GetOrgId returns the OrgId field value

func (*TemplateOut) GetOrgIdOk added in v1.8.0

func (o *TemplateOut) GetOrgIdOk() (*string, bool)

GetOrgIdOk returns a tuple with the OrgId field value and a boolean to check if the value has been set.

func (*TemplateOut) GetTransformation added in v1.8.0

func (o *TemplateOut) GetTransformation() string

GetTransformation returns the Transformation field value

func (*TemplateOut) GetTransformationOk added in v1.8.0

func (o *TemplateOut) GetTransformationOk() (*string, bool)

GetTransformationOk returns a tuple with the Transformation field value and a boolean to check if the value has been set.

func (*TemplateOut) GetUpdatedAt added in v1.8.0

func (o *TemplateOut) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*TemplateOut) GetUpdatedAtOk added in v1.8.0

func (o *TemplateOut) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*TemplateOut) HasFilterTypes added in v1.8.0

func (o *TemplateOut) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (o *TemplateOut) HasInstructionsLink() bool

HasInstructionsLink returns a boolean if a field has been set.

func (TemplateOut) MarshalJSON added in v1.8.0

func (o TemplateOut) MarshalJSON() ([]byte, error)

func (*TemplateOut) SetCreatedAt added in v1.8.0

func (o *TemplateOut) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*TemplateOut) SetDescription added in v1.8.0

func (o *TemplateOut) SetDescription(v string)

SetDescription sets field value

func (*TemplateOut) SetFilterTypes added in v1.8.0

func (o *TemplateOut) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*TemplateOut) SetId added in v1.8.0

func (o *TemplateOut) SetId(v string)

SetId sets field value

func (*TemplateOut) SetInstructions added in v1.8.0

func (o *TemplateOut) SetInstructions(v string)

SetInstructions sets field value

func (o *TemplateOut) SetInstructionsLink(v string)

SetInstructionsLink gets a reference to the given NullableString and assigns it to the InstructionsLink field.

func (*TemplateOut) SetInstructionsLinkNil added in v1.8.0

func (o *TemplateOut) SetInstructionsLinkNil()

SetInstructionsLinkNil sets the value for InstructionsLink to be an explicit nil

func (*TemplateOut) SetKind added in v1.8.0

SetKind sets field value

func (o *TemplateOut) SetLogo(v string)

SetLogo sets field value

func (*TemplateOut) SetName added in v1.8.0

func (o *TemplateOut) SetName(v string)

SetName sets field value

func (*TemplateOut) SetOrgId added in v1.8.0

func (o *TemplateOut) SetOrgId(v string)

SetOrgId sets field value

func (*TemplateOut) SetTransformation added in v1.8.0

func (o *TemplateOut) SetTransformation(v string)

SetTransformation sets field value

func (*TemplateOut) SetUpdatedAt added in v1.8.0

func (o *TemplateOut) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (o *TemplateOut) UnsetInstructionsLink()

UnsetInstructionsLink ensures that no value is present for InstructionsLink, not even an explicit nil

type TemplatePatch added in v1.8.0

type TemplatePatch struct {
	Description      *string        `json:"description,omitempty"`
	FilterTypes      []string       `json:"filterTypes,omitempty"`
	Instructions     *string        `json:"instructions,omitempty"`
	InstructionsLink NullableString `json:"instructionsLink,omitempty"`
	Name             *string        `json:"name,omitempty"`
	Transformation   *string        `json:"transformation,omitempty"`
}

TemplatePatch struct for TemplatePatch

func NewTemplatePatch added in v1.8.0

func NewTemplatePatch() *TemplatePatch

NewTemplatePatch instantiates a new TemplatePatch 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 NewTemplatePatchWithDefaults added in v1.8.0

func NewTemplatePatchWithDefaults() *TemplatePatch

NewTemplatePatchWithDefaults instantiates a new TemplatePatch 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 (*TemplatePatch) GetDescription added in v1.8.0

func (o *TemplatePatch) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TemplatePatch) GetDescriptionOk added in v1.8.0

func (o *TemplatePatch) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplatePatch) GetFilterTypes added in v1.8.0

func (o *TemplatePatch) GetFilterTypes() []string

GetFilterTypes returns the FilterTypes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplatePatch) GetFilterTypesOk added in v1.8.0

func (o *TemplatePatch) GetFilterTypesOk() (*[]string, bool)

GetFilterTypesOk returns a tuple with the FilterTypes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePatch) GetInstructions added in v1.8.0

func (o *TemplatePatch) GetInstructions() string

GetInstructions returns the Instructions field value if set, zero value otherwise.

func (o *TemplatePatch) GetInstructionsLink() string

GetInstructionsLink returns the InstructionsLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplatePatch) GetInstructionsLinkOk added in v1.8.0

func (o *TemplatePatch) GetInstructionsLinkOk() (*string, bool)

GetInstructionsLinkOk returns a tuple with the InstructionsLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePatch) GetInstructionsOk added in v1.8.0

func (o *TemplatePatch) GetInstructionsOk() (*string, bool)

GetInstructionsOk returns a tuple with the Instructions field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *TemplatePatch) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*TemplatePatch) GetLogoOk added in v1.8.0

func (o *TemplatePatch) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplatePatch) GetName added in v1.8.0

func (o *TemplatePatch) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TemplatePatch) GetNameOk added in v1.8.0

func (o *TemplatePatch) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplatePatch) GetTransformation added in v1.8.0

func (o *TemplatePatch) GetTransformation() string

GetTransformation returns the Transformation field value if set, zero value otherwise.

func (*TemplatePatch) GetTransformationOk added in v1.8.0

func (o *TemplatePatch) GetTransformationOk() (*string, bool)

GetTransformationOk returns a tuple with the Transformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplatePatch) HasDescription added in v1.8.0

func (o *TemplatePatch) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TemplatePatch) HasFilterTypes added in v1.8.0

func (o *TemplatePatch) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*TemplatePatch) HasInstructions added in v1.8.0

func (o *TemplatePatch) HasInstructions() bool

HasInstructions returns a boolean if a field has been set.

func (o *TemplatePatch) HasInstructionsLink() bool

HasInstructionsLink returns a boolean if a field has been set.

func (o *TemplatePatch) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*TemplatePatch) HasName added in v1.8.0

func (o *TemplatePatch) HasName() bool

HasName returns a boolean if a field has been set.

func (*TemplatePatch) HasTransformation added in v1.8.0

func (o *TemplatePatch) HasTransformation() bool

HasTransformation returns a boolean if a field has been set.

func (TemplatePatch) MarshalJSON added in v1.8.0

func (o TemplatePatch) MarshalJSON() ([]byte, error)

func (*TemplatePatch) SetDescription added in v1.8.0

func (o *TemplatePatch) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TemplatePatch) SetFilterTypes added in v1.8.0

func (o *TemplatePatch) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*TemplatePatch) SetInstructions added in v1.8.0

func (o *TemplatePatch) SetInstructions(v string)

SetInstructions gets a reference to the given string and assigns it to the Instructions field.

func (o *TemplatePatch) SetInstructionsLink(v string)

SetInstructionsLink gets a reference to the given NullableString and assigns it to the InstructionsLink field.

func (*TemplatePatch) SetInstructionsLinkNil added in v1.8.0

func (o *TemplatePatch) SetInstructionsLinkNil()

SetInstructionsLinkNil sets the value for InstructionsLink to be an explicit nil

func (o *TemplatePatch) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*TemplatePatch) SetName added in v1.8.0

func (o *TemplatePatch) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TemplatePatch) SetTransformation added in v1.8.0

func (o *TemplatePatch) SetTransformation(v string)

SetTransformation gets a reference to the given string and assigns it to the Transformation field.

func (o *TemplatePatch) UnsetInstructionsLink()

UnsetInstructionsLink ensures that no value is present for InstructionsLink, not even an explicit nil

type TemplateUpdate added in v1.8.0

type TemplateUpdate struct {
	Description      *string        `json:"description,omitempty"`
	FilterTypes      []string       `json:"filterTypes,omitempty"`
	Instructions     *string        `json:"instructions,omitempty"`
	InstructionsLink NullableString `json:"instructionsLink,omitempty"`
	Name             *string        `json:"name,omitempty"`
	Transformation   string         `json:"transformation"`
}

TemplateUpdate struct for TemplateUpdate

func NewTemplateUpdate added in v1.8.0

func NewTemplateUpdate(logo string, transformation string) *TemplateUpdate

NewTemplateUpdate instantiates a new TemplateUpdate 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 NewTemplateUpdateWithDefaults added in v1.8.0

func NewTemplateUpdateWithDefaults() *TemplateUpdate

NewTemplateUpdateWithDefaults instantiates a new TemplateUpdate 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 (*TemplateUpdate) GetDescription added in v1.8.0

func (o *TemplateUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TemplateUpdate) GetDescriptionOk added in v1.8.0

func (o *TemplateUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateUpdate) GetFilterTypes added in v1.8.0

func (o *TemplateUpdate) GetFilterTypes() []string

GetFilterTypes returns the FilterTypes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateUpdate) GetFilterTypesOk added in v1.8.0

func (o *TemplateUpdate) GetFilterTypesOk() (*[]string, bool)

GetFilterTypesOk returns a tuple with the FilterTypes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateUpdate) GetInstructions added in v1.8.0

func (o *TemplateUpdate) GetInstructions() string

GetInstructions returns the Instructions field value if set, zero value otherwise.

func (o *TemplateUpdate) GetInstructionsLink() string

GetInstructionsLink returns the InstructionsLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateUpdate) GetInstructionsLinkOk added in v1.8.0

func (o *TemplateUpdate) GetInstructionsLinkOk() (*string, bool)

GetInstructionsLinkOk returns a tuple with the InstructionsLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateUpdate) GetInstructionsOk added in v1.8.0

func (o *TemplateUpdate) GetInstructionsOk() (*string, bool)

GetInstructionsOk returns a tuple with the Instructions field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *TemplateUpdate) GetLogo() string

GetLogo returns the Logo field value

func (*TemplateUpdate) GetLogoOk added in v1.8.0

func (o *TemplateUpdate) GetLogoOk() (*string, bool)

GetLogoOk returns a tuple with the Logo field value and a boolean to check if the value has been set.

func (*TemplateUpdate) GetName added in v1.8.0

func (o *TemplateUpdate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TemplateUpdate) GetNameOk added in v1.8.0

func (o *TemplateUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateUpdate) GetTransformation added in v1.8.0

func (o *TemplateUpdate) GetTransformation() string

GetTransformation returns the Transformation field value

func (*TemplateUpdate) GetTransformationOk added in v1.8.0

func (o *TemplateUpdate) GetTransformationOk() (*string, bool)

GetTransformationOk returns a tuple with the Transformation field value and a boolean to check if the value has been set.

func (*TemplateUpdate) HasDescription added in v1.8.0

func (o *TemplateUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TemplateUpdate) HasFilterTypes added in v1.8.0

func (o *TemplateUpdate) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*TemplateUpdate) HasInstructions added in v1.8.0

func (o *TemplateUpdate) HasInstructions() bool

HasInstructions returns a boolean if a field has been set.

func (o *TemplateUpdate) HasInstructionsLink() bool

HasInstructionsLink returns a boolean if a field has been set.

func (*TemplateUpdate) HasName added in v1.8.0

func (o *TemplateUpdate) HasName() bool

HasName returns a boolean if a field has been set.

func (TemplateUpdate) MarshalJSON added in v1.8.0

func (o TemplateUpdate) MarshalJSON() ([]byte, error)

func (*TemplateUpdate) SetDescription added in v1.8.0

func (o *TemplateUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TemplateUpdate) SetFilterTypes added in v1.8.0

func (o *TemplateUpdate) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*TemplateUpdate) SetInstructions added in v1.8.0

func (o *TemplateUpdate) SetInstructions(v string)

SetInstructions gets a reference to the given string and assigns it to the Instructions field.

func (o *TemplateUpdate) SetInstructionsLink(v string)

SetInstructionsLink gets a reference to the given NullableString and assigns it to the InstructionsLink field.

func (*TemplateUpdate) SetInstructionsLinkNil added in v1.8.0

func (o *TemplateUpdate) SetInstructionsLinkNil()

SetInstructionsLinkNil sets the value for InstructionsLink to be an explicit nil

func (o *TemplateUpdate) SetLogo(v string)

SetLogo sets field value

func (*TemplateUpdate) SetName added in v1.8.0

func (o *TemplateUpdate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TemplateUpdate) SetTransformation added in v1.8.0

func (o *TemplateUpdate) SetTransformation(v string)

SetTransformation sets field value

func (o *TemplateUpdate) UnsetInstructionsLink()

UnsetInstructionsLink ensures that no value is present for InstructionsLink, not even an explicit nil

type TransformationHttpMethod added in v0.66.0

type TransformationHttpMethod string

TransformationHttpMethod the model 'TransformationHttpMethod'

const (
	TRANSFORMATIONHTTPMETHOD_POST TransformationHttpMethod = "POST"
	TRANSFORMATIONHTTPMETHOD_PUT  TransformationHttpMethod = "PUT"
)

List of TransformationHttpMethod

func NewTransformationHttpMethodFromValue added in v0.66.0

func NewTransformationHttpMethodFromValue(v string) (*TransformationHttpMethod, error)

NewTransformationHttpMethodFromValue returns a pointer to a valid TransformationHttpMethod for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TransformationHttpMethod) IsValid added in v0.66.0

func (v TransformationHttpMethod) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TransformationHttpMethod) Ptr added in v0.66.0

Ptr returns reference to TransformationHttpMethod value

func (*TransformationHttpMethod) UnmarshalJSON added in v0.66.0

func (v *TransformationHttpMethod) UnmarshalJSON(src []byte) error

type TransformationSimulateIn added in v1.8.1

type TransformationSimulateIn struct {
	Channels []string `json:"channels,omitempty"`
	Code     string   `json:"code"`
	// The event type's name
	EventType string                 `json:"eventType"`
	Payload   map[string]interface{} `json:"payload"`
}

TransformationSimulateIn struct for TransformationSimulateIn

func NewTransformationSimulateIn added in v1.8.1

func NewTransformationSimulateIn(code string, eventType string, payload map[string]interface{}) *TransformationSimulateIn

NewTransformationSimulateIn instantiates a new TransformationSimulateIn 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 NewTransformationSimulateInWithDefaults added in v1.8.1

func NewTransformationSimulateInWithDefaults() *TransformationSimulateIn

NewTransformationSimulateInWithDefaults instantiates a new TransformationSimulateIn 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 (*TransformationSimulateIn) GetChannels added in v1.8.1

func (o *TransformationSimulateIn) GetChannels() []string

GetChannels returns the Channels field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransformationSimulateIn) GetChannelsOk added in v1.8.1

func (o *TransformationSimulateIn) GetChannelsOk() (*[]string, bool)

GetChannelsOk returns a tuple with the Channels field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransformationSimulateIn) GetCode added in v1.8.1

func (o *TransformationSimulateIn) GetCode() string

GetCode returns the Code field value

func (*TransformationSimulateIn) GetCodeOk added in v1.8.1

func (o *TransformationSimulateIn) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*TransformationSimulateIn) GetEventType added in v1.8.1

func (o *TransformationSimulateIn) GetEventType() string

GetEventType returns the EventType field value

func (*TransformationSimulateIn) GetEventTypeOk added in v1.8.1

func (o *TransformationSimulateIn) GetEventTypeOk() (*string, bool)

GetEventTypeOk returns a tuple with the EventType field value and a boolean to check if the value has been set.

func (*TransformationSimulateIn) GetPayload added in v1.8.1

func (o *TransformationSimulateIn) GetPayload() map[string]interface{}

GetPayload returns the Payload field value

func (*TransformationSimulateIn) GetPayloadOk added in v1.8.1

func (o *TransformationSimulateIn) GetPayloadOk() (*map[string]interface{}, bool)

GetPayloadOk returns a tuple with the Payload field value and a boolean to check if the value has been set.

func (*TransformationSimulateIn) HasChannels added in v1.8.1

func (o *TransformationSimulateIn) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (TransformationSimulateIn) MarshalJSON added in v1.8.1

func (o TransformationSimulateIn) MarshalJSON() ([]byte, error)

func (*TransformationSimulateIn) SetChannels added in v1.8.1

func (o *TransformationSimulateIn) SetChannels(v []string)

SetChannels gets a reference to the given []string and assigns it to the Channels field.

func (*TransformationSimulateIn) SetCode added in v1.8.1

func (o *TransformationSimulateIn) SetCode(v string)

SetCode sets field value

func (*TransformationSimulateIn) SetEventType added in v1.8.1

func (o *TransformationSimulateIn) SetEventType(v string)

SetEventType sets field value

func (*TransformationSimulateIn) SetPayload added in v1.8.1

func (o *TransformationSimulateIn) SetPayload(v map[string]interface{})

SetPayload sets field value

type TransformationSimulateOut added in v1.8.1

type TransformationSimulateOut struct {
	Method  *TransformationHttpMethod `json:"method,omitempty"`
	Payload string                    `json:"payload"`
	Url     string                    `json:"url"`
}

TransformationSimulateOut struct for TransformationSimulateOut

func NewTransformationSimulateOut added in v1.8.1

func NewTransformationSimulateOut(payload string, url string) *TransformationSimulateOut

NewTransformationSimulateOut instantiates a new TransformationSimulateOut 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 NewTransformationSimulateOutWithDefaults added in v1.8.1

func NewTransformationSimulateOutWithDefaults() *TransformationSimulateOut

NewTransformationSimulateOutWithDefaults instantiates a new TransformationSimulateOut 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 (*TransformationSimulateOut) GetMethod added in v1.8.1

GetMethod returns the Method field value if set, zero value otherwise.

func (*TransformationSimulateOut) GetMethodOk added in v1.8.1

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransformationSimulateOut) GetPayload added in v1.8.1

func (o *TransformationSimulateOut) GetPayload() string

GetPayload returns the Payload field value

func (*TransformationSimulateOut) GetPayloadOk added in v1.8.1

func (o *TransformationSimulateOut) GetPayloadOk() (*string, bool)

GetPayloadOk returns a tuple with the Payload field value and a boolean to check if the value has been set.

func (*TransformationSimulateOut) GetUrl added in v1.8.1

func (o *TransformationSimulateOut) GetUrl() string

GetUrl returns the Url field value

func (*TransformationSimulateOut) GetUrlOk added in v1.8.1

func (o *TransformationSimulateOut) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*TransformationSimulateOut) HasMethod added in v1.8.1

func (o *TransformationSimulateOut) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (TransformationSimulateOut) MarshalJSON added in v1.8.1

func (o TransformationSimulateOut) MarshalJSON() ([]byte, error)

func (*TransformationSimulateOut) SetMethod added in v1.8.1

SetMethod gets a reference to the given TransformationHttpMethod and assigns it to the Method field.

func (*TransformationSimulateOut) SetPayload added in v1.8.1

func (o *TransformationSimulateOut) SetPayload(v string)

SetPayload sets field value

func (*TransformationSimulateOut) SetUrl added in v1.8.1

func (o *TransformationSimulateOut) SetUrl(v string)

SetUrl sets field value

type TransformationTemplateApiService added in v1.8.0

type TransformationTemplateApiService service

TransformationTemplateApiService TransformationTemplateApi service

func (*TransformationTemplateApiService) V1TransformationTemplateCreate added in v1.8.0

* V1TransformationTemplateCreate Create Transformation Template * Create a new transformation template * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1TransformationTemplateCreateRequest

func (*TransformationTemplateApiService) V1TransformationTemplateCreateExecute added in v1.8.0

* Execute executes the request * @return TemplateOut

func (*TransformationTemplateApiService) V1TransformationTemplateDelete added in v1.8.0

func (a *TransformationTemplateApiService) V1TransformationTemplateDelete(ctx _context.Context, transformationTemplateId string) ApiV1TransformationTemplateDeleteRequest

* V1TransformationTemplateDelete Delete Transformation Template * Delete a transformation template * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param transformationTemplateId * @return ApiV1TransformationTemplateDeleteRequest

func (*TransformationTemplateApiService) V1TransformationTemplateDeleteExecute added in v1.8.0

* Execute executes the request

func (*TransformationTemplateApiService) V1TransformationTemplateGet added in v1.8.0

func (a *TransformationTemplateApiService) V1TransformationTemplateGet(ctx _context.Context, transformationTemplateId string) ApiV1TransformationTemplateGetRequest

* V1TransformationTemplateGet Get Transformation Template * Get a transformation template * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param transformationTemplateId * @return ApiV1TransformationTemplateGetRequest

func (*TransformationTemplateApiService) V1TransformationTemplateGetExecute added in v1.8.0

* Execute executes the request * @return TemplateOut

func (*TransformationTemplateApiService) V1TransformationTemplateList added in v1.8.0

* V1TransformationTemplateList List Transformation Templates * List all transformation templates for an application * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1TransformationTemplateListRequest

func (*TransformationTemplateApiService) V1TransformationTemplateListExecute added in v1.8.0

* Execute executes the request * @return ListResponseTemplateOut

func (*TransformationTemplateApiService) V1TransformationTemplatePatch added in v1.8.0

func (a *TransformationTemplateApiService) V1TransformationTemplatePatch(ctx _context.Context, transformationTemplateId string) ApiV1TransformationTemplatePatchRequest

* V1TransformationTemplatePatch Patch Transformation Template * Partially update a transformation template * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param transformationTemplateId * @return ApiV1TransformationTemplatePatchRequest

func (*TransformationTemplateApiService) V1TransformationTemplatePatchExecute added in v1.8.0

* Execute executes the request * @return TemplateOut

func (*TransformationTemplateApiService) V1TransformationTemplateSimulate added in v1.8.1

* V1TransformationTemplateSimulate Simulate * Simulate running the transformation on the payload and code * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiV1TransformationTemplateSimulateRequest

func (*TransformationTemplateApiService) V1TransformationTemplateSimulateExecute added in v1.8.1

* Execute executes the request * @return TransformationSimulateOut

func (*TransformationTemplateApiService) V1TransformationTemplateUpdate added in v1.8.0

func (a *TransformationTemplateApiService) V1TransformationTemplateUpdate(ctx _context.Context, transformationTemplateId string) ApiV1TransformationTemplateUpdateRequest

* V1TransformationTemplateUpdate Update Transformation Template * Update a transformation template * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param transformationTemplateId * @return ApiV1TransformationTemplateUpdateRequest

func (*TransformationTemplateApiService) V1TransformationTemplateUpdateExecute added in v1.8.0

* Execute executes the request * @return TemplateOut

type TransformationTemplateKind added in v1.8.0

type TransformationTemplateKind string

TransformationTemplateKind the model 'TransformationTemplateKind'

const (
	TRANSFORMATIONTEMPLATEKIND_CUSTOM TransformationTemplateKind = "Custom"
)

List of TransformationTemplateKind

func NewTransformationTemplateKindFromValue added in v1.8.0

func NewTransformationTemplateKindFromValue(v string) (*TransformationTemplateKind, error)

NewTransformationTemplateKindFromValue returns a pointer to a valid TransformationTemplateKind for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TransformationTemplateKind) IsValid added in v1.8.0

func (v TransformationTemplateKind) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TransformationTemplateKind) Ptr added in v1.8.0

Ptr returns reference to TransformationTemplateKind value

func (*TransformationTemplateKind) UnmarshalJSON added in v1.8.0

func (v *TransformationTemplateKind) UnmarshalJSON(src []byte) error

type ValidationError

type ValidationError struct {
	// The location as a [`Vec`] of [`String`]s -- often in the form `[\"body\", \"field_name\"]`, `[\"query\", \"field_name\"]`, etc. They may, however, be arbitrarily deep.
	Loc []string `json:"loc"`
	// The message accompanying the validation error item.
	Msg string `json:"msg"`
	// The type of error, often \"type_error\" or \"value_error\", but sometimes with more context like as \"value_error.number.not_ge\"
	Type string `json:"type"`
}

ValidationError Validation errors have their own schema to provide context for invalid requests eg. mismatched types and out of bounds values. There may be any number of these per 422 UNPROCESSABLE ENTITY error.

func NewValidationError

func NewValidationError(loc []string, msg string, type_ string) *ValidationError

NewValidationError instantiates a new ValidationError 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 NewValidationErrorWithDefaults

func NewValidationErrorWithDefaults() *ValidationError

NewValidationErrorWithDefaults instantiates a new ValidationError 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 (*ValidationError) GetLoc

func (o *ValidationError) GetLoc() []string

GetLoc returns the Loc field value

func (*ValidationError) GetLocOk

func (o *ValidationError) GetLocOk() (*[]string, bool)

GetLocOk returns a tuple with the Loc field value and a boolean to check if the value has been set.

func (*ValidationError) GetMsg

func (o *ValidationError) GetMsg() string

GetMsg returns the Msg field value

func (*ValidationError) GetMsgOk

func (o *ValidationError) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value and a boolean to check if the value has been set.

func (*ValidationError) GetType

func (o *ValidationError) GetType() string

GetType returns the Type field value

func (*ValidationError) GetTypeOk

func (o *ValidationError) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (ValidationError) MarshalJSON

func (o ValidationError) MarshalJSON() ([]byte, error)

func (*ValidationError) SetLoc

func (o *ValidationError) SetLoc(v []string)

SetLoc sets field value

func (*ValidationError) SetMsg

func (o *ValidationError) SetMsg(v string)

SetMsg sets field value

func (*ValidationError) SetType

func (o *ValidationError) SetType(v string)

SetType sets field value

type WebhookTypes

type WebhookTypes struct {
	A  EndpointDisabledEvent        `json:"a"`
	A1 MessageAttemptFailingEvent   `json:"a1"`
	B  EndpointCreatedEvent         `json:"b"`
	C  EndpointUpdatedEvent         `json:"c"`
	D  EndpointDeletedEvent         `json:"d"`
	E  MessageAttemptExhaustedEvent `json:"e"`
}

WebhookTypes All of the webhook types that we support

func NewWebhookTypes

NewWebhookTypes instantiates a new WebhookTypes 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 NewWebhookTypesWithDefaults

func NewWebhookTypesWithDefaults() *WebhookTypes

NewWebhookTypesWithDefaults instantiates a new WebhookTypes 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 (*WebhookTypes) GetA

GetA returns the A field value

func (*WebhookTypes) GetA1 added in v0.50.0

GetA1 returns the A1 field value

func (*WebhookTypes) GetA1Ok added in v0.50.0

func (o *WebhookTypes) GetA1Ok() (*MessageAttemptFailingEvent, bool)

GetA1Ok returns a tuple with the A1 field value and a boolean to check if the value has been set.

func (*WebhookTypes) GetAOk

func (o *WebhookTypes) GetAOk() (*EndpointDisabledEvent, bool)

GetAOk returns a tuple with the A field value and a boolean to check if the value has been set.

func (*WebhookTypes) GetB

GetB returns the B field value

func (*WebhookTypes) GetBOk

func (o *WebhookTypes) GetBOk() (*EndpointCreatedEvent, bool)

GetBOk returns a tuple with the B field value and a boolean to check if the value has been set.

func (*WebhookTypes) GetC

GetC returns the C field value

func (*WebhookTypes) GetCOk

func (o *WebhookTypes) GetCOk() (*EndpointUpdatedEvent, bool)

GetCOk returns a tuple with the C field value and a boolean to check if the value has been set.

func (*WebhookTypes) GetD

GetD returns the D field value

func (*WebhookTypes) GetDOk

func (o *WebhookTypes) GetDOk() (*EndpointDeletedEvent, bool)

GetDOk returns a tuple with the D field value and a boolean to check if the value has been set.

func (*WebhookTypes) GetE

GetE returns the E field value

func (*WebhookTypes) GetEOk

GetEOk returns a tuple with the E field value and a boolean to check if the value has been set.

func (WebhookTypes) MarshalJSON

func (o WebhookTypes) MarshalJSON() ([]byte, error)

func (*WebhookTypes) SetA

SetA sets field value

func (*WebhookTypes) SetA1 added in v0.50.0

SetA1 sets field value

func (*WebhookTypes) SetB

SetB sets field value

func (*WebhookTypes) SetC

SetC sets field value

func (*WebhookTypes) SetD

SetD sets field value

func (*WebhookTypes) SetE

SetE sets field value

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL