openapi

package
v0.45.0 Latest Latest
Warning

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

Go to latest
Published: Feb 1, 2022 License: MIT Imports: 22 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

	EndpointApi *EndpointApiService

	EnvironmentApi *EnvironmentApiService

	EnvironmentSettingsApi *EnvironmentSettingsApiService

	EventTypeApi *EventTypeApiService

	HealthApi *HealthApiService

	IntegrationApi *IntegrationApiService

	MessageApi *MessageApiService

	MessageAttemptApi *MessageAttemptApiService

	StatisticsApi *StatisticsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Svix API API v1.4 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 ApiCreateApplicationApiV1AppPostRequest

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

func (ApiCreateApplicationApiV1AppPostRequest) ApplicationIn

func (ApiCreateApplicationApiV1AppPostRequest) Execute

func (ApiCreateApplicationApiV1AppPostRequest) GetIfExists added in v0.44.0

type ApiCreateEndpointApiV1AppAppIdEndpointPostRequest

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

func (ApiCreateEndpointApiV1AppAppIdEndpointPostRequest) EndpointIn

func (ApiCreateEndpointApiV1AppAppIdEndpointPostRequest) Execute

type ApiCreateEventTypeApiV1EventTypePostRequest

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

func (ApiCreateEventTypeApiV1EventTypePostRequest) EventTypeIn

func (ApiCreateEventTypeApiV1EventTypePostRequest) Execute

type ApiCreateIntegrationApiV1AppAppIdIntegrationPostRequest added in v0.44.0

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

func (ApiCreateIntegrationApiV1AppAppIdIntegrationPostRequest) Execute added in v0.44.0

func (ApiCreateIntegrationApiV1AppAppIdIntegrationPostRequest) IntegrationIn added in v0.44.0

type ApiCreateMessageApiV1AppAppIdMsgPostRequest

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

func (ApiCreateMessageApiV1AppAppIdMsgPostRequest) Execute

func (ApiCreateMessageApiV1AppAppIdMsgPostRequest) MessageIn

func (ApiCreateMessageApiV1AppAppIdMsgPostRequest) WithContent added in v0.42.1

type ApiDeleteApplicationApiV1AppAppIdDeleteRequest

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

func (ApiDeleteApplicationApiV1AppAppIdDeleteRequest) Execute

type ApiDeleteEndpointApiV1AppAppIdEndpointEndpointIdDeleteRequest

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

func (ApiDeleteEndpointApiV1AppAppIdEndpointEndpointIdDeleteRequest) Execute

type ApiDeleteEventTypeApiV1EventTypeEventTypeNameDeleteRequest

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

func (ApiDeleteEventTypeApiV1EventTypeEventTypeNameDeleteRequest) Execute

type ApiDeleteIntegrationApiV1AppAppIdIntegrationIntegIdDeleteRequest added in v0.44.0

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

func (ApiDeleteIntegrationApiV1AppAppIdIntegrationIntegIdDeleteRequest) Execute added in v0.44.0

type ApiExportEnvironmentConfigurationApiV1EnvironmentExportPostRequest added in v0.44.0

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

func (ApiExportEnvironmentConfigurationApiV1EnvironmentExportPostRequest) Body added in v0.44.0

func (ApiExportEnvironmentConfigurationApiV1EnvironmentExportPostRequest) Execute added in v0.44.0

type ApiExportOrganizationConfigurationApiV1OrgExportPostRequest added in v0.42.1

type ApiExportOrganizationConfigurationApiV1OrgExportPostRequest struct {
	ApiService *OrganizationApiService
	// contains filtered or unexported fields
}

func (ApiExportOrganizationConfigurationApiV1OrgExportPostRequest) Body added in v0.42.1

func (ApiExportOrganizationConfigurationApiV1OrgExportPostRequest) Execute added in v0.42.1

type ApiGenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePostRequest added in v0.34.0

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

func (ApiGenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePostRequest) EventTypeSchemaIn added in v0.34.0

func (ApiGenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePostRequest) Execute added in v0.34.0

type ApiGetAppAttemptStatsApiV1StatsAppAppIdAttemptGetRequest added in v0.37.0

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

func (ApiGetAppAttemptStatsApiV1StatsAppAppIdAttemptGetRequest) EndDate added in v0.37.0

func (ApiGetAppAttemptStatsApiV1StatsAppAppIdAttemptGetRequest) Execute added in v0.37.0

func (ApiGetAppAttemptStatsApiV1StatsAppAppIdAttemptGetRequest) StartDate added in v0.37.0

type ApiGetApplicationApiV1AppAppIdGetRequest

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

func (ApiGetApplicationApiV1AppAppIdGetRequest) Execute

type ApiGetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGetRequest

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

func (ApiGetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGetRequest) Execute

type ApiGetDashboardAccessApiV1AuthDashboardAccessAppIdPostRequest

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

func (ApiGetDashboardAccessApiV1AuthDashboardAccessAppIdPostRequest) Execute

type ApiGetEndpointApiV1AppAppIdEndpointEndpointIdGetRequest

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

func (ApiGetEndpointApiV1AppAppIdEndpointEndpointIdGetRequest) Execute

type ApiGetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGetRequest added in v0.37.0

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

func (ApiGetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGetRequest) Execute added in v0.37.0

type ApiGetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGetRequest

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

func (ApiGetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGetRequest) Execute

type ApiGetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGetRequest

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

func (ApiGetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGetRequest) Execute

type ApiGetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGetRequest added in v0.37.0

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

func (ApiGetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGetRequest) EndDate added in v0.37.0

func (ApiGetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGetRequest) Execute added in v0.37.0

func (ApiGetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGetRequest) StartDate added in v0.37.0

type ApiGetEventTypeApiV1EventTypeEventTypeNameGetRequest added in v0.29.0

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

func (ApiGetEventTypeApiV1EventTypeEventTypeNameGetRequest) Execute added in v0.29.0

type ApiGetIntegrationApiV1AppAppIdIntegrationIntegIdGetRequest added in v0.44.0

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

func (ApiGetIntegrationApiV1AppAppIdIntegrationIntegIdGetRequest) Execute added in v0.44.0

type ApiGetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGetRequest added in v0.44.0

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

func (ApiGetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGetRequest) Execute added in v0.44.0

type ApiGetMessageApiV1AppAppIdMsgMsgIdGetRequest

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

func (ApiGetMessageApiV1AppAppIdMsgMsgIdGetRequest) Execute

type ApiGetOrgSettingsApiV1EnvironmentSettingsGetRequest added in v0.44.0

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

func (ApiGetOrgSettingsApiV1EnvironmentSettingsGetRequest) Execute added in v0.44.0

type ApiGetOrgSettingsApiV1OrgSettingsGetRequest added in v0.39.0

type ApiGetOrgSettingsApiV1OrgSettingsGetRequest struct {
	ApiService *OrganizationSettingsApiService
	// contains filtered or unexported fields
}

func (ApiGetOrgSettingsApiV1OrgSettingsGetRequest) Execute added in v0.39.0

type ApiHealthApiV1HealthGetRequest

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

func (ApiHealthApiV1HealthGetRequest) Execute

type ApiImportEnvironmentConfigurationApiV1EnvironmentImportPostRequest added in v0.44.0

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

func (ApiImportEnvironmentConfigurationApiV1EnvironmentImportPostRequest) EnvironmentIn added in v0.44.0

func (ApiImportEnvironmentConfigurationApiV1EnvironmentImportPostRequest) Execute added in v0.44.0

type ApiImportOrganizationConfigurationApiV1OrgImportPostRequest added in v0.42.1

type ApiImportOrganizationConfigurationApiV1OrgImportPostRequest struct {
	ApiService *OrganizationApiService
	// contains filtered or unexported fields
}

func (ApiImportOrganizationConfigurationApiV1OrgImportPostRequest) Execute added in v0.42.1

func (ApiImportOrganizationConfigurationApiV1OrgImportPostRequest) ImportOrganizationIn added in v0.42.1

type ApiListApplicationsApiV1AppGetRequest

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

func (ApiListApplicationsApiV1AppGetRequest) Execute

func (ApiListApplicationsApiV1AppGetRequest) Iterator

func (ApiListApplicationsApiV1AppGetRequest) Limit

type ApiListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGetRequest

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

func (ApiListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGetRequest) Execute

func (ApiListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGetRequest) Iterator

func (ApiListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGetRequest) Limit

type ApiListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGetRequest

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

func (ApiListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGetRequest) Before added in v0.29.0

func (ApiListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGetRequest) Execute

func (ApiListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGetRequest) Iterator

func (ApiListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGetRequest) Limit

func (ApiListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGetRequest) Status

type ApiListAttemptsApiV1AppAppIdMsgMsgIdAttemptGetRequest

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

func (ApiListAttemptsApiV1AppAppIdMsgMsgIdAttemptGetRequest) Execute

func (ApiListAttemptsApiV1AppAppIdMsgMsgIdAttemptGetRequest) Iterator

func (ApiListAttemptsApiV1AppAppIdMsgMsgIdAttemptGetRequest) Limit

func (ApiListAttemptsApiV1AppAppIdMsgMsgIdAttemptGetRequest) Status

type ApiListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGetRequest

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

func (ApiListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGetRequest) Before added in v0.29.0

func (ApiListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGetRequest) EventTypes added in v0.29.0

func (ApiListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGetRequest) Execute

func (ApiListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGetRequest) Iterator

func (ApiListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGetRequest) Limit

type ApiListEndpointsApiV1AppAppIdEndpointGetRequest

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

func (ApiListEndpointsApiV1AppAppIdEndpointGetRequest) Execute

func (ApiListEndpointsApiV1AppAppIdEndpointGetRequest) Iterator

func (ApiListEndpointsApiV1AppAppIdEndpointGetRequest) Limit

type ApiListEventTypesApiV1EventTypeGetRequest

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

func (ApiListEventTypesApiV1EventTypeGetRequest) Execute

func (ApiListEventTypesApiV1EventTypeGetRequest) IncludeArchived added in v0.34.0

func (ApiListEventTypesApiV1EventTypeGetRequest) Iterator

func (ApiListEventTypesApiV1EventTypeGetRequest) Limit

func (ApiListEventTypesApiV1EventTypeGetRequest) WithContent added in v0.27.0

type ApiListIntegrationsApiV1AppAppIdIntegrationGetRequest added in v0.44.0

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

func (ApiListIntegrationsApiV1AppAppIdIntegrationGetRequest) Execute added in v0.44.0

func (ApiListIntegrationsApiV1AppAppIdIntegrationGetRequest) Iterator added in v0.44.0

func (ApiListIntegrationsApiV1AppAppIdIntegrationGetRequest) Limit added in v0.44.0

type ApiListMessagesApiV1AppAppIdMsgGetRequest

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

func (ApiListMessagesApiV1AppAppIdMsgGetRequest) Before added in v0.29.0

func (ApiListMessagesApiV1AppAppIdMsgGetRequest) EventTypes added in v0.26.0

func (ApiListMessagesApiV1AppAppIdMsgGetRequest) Execute

func (ApiListMessagesApiV1AppAppIdMsgGetRequest) Iterator

func (ApiListMessagesApiV1AppAppIdMsgGetRequest) Limit

type ApiLogoutApiV1AuthLogoutPostRequest

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

func (ApiLogoutApiV1AuthLogoutPostRequest) Execute

type ApiPatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatchRequest added in v0.37.0

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

func (ApiPatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatchRequest) EndpointHeadersIn added in v0.37.0

func (ApiPatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatchRequest) Execute added in v0.37.0

type ApiRecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPostRequest added in v0.42.0

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

func (ApiRecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPostRequest) Execute added in v0.42.0

func (ApiRecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPostRequest) RecoverIn added in v0.42.0

type ApiResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPostRequest

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

func (ApiResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPostRequest) Execute

type ApiRotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePostRequest added in v0.34.0

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

func (ApiRotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePostRequest) EndpointSecretRotateIn added in v0.34.0

func (ApiRotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePostRequest) Execute added in v0.34.0

type ApiRotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePostRequest added in v0.44.0

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

func (ApiRotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePostRequest) Execute added in v0.44.0

type ApiSendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePostRequest added in v0.26.0

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

func (ApiSendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePostRequest) EventExampleIn added in v0.26.0

func (ApiSendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePostRequest) Execute added in v0.26.0

type ApiUpdateApplicationApiV1AppAppIdPutRequest

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

func (ApiUpdateApplicationApiV1AppAppIdPutRequest) ApplicationIn

func (ApiUpdateApplicationApiV1AppAppIdPutRequest) Execute

type ApiUpdateEndpointApiV1AppAppIdEndpointEndpointIdPutRequest

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

func (ApiUpdateEndpointApiV1AppAppIdEndpointEndpointIdPutRequest) EndpointUpdate added in v0.29.0

func (ApiUpdateEndpointApiV1AppAppIdEndpointEndpointIdPutRequest) Execute

type ApiUpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPutRequest added in v0.37.0

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

func (ApiUpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPutRequest) EndpointHeadersIn added in v0.37.0

func (ApiUpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPutRequest) Execute added in v0.37.0

type ApiUpdateEventTypeApiV1EventTypeEventTypeNamePutRequest

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

func (ApiUpdateEventTypeApiV1EventTypeEventTypeNamePutRequest) EventTypeUpdate

func (ApiUpdateEventTypeApiV1EventTypeEventTypeNamePutRequest) Execute

type ApiUpdateIntegrationApiV1AppAppIdIntegrationIntegIdPutRequest added in v0.44.0

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

func (ApiUpdateIntegrationApiV1AppAppIdIntegrationIntegIdPutRequest) Execute added in v0.44.0

func (ApiUpdateIntegrationApiV1AppAppIdIntegrationIntegIdPutRequest) IntegrationUpdate added in v0.44.0

type ApplicationApiService

type ApplicationApiService service

ApplicationApiService ApplicationApi service

func (*ApplicationApiService) CreateApplicationApiV1AppPost

func (a *ApplicationApiService) CreateApplicationApiV1AppPost(ctx _context.Context) ApiCreateApplicationApiV1AppPostRequest

* CreateApplicationApiV1AppPost 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 ApiCreateApplicationApiV1AppPostRequest

func (*ApplicationApiService) CreateApplicationApiV1AppPostExecute

* Execute executes the request * @return ApplicationOut

func (*ApplicationApiService) DeleteApplicationApiV1AppAppIdDelete

func (a *ApplicationApiService) DeleteApplicationApiV1AppAppIdDelete(ctx _context.Context, appId string) ApiDeleteApplicationApiV1AppAppIdDeleteRequest

* DeleteApplicationApiV1AppAppIdDelete 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 * @return ApiDeleteApplicationApiV1AppAppIdDeleteRequest

func (*ApplicationApiService) DeleteApplicationApiV1AppAppIdDeleteExecute

func (a *ApplicationApiService) DeleteApplicationApiV1AppAppIdDeleteExecute(r ApiDeleteApplicationApiV1AppAppIdDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*ApplicationApiService) GetApplicationApiV1AppAppIdGet

func (a *ApplicationApiService) GetApplicationApiV1AppAppIdGet(ctx _context.Context, appId string) ApiGetApplicationApiV1AppAppIdGetRequest

* GetApplicationApiV1AppAppIdGet 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 * @return ApiGetApplicationApiV1AppAppIdGetRequest

func (*ApplicationApiService) GetApplicationApiV1AppAppIdGetExecute

* Execute executes the request * @return ApplicationOut

func (*ApplicationApiService) ListApplicationsApiV1AppGet

* ListApplicationsApiV1AppGet 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 ApiListApplicationsApiV1AppGetRequest

func (*ApplicationApiService) ListApplicationsApiV1AppGetExecute

* Execute executes the request * @return ListResponseApplicationOut

func (*ApplicationApiService) UpdateApplicationApiV1AppAppIdPut

func (a *ApplicationApiService) UpdateApplicationApiV1AppAppIdPut(ctx _context.Context, appId string) ApiUpdateApplicationApiV1AppAppIdPutRequest

* UpdateApplicationApiV1AppAppIdPut 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 * @return ApiUpdateApplicationApiV1AppAppIdPutRequest

func (*ApplicationApiService) UpdateApplicationApiV1AppAppIdPutExecute

func (a *ApplicationApiService) UpdateApplicationApiV1AppAppIdPutExecute(r ApiUpdateApplicationApiV1AppAppIdPutRequest) (ApplicationOut, *_nethttp.Response, error)

* Execute executes the request * @return ApplicationOut

type ApplicationIn

type ApplicationIn struct {
	Name      string `json:"name"`
	RateLimit *int32 `json:"rateLimit,omitempty"`
	// Optional unique identifier for the application
	Uid *string `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) 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 added in v0.24.0

func (o *ApplicationIn) GetRateLimit() int32

GetRateLimit returns the RateLimit field value if set, zero value otherwise.

func (*ApplicationIn) GetRateLimitOk added in v0.24.0

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.

func (*ApplicationIn) GetUid

func (o *ApplicationIn) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

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.

func (*ApplicationIn) HasRateLimit added in v0.24.0

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

func (o *ApplicationIn) SetName(v string)

SetName sets field value

func (*ApplicationIn) SetRateLimit added in v0.24.0

func (o *ApplicationIn) SetRateLimit(v int32)

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

func (*ApplicationIn) SetUid

func (o *ApplicationIn) SetUid(v string)

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

type ApplicationOut

type ApplicationOut struct {
	CreatedAt time.Time `json:"createdAt"`
	Id        string    `json:"id"`
	Name      string    `json:"name"`
	RateLimit *int32    `json:"rateLimit,omitempty"`
	// Optional unique identifier for the application
	Uid       *string   `json:"uid,omitempty"`
	UpdatedAt time.Time `json:"updatedAt"`
}

ApplicationOut struct for ApplicationOut

func NewApplicationOut

func NewApplicationOut(createdAt time.Time, id 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) 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 added in v0.24.0

func (o *ApplicationOut) GetRateLimit() int32

GetRateLimit returns the RateLimit field value if set, zero value otherwise.

func (*ApplicationOut) GetRateLimitOk added in v0.24.0

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.

func (*ApplicationOut) GetUid

func (o *ApplicationOut) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

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.

func (*ApplicationOut) GetUpdatedAt added in v0.35.0

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

GetUpdatedAt returns the UpdatedAt field value

func (*ApplicationOut) GetUpdatedAtOk added in v0.35.0

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 added in v0.24.0

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

func (o *ApplicationOut) SetName(v string)

SetName sets field value

func (*ApplicationOut) SetRateLimit added in v0.24.0

func (o *ApplicationOut) SetRateLimit(v int32)

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

func (*ApplicationOut) SetUid

func (o *ApplicationOut) SetUid(v string)

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

func (*ApplicationOut) SetUpdatedAt added in v0.35.0

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

SetUpdatedAt sets field value

type AttemptStatisticsData added in v0.37.0

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

AttemptStatisticsData struct for AttemptStatisticsData

func NewAttemptStatisticsData added in v0.37.0

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 added in v0.37.0

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 added in v0.37.0

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

GetFailureCount returns the FailureCount field value if set, zero value otherwise.

func (*AttemptStatisticsData) GetFailureCountOk added in v0.37.0

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.

func (*AttemptStatisticsData) GetSuccessCount added in v0.37.0

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

GetSuccessCount returns the SuccessCount field value if set, zero value otherwise.

func (*AttemptStatisticsData) GetSuccessCountOk added in v0.37.0

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.

func (*AttemptStatisticsData) HasFailureCount added in v0.37.0

func (o *AttemptStatisticsData) HasFailureCount() bool

HasFailureCount returns a boolean if a field has been set.

func (*AttemptStatisticsData) HasSuccessCount added in v0.37.0

func (o *AttemptStatisticsData) HasSuccessCount() bool

HasSuccessCount returns a boolean if a field has been set.

func (AttemptStatisticsData) MarshalJSON added in v0.37.0

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

func (*AttemptStatisticsData) SetFailureCount added in v0.37.0

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

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

func (*AttemptStatisticsData) SetSuccessCount added in v0.37.0

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

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

type AttemptStatisticsResponse added in v0.37.0

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 added in v0.37.0

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 added in v0.37.0

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 added in v0.37.0

GetData returns the Data field value

func (*AttemptStatisticsResponse) GetDataOk added in v0.37.0

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

func (*AttemptStatisticsResponse) GetEndDate added in v0.37.0

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

GetEndDate returns the EndDate field value

func (*AttemptStatisticsResponse) GetEndDateOk added in v0.37.0

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 added in v0.37.0

GetPeriod returns the Period field value

func (*AttemptStatisticsResponse) GetPeriodOk added in v0.37.0

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 added in v0.37.0

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

GetStartDate returns the StartDate field value

func (*AttemptStatisticsResponse) GetStartDateOk added in v0.37.0

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 added in v0.37.0

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

func (*AttemptStatisticsResponse) SetData added in v0.37.0

SetData sets field value

func (*AttemptStatisticsResponse) SetEndDate added in v0.37.0

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

SetEndDate sets field value

func (*AttemptStatisticsResponse) SetPeriod added in v0.37.0

SetPeriod sets field value

func (*AttemptStatisticsResponse) SetStartDate added in v0.37.0

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

SetStartDate sets field value

type AuthenticationApiService

type AuthenticationApiService service

AuthenticationApiService AuthenticationApi service

func (*AuthenticationApiService) GetDashboardAccessApiV1AuthDashboardAccessAppIdPost

func (a *AuthenticationApiService) GetDashboardAccessApiV1AuthDashboardAccessAppIdPost(ctx _context.Context, appId string) ApiGetDashboardAccessApiV1AuthDashboardAccessAppIdPostRequest

* GetDashboardAccessApiV1AuthDashboardAccessAppIdPost Get Dashboard Access * Use this function to get magic links (and authentication codes) for connecting your users to the management UIs. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param appId * @return ApiGetDashboardAccessApiV1AuthDashboardAccessAppIdPostRequest

func (*AuthenticationApiService) GetDashboardAccessApiV1AuthDashboardAccessAppIdPostExecute

func (a *AuthenticationApiService) GetDashboardAccessApiV1AuthDashboardAccessAppIdPostExecute(r ApiGetDashboardAccessApiV1AuthDashboardAccessAppIdPostRequest) (DashboardAccessOut, *_nethttp.Response, error)

* Execute executes the request * @return DashboardAccessOut

func (*AuthenticationApiService) LogoutApiV1AuthLogoutPost

  • LogoutApiV1AuthLogoutPost 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 ApiLogoutApiV1AuthLogoutPostRequest

func (*AuthenticationApiService) LogoutApiV1AuthLogoutPostExecute

func (a *AuthenticationApiService) LogoutApiV1AuthLogoutPostExecute(r ApiLogoutApiV1AuthLogoutPostRequest) (*_nethttp.Response, error)

* Execute executes the request

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 added in v0.39.0

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

BorderRadiusConfig struct for BorderRadiusConfig

func NewBorderRadiusConfig added in v0.39.0

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 added in v0.39.0

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 added in v0.39.0

func (o *BorderRadiusConfig) GetButton() BorderRadiusEnum

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

func (*BorderRadiusConfig) GetButtonOk added in v0.39.0

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 added in v0.39.0

func (o *BorderRadiusConfig) GetCard() BorderRadiusEnum

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

func (*BorderRadiusConfig) GetCardOk added in v0.39.0

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 added in v0.39.0

func (o *BorderRadiusConfig) GetInput() BorderRadiusEnum

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

func (*BorderRadiusConfig) GetInputOk added in v0.39.0

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 added in v0.39.0

func (o *BorderRadiusConfig) HasButton() bool

HasButton returns a boolean if a field has been set.

func (*BorderRadiusConfig) HasCard added in v0.39.0

func (o *BorderRadiusConfig) HasCard() bool

HasCard returns a boolean if a field has been set.

func (*BorderRadiusConfig) HasInput added in v0.39.0

func (o *BorderRadiusConfig) HasInput() bool

HasInput returns a boolean if a field has been set.

func (BorderRadiusConfig) MarshalJSON added in v0.39.0

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

func (*BorderRadiusConfig) SetButton added in v0.39.0

func (o *BorderRadiusConfig) SetButton(v BorderRadiusEnum)

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

func (*BorderRadiusConfig) SetCard added in v0.39.0

func (o *BorderRadiusConfig) SetCard(v BorderRadiusEnum)

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

func (*BorderRadiusConfig) SetInput added in v0.39.0

func (o *BorderRadiusConfig) SetInput(v BorderRadiusEnum)

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

type BorderRadiusEnum added in v0.39.0

type BorderRadiusEnum string

BorderRadiusEnum An enumeration.

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 added in v0.39.0

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 added in v0.39.0

func (v BorderRadiusEnum) IsValid() bool

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

func (BorderRadiusEnum) Ptr added in v0.39.0

Ptr returns reference to BorderRadiusEnum value

func (*BorderRadiusEnum) UnmarshalJSON added in v0.39.0

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

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 CustomThemeOverride added in v0.39.0

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

CustomThemeOverride struct for CustomThemeOverride

func NewCustomThemeOverride added in v0.39.0

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 added in v0.39.0

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 added in v0.39.0

func (o *CustomThemeOverride) GetBorderRadius() BorderRadiusConfig

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

func (*CustomThemeOverride) GetBorderRadiusOk added in v0.39.0

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 added in v0.39.0

func (o *CustomThemeOverride) GetFontSize() FontSizeConfig

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

func (*CustomThemeOverride) GetFontSizeOk added in v0.39.0

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 added in v0.39.0

func (o *CustomThemeOverride) HasBorderRadius() bool

HasBorderRadius returns a boolean if a field has been set.

func (*CustomThemeOverride) HasFontSize added in v0.39.0

func (o *CustomThemeOverride) HasFontSize() bool

HasFontSize returns a boolean if a field has been set.

func (CustomThemeOverride) MarshalJSON added in v0.39.0

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

func (*CustomThemeOverride) SetBorderRadius added in v0.39.0

func (o *CustomThemeOverride) SetBorderRadius(v BorderRadiusConfig)

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

func (*CustomThemeOverride) SetFontSize added in v0.39.0

func (o *CustomThemeOverride) SetFontSize(v FontSizeConfig)

SetFontSize gets a reference to the given FontSizeConfig and assigns it to the FontSize 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) CreateEndpointApiV1AppAppIdEndpointPost

func (a *EndpointApiService) CreateEndpointApiV1AppAppIdEndpointPost(ctx _context.Context, appId string) ApiCreateEndpointApiV1AppAppIdEndpointPostRequest
  • CreateEndpointApiV1AppAppIdEndpointPost 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
  • @return ApiCreateEndpointApiV1AppAppIdEndpointPostRequest

func (*EndpointApiService) CreateEndpointApiV1AppAppIdEndpointPostExecute

func (a *EndpointApiService) CreateEndpointApiV1AppAppIdEndpointPostExecute(r ApiCreateEndpointApiV1AppAppIdEndpointPostRequest) (EndpointOut, *_nethttp.Response, error)

* Execute executes the request * @return EndpointOut

func (*EndpointApiService) DeleteEndpointApiV1AppAppIdEndpointEndpointIdDelete

func (a *EndpointApiService) DeleteEndpointApiV1AppAppIdEndpointEndpointIdDelete(ctx _context.Context, endpointId string, appId string) ApiDeleteEndpointApiV1AppAppIdEndpointEndpointIdDeleteRequest

* DeleteEndpointApiV1AppAppIdEndpointEndpointIdDelete Delete Endpoint * Delete an endpoint. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param endpointId * @param appId * @return ApiDeleteEndpointApiV1AppAppIdEndpointEndpointIdDeleteRequest

func (*EndpointApiService) DeleteEndpointApiV1AppAppIdEndpointEndpointIdDeleteExecute

func (a *EndpointApiService) DeleteEndpointApiV1AppAppIdEndpointEndpointIdDeleteExecute(r ApiDeleteEndpointApiV1AppAppIdEndpointEndpointIdDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EndpointApiService) GetEndpointApiV1AppAppIdEndpointEndpointIdGet

func (a *EndpointApiService) GetEndpointApiV1AppAppIdEndpointEndpointIdGet(ctx _context.Context, endpointId string, appId string) ApiGetEndpointApiV1AppAppIdEndpointEndpointIdGetRequest

* GetEndpointApiV1AppAppIdEndpointEndpointIdGet Get Endpoint * Get an application. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param endpointId * @param appId * @return ApiGetEndpointApiV1AppAppIdEndpointEndpointIdGetRequest

func (*EndpointApiService) GetEndpointApiV1AppAppIdEndpointEndpointIdGetExecute

func (a *EndpointApiService) GetEndpointApiV1AppAppIdEndpointEndpointIdGetExecute(r ApiGetEndpointApiV1AppAppIdEndpointEndpointIdGetRequest) (EndpointOut, *_nethttp.Response, error)

* Execute executes the request * @return EndpointOut

func (*EndpointApiService) GetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGet added in v0.37.0

func (a *EndpointApiService) GetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGet(ctx _context.Context, endpointId string, appId string) ApiGetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGetRequest

* GetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGet 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 endpointId * @param appId * @return ApiGetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGetRequest

func (*EndpointApiService) GetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGetExecute added in v0.37.0

func (a *EndpointApiService) GetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGetExecute(r ApiGetEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersGetRequest) (EndpointHeadersOut, *_nethttp.Response, error)

* Execute executes the request * @return EndpointHeadersOut

func (*EndpointApiService) GetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGet

func (a *EndpointApiService) GetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGet(ctx _context.Context, endpointId string, appId string) ApiGetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGetRequest
  • GetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGet 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 endpointId
  • @param appId
  • @return ApiGetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGetRequest

func (*EndpointApiService) GetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGetExecute

func (a *EndpointApiService) GetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGetExecute(r ApiGetEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretGetRequest) (EndpointSecretOut, *_nethttp.Response, error)

* Execute executes the request * @return EndpointSecretOut

func (*EndpointApiService) GetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGet

func (a *EndpointApiService) GetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGet(ctx _context.Context, endpointId string, appId string) ApiGetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGetRequest

* GetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGet Get 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 endpointId * @param appId * @return ApiGetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGetRequest

func (*EndpointApiService) GetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGetExecute

func (a *EndpointApiService) GetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGetExecute(r ApiGetEndpointStatsApiV1AppAppIdEndpointEndpointIdStatsGetRequest) (EndpointStats, *_nethttp.Response, error)

* Execute executes the request * @return EndpointStats

func (*EndpointApiService) ListEndpointsApiV1AppAppIdEndpointGet

func (a *EndpointApiService) ListEndpointsApiV1AppAppIdEndpointGet(ctx _context.Context, appId string) ApiListEndpointsApiV1AppAppIdEndpointGetRequest

* ListEndpointsApiV1AppAppIdEndpointGet 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 * @return ApiListEndpointsApiV1AppAppIdEndpointGetRequest

func (*EndpointApiService) ListEndpointsApiV1AppAppIdEndpointGetExecute

* Execute executes the request * @return ListResponseEndpointOut

func (*EndpointApiService) PatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatch added in v0.37.0

func (a *EndpointApiService) PatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatch(ctx _context.Context, appId string, endpointId string) ApiPatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatchRequest

* PatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatch 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 * @param endpointId * @return ApiPatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatchRequest

func (*EndpointApiService) PatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatchExecute added in v0.37.0

func (a *EndpointApiService) PatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatchExecute(r ApiPatchEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPatchRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EndpointApiService) RecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPost added in v0.42.0

func (a *EndpointApiService) RecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPost(ctx _context.Context, appId string, endpointId string) ApiRecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPostRequest

* RecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPost 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 * @param endpointId * @return ApiRecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPostRequest

func (*EndpointApiService) RecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPostExecute added in v0.42.0

func (a *EndpointApiService) RecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPostExecute(r ApiRecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPostRequest) (map[string]interface{}, *_nethttp.Response, error)

* Execute executes the request * @return map[string]interface{}

func (*EndpointApiService) RotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePost added in v0.34.0

func (a *EndpointApiService) RotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePost(ctx _context.Context, endpointId string, appId string) ApiRotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePostRequest

* RotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePost 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 endpointId * @param appId * @return ApiRotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePostRequest

func (*EndpointApiService) RotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePostExecute added in v0.34.0

func (a *EndpointApiService) RotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePostExecute(r ApiRotateEndpointSecretApiV1AppAppIdEndpointEndpointIdSecretRotatePostRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EndpointApiService) SendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePost added in v0.26.0

func (a *EndpointApiService) SendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePost(ctx _context.Context, appId string, endpointId string) ApiSendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePostRequest

* SendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePost 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 * @param endpointId * @return ApiSendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePostRequest

func (*EndpointApiService) SendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePostExecute added in v0.26.0

func (a *EndpointApiService) SendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePostExecute(r ApiSendEventTypeExampleMessageApiV1AppAppIdEndpointEndpointIdSendExamplePostRequest) (MessageOut, *_nethttp.Response, error)

* Execute executes the request * @return MessageOut

func (*EndpointApiService) UpdateEndpointApiV1AppAppIdEndpointEndpointIdPut

func (a *EndpointApiService) UpdateEndpointApiV1AppAppIdEndpointEndpointIdPut(ctx _context.Context, endpointId string, appId string) ApiUpdateEndpointApiV1AppAppIdEndpointEndpointIdPutRequest

* UpdateEndpointApiV1AppAppIdEndpointEndpointIdPut Update Endpoint * Update an endpoint. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param endpointId * @param appId * @return ApiUpdateEndpointApiV1AppAppIdEndpointEndpointIdPutRequest

func (*EndpointApiService) UpdateEndpointApiV1AppAppIdEndpointEndpointIdPutExecute

func (a *EndpointApiService) UpdateEndpointApiV1AppAppIdEndpointEndpointIdPutExecute(r ApiUpdateEndpointApiV1AppAppIdEndpointEndpointIdPutRequest) (EndpointOut, *_nethttp.Response, error)

* Execute executes the request * @return EndpointOut

func (*EndpointApiService) UpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPut added in v0.37.0

func (a *EndpointApiService) UpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPut(ctx _context.Context, appId string, endpointId string) ApiUpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPutRequest

* UpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPut 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 * @param endpointId * @return ApiUpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPutRequest

func (*EndpointApiService) UpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPutExecute added in v0.37.0

func (a *EndpointApiService) UpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPutExecute(r ApiUpdateEndpointHeadersApiV1AppAppIdEndpointEndpointIdHeadersPutRequest) (*_nethttp.Response, error)

* Execute executes the request

type EndpointCreatedEvent added in v0.29.0

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

EndpointCreatedEvent Sent when an endpoint is created.

func NewEndpointCreatedEvent added in v0.29.0

func NewEndpointCreatedEvent(data EndpointCreatedEventData) *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 added in v0.29.0

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 added in v0.29.0

GetData returns the Data field value

func (*EndpointCreatedEvent) GetDataOk added in v0.29.0

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

func (*EndpointCreatedEvent) GetType added in v0.29.0

func (o *EndpointCreatedEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EndpointCreatedEvent) GetTypeOk added in v0.29.0

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

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

func (*EndpointCreatedEvent) HasType added in v0.29.0

func (o *EndpointCreatedEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (EndpointCreatedEvent) MarshalJSON added in v0.29.0

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

func (*EndpointCreatedEvent) SetData added in v0.29.0

SetData sets field value

func (*EndpointCreatedEvent) SetType added in v0.29.0

func (o *EndpointCreatedEvent) SetType(v string)

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

type EndpointCreatedEventData added in v0.29.0

type EndpointCreatedEventData struct {
	AppId string `json:"appId"`
	// Optional unique identifier for the application
	AppUid     *string `json:"appUid,omitempty"`
	EndpointId string  `json:"endpointId"`
}

EndpointCreatedEventData struct for EndpointCreatedEventData

func NewEndpointCreatedEventData added in v0.29.0

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 added in v0.29.0

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 added in v0.29.0

func (o *EndpointCreatedEventData) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointCreatedEventData) GetAppIdOk added in v0.29.0

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 added in v0.29.0

func (o *EndpointCreatedEventData) GetAppUid() string

GetAppUid returns the AppUid field value if set, zero value otherwise.

func (*EndpointCreatedEventData) GetAppUidOk added in v0.29.0

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.

func (*EndpointCreatedEventData) GetEndpointId added in v0.29.0

func (o *EndpointCreatedEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*EndpointCreatedEventData) GetEndpointIdOk added in v0.29.0

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) HasAppUid added in v0.29.0

func (o *EndpointCreatedEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (EndpointCreatedEventData) MarshalJSON added in v0.29.0

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

func (*EndpointCreatedEventData) SetAppId added in v0.29.0

func (o *EndpointCreatedEventData) SetAppId(v string)

SetAppId sets field value

func (*EndpointCreatedEventData) SetAppUid added in v0.29.0

func (o *EndpointCreatedEventData) SetAppUid(v string)

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

func (*EndpointCreatedEventData) SetEndpointId added in v0.29.0

func (o *EndpointCreatedEventData) SetEndpointId(v string)

SetEndpointId sets field value

type EndpointDeletedEvent added in v0.29.0

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

EndpointDeletedEvent Sent when an endpoint is deleted.

func NewEndpointDeletedEvent added in v0.29.0

func NewEndpointDeletedEvent(data EndpointDeletedEventData) *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 added in v0.29.0

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 added in v0.29.0

GetData returns the Data field value

func (*EndpointDeletedEvent) GetDataOk added in v0.29.0

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

func (*EndpointDeletedEvent) GetType added in v0.29.0

func (o *EndpointDeletedEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EndpointDeletedEvent) GetTypeOk added in v0.29.0

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

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

func (*EndpointDeletedEvent) HasType added in v0.29.0

func (o *EndpointDeletedEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (EndpointDeletedEvent) MarshalJSON added in v0.29.0

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

func (*EndpointDeletedEvent) SetData added in v0.29.0

SetData sets field value

func (*EndpointDeletedEvent) SetType added in v0.29.0

func (o *EndpointDeletedEvent) SetType(v string)

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

type EndpointDeletedEventData added in v0.29.0

type EndpointDeletedEventData struct {
	AppId string `json:"appId"`
	// Optional unique identifier for the application
	AppUid     *string `json:"appUid,omitempty"`
	EndpointId string  `json:"endpointId"`
}

EndpointDeletedEventData struct for EndpointDeletedEventData

func NewEndpointDeletedEventData added in v0.29.0

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 added in v0.29.0

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 added in v0.29.0

func (o *EndpointDeletedEventData) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointDeletedEventData) GetAppIdOk added in v0.29.0

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 added in v0.29.0

func (o *EndpointDeletedEventData) GetAppUid() string

GetAppUid returns the AppUid field value if set, zero value otherwise.

func (*EndpointDeletedEventData) GetAppUidOk added in v0.29.0

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.

func (*EndpointDeletedEventData) GetEndpointId added in v0.29.0

func (o *EndpointDeletedEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*EndpointDeletedEventData) GetEndpointIdOk added in v0.29.0

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) HasAppUid added in v0.29.0

func (o *EndpointDeletedEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (EndpointDeletedEventData) MarshalJSON added in v0.29.0

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

func (*EndpointDeletedEventData) SetAppId added in v0.29.0

func (o *EndpointDeletedEventData) SetAppId(v string)

SetAppId sets field value

func (*EndpointDeletedEventData) SetAppUid added in v0.29.0

func (o *EndpointDeletedEventData) SetAppUid(v string)

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

func (*EndpointDeletedEventData) SetEndpointId added in v0.29.0

func (o *EndpointDeletedEventData) SetEndpointId(v string)

SetEndpointId sets field value

type EndpointDisabledEvent added in v0.26.0

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

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

func NewEndpointDisabledEvent added in v0.26.0

func NewEndpointDisabledEvent(data EndpointDisabledEventData) *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 added in v0.26.0

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 added in v0.26.0

GetData returns the Data field value

func (*EndpointDisabledEvent) GetDataOk added in v0.26.0

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

func (*EndpointDisabledEvent) GetType added in v0.26.0

func (o *EndpointDisabledEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EndpointDisabledEvent) GetTypeOk added in v0.26.0

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

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

func (*EndpointDisabledEvent) HasType added in v0.26.0

func (o *EndpointDisabledEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (EndpointDisabledEvent) MarshalJSON added in v0.26.0

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

func (*EndpointDisabledEvent) SetData added in v0.26.0

SetData sets field value

func (*EndpointDisabledEvent) SetType added in v0.26.0

func (o *EndpointDisabledEvent) SetType(v string)

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

type EndpointDisabledEventData added in v0.26.0

type EndpointDisabledEventData struct {
	AppId string `json:"appId"`
	// Optional unique identifier for the application
	AppUid     *string   `json:"appUid,omitempty"`
	EndpointId string    `json:"endpointId"`
	FailSince  time.Time `json:"failSince"`
}

EndpointDisabledEventData struct for EndpointDisabledEventData

func NewEndpointDisabledEventData added in v0.26.0

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 added in v0.26.0

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 added in v0.26.0

func (o *EndpointDisabledEventData) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointDisabledEventData) GetAppIdOk added in v0.26.0

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 added in v0.26.0

func (o *EndpointDisabledEventData) GetAppUid() string

GetAppUid returns the AppUid field value if set, zero value otherwise.

func (*EndpointDisabledEventData) GetAppUidOk added in v0.26.0

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.

func (*EndpointDisabledEventData) GetEndpointId added in v0.26.0

func (o *EndpointDisabledEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*EndpointDisabledEventData) GetEndpointIdOk added in v0.26.0

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) GetFailSince added in v0.26.0

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

GetFailSince returns the FailSince field value

func (*EndpointDisabledEventData) GetFailSinceOk added in v0.26.0

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 added in v0.26.0

func (o *EndpointDisabledEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (EndpointDisabledEventData) MarshalJSON added in v0.26.0

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

func (*EndpointDisabledEventData) SetAppId added in v0.26.0

func (o *EndpointDisabledEventData) SetAppId(v string)

SetAppId sets field value

func (*EndpointDisabledEventData) SetAppUid added in v0.26.0

func (o *EndpointDisabledEventData) SetAppUid(v string)

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

func (*EndpointDisabledEventData) SetEndpointId added in v0.26.0

func (o *EndpointDisabledEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*EndpointDisabledEventData) SetFailSince added in v0.26.0

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

SetFailSince sets field value

type EndpointHeadersIn added in v0.37.0

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

EndpointHeadersIn struct for EndpointHeadersIn

func NewEndpointHeadersIn added in v0.37.0

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 added in v0.37.0

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 added in v0.37.0

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

GetHeaders returns the Headers field value

func (*EndpointHeadersIn) GetHeadersOk added in v0.37.0

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 added in v0.37.0

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

func (*EndpointHeadersIn) SetHeaders added in v0.37.0

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

SetHeaders sets field value

type EndpointHeadersOut added in v0.37.0

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 added in v0.37.0

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 added in v0.37.0

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 added in v0.37.0

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

GetHeaders returns the Headers field value

func (*EndpointHeadersOut) GetHeadersOk added in v0.37.0

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 added in v0.37.0

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

GetSensitive returns the Sensitive field value

func (*EndpointHeadersOut) GetSensitiveOk added in v0.37.0

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 added in v0.37.0

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

func (*EndpointHeadersOut) SetHeaders added in v0.37.0

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

SetHeaders sets field value

func (*EndpointHeadersOut) SetSensitive added in v0.37.0

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

SetSensitive 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"`
	RateLimit   *int32    `json:"rateLimit,omitempty"`
	// The endpoint's verification secret. If `null` is passed, a secret is automatically generated.
	Secret *string `json:"secret,omitempty"`
	// Optional unique identifier for the endpoint
	Uid     *string `json:"uid,omitempty"`
	Url     string  `json:"url"`
	Version int32   `json:"version"`
}

EndpointIn struct for EndpointIn

func NewEndpointIn

func NewEndpointIn(url string, version int32) *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 added in v0.42.0

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

GetChannels returns the Channels field value if set, zero value otherwise.

func (*EndpointIn) GetChannelsOk added in v0.42.0

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.

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 added in v0.22.0

func (o *EndpointIn) GetDisabled() bool

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

func (*EndpointIn) GetDisabledOk added in v0.22.0

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.

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.

func (*EndpointIn) GetRateLimit added in v0.24.0

func (o *EndpointIn) GetRateLimit() int32

GetRateLimit returns the RateLimit field value if set, zero value otherwise.

func (*EndpointIn) GetRateLimitOk added in v0.24.0

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.

func (*EndpointIn) GetSecret added in v0.29.0

func (o *EndpointIn) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise.

func (*EndpointIn) GetSecretOk added in v0.29.0

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.

func (*EndpointIn) GetUid added in v0.29.0

func (o *EndpointIn) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*EndpointIn) GetUidOk added in v0.29.0

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.

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

func (*EndpointIn) GetVersionOk

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

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

func (*EndpointIn) HasChannels added in v0.42.0

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 added in v0.22.0

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) HasRateLimit added in v0.24.0

func (o *EndpointIn) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*EndpointIn) HasSecret added in v0.29.0

func (o *EndpointIn) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*EndpointIn) HasUid added in v0.29.0

func (o *EndpointIn) HasUid() bool

HasUid returns a boolean if a field has been set.

func (EndpointIn) MarshalJSON

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

func (*EndpointIn) SetChannels added in v0.42.0

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 added in v0.22.0

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) SetRateLimit added in v0.24.0

func (o *EndpointIn) SetRateLimit(v int32)

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

func (*EndpointIn) SetSecret added in v0.29.0

func (o *EndpointIn) SetSecret(v string)

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

func (*EndpointIn) SetUid added in v0.29.0

func (o *EndpointIn) SetUid(v string)

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

func (*EndpointIn) SetUrl

func (o *EndpointIn) SetUrl(v string)

SetUrl sets field value

func (*EndpointIn) SetVersion

func (o *EndpointIn) SetVersion(v int32)

SetVersion sets field value

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     *string                `json:"eventId,omitempty"`
	EventType   string                 `json:"eventType"`
	Id          string                 `json:"id"`
	NextAttempt *time.Time             `json:"nextAttempt,omitempty"`
	Payload     map[string]interface{} `json:"payload"`
	Status      MessageStatus          `json:"status"`
	Timestamp   time.Time              `json:"timestamp"`
}

EndpointMessageOut struct for EndpointMessageOut

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 added in v0.42.0

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

GetChannels returns the Channels field value if set, zero value otherwise.

func (*EndpointMessageOut) GetChannelsOk added in v0.42.0

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.

func (*EndpointMessageOut) GetEventId

func (o *EndpointMessageOut) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

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.

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 added in v0.25.0

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

GetNextAttempt returns the NextAttempt field value if set, zero value otherwise.

func (*EndpointMessageOut) GetNextAttemptOk added in v0.25.0

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.

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 added in v0.42.0

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 added in v0.25.0

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 added in v0.42.0

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 string and assigns it to the EventId field.

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 added in v0.25.0

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

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

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

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"`
	Description *string   `json:"description,omitempty"`
	Disabled    *bool     `json:"disabled,omitempty"`
	FilterTypes *[]string `json:"filterTypes,omitempty"`
	Id          string    `json:"id"`
	RateLimit   *int32    `json:"rateLimit,omitempty"`
	// Optional unique identifier for the endpoint
	Uid       *string   `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, id 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 added in v0.42.0

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

GetChannels returns the Channels field value if set, zero value otherwise.

func (*EndpointOut) GetChannelsOk added in v0.42.0

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.

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 if set, zero value otherwise.

func (*EndpointOut) GetDescriptionOk

func (o *EndpointOut) 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 (*EndpointOut) GetDisabled added in v0.22.0

func (o *EndpointOut) GetDisabled() bool

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

func (*EndpointOut) GetDisabledOk added in v0.22.0

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.

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.

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) GetRateLimit added in v0.24.0

func (o *EndpointOut) GetRateLimit() int32

GetRateLimit returns the RateLimit field value if set, zero value otherwise.

func (*EndpointOut) GetRateLimitOk added in v0.24.0

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.

func (*EndpointOut) GetUid added in v0.29.0

func (o *EndpointOut) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*EndpointOut) GetUidOk added in v0.29.0

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.

func (*EndpointOut) GetUpdatedAt added in v0.35.0

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

GetUpdatedAt returns the UpdatedAt field value

func (*EndpointOut) GetUpdatedAtOk added in v0.35.0

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 added in v0.42.0

func (o *EndpointOut) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*EndpointOut) HasDescription

func (o *EndpointOut) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EndpointOut) HasDisabled added in v0.22.0

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 added in v0.24.0

func (o *EndpointOut) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*EndpointOut) HasUid added in v0.29.0

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 added in v0.42.0

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 gets a reference to the given string and assigns it to the Description field.

func (*EndpointOut) SetDisabled added in v0.22.0

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) SetRateLimit added in v0.24.0

func (o *EndpointOut) SetRateLimit(v int32)

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

func (*EndpointOut) SetUid added in v0.29.0

func (o *EndpointOut) SetUid(v string)

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

func (*EndpointOut) SetUpdatedAt added in v0.35.0

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

type EndpointSecretOut

type EndpointSecretOut struct {
	// The endpoint's verification secret. If `null` is passed, a secret is automatically generated.
	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 added in v0.34.0

type EndpointSecretRotateIn struct {
	// The endpoint's verification secret. If `null` is passed, a secret is automatically generated.
	Key *string `json:"key,omitempty"`
}

EndpointSecretRotateIn struct for EndpointSecretRotateIn

func NewEndpointSecretRotateIn added in v0.34.0

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 added in v0.34.0

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 added in v0.34.0

func (o *EndpointSecretRotateIn) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*EndpointSecretRotateIn) GetKeyOk added in v0.34.0

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.

func (*EndpointSecretRotateIn) HasKey added in v0.34.0

func (o *EndpointSecretRotateIn) HasKey() bool

HasKey returns a boolean if a field has been set.

func (EndpointSecretRotateIn) MarshalJSON added in v0.34.0

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

func (*EndpointSecretRotateIn) SetKey added in v0.34.0

func (o *EndpointSecretRotateIn) SetKey(v string)

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

type EndpointStats

type EndpointStats struct {
	Fail    int32 `json:"fail"`
	Pending int32 `json:"pending"`
	Sending int32 `json:"sending"`
	Success int32 `json:"success"`
}

EndpointStats struct for EndpointStats

func NewEndpointStats

func NewEndpointStats(fail int32, pending int32, sending int32, success int32) *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() int32

GetFail returns the Fail field value

func (*EndpointStats) GetFailOk

func (o *EndpointStats) GetFailOk() (*int32, 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() int32

GetPending returns the Pending field value

func (*EndpointStats) GetPendingOk

func (o *EndpointStats) GetPendingOk() (*int32, bool)

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

func (*EndpointStats) GetSending added in v0.25.0

func (o *EndpointStats) GetSending() int32

GetSending returns the Sending field value

func (*EndpointStats) GetSendingOk added in v0.25.0

func (o *EndpointStats) GetSendingOk() (*int32, 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() int32

GetSuccess returns the Success field value

func (*EndpointStats) GetSuccessOk

func (o *EndpointStats) GetSuccessOk() (*int32, 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 int32)

SetFail sets field value

func (*EndpointStats) SetPending

func (o *EndpointStats) SetPending(v int32)

SetPending sets field value

func (*EndpointStats) SetSending added in v0.25.0

func (o *EndpointStats) SetSending(v int32)

SetSending sets field value

func (*EndpointStats) SetSuccess

func (o *EndpointStats) SetSuccess(v int32)

SetSuccess sets field value

type EndpointUpdate added in v0.29.0

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"`
	RateLimit   *int32    `json:"rateLimit,omitempty"`
	// Optional unique identifier for the endpoint
	Uid     *string `json:"uid,omitempty"`
	Url     string  `json:"url"`
	Version int32   `json:"version"`
}

EndpointUpdate struct for EndpointUpdate

func NewEndpointUpdate added in v0.29.0

func NewEndpointUpdate(url string, version int32) *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 added in v0.29.0

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 added in v0.42.0

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

GetChannels returns the Channels field value if set, zero value otherwise.

func (*EndpointUpdate) GetChannelsOk added in v0.42.0

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.

func (*EndpointUpdate) GetDescription added in v0.29.0

func (o *EndpointUpdate) GetDescription() string

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

func (*EndpointUpdate) GetDescriptionOk added in v0.29.0

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 added in v0.29.0

func (o *EndpointUpdate) GetDisabled() bool

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

func (*EndpointUpdate) GetDisabledOk added in v0.29.0

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 added in v0.29.0

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

GetFilterTypes returns the FilterTypes field value if set, zero value otherwise.

func (*EndpointUpdate) GetFilterTypesOk added in v0.29.0

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.

func (*EndpointUpdate) GetRateLimit added in v0.29.0

func (o *EndpointUpdate) GetRateLimit() int32

GetRateLimit returns the RateLimit field value if set, zero value otherwise.

func (*EndpointUpdate) GetRateLimitOk added in v0.29.0

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.

func (*EndpointUpdate) GetUid added in v0.29.0

func (o *EndpointUpdate) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*EndpointUpdate) GetUidOk added in v0.29.0

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.

func (*EndpointUpdate) GetUrl added in v0.29.0

func (o *EndpointUpdate) GetUrl() string

GetUrl returns the Url field value

func (*EndpointUpdate) GetUrlOk added in v0.29.0

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 added in v0.29.0

func (o *EndpointUpdate) GetVersion() int32

GetVersion returns the Version field value

func (*EndpointUpdate) GetVersionOk added in v0.29.0

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

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

func (*EndpointUpdate) HasChannels added in v0.42.0

func (o *EndpointUpdate) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*EndpointUpdate) HasDescription added in v0.29.0

func (o *EndpointUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EndpointUpdate) HasDisabled added in v0.29.0

func (o *EndpointUpdate) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*EndpointUpdate) HasFilterTypes added in v0.29.0

func (o *EndpointUpdate) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*EndpointUpdate) HasRateLimit added in v0.29.0

func (o *EndpointUpdate) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*EndpointUpdate) HasUid added in v0.29.0

func (o *EndpointUpdate) HasUid() bool

HasUid returns a boolean if a field has been set.

func (EndpointUpdate) MarshalJSON added in v0.29.0

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

func (*EndpointUpdate) SetChannels added in v0.42.0

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

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

func (*EndpointUpdate) SetDescription added in v0.29.0

func (o *EndpointUpdate) SetDescription(v string)

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

func (*EndpointUpdate) SetDisabled added in v0.29.0

func (o *EndpointUpdate) SetDisabled(v bool)

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

func (*EndpointUpdate) SetFilterTypes added in v0.29.0

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

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

func (*EndpointUpdate) SetRateLimit added in v0.29.0

func (o *EndpointUpdate) SetRateLimit(v int32)

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

func (*EndpointUpdate) SetUid added in v0.29.0

func (o *EndpointUpdate) SetUid(v string)

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

func (*EndpointUpdate) SetUrl added in v0.29.0

func (o *EndpointUpdate) SetUrl(v string)

SetUrl sets field value

func (*EndpointUpdate) SetVersion added in v0.29.0

func (o *EndpointUpdate) SetVersion(v int32)

SetVersion sets field value

type EndpointUpdatedEvent added in v0.34.0

type EndpointUpdatedEvent struct {
	Data EndpointUpdatedEventData `json:"data"`
	Type *string                  `json:"type,omitempty"`
}

EndpointUpdatedEvent Sent when an endpoint is updated.

func NewEndpointUpdatedEvent added in v0.34.0

func NewEndpointUpdatedEvent(data EndpointUpdatedEventData) *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 added in v0.34.0

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 added in v0.34.0

GetData returns the Data field value

func (*EndpointUpdatedEvent) GetDataOk added in v0.34.0

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

func (*EndpointUpdatedEvent) GetType added in v0.34.0

func (o *EndpointUpdatedEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EndpointUpdatedEvent) GetTypeOk added in v0.34.0

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

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

func (*EndpointUpdatedEvent) HasType added in v0.34.0

func (o *EndpointUpdatedEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (EndpointUpdatedEvent) MarshalJSON added in v0.34.0

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

func (*EndpointUpdatedEvent) SetData added in v0.34.0

SetData sets field value

func (*EndpointUpdatedEvent) SetType added in v0.34.0

func (o *EndpointUpdatedEvent) SetType(v string)

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

type EndpointUpdatedEventData added in v0.29.0

type EndpointUpdatedEventData struct {
	AppId string `json:"appId"`
	// Optional unique identifier for the application
	AppUid     *string `json:"appUid,omitempty"`
	EndpointId string  `json:"endpointId"`
}

EndpointUpdatedEventData struct for EndpointUpdatedEventData

func NewEndpointUpdatedEventData added in v0.29.0

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 added in v0.29.0

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 added in v0.29.0

func (o *EndpointUpdatedEventData) GetAppId() string

GetAppId returns the AppId field value

func (*EndpointUpdatedEventData) GetAppIdOk added in v0.29.0

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 added in v0.29.0

func (o *EndpointUpdatedEventData) GetAppUid() string

GetAppUid returns the AppUid field value if set, zero value otherwise.

func (*EndpointUpdatedEventData) GetAppUidOk added in v0.29.0

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.

func (*EndpointUpdatedEventData) GetEndpointId added in v0.29.0

func (o *EndpointUpdatedEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*EndpointUpdatedEventData) GetEndpointIdOk added in v0.29.0

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) HasAppUid added in v0.29.0

func (o *EndpointUpdatedEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (EndpointUpdatedEventData) MarshalJSON added in v0.29.0

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

func (*EndpointUpdatedEventData) SetAppId added in v0.29.0

func (o *EndpointUpdatedEventData) SetAppId(v string)

SetAppId sets field value

func (*EndpointUpdatedEventData) SetAppUid added in v0.29.0

func (o *EndpointUpdatedEventData) SetAppUid(v string)

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

func (*EndpointUpdatedEventData) SetEndpointId added in v0.29.0

func (o *EndpointUpdatedEventData) SetEndpointId(v string)

SetEndpointId sets field value

type EnvironmentApiService added in v0.44.0

type EnvironmentApiService service

EnvironmentApiService EnvironmentApi service

func (*EnvironmentApiService) ExportEnvironmentConfigurationApiV1EnvironmentExportPost added in v0.44.0

func (a *EnvironmentApiService) ExportEnvironmentConfigurationApiV1EnvironmentExportPost(ctx _context.Context) ApiExportEnvironmentConfigurationApiV1EnvironmentExportPostRequest

* ExportEnvironmentConfigurationApiV1EnvironmentExportPost 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 ApiExportEnvironmentConfigurationApiV1EnvironmentExportPostRequest

func (*EnvironmentApiService) ExportEnvironmentConfigurationApiV1EnvironmentExportPostExecute added in v0.44.0

func (a *EnvironmentApiService) ExportEnvironmentConfigurationApiV1EnvironmentExportPostExecute(r ApiExportEnvironmentConfigurationApiV1EnvironmentExportPostRequest) (EnvironmentOut, *_nethttp.Response, error)

* Execute executes the request * @return EnvironmentOut

func (*EnvironmentApiService) ImportEnvironmentConfigurationApiV1EnvironmentImportPost added in v0.44.0

func (a *EnvironmentApiService) ImportEnvironmentConfigurationApiV1EnvironmentImportPost(ctx _context.Context) ApiImportEnvironmentConfigurationApiV1EnvironmentImportPostRequest
  • ImportEnvironmentConfigurationApiV1EnvironmentImportPost 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 ApiImportEnvironmentConfigurationApiV1EnvironmentImportPostRequest

func (*EnvironmentApiService) ImportEnvironmentConfigurationApiV1EnvironmentImportPostExecute added in v0.44.0

func (a *EnvironmentApiService) ImportEnvironmentConfigurationApiV1EnvironmentImportPostExecute(r ApiImportEnvironmentConfigurationApiV1EnvironmentImportPostRequest) (*_nethttp.Response, error)

* Execute executes the request

type EnvironmentIn added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

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

GetCreatedAt returns the CreatedAt field value

func (*EnvironmentIn) GetCreatedAtOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentIn) GetEventTypes() []EventTypeIn

GetEventTypes returns the EventTypes field value if set, zero value otherwise.

func (*EnvironmentIn) GetEventTypesOk added in v0.44.0

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.

func (*EnvironmentIn) GetSettings added in v0.44.0

func (o *EnvironmentIn) GetSettings() SettingsIn

GetSettings returns the Settings field value if set, zero value otherwise.

func (*EnvironmentIn) GetSettingsOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentIn) GetVersion() int32

GetVersion returns the Version field value

func (*EnvironmentIn) GetVersionOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentIn) HasEventTypes() bool

HasEventTypes returns a boolean if a field has been set.

func (*EnvironmentIn) HasSettings added in v0.44.0

func (o *EnvironmentIn) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (EnvironmentIn) MarshalJSON added in v0.44.0

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

func (*EnvironmentIn) SetCreatedAt added in v0.44.0

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

SetCreatedAt sets field value

func (*EnvironmentIn) SetEventTypes added in v0.44.0

func (o *EnvironmentIn) SetEventTypes(v []EventTypeIn)

SetEventTypes gets a reference to the given []EventTypeIn and assigns it to the EventTypes field.

func (*EnvironmentIn) SetSettings added in v0.44.0

func (o *EnvironmentIn) SetSettings(v SettingsIn)

SetSettings gets a reference to the given SettingsIn and assigns it to the Settings field.

func (*EnvironmentIn) SetVersion added in v0.44.0

func (o *EnvironmentIn) SetVersion(v int32)

SetVersion sets field value

type EnvironmentOut added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

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

GetCreatedAt returns the CreatedAt field value

func (*EnvironmentOut) GetCreatedAtOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentOut) GetEventTypes() []EventTypeOut

GetEventTypes returns the EventTypes field value

func (*EnvironmentOut) GetEventTypesOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentOut) GetSettings() SettingsOut

GetSettings returns the Settings field value if set, zero value otherwise.

func (*EnvironmentOut) GetSettingsOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentOut) GetVersion() int32

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

func (*EnvironmentOut) GetVersionOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentOut) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (*EnvironmentOut) HasVersion added in v0.44.0

func (o *EnvironmentOut) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (EnvironmentOut) MarshalJSON added in v0.44.0

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

func (*EnvironmentOut) SetCreatedAt added in v0.44.0

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

SetCreatedAt sets field value

func (*EnvironmentOut) SetEventTypes added in v0.44.0

func (o *EnvironmentOut) SetEventTypes(v []EventTypeOut)

SetEventTypes sets field value

func (*EnvironmentOut) SetSettings added in v0.44.0

func (o *EnvironmentOut) SetSettings(v SettingsOut)

SetSettings gets a reference to the given SettingsOut and assigns it to the Settings field.

func (*EnvironmentOut) SetVersion added in v0.44.0

func (o *EnvironmentOut) SetVersion(v int32)

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

type EnvironmentSettingsApiService added in v0.44.0

type EnvironmentSettingsApiService service

EnvironmentSettingsApiService EnvironmentSettingsApi service

func (*EnvironmentSettingsApiService) GetOrgSettingsApiV1EnvironmentSettingsGet added in v0.44.0

* GetOrgSettingsApiV1EnvironmentSettingsGet 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 ApiGetOrgSettingsApiV1EnvironmentSettingsGetRequest

func (*EnvironmentSettingsApiService) GetOrgSettingsApiV1EnvironmentSettingsGetExecute added in v0.44.0

* Execute executes the request * @return EnvironmentSettingsOut

type EnvironmentSettingsOut added in v0.44.0

type EnvironmentSettingsOut struct {
	CustomColor                 *string              `json:"customColor,omitempty"`
	CustomFontFamily            *string              `json:"customFontFamily,omitempty"`
	CustomLogoUrl               *string              `json:"customLogoUrl,omitempty"`
	CustomThemeOverride         *CustomThemeOverride `json:"customThemeOverride,omitempty"`
	EnableChannels              *bool                `json:"enableChannels,omitempty"`
	EnableIntegrationManagement *bool                `json:"enableIntegrationManagement,omitempty"`
}

EnvironmentSettingsOut struct for EnvironmentSettingsOut

func NewEnvironmentSettingsOut added in v0.44.0

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 added in v0.44.0

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) GetCustomColor added in v0.44.0

func (o *EnvironmentSettingsOut) GetCustomColor() string

GetCustomColor returns the CustomColor field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetCustomColorOk added in v0.44.0

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.

func (*EnvironmentSettingsOut) GetCustomFontFamily added in v0.44.0

func (o *EnvironmentSettingsOut) GetCustomFontFamily() string

GetCustomFontFamily returns the CustomFontFamily field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetCustomFontFamilyOk added in v0.44.0

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.

func (*EnvironmentSettingsOut) GetCustomLogoUrl added in v0.44.0

func (o *EnvironmentSettingsOut) GetCustomLogoUrl() string

GetCustomLogoUrl returns the CustomLogoUrl field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetCustomLogoUrlOk added in v0.44.0

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.

func (*EnvironmentSettingsOut) GetCustomThemeOverride added in v0.44.0

func (o *EnvironmentSettingsOut) GetCustomThemeOverride() CustomThemeOverride

GetCustomThemeOverride returns the CustomThemeOverride field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetCustomThemeOverrideOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentSettingsOut) GetEnableChannels() bool

GetEnableChannels returns the EnableChannels field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetEnableChannelsOk added in v0.44.0

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 added in v0.44.0

func (o *EnvironmentSettingsOut) GetEnableIntegrationManagement() bool

GetEnableIntegrationManagement returns the EnableIntegrationManagement field value if set, zero value otherwise.

func (*EnvironmentSettingsOut) GetEnableIntegrationManagementOk added in v0.44.0

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) HasCustomColor added in v0.44.0

func (o *EnvironmentSettingsOut) HasCustomColor() bool

HasCustomColor returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasCustomFontFamily added in v0.44.0

func (o *EnvironmentSettingsOut) HasCustomFontFamily() bool

HasCustomFontFamily returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasCustomLogoUrl added in v0.44.0

func (o *EnvironmentSettingsOut) HasCustomLogoUrl() bool

HasCustomLogoUrl returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasCustomThemeOverride added in v0.44.0

func (o *EnvironmentSettingsOut) HasCustomThemeOverride() bool

HasCustomThemeOverride returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasEnableChannels added in v0.44.0

func (o *EnvironmentSettingsOut) HasEnableChannels() bool

HasEnableChannels returns a boolean if a field has been set.

func (*EnvironmentSettingsOut) HasEnableIntegrationManagement added in v0.44.0

func (o *EnvironmentSettingsOut) HasEnableIntegrationManagement() bool

HasEnableIntegrationManagement returns a boolean if a field has been set.

func (EnvironmentSettingsOut) MarshalJSON added in v0.44.0

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

func (*EnvironmentSettingsOut) SetCustomColor added in v0.44.0

func (o *EnvironmentSettingsOut) SetCustomColor(v string)

SetCustomColor gets a reference to the given string and assigns it to the CustomColor field.

func (*EnvironmentSettingsOut) SetCustomFontFamily added in v0.44.0

func (o *EnvironmentSettingsOut) SetCustomFontFamily(v string)

SetCustomFontFamily gets a reference to the given string and assigns it to the CustomFontFamily field.

func (*EnvironmentSettingsOut) SetCustomLogoUrl added in v0.44.0

func (o *EnvironmentSettingsOut) SetCustomLogoUrl(v string)

SetCustomLogoUrl gets a reference to the given string and assigns it to the CustomLogoUrl field.

func (*EnvironmentSettingsOut) SetCustomThemeOverride added in v0.44.0

func (o *EnvironmentSettingsOut) SetCustomThemeOverride(v CustomThemeOverride)

SetCustomThemeOverride gets a reference to the given CustomThemeOverride and assigns it to the CustomThemeOverride field.

func (*EnvironmentSettingsOut) SetEnableChannels added in v0.44.0

func (o *EnvironmentSettingsOut) SetEnableChannels(v bool)

SetEnableChannels gets a reference to the given bool and assigns it to the EnableChannels field.

func (*EnvironmentSettingsOut) SetEnableIntegrationManagement added in v0.44.0

func (o *EnvironmentSettingsOut) SetEnableIntegrationManagement(v bool)

SetEnableIntegrationManagement gets a reference to the given bool and assigns it to the EnableIntegrationManagement field.

type EventExampleIn added in v0.26.0

type EventExampleIn struct {
	EventType string `json:"eventType"`
}

EventExampleIn struct for EventExampleIn

func NewEventExampleIn added in v0.26.0

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 added in v0.26.0

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 added in v0.26.0

func (o *EventExampleIn) GetEventType() string

GetEventType returns the EventType field value

func (*EventExampleIn) GetEventTypeOk added in v0.26.0

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 added in v0.26.0

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

func (*EventExampleIn) SetEventType added in v0.26.0

func (o *EventExampleIn) SetEventType(v string)

SetEventType sets field value

type EventTypeApiService

type EventTypeApiService service

EventTypeApiService EventTypeApi service

func (*EventTypeApiService) CreateEventTypeApiV1EventTypePost

func (a *EventTypeApiService) CreateEventTypeApiV1EventTypePost(ctx _context.Context) ApiCreateEventTypeApiV1EventTypePostRequest
  • CreateEventTypeApiV1EventTypePost 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 ApiCreateEventTypeApiV1EventTypePostRequest

func (*EventTypeApiService) CreateEventTypeApiV1EventTypePostExecute

func (a *EventTypeApiService) CreateEventTypeApiV1EventTypePostExecute(r ApiCreateEventTypeApiV1EventTypePostRequest) (EventTypeOut, *_nethttp.Response, error)

* Execute executes the request * @return EventTypeOut

func (*EventTypeApiService) DeleteEventTypeApiV1EventTypeEventTypeNameDelete

func (a *EventTypeApiService) DeleteEventTypeApiV1EventTypeEventTypeNameDelete(ctx _context.Context, eventTypeName string) ApiDeleteEventTypeApiV1EventTypeEventTypeNameDeleteRequest
  • DeleteEventTypeApiV1EventTypeEventTypeNameDelete Archive 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
  • @return ApiDeleteEventTypeApiV1EventTypeEventTypeNameDeleteRequest

func (*EventTypeApiService) DeleteEventTypeApiV1EventTypeEventTypeNameDeleteExecute

func (a *EventTypeApiService) DeleteEventTypeApiV1EventTypeEventTypeNameDeleteExecute(r ApiDeleteEventTypeApiV1EventTypeEventTypeNameDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*EventTypeApiService) GenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePost added in v0.34.0

func (a *EventTypeApiService) GenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePost(ctx _context.Context) ApiGenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePostRequest

* GenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePost 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 ApiGenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePostRequest

func (*EventTypeApiService) GenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePostExecute added in v0.34.0

func (a *EventTypeApiService) GenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePostExecute(r ApiGenerateSchemaExampleApiV1EventTypeSchemaGenerateExamplePostRequest) (EventTypeExampleOut, *_nethttp.Response, error)

* Execute executes the request * @return EventTypeExampleOut

func (*EventTypeApiService) GetEventTypeApiV1EventTypeEventTypeNameGet added in v0.29.0

func (a *EventTypeApiService) GetEventTypeApiV1EventTypeEventTypeNameGet(ctx _context.Context, eventTypeName string) ApiGetEventTypeApiV1EventTypeEventTypeNameGetRequest

* GetEventTypeApiV1EventTypeEventTypeNameGet 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 * @return ApiGetEventTypeApiV1EventTypeEventTypeNameGetRequest

func (*EventTypeApiService) GetEventTypeApiV1EventTypeEventTypeNameGetExecute added in v0.29.0

func (a *EventTypeApiService) GetEventTypeApiV1EventTypeEventTypeNameGetExecute(r ApiGetEventTypeApiV1EventTypeEventTypeNameGetRequest) (EventTypeOut, *_nethttp.Response, error)

* Execute executes the request * @return EventTypeOut

func (*EventTypeApiService) ListEventTypesApiV1EventTypeGet

func (a *EventTypeApiService) ListEventTypesApiV1EventTypeGet(ctx _context.Context) ApiListEventTypesApiV1EventTypeGetRequest

* ListEventTypesApiV1EventTypeGet 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 ApiListEventTypesApiV1EventTypeGetRequest

func (*EventTypeApiService) ListEventTypesApiV1EventTypeGetExecute

* Execute executes the request * @return ListResponseEventTypeOut

func (*EventTypeApiService) UpdateEventTypeApiV1EventTypeEventTypeNamePut

func (a *EventTypeApiService) UpdateEventTypeApiV1EventTypeEventTypeNamePut(ctx _context.Context, eventTypeName string) ApiUpdateEventTypeApiV1EventTypeEventTypeNamePutRequest

* UpdateEventTypeApiV1EventTypeEventTypeNamePut 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 * @return ApiUpdateEventTypeApiV1EventTypeEventTypeNamePutRequest

func (*EventTypeApiService) UpdateEventTypeApiV1EventTypeEventTypeNamePutExecute

func (a *EventTypeApiService) UpdateEventTypeApiV1EventTypeEventTypeNamePutExecute(r ApiUpdateEventTypeApiV1EventTypeEventTypeNamePutRequest) (EventTypeOut, *_nethttp.Response, error)

* Execute executes the request * @return EventTypeOut

type EventTypeExampleOut added in v0.34.0

type EventTypeExampleOut struct {
	Example map[string]interface{} `json:"example"`
}

EventTypeExampleOut struct for EventTypeExampleOut

func NewEventTypeExampleOut added in v0.34.0

func NewEventTypeExampleOut(example 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 added in v0.34.0

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 added in v0.34.0

func (o *EventTypeExampleOut) GetExample() map[string]interface{}

GetExample returns the Example field value

func (*EventTypeExampleOut) GetExampleOk added in v0.34.0

func (o *EventTypeExampleOut) GetExampleOk() (*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 added in v0.34.0

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

func (*EventTypeExampleOut) SetExample added in v0.34.0

func (o *EventTypeExampleOut) SetExample(v map[string]interface{})

SetExample sets field value

type EventTypeIn

type EventTypeIn struct {
	Archived    *bool  `json:"archived,omitempty"`
	Description string `json:"description"`
	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 added in v0.34.0

func (o *EventTypeIn) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*EventTypeIn) GetArchivedOk added in v0.34.0

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) 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 added in v0.27.0

func (o *EventTypeIn) GetSchemas() map[string]map[string]interface{}

GetSchemas returns the Schemas field value if set, zero value otherwise.

func (*EventTypeIn) GetSchemasOk added in v0.27.0

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.

func (*EventTypeIn) HasArchived added in v0.34.0

func (o *EventTypeIn) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*EventTypeIn) HasSchemas added in v0.27.0

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 added in v0.34.0

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

func (o *EventTypeIn) SetName(v string)

SetName sets field value

func (*EventTypeIn) SetSchemas added in v0.27.0

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.

type EventTypeOut

type EventTypeOut struct {
	Archived    *bool     `json:"archived,omitempty"`
	CreatedAt   time.Time `json:"createdAt"`
	Description string    `json:"description"`
	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 added in v0.34.0

func (o *EventTypeOut) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*EventTypeOut) GetArchivedOk added in v0.34.0

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 added in v0.35.0

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

GetCreatedAt returns the CreatedAt field value

func (*EventTypeOut) GetCreatedAtOk added in v0.35.0

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) 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 added in v0.27.0

func (o *EventTypeOut) GetSchemas() map[string]map[string]interface{}

GetSchemas returns the Schemas field value if set, zero value otherwise.

func (*EventTypeOut) GetSchemasOk added in v0.27.0

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.

func (*EventTypeOut) GetUpdatedAt added in v0.35.0

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

GetUpdatedAt returns the UpdatedAt field value

func (*EventTypeOut) GetUpdatedAtOk added in v0.35.0

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 added in v0.34.0

func (o *EventTypeOut) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*EventTypeOut) HasSchemas added in v0.27.0

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 added in v0.34.0

func (o *EventTypeOut) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*EventTypeOut) SetCreatedAt added in v0.35.0

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

func (o *EventTypeOut) SetName(v string)

SetName sets field value

func (*EventTypeOut) SetSchemas added in v0.27.0

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 added in v0.35.0

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

SetUpdatedAt sets field value

type EventTypeSchemaIn added in v0.34.0

type EventTypeSchemaIn struct {
	// The schema for an event type
	Schema map[string]interface{} `json:"schema"`
}

EventTypeSchemaIn struct for EventTypeSchemaIn

func NewEventTypeSchemaIn added in v0.34.0

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 added in v0.34.0

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 added in v0.34.0

func (o *EventTypeSchemaIn) GetSchema() map[string]interface{}

GetSchema returns the Schema field value

func (*EventTypeSchemaIn) GetSchemaOk added in v0.34.0

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 added in v0.34.0

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

func (*EventTypeSchemaIn) SetSchema added in v0.34.0

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"`
	// 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 added in v0.34.0

func (o *EventTypeUpdate) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*EventTypeUpdate) GetArchivedOk added in v0.34.0

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) GetSchemas added in v0.27.0

func (o *EventTypeUpdate) GetSchemas() map[string]map[string]interface{}

GetSchemas returns the Schemas field value if set, zero value otherwise.

func (*EventTypeUpdate) GetSchemasOk added in v0.27.0

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.

func (*EventTypeUpdate) HasArchived added in v0.34.0

func (o *EventTypeUpdate) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*EventTypeUpdate) HasSchemas added in v0.27.0

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 added in v0.34.0

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) SetSchemas added in v0.27.0

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.

type ExportOrganizationOut added in v0.42.1

type ExportOrganizationOut struct {
	CreatedAt  time.Time      `json:"createdAt"`
	EventTypes []EventTypeOut `json:"eventTypes"`
	Settings   *SettingsOut   `json:"settings,omitempty"`
	Version    *int32         `json:"version,omitempty"`
}

ExportOrganizationOut struct for ExportOrganizationOut

func NewExportOrganizationOut added in v0.42.1

func NewExportOrganizationOut(createdAt time.Time, eventTypes []EventTypeOut) *ExportOrganizationOut

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

func NewExportOrganizationOutWithDefaults added in v0.42.1

func NewExportOrganizationOutWithDefaults() *ExportOrganizationOut

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

func (*ExportOrganizationOut) GetCreatedAt added in v0.42.1

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

GetCreatedAt returns the CreatedAt field value

func (*ExportOrganizationOut) GetCreatedAtOk added in v0.42.1

func (o *ExportOrganizationOut) 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 (*ExportOrganizationOut) GetEventTypes added in v0.42.1

func (o *ExportOrganizationOut) GetEventTypes() []EventTypeOut

GetEventTypes returns the EventTypes field value

func (*ExportOrganizationOut) GetEventTypesOk added in v0.42.1

func (o *ExportOrganizationOut) GetEventTypesOk() (*[]EventTypeOut, bool)

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

func (*ExportOrganizationOut) GetSettings added in v0.42.1

func (o *ExportOrganizationOut) GetSettings() SettingsOut

GetSettings returns the Settings field value if set, zero value otherwise.

func (*ExportOrganizationOut) GetSettingsOk added in v0.42.1

func (o *ExportOrganizationOut) 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 (*ExportOrganizationOut) GetVersion added in v0.42.1

func (o *ExportOrganizationOut) GetVersion() int32

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

func (*ExportOrganizationOut) GetVersionOk added in v0.42.1

func (o *ExportOrganizationOut) 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 (*ExportOrganizationOut) HasSettings added in v0.42.1

func (o *ExportOrganizationOut) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (*ExportOrganizationOut) HasVersion added in v0.42.1

func (o *ExportOrganizationOut) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ExportOrganizationOut) MarshalJSON added in v0.42.1

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

func (*ExportOrganizationOut) SetCreatedAt added in v0.42.1

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

SetCreatedAt sets field value

func (*ExportOrganizationOut) SetEventTypes added in v0.42.1

func (o *ExportOrganizationOut) SetEventTypes(v []EventTypeOut)

SetEventTypes sets field value

func (*ExportOrganizationOut) SetSettings added in v0.42.1

func (o *ExportOrganizationOut) SetSettings(v SettingsOut)

SetSettings gets a reference to the given SettingsOut and assigns it to the Settings field.

func (*ExportOrganizationOut) SetVersion added in v0.42.1

func (o *ExportOrganizationOut) SetVersion(v int32)

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

type ExportedOrganizationModel added in v0.42.0

type ExportedOrganizationModel struct {
	CreatedAt  time.Time      `json:"createdAt"`
	EventTypes []EventTypeOut `json:"eventTypes"`
	Settings   *SettingsOut   `json:"settings,omitempty"`
}

ExportedOrganizationModel struct for ExportedOrganizationModel

func NewExportedOrganizationModel added in v0.42.0

func NewExportedOrganizationModel(createdAt time.Time, eventTypes []EventTypeOut) *ExportedOrganizationModel

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

func NewExportedOrganizationModelWithDefaults added in v0.42.0

func NewExportedOrganizationModelWithDefaults() *ExportedOrganizationModel

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

func (*ExportedOrganizationModel) GetCreatedAt added in v0.42.0

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

GetCreatedAt returns the CreatedAt field value

func (*ExportedOrganizationModel) GetCreatedAtOk added in v0.42.0

func (o *ExportedOrganizationModel) 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 (*ExportedOrganizationModel) GetEventTypes added in v0.42.0

func (o *ExportedOrganizationModel) GetEventTypes() []EventTypeOut

GetEventTypes returns the EventTypes field value

func (*ExportedOrganizationModel) GetEventTypesOk added in v0.42.0

func (o *ExportedOrganizationModel) GetEventTypesOk() (*[]EventTypeOut, bool)

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

func (*ExportedOrganizationModel) GetSettings added in v0.42.0

func (o *ExportedOrganizationModel) GetSettings() SettingsOut

GetSettings returns the Settings field value if set, zero value otherwise.

func (*ExportedOrganizationModel) GetSettingsOk added in v0.42.0

func (o *ExportedOrganizationModel) 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 (*ExportedOrganizationModel) HasSettings added in v0.42.0

func (o *ExportedOrganizationModel) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (ExportedOrganizationModel) MarshalJSON added in v0.42.0

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

func (*ExportedOrganizationModel) SetCreatedAt added in v0.42.0

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

SetCreatedAt sets field value

func (*ExportedOrganizationModel) SetEventTypes added in v0.42.0

func (o *ExportedOrganizationModel) SetEventTypes(v []EventTypeOut)

SetEventTypes sets field value

func (*ExportedOrganizationModel) SetSettings added in v0.42.0

func (o *ExportedOrganizationModel) SetSettings(v SettingsOut)

SetSettings gets a reference to the given SettingsOut and assigns it to the Settings field.

type FontSizeConfig added in v0.39.0

type FontSizeConfig struct {
	Base *int32 `json:"base,omitempty"`
}

FontSizeConfig struct for FontSizeConfig

func NewFontSizeConfig added in v0.39.0

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 added in v0.39.0

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 added in v0.39.0

func (o *FontSizeConfig) GetBase() int32

GetBase returns the Base field value if set, zero value otherwise.

func (*FontSizeConfig) GetBaseOk added in v0.39.0

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.

func (*FontSizeConfig) HasBase added in v0.39.0

func (o *FontSizeConfig) HasBase() bool

HasBase returns a boolean if a field has been set.

func (FontSizeConfig) MarshalJSON added in v0.39.0

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

func (*FontSizeConfig) SetBase added in v0.39.0

func (o *FontSizeConfig) SetBase(v int32)

SetBase gets a reference to the given int32 and assigns it to the Base field.

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

HTTPValidationError struct for HTTPValidationError

func NewHTTPValidationError

func NewHTTPValidationError() *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 if set, zero value otherwise.

func (*HTTPValidationError) GetDetailOk

func (o *HTTPValidationError) GetDetailOk() (*[]ValidationError, bool)

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

func (*HTTPValidationError) HasDetail

func (o *HTTPValidationError) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (HTTPValidationError) MarshalJSON

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

func (*HTTPValidationError) SetDetail

func (o *HTTPValidationError) SetDetail(v []ValidationError)

SetDetail gets a reference to the given []ValidationError and assigns it to the Detail field.

type HealthApiService

type HealthApiService service

HealthApiService HealthApi service

func (*HealthApiService) HealthApiV1HealthGet

func (a *HealthApiService) HealthApiV1HealthGet(ctx _context.Context) ApiHealthApiV1HealthGetRequest

* HealthApiV1HealthGet 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 ApiHealthApiV1HealthGetRequest

func (*HealthApiService) HealthApiV1HealthGetExecute

func (a *HealthApiService) HealthApiV1HealthGetExecute(r ApiHealthApiV1HealthGetRequest) (*_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 ImportOrganizationIn added in v0.42.1

type ImportOrganizationIn struct {
	CreatedAt  time.Time      `json:"createdAt"`
	EventTypes *[]EventTypeIn `json:"eventTypes,omitempty"`
	Settings   *SettingsIn    `json:"settings,omitempty"`
	Version    int32          `json:"version"`
}

ImportOrganizationIn struct for ImportOrganizationIn

func NewImportOrganizationIn added in v0.42.1

func NewImportOrganizationIn(createdAt time.Time, version int32) *ImportOrganizationIn

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

func NewImportOrganizationInWithDefaults added in v0.42.1

func NewImportOrganizationInWithDefaults() *ImportOrganizationIn

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

func (*ImportOrganizationIn) GetCreatedAt added in v0.42.1

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

GetCreatedAt returns the CreatedAt field value

func (*ImportOrganizationIn) GetCreatedAtOk added in v0.42.1

func (o *ImportOrganizationIn) 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 (*ImportOrganizationIn) GetEventTypes added in v0.42.1

func (o *ImportOrganizationIn) GetEventTypes() []EventTypeIn

GetEventTypes returns the EventTypes field value if set, zero value otherwise.

func (*ImportOrganizationIn) GetEventTypesOk added in v0.42.1

func (o *ImportOrganizationIn) 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.

func (*ImportOrganizationIn) GetSettings added in v0.42.1

func (o *ImportOrganizationIn) GetSettings() SettingsIn

GetSettings returns the Settings field value if set, zero value otherwise.

func (*ImportOrganizationIn) GetSettingsOk added in v0.42.1

func (o *ImportOrganizationIn) 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 (*ImportOrganizationIn) GetVersion added in v0.42.1

func (o *ImportOrganizationIn) GetVersion() int32

GetVersion returns the Version field value

func (*ImportOrganizationIn) GetVersionOk added in v0.42.1

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

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

func (*ImportOrganizationIn) HasEventTypes added in v0.42.1

func (o *ImportOrganizationIn) HasEventTypes() bool

HasEventTypes returns a boolean if a field has been set.

func (*ImportOrganizationIn) HasSettings added in v0.42.1

func (o *ImportOrganizationIn) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (ImportOrganizationIn) MarshalJSON added in v0.42.1

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

func (*ImportOrganizationIn) SetCreatedAt added in v0.42.1

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

SetCreatedAt sets field value

func (*ImportOrganizationIn) SetEventTypes added in v0.42.1

func (o *ImportOrganizationIn) SetEventTypes(v []EventTypeIn)

SetEventTypes gets a reference to the given []EventTypeIn and assigns it to the EventTypes field.

func (*ImportOrganizationIn) SetSettings added in v0.42.1

func (o *ImportOrganizationIn) SetSettings(v SettingsIn)

SetSettings gets a reference to the given SettingsIn and assigns it to the Settings field.

func (*ImportOrganizationIn) SetVersion added in v0.42.1

func (o *ImportOrganizationIn) SetVersion(v int32)

SetVersion sets field value

type IntegrationApiService added in v0.44.0

type IntegrationApiService service

IntegrationApiService IntegrationApi service

func (*IntegrationApiService) CreateIntegrationApiV1AppAppIdIntegrationPost added in v0.44.0

func (a *IntegrationApiService) CreateIntegrationApiV1AppAppIdIntegrationPost(ctx _context.Context, appId string) ApiCreateIntegrationApiV1AppAppIdIntegrationPostRequest

* CreateIntegrationApiV1AppAppIdIntegrationPost 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 * @return ApiCreateIntegrationApiV1AppAppIdIntegrationPostRequest

func (*IntegrationApiService) CreateIntegrationApiV1AppAppIdIntegrationPostExecute added in v0.44.0

func (a *IntegrationApiService) CreateIntegrationApiV1AppAppIdIntegrationPostExecute(r ApiCreateIntegrationApiV1AppAppIdIntegrationPostRequest) (IntegrationOut, *_nethttp.Response, error)

* Execute executes the request * @return IntegrationOut

func (*IntegrationApiService) DeleteIntegrationApiV1AppAppIdIntegrationIntegIdDelete added in v0.44.0

func (a *IntegrationApiService) DeleteIntegrationApiV1AppAppIdIntegrationIntegIdDelete(ctx _context.Context, integId string, appId string) ApiDeleteIntegrationApiV1AppAppIdIntegrationIntegIdDeleteRequest

* DeleteIntegrationApiV1AppAppIdIntegrationIntegIdDelete Delete Integration * Delete an integration and revoke it's key. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param integId * @param appId * @return ApiDeleteIntegrationApiV1AppAppIdIntegrationIntegIdDeleteRequest

func (*IntegrationApiService) DeleteIntegrationApiV1AppAppIdIntegrationIntegIdDeleteExecute added in v0.44.0

func (a *IntegrationApiService) DeleteIntegrationApiV1AppAppIdIntegrationIntegIdDeleteExecute(r ApiDeleteIntegrationApiV1AppAppIdIntegrationIntegIdDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*IntegrationApiService) GetIntegrationApiV1AppAppIdIntegrationIntegIdGet added in v0.44.0

func (a *IntegrationApiService) GetIntegrationApiV1AppAppIdIntegrationIntegIdGet(ctx _context.Context, integId string, appId string) ApiGetIntegrationApiV1AppAppIdIntegrationIntegIdGetRequest

* GetIntegrationApiV1AppAppIdIntegrationIntegIdGet Get Integration * Get an integration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param integId * @param appId * @return ApiGetIntegrationApiV1AppAppIdIntegrationIntegIdGetRequest

func (*IntegrationApiService) GetIntegrationApiV1AppAppIdIntegrationIntegIdGetExecute added in v0.44.0

func (a *IntegrationApiService) GetIntegrationApiV1AppAppIdIntegrationIntegIdGetExecute(r ApiGetIntegrationApiV1AppAppIdIntegrationIntegIdGetRequest) (IntegrationOut, *_nethttp.Response, error)

* Execute executes the request * @return IntegrationOut

func (*IntegrationApiService) GetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGet added in v0.44.0

func (a *IntegrationApiService) GetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGet(ctx _context.Context, integId string, appId string) ApiGetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGetRequest

* GetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGet 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 integId * @param appId * @return ApiGetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGetRequest

func (*IntegrationApiService) GetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGetExecute added in v0.44.0

func (a *IntegrationApiService) GetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGetExecute(r ApiGetIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyGetRequest) (IntegrationKeyOut, *_nethttp.Response, error)

* Execute executes the request * @return IntegrationKeyOut

func (*IntegrationApiService) ListIntegrationsApiV1AppAppIdIntegrationGet added in v0.44.0

func (a *IntegrationApiService) ListIntegrationsApiV1AppAppIdIntegrationGet(ctx _context.Context, appId string) ApiListIntegrationsApiV1AppAppIdIntegrationGetRequest

* ListIntegrationsApiV1AppAppIdIntegrationGet 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 * @return ApiListIntegrationsApiV1AppAppIdIntegrationGetRequest

func (*IntegrationApiService) ListIntegrationsApiV1AppAppIdIntegrationGetExecute added in v0.44.0

* Execute executes the request * @return ListResponseIntegrationOut

func (*IntegrationApiService) RotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePost added in v0.44.0

func (a *IntegrationApiService) RotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePost(ctx _context.Context, integId string, appId string) ApiRotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePostRequest

* RotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePost 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 integId * @param appId * @return ApiRotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePostRequest

func (*IntegrationApiService) RotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePostExecute added in v0.44.0

func (a *IntegrationApiService) RotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePostExecute(r ApiRotateIntegrationKeyApiV1AppAppIdIntegrationIntegIdKeyRotatePostRequest) (IntegrationKeyOut, *_nethttp.Response, error)

* Execute executes the request * @return IntegrationKeyOut

func (*IntegrationApiService) UpdateIntegrationApiV1AppAppIdIntegrationIntegIdPut added in v0.44.0

func (a *IntegrationApiService) UpdateIntegrationApiV1AppAppIdIntegrationIntegIdPut(ctx _context.Context, integId string, appId string) ApiUpdateIntegrationApiV1AppAppIdIntegrationIntegIdPutRequest

* UpdateIntegrationApiV1AppAppIdIntegrationIntegIdPut Update Integration * Update an integration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param integId * @param appId * @return ApiUpdateIntegrationApiV1AppAppIdIntegrationIntegIdPutRequest

func (*IntegrationApiService) UpdateIntegrationApiV1AppAppIdIntegrationIntegIdPutExecute added in v0.44.0

func (a *IntegrationApiService) UpdateIntegrationApiV1AppAppIdIntegrationIntegIdPutExecute(r ApiUpdateIntegrationApiV1AppAppIdIntegrationIntegIdPutRequest) (IntegrationOut, *_nethttp.Response, error)

* Execute executes the request * @return IntegrationOut

type IntegrationIn added in v0.44.0

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

IntegrationIn struct for IntegrationIn

func NewIntegrationIn added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

func (o *IntegrationIn) GetName() string

GetName returns the Name field value

func (*IntegrationIn) GetNameOk added in v0.44.0

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 added in v0.44.0

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

func (*IntegrationIn) SetName added in v0.44.0

func (o *IntegrationIn) SetName(v string)

SetName sets field value

type IntegrationKeyOut added in v0.44.0

type IntegrationKeyOut struct {
	Key string `json:"key"`
}

IntegrationKeyOut struct for IntegrationKeyOut

func NewIntegrationKeyOut added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

func (o *IntegrationKeyOut) GetKey() string

GetKey returns the Key field value

func (*IntegrationKeyOut) GetKeyOk added in v0.44.0

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 added in v0.44.0

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

func (*IntegrationKeyOut) SetKey added in v0.44.0

func (o *IntegrationKeyOut) SetKey(v string)

SetKey sets field value

type IntegrationOut added in v0.44.0

type IntegrationOut struct {
	CreatedAt time.Time `json:"createdAt"`
	Id        string    `json:"id"`
	Name      string    `json:"name"`
	UpdatedAt time.Time `json:"updatedAt"`
}

IntegrationOut struct for IntegrationOut

func NewIntegrationOut added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

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

GetCreatedAt returns the CreatedAt field value

func (*IntegrationOut) GetCreatedAtOk added in v0.44.0

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 added in v0.44.0

func (o *IntegrationOut) GetId() string

GetId returns the Id field value

func (*IntegrationOut) GetIdOk added in v0.44.0

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 added in v0.44.0

func (o *IntegrationOut) GetName() string

GetName returns the Name field value

func (*IntegrationOut) GetNameOk added in v0.44.0

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 added in v0.44.0

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

GetUpdatedAt returns the UpdatedAt field value

func (*IntegrationOut) GetUpdatedAtOk added in v0.44.0

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 added in v0.44.0

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

func (*IntegrationOut) SetCreatedAt added in v0.44.0

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

SetCreatedAt sets field value

func (*IntegrationOut) SetId added in v0.44.0

func (o *IntegrationOut) SetId(v string)

SetId sets field value

func (*IntegrationOut) SetName added in v0.44.0

func (o *IntegrationOut) SetName(v string)

SetName sets field value

func (*IntegrationOut) SetUpdatedAt added in v0.44.0

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

SetUpdatedAt sets field value

type IntegrationUpdate added in v0.44.0

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

IntegrationUpdate struct for IntegrationUpdate

func NewIntegrationUpdate added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

func (o *IntegrationUpdate) GetName() string

GetName returns the Name field value

func (*IntegrationUpdate) GetNameOk added in v0.44.0

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 added in v0.44.0

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

func (*IntegrationUpdate) SetName added in v0.44.0

func (o *IntegrationUpdate) SetName(v string)

SetName sets field value

type ListResponseApplicationOut

type ListResponseApplicationOut struct {
	Data     []ApplicationOut `json:"data"`
	Done     bool             `json:"done"`
	Iterator *string          `json:"iterator,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.

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.

func (*ListResponseApplicationOut) HasIterator

func (o *ListResponseApplicationOut) HasIterator() bool

HasIterator 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 string and assigns it to the Iterator field.

type ListResponseEndpointMessageOut

type ListResponseEndpointMessageOut struct {
	Data     []EndpointMessageOut `json:"data"`
	Done     bool                 `json:"done"`
	Iterator *string              `json:"iterator,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.

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.

func (*ListResponseEndpointMessageOut) HasIterator

func (o *ListResponseEndpointMessageOut) HasIterator() bool

HasIterator 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 string and assigns it to the Iterator field.

type ListResponseEndpointOut

type ListResponseEndpointOut struct {
	Data     []EndpointOut `json:"data"`
	Done     bool          `json:"done"`
	Iterator *string       `json:"iterator,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.

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.

func (*ListResponseEndpointOut) HasIterator

func (o *ListResponseEndpointOut) HasIterator() bool

HasIterator 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 string and assigns it to the Iterator field.

type ListResponseEventTypeOut

type ListResponseEventTypeOut struct {
	Data     []EventTypeOut `json:"data"`
	Done     bool           `json:"done"`
	Iterator *string        `json:"iterator,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.

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.

func (*ListResponseEventTypeOut) HasIterator

func (o *ListResponseEventTypeOut) HasIterator() bool

HasIterator 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 string and assigns it to the Iterator field.

type ListResponseIntegrationOut added in v0.44.0

type ListResponseIntegrationOut struct {
	Data     []IntegrationOut `json:"data"`
	Done     bool             `json:"done"`
	Iterator *string          `json:"iterator,omitempty"`
}

ListResponseIntegrationOut struct for ListResponseIntegrationOut

func NewListResponseIntegrationOut added in v0.44.0

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 added in v0.44.0

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 added in v0.44.0

GetData returns the Data field value

func (*ListResponseIntegrationOut) GetDataOk added in v0.44.0

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 added in v0.44.0

func (o *ListResponseIntegrationOut) GetDone() bool

GetDone returns the Done field value

func (*ListResponseIntegrationOut) GetDoneOk added in v0.44.0

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 added in v0.44.0

func (o *ListResponseIntegrationOut) GetIterator() string

GetIterator returns the Iterator field value if set, zero value otherwise.

func (*ListResponseIntegrationOut) GetIteratorOk added in v0.44.0

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.

func (*ListResponseIntegrationOut) HasIterator added in v0.44.0

func (o *ListResponseIntegrationOut) HasIterator() bool

HasIterator returns a boolean if a field has been set.

func (ListResponseIntegrationOut) MarshalJSON added in v0.44.0

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

func (*ListResponseIntegrationOut) SetData added in v0.44.0

SetData sets field value

func (*ListResponseIntegrationOut) SetDone added in v0.44.0

func (o *ListResponseIntegrationOut) SetDone(v bool)

SetDone sets field value

func (*ListResponseIntegrationOut) SetIterator added in v0.44.0

func (o *ListResponseIntegrationOut) SetIterator(v string)

SetIterator gets a reference to the given string and assigns it to the Iterator field.

type ListResponseMessageAttemptEndpointOut

type ListResponseMessageAttemptEndpointOut struct {
	Data     []MessageAttemptEndpointOut `json:"data"`
	Done     bool                        `json:"done"`
	Iterator *string                     `json:"iterator,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.

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.

func (*ListResponseMessageAttemptEndpointOut) HasIterator

HasIterator 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 string and assigns it to the Iterator field.

type ListResponseMessageAttemptOut

type ListResponseMessageAttemptOut struct {
	Data     []MessageAttemptOut `json:"data"`
	Done     bool                `json:"done"`
	Iterator *string             `json:"iterator,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.

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.

func (*ListResponseMessageAttemptOut) HasIterator

func (o *ListResponseMessageAttemptOut) HasIterator() bool

HasIterator 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 string and assigns it to the Iterator field.

type ListResponseMessageEndpointOut

type ListResponseMessageEndpointOut struct {
	Data     []MessageEndpointOut `json:"data"`
	Done     bool                 `json:"done"`
	Iterator *string              `json:"iterator,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.

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.

func (*ListResponseMessageEndpointOut) HasIterator

func (o *ListResponseMessageEndpointOut) HasIterator() bool

HasIterator 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 string and assigns it to the Iterator field.

type ListResponseMessageOut

type ListResponseMessageOut struct {
	Data     []MessageOut `json:"data"`
	Done     bool         `json:"done"`
	Iterator *string      `json:"iterator,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.

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.

func (*ListResponseMessageOut) HasIterator

func (o *ListResponseMessageOut) HasIterator() bool

HasIterator 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 string and assigns it to the Iterator field.

type MessageApiService

type MessageApiService service

MessageApiService MessageApi service

func (*MessageApiService) CreateMessageApiV1AppAppIdMsgPost

func (a *MessageApiService) CreateMessageApiV1AppAppIdMsgPost(ctx _context.Context, appId string) ApiCreateMessageApiV1AppAppIdMsgPostRequest
  • CreateMessageApiV1AppAppIdMsgPost 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.

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

func (*MessageApiService) CreateMessageApiV1AppAppIdMsgPostExecute

func (a *MessageApiService) CreateMessageApiV1AppAppIdMsgPostExecute(r ApiCreateMessageApiV1AppAppIdMsgPostRequest) (MessageOut, *_nethttp.Response, error)

* Execute executes the request * @return MessageOut

func (*MessageApiService) GetMessageApiV1AppAppIdMsgMsgIdGet

func (a *MessageApiService) GetMessageApiV1AppAppIdMsgMsgIdGet(ctx _context.Context, msgId string, appId string) ApiGetMessageApiV1AppAppIdMsgMsgIdGetRequest

* GetMessageApiV1AppAppIdMsgMsgIdGet 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 msgId * @param appId * @return ApiGetMessageApiV1AppAppIdMsgMsgIdGetRequest

func (*MessageApiService) GetMessageApiV1AppAppIdMsgMsgIdGetExecute

func (a *MessageApiService) GetMessageApiV1AppAppIdMsgMsgIdGetExecute(r ApiGetMessageApiV1AppAppIdMsgMsgIdGetRequest) (MessageOut, *_nethttp.Response, error)

* Execute executes the request * @return MessageOut

func (*MessageApiService) ListMessagesApiV1AppAppIdMsgGet

func (a *MessageApiService) ListMessagesApiV1AppAppIdMsgGet(ctx _context.Context, appId string) ApiListMessagesApiV1AppAppIdMsgGetRequest
  • ListMessagesApiV1AppAppIdMsgGet List Messages
  • List all of the application's messages.

The `before` parameter lets you filter all items created before a certain date and is ignored if an iterator is passed.

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

func (*MessageApiService) ListMessagesApiV1AppAppIdMsgGetExecute

* Execute executes the request * @return ListResponseMessageOut

type MessageAttemptApiService

type MessageAttemptApiService service

MessageAttemptApiService MessageAttemptApi service

func (*MessageAttemptApiService) GetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGet

func (a *MessageAttemptApiService) GetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGet(ctx _context.Context, attemptId string, msgId string, appId string) ApiGetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGetRequest

* GetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGet 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 attemptId * @param msgId * @param appId * @return ApiGetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGetRequest

func (*MessageAttemptApiService) GetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGetExecute

func (a *MessageAttemptApiService) GetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGetExecute(r ApiGetAttemptApiV1AppAppIdMsgMsgIdAttemptAttemptIdGetRequest) (MessageAttemptOut, *_nethttp.Response, error)

* Execute executes the request * @return MessageAttemptOut

func (*MessageAttemptApiService) ListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGet

func (a *MessageAttemptApiService) ListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGet(ctx _context.Context, msgId string, appId string) ApiListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGetRequest

* ListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGet List Attempted Destinations * `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 msgId * @param appId * @return ApiListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGetRequest

func (*MessageAttemptApiService) ListAttemptedDestinationsApiV1AppAppIdMsgMsgIdEndpointGetExecute

* Execute executes the request * @return ListResponseMessageEndpointOut

func (*MessageAttemptApiService) ListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGet

func (a *MessageAttemptApiService) ListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGet(ctx _context.Context, endpointId string, appId string) ApiListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGetRequest
  • ListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGet 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.

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

func (*MessageAttemptApiService) ListAttemptedMessagesApiV1AppAppIdEndpointEndpointIdMsgGetExecute

* Execute executes the request * @return ListResponseEndpointMessageOut

func (*MessageAttemptApiService) ListAttemptsApiV1AppAppIdMsgMsgIdAttemptGet

func (a *MessageAttemptApiService) ListAttemptsApiV1AppAppIdMsgMsgIdAttemptGet(ctx _context.Context, appId string, msgId string) ApiListAttemptsApiV1AppAppIdMsgMsgIdAttemptGetRequest

* ListAttemptsApiV1AppAppIdMsgMsgIdAttemptGet List Attempts * `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 * @param msgId * @return ApiListAttemptsApiV1AppAppIdMsgMsgIdAttemptGetRequest

func (*MessageAttemptApiService) ListAttemptsApiV1AppAppIdMsgMsgIdAttemptGetExecute

* Execute executes the request * @return ListResponseMessageAttemptOut

func (*MessageAttemptApiService) ListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGet

func (a *MessageAttemptApiService) ListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGet(ctx _context.Context, msgId string, appId string, endpointId string) ApiListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGetRequest
  • ListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGet List Attempts For Endpoint
  • 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.

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

func (*MessageAttemptApiService) ListAttemptsForEndpointApiV1AppAppIdMsgMsgIdEndpointEndpointIdAttemptGetExecute

* Execute executes the request * @return ListResponseMessageAttemptEndpointOut

func (*MessageAttemptApiService) ResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPost

func (a *MessageAttemptApiService) ResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPost(ctx _context.Context, endpointId string, msgId string, appId string) ApiResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPostRequest

* ResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPost 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 endpointId * @param msgId * @param appId * @return ApiResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPostRequest

func (*MessageAttemptApiService) ResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPostExecute

func (a *MessageAttemptApiService) ResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPostExecute(r ApiResendWebhookApiV1AppAppIdMsgMsgIdEndpointEndpointIdResendPostRequest) (*_nethttp.Response, error)

* Execute executes the request

type MessageAttemptEndpointOut

type MessageAttemptEndpointOut struct {
	Id                 string                    `json:"id"`
	Response           string                    `json:"response"`
	ResponseStatusCode int32                     `json:"responseStatusCode"`
	Status             MessageStatus             `json:"status"`
	Timestamp          time.Time                 `json:"timestamp"`
	TriggerType        MessageAttemptTriggerType `json:"triggerType"`
}

MessageAttemptEndpointOut struct for MessageAttemptEndpointOut

func NewMessageAttemptEndpointOut

func NewMessageAttemptEndpointOut(id string, response string, responseStatusCode int32, status MessageStatus, timestamp time.Time, triggerType MessageAttemptTriggerType) *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) 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) 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 added in v0.29.0

GetTriggerType returns the TriggerType field value

func (*MessageAttemptEndpointOut) GetTriggerTypeOk added in v0.29.0

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

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

func (*MessageAttemptEndpointOut) SetId

func (o *MessageAttemptEndpointOut) SetId(v string)

SetId 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 added in v0.29.0

SetTriggerType sets field value

type MessageAttemptExhaustedEvent added in v0.26.0

type MessageAttemptExhaustedEvent struct {
	Data MessageAttemptExhaustedEventData `json:"data"`
	Type *string                          `json:"type,omitempty"`
}

MessageAttemptExhaustedEvent Sent when a message delivery has failed (all of the retry attempts have been exhausted).

func NewMessageAttemptExhaustedEvent added in v0.26.0

func NewMessageAttemptExhaustedEvent(data MessageAttemptExhaustedEventData) *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 added in v0.26.0

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 added in v0.26.0

GetData returns the Data field value

func (*MessageAttemptExhaustedEvent) GetDataOk added in v0.26.0

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

func (*MessageAttemptExhaustedEvent) GetType added in v0.26.0

func (o *MessageAttemptExhaustedEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MessageAttemptExhaustedEvent) GetTypeOk added in v0.26.0

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

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

func (*MessageAttemptExhaustedEvent) HasType added in v0.26.0

func (o *MessageAttemptExhaustedEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (MessageAttemptExhaustedEvent) MarshalJSON added in v0.26.0

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

func (*MessageAttemptExhaustedEvent) SetData added in v0.26.0

SetData sets field value

func (*MessageAttemptExhaustedEvent) SetType added in v0.26.0

func (o *MessageAttemptExhaustedEvent) SetType(v string)

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

type MessageAttemptExhaustedEventData added in v0.26.0

type MessageAttemptExhaustedEventData struct {
	AppId string `json:"appId"`
	// Optional unique identifier for the application
	AppUid      *string                   `json:"appUid,omitempty"`
	EndpointId  string                    `json:"endpointId"`
	LastAttempt MessageAttemptFailedEvent `json:"lastAttempt"`
	MsgId       string                    `json:"msgId"`
}

MessageAttemptExhaustedEventData struct for MessageAttemptExhaustedEventData

func NewMessageAttemptExhaustedEventData added in v0.26.0

func NewMessageAttemptExhaustedEventData(appId string, endpointId string, lastAttempt MessageAttemptFailedEvent, 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 added in v0.26.0

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 added in v0.26.0

GetAppId returns the AppId field value

func (*MessageAttemptExhaustedEventData) GetAppIdOk added in v0.26.0

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 added in v0.26.0

GetAppUid returns the AppUid field value if set, zero value otherwise.

func (*MessageAttemptExhaustedEventData) GetAppUidOk added in v0.26.0

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.

func (*MessageAttemptExhaustedEventData) GetEndpointId added in v0.26.0

func (o *MessageAttemptExhaustedEventData) GetEndpointId() string

GetEndpointId returns the EndpointId field value

func (*MessageAttemptExhaustedEventData) GetEndpointIdOk added in v0.26.0

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 added in v0.26.0

GetLastAttempt returns the LastAttempt field value

func (*MessageAttemptExhaustedEventData) GetLastAttemptOk added in v0.26.0

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

func (*MessageAttemptExhaustedEventData) GetMsgId added in v0.26.0

GetMsgId returns the MsgId field value

func (*MessageAttemptExhaustedEventData) GetMsgIdOk added in v0.26.0

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 added in v0.26.0

func (o *MessageAttemptExhaustedEventData) HasAppUid() bool

HasAppUid returns a boolean if a field has been set.

func (MessageAttemptExhaustedEventData) MarshalJSON added in v0.26.0

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

func (*MessageAttemptExhaustedEventData) SetAppId added in v0.26.0

SetAppId sets field value

func (*MessageAttemptExhaustedEventData) SetAppUid added in v0.26.0

func (o *MessageAttemptExhaustedEventData) SetAppUid(v string)

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

func (*MessageAttemptExhaustedEventData) SetEndpointId added in v0.26.0

func (o *MessageAttemptExhaustedEventData) SetEndpointId(v string)

SetEndpointId sets field value

func (*MessageAttemptExhaustedEventData) SetLastAttempt added in v0.26.0

SetLastAttempt sets field value

func (*MessageAttemptExhaustedEventData) SetMsgId added in v0.26.0

SetMsgId sets field value

type MessageAttemptFailedEvent added in v0.26.0

type MessageAttemptFailedEvent struct {
	Id                 string    `json:"id"`
	ResponseStatusCode int32     `json:"responseStatusCode"`
	Timestamp          time.Time `json:"timestamp"`
}

MessageAttemptFailedEvent struct for MessageAttemptFailedEvent

func NewMessageAttemptFailedEvent added in v0.26.0

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 added in v0.26.0

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 added in v0.26.0

func (o *MessageAttemptFailedEvent) GetId() string

GetId returns the Id field value

func (*MessageAttemptFailedEvent) GetIdOk added in v0.26.0

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 added in v0.26.0

func (o *MessageAttemptFailedEvent) GetResponseStatusCode() int32

GetResponseStatusCode returns the ResponseStatusCode field value

func (*MessageAttemptFailedEvent) GetResponseStatusCodeOk added in v0.26.0

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 added in v0.26.0

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

GetTimestamp returns the Timestamp field value

func (*MessageAttemptFailedEvent) GetTimestampOk added in v0.26.0

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 added in v0.26.0

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

func (*MessageAttemptFailedEvent) SetId added in v0.26.0

func (o *MessageAttemptFailedEvent) SetId(v string)

SetId sets field value

func (*MessageAttemptFailedEvent) SetResponseStatusCode added in v0.26.0

func (o *MessageAttemptFailedEvent) SetResponseStatusCode(v int32)

SetResponseStatusCode sets field value

func (*MessageAttemptFailedEvent) SetTimestamp added in v0.26.0

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

SetTimestamp sets field value

type MessageAttemptOut

type MessageAttemptOut struct {
	EndpointId         string                    `json:"endpointId"`
	Id                 string                    `json:"id"`
	Response           string                    `json:"response"`
	ResponseStatusCode int32                     `json:"responseStatusCode"`
	Status             MessageStatus             `json:"status"`
	Timestamp          time.Time                 `json:"timestamp"`
	TriggerType        MessageAttemptTriggerType `json:"triggerType"`
}

MessageAttemptOut struct for MessageAttemptOut

func NewMessageAttemptOut

func NewMessageAttemptOut(endpointId string, id string, response string, responseStatusCode int32, status MessageStatus, timestamp time.Time, triggerType MessageAttemptTriggerType) *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) 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 added in v0.29.0

func (o *MessageAttemptOut) GetTriggerType() MessageAttemptTriggerType

GetTriggerType returns the TriggerType field value

func (*MessageAttemptOut) GetTriggerTypeOk added in v0.29.0

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) 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) 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 added in v0.29.0

func (o *MessageAttemptOut) SetTriggerType(v MessageAttemptTriggerType)

SetTriggerType sets field value

type MessageAttemptTriggerType added in v0.29.0

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 added in v0.29.0

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 added in v0.29.0

func (v MessageAttemptTriggerType) IsValid() bool

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

func (MessageAttemptTriggerType) Ptr added in v0.29.0

Ptr returns reference to MessageAttemptTriggerType value

func (*MessageAttemptTriggerType) UnmarshalJSON added in v0.29.0

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

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"`
	Description *string       `json:"description,omitempty"`
	Disabled    *bool         `json:"disabled,omitempty"`
	FilterTypes *[]string     `json:"filterTypes,omitempty"`
	Id          string        `json:"id"`
	NextAttempt *time.Time    `json:"nextAttempt,omitempty"`
	RateLimit   *int32        `json:"rateLimit,omitempty"`
	Status      MessageStatus `json:"status"`
	// Optional unique identifier for the endpoint
	Uid     *string `json:"uid,omitempty"`
	Url     string  `json:"url"`
	Version int32   `json:"version"`
}

MessageEndpointOut struct for MessageEndpointOut

func NewMessageEndpointOut

func NewMessageEndpointOut(createdAt time.Time, id string, status MessageStatus, 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 added in v0.42.0

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

GetChannels returns the Channels field value if set, zero value otherwise.

func (*MessageEndpointOut) GetChannelsOk added in v0.42.0

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.

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 if set, zero value otherwise.

func (*MessageEndpointOut) GetDescriptionOk

func (o *MessageEndpointOut) 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 (*MessageEndpointOut) GetDisabled added in v0.22.0

func (o *MessageEndpointOut) GetDisabled() bool

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

func (*MessageEndpointOut) GetDisabledOk added in v0.22.0

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.

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.

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 added in v0.26.0

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

GetNextAttempt returns the NextAttempt field value if set, zero value otherwise.

func (*MessageEndpointOut) GetNextAttemptOk added in v0.26.0

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.

func (*MessageEndpointOut) GetRateLimit added in v0.24.0

func (o *MessageEndpointOut) GetRateLimit() int32

GetRateLimit returns the RateLimit field value if set, zero value otherwise.

func (*MessageEndpointOut) GetRateLimitOk added in v0.24.0

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.

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 added in v0.29.0

func (o *MessageEndpointOut) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*MessageEndpointOut) GetUidOk added in v0.29.0

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.

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 added in v0.42.0

func (o *MessageEndpointOut) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*MessageEndpointOut) HasDescription

func (o *MessageEndpointOut) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*MessageEndpointOut) HasDisabled added in v0.22.0

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 added in v0.26.0

func (o *MessageEndpointOut) HasNextAttempt() bool

HasNextAttempt returns a boolean if a field has been set.

func (*MessageEndpointOut) HasRateLimit added in v0.24.0

func (o *MessageEndpointOut) HasRateLimit() bool

HasRateLimit returns a boolean if a field has been set.

func (*MessageEndpointOut) HasUid added in v0.29.0

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 added in v0.42.0

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 gets a reference to the given string and assigns it to the Description field.

func (*MessageEndpointOut) SetDisabled added in v0.22.0

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 added in v0.26.0

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

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

func (*MessageEndpointOut) SetRateLimit added in v0.24.0

func (o *MessageEndpointOut) SetRateLimit(v int32)

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

func (*MessageEndpointOut) SetStatus

func (o *MessageEndpointOut) SetStatus(v MessageStatus)

SetStatus sets field value

func (*MessageEndpointOut) SetUid added in v0.29.0

func (o *MessageEndpointOut) SetUid(v string)

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

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

type MessageIn

type MessageIn struct {
	// List of free-form identifiers that endpoints can filter by
	Channels *[]string `json:"channels,omitempty"`
	// Optional unique identifier for the message
	EventId   *string                `json:"eventId,omitempty"`
	EventType string                 `json:"eventType"`
	Payload   map[string]interface{} `json:"payload"`
	// The retention period for the payload (in days).
	PayloadRetentionPeriod *int32 `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) GetChannels added in v0.42.0

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

GetChannels returns the Channels field value if set, zero value otherwise.

func (*MessageIn) GetChannelsOk added in v0.42.0

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.

func (*MessageIn) GetEventId

func (o *MessageIn) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

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.

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 added in v0.40.0

func (o *MessageIn) GetPayloadRetentionPeriod() int32

GetPayloadRetentionPeriod returns the PayloadRetentionPeriod field value if set, zero value otherwise.

func (*MessageIn) GetPayloadRetentionPeriodOk added in v0.40.0

func (o *MessageIn) GetPayloadRetentionPeriodOk() (*int32, 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) HasChannels added in v0.42.0

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 added in v0.40.0

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) SetChannels added in v0.42.0

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 string and assigns it to the EventId field.

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 added in v0.40.0

func (o *MessageIn) SetPayloadRetentionPeriod(v int32)

SetPayloadRetentionPeriod gets a reference to the given int32 and assigns it to the PayloadRetentionPeriod field.

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   *string                `json:"eventId,omitempty"`
	EventType string                 `json:"eventType"`
	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 added in v0.42.0

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

GetChannels returns the Channels field value if set, zero value otherwise.

func (*MessageOut) GetChannelsOk added in v0.42.0

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.

func (*MessageOut) GetEventId

func (o *MessageOut) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

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.

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 added in v0.42.0

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 added in v0.42.0

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 string and assigns it to the EventId field.

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

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 added in v0.23.0

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 added in v0.23.0

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 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 NullableAttemptStatisticsData added in v0.37.0

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

func NewNullableAttemptStatisticsData added in v0.37.0

func NewNullableAttemptStatisticsData(val *AttemptStatisticsData) *NullableAttemptStatisticsData

func (NullableAttemptStatisticsData) Get added in v0.37.0

func (NullableAttemptStatisticsData) IsSet added in v0.37.0

func (NullableAttemptStatisticsData) MarshalJSON added in v0.37.0

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

func (*NullableAttemptStatisticsData) Set added in v0.37.0

func (*NullableAttemptStatisticsData) UnmarshalJSON added in v0.37.0

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

func (*NullableAttemptStatisticsData) Unset added in v0.37.0

func (v *NullableAttemptStatisticsData) Unset()

type NullableAttemptStatisticsResponse added in v0.37.0

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

func NewNullableAttemptStatisticsResponse added in v0.37.0

func NewNullableAttemptStatisticsResponse(val *AttemptStatisticsResponse) *NullableAttemptStatisticsResponse

func (NullableAttemptStatisticsResponse) Get added in v0.37.0

func (NullableAttemptStatisticsResponse) IsSet added in v0.37.0

func (NullableAttemptStatisticsResponse) MarshalJSON added in v0.37.0

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

func (*NullableAttemptStatisticsResponse) Set added in v0.37.0

func (*NullableAttemptStatisticsResponse) UnmarshalJSON added in v0.37.0

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

func (*NullableAttemptStatisticsResponse) Unset added in v0.37.0

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 added in v0.39.0

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

func NewNullableBorderRadiusConfig added in v0.39.0

func NewNullableBorderRadiusConfig(val *BorderRadiusConfig) *NullableBorderRadiusConfig

func (NullableBorderRadiusConfig) Get added in v0.39.0

func (NullableBorderRadiusConfig) IsSet added in v0.39.0

func (v NullableBorderRadiusConfig) IsSet() bool

func (NullableBorderRadiusConfig) MarshalJSON added in v0.39.0

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

func (*NullableBorderRadiusConfig) Set added in v0.39.0

func (*NullableBorderRadiusConfig) UnmarshalJSON added in v0.39.0

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

func (*NullableBorderRadiusConfig) Unset added in v0.39.0

func (v *NullableBorderRadiusConfig) Unset()

type NullableBorderRadiusEnum added in v0.39.0

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

func NewNullableBorderRadiusEnum added in v0.39.0

func NewNullableBorderRadiusEnum(val *BorderRadiusEnum) *NullableBorderRadiusEnum

func (NullableBorderRadiusEnum) Get added in v0.39.0

func (NullableBorderRadiusEnum) IsSet added in v0.39.0

func (v NullableBorderRadiusEnum) IsSet() bool

func (NullableBorderRadiusEnum) MarshalJSON added in v0.39.0

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

func (*NullableBorderRadiusEnum) Set added in v0.39.0

func (*NullableBorderRadiusEnum) UnmarshalJSON added in v0.39.0

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

func (*NullableBorderRadiusEnum) Unset added in v0.39.0

func (v *NullableBorderRadiusEnum) Unset()

type NullableCustomThemeOverride added in v0.39.0

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

func NewNullableCustomThemeOverride added in v0.39.0

func NewNullableCustomThemeOverride(val *CustomThemeOverride) *NullableCustomThemeOverride

func (NullableCustomThemeOverride) Get added in v0.39.0

func (NullableCustomThemeOverride) IsSet added in v0.39.0

func (NullableCustomThemeOverride) MarshalJSON added in v0.39.0

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

func (*NullableCustomThemeOverride) Set added in v0.39.0

func (*NullableCustomThemeOverride) UnmarshalJSON added in v0.39.0

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

func (*NullableCustomThemeOverride) Unset added in v0.39.0

func (v *NullableCustomThemeOverride) 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 added in v0.29.0

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

func NewNullableEndpointCreatedEvent added in v0.29.0

func NewNullableEndpointCreatedEvent(val *EndpointCreatedEvent) *NullableEndpointCreatedEvent

func (NullableEndpointCreatedEvent) Get added in v0.29.0

func (NullableEndpointCreatedEvent) IsSet added in v0.29.0

func (NullableEndpointCreatedEvent) MarshalJSON added in v0.29.0

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

func (*NullableEndpointCreatedEvent) Set added in v0.29.0

func (*NullableEndpointCreatedEvent) UnmarshalJSON added in v0.29.0

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

func (*NullableEndpointCreatedEvent) Unset added in v0.29.0

func (v *NullableEndpointCreatedEvent) Unset()

type NullableEndpointCreatedEventData added in v0.29.0

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

func NewNullableEndpointCreatedEventData added in v0.29.0

func NewNullableEndpointCreatedEventData(val *EndpointCreatedEventData) *NullableEndpointCreatedEventData

func (NullableEndpointCreatedEventData) Get added in v0.29.0

func (NullableEndpointCreatedEventData) IsSet added in v0.29.0

func (NullableEndpointCreatedEventData) MarshalJSON added in v0.29.0

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

func (*NullableEndpointCreatedEventData) Set added in v0.29.0

func (*NullableEndpointCreatedEventData) UnmarshalJSON added in v0.29.0

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

func (*NullableEndpointCreatedEventData) Unset added in v0.29.0

type NullableEndpointDeletedEvent added in v0.29.0

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

func NewNullableEndpointDeletedEvent added in v0.29.0

func NewNullableEndpointDeletedEvent(val *EndpointDeletedEvent) *NullableEndpointDeletedEvent

func (NullableEndpointDeletedEvent) Get added in v0.29.0

func (NullableEndpointDeletedEvent) IsSet added in v0.29.0

func (NullableEndpointDeletedEvent) MarshalJSON added in v0.29.0

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

func (*NullableEndpointDeletedEvent) Set added in v0.29.0

func (*NullableEndpointDeletedEvent) UnmarshalJSON added in v0.29.0

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

func (*NullableEndpointDeletedEvent) Unset added in v0.29.0

func (v *NullableEndpointDeletedEvent) Unset()

type NullableEndpointDeletedEventData added in v0.29.0

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

func NewNullableEndpointDeletedEventData added in v0.29.0

func NewNullableEndpointDeletedEventData(val *EndpointDeletedEventData) *NullableEndpointDeletedEventData

func (NullableEndpointDeletedEventData) Get added in v0.29.0

func (NullableEndpointDeletedEventData) IsSet added in v0.29.0

func (NullableEndpointDeletedEventData) MarshalJSON added in v0.29.0

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

func (*NullableEndpointDeletedEventData) Set added in v0.29.0

func (*NullableEndpointDeletedEventData) UnmarshalJSON added in v0.29.0

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

func (*NullableEndpointDeletedEventData) Unset added in v0.29.0

type NullableEndpointDisabledEvent added in v0.26.0

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

func NewNullableEndpointDisabledEvent added in v0.26.0

func NewNullableEndpointDisabledEvent(val *EndpointDisabledEvent) *NullableEndpointDisabledEvent

func (NullableEndpointDisabledEvent) Get added in v0.26.0

func (NullableEndpointDisabledEvent) IsSet added in v0.26.0

func (NullableEndpointDisabledEvent) MarshalJSON added in v0.26.0

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

func (*NullableEndpointDisabledEvent) Set added in v0.26.0

func (*NullableEndpointDisabledEvent) UnmarshalJSON added in v0.26.0

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

func (*NullableEndpointDisabledEvent) Unset added in v0.26.0

func (v *NullableEndpointDisabledEvent) Unset()

type NullableEndpointDisabledEventData added in v0.26.0

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

func NewNullableEndpointDisabledEventData added in v0.26.0

func NewNullableEndpointDisabledEventData(val *EndpointDisabledEventData) *NullableEndpointDisabledEventData

func (NullableEndpointDisabledEventData) Get added in v0.26.0

func (NullableEndpointDisabledEventData) IsSet added in v0.26.0

func (NullableEndpointDisabledEventData) MarshalJSON added in v0.26.0

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

func (*NullableEndpointDisabledEventData) Set added in v0.26.0

func (*NullableEndpointDisabledEventData) UnmarshalJSON added in v0.26.0

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

func (*NullableEndpointDisabledEventData) Unset added in v0.26.0

type NullableEndpointHeadersIn added in v0.37.0

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

func NewNullableEndpointHeadersIn added in v0.37.0

func NewNullableEndpointHeadersIn(val *EndpointHeadersIn) *NullableEndpointHeadersIn

func (NullableEndpointHeadersIn) Get added in v0.37.0

func (NullableEndpointHeadersIn) IsSet added in v0.37.0

func (v NullableEndpointHeadersIn) IsSet() bool

func (NullableEndpointHeadersIn) MarshalJSON added in v0.37.0

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

func (*NullableEndpointHeadersIn) Set added in v0.37.0

func (*NullableEndpointHeadersIn) UnmarshalJSON added in v0.37.0

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

func (*NullableEndpointHeadersIn) Unset added in v0.37.0

func (v *NullableEndpointHeadersIn) Unset()

type NullableEndpointHeadersOut added in v0.37.0

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

func NewNullableEndpointHeadersOut added in v0.37.0

func NewNullableEndpointHeadersOut(val *EndpointHeadersOut) *NullableEndpointHeadersOut

func (NullableEndpointHeadersOut) Get added in v0.37.0

func (NullableEndpointHeadersOut) IsSet added in v0.37.0

func (v NullableEndpointHeadersOut) IsSet() bool

func (NullableEndpointHeadersOut) MarshalJSON added in v0.37.0

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

func (*NullableEndpointHeadersOut) Set added in v0.37.0

func (*NullableEndpointHeadersOut) UnmarshalJSON added in v0.37.0

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

func (*NullableEndpointHeadersOut) Unset added in v0.37.0

func (v *NullableEndpointHeadersOut) 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 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 added in v0.34.0

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

func NewNullableEndpointSecretRotateIn added in v0.34.0

func NewNullableEndpointSecretRotateIn(val *EndpointSecretRotateIn) *NullableEndpointSecretRotateIn

func (NullableEndpointSecretRotateIn) Get added in v0.34.0

func (NullableEndpointSecretRotateIn) IsSet added in v0.34.0

func (NullableEndpointSecretRotateIn) MarshalJSON added in v0.34.0

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

func (*NullableEndpointSecretRotateIn) Set added in v0.34.0

func (*NullableEndpointSecretRotateIn) UnmarshalJSON added in v0.34.0

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

func (*NullableEndpointSecretRotateIn) Unset added in v0.34.0

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 NullableEndpointUpdate added in v0.29.0

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

func NewNullableEndpointUpdate added in v0.29.0

func NewNullableEndpointUpdate(val *EndpointUpdate) *NullableEndpointUpdate

func (NullableEndpointUpdate) Get added in v0.29.0

func (NullableEndpointUpdate) IsSet added in v0.29.0

func (v NullableEndpointUpdate) IsSet() bool

func (NullableEndpointUpdate) MarshalJSON added in v0.29.0

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

func (*NullableEndpointUpdate) Set added in v0.29.0

func (*NullableEndpointUpdate) UnmarshalJSON added in v0.29.0

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

func (*NullableEndpointUpdate) Unset added in v0.29.0

func (v *NullableEndpointUpdate) Unset()

type NullableEndpointUpdatedEvent added in v0.34.0

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

func NewNullableEndpointUpdatedEvent added in v0.34.0

func NewNullableEndpointUpdatedEvent(val *EndpointUpdatedEvent) *NullableEndpointUpdatedEvent

func (NullableEndpointUpdatedEvent) Get added in v0.34.0

func (NullableEndpointUpdatedEvent) IsSet added in v0.34.0

func (NullableEndpointUpdatedEvent) MarshalJSON added in v0.34.0

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

func (*NullableEndpointUpdatedEvent) Set added in v0.34.0

func (*NullableEndpointUpdatedEvent) UnmarshalJSON added in v0.34.0

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

func (*NullableEndpointUpdatedEvent) Unset added in v0.34.0

func (v *NullableEndpointUpdatedEvent) Unset()

type NullableEndpointUpdatedEventData added in v0.29.0

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

func NewNullableEndpointUpdatedEventData added in v0.29.0

func NewNullableEndpointUpdatedEventData(val *EndpointUpdatedEventData) *NullableEndpointUpdatedEventData

func (NullableEndpointUpdatedEventData) Get added in v0.29.0

func (NullableEndpointUpdatedEventData) IsSet added in v0.29.0

func (NullableEndpointUpdatedEventData) MarshalJSON added in v0.29.0

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

func (*NullableEndpointUpdatedEventData) Set added in v0.29.0

func (*NullableEndpointUpdatedEventData) UnmarshalJSON added in v0.29.0

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

func (*NullableEndpointUpdatedEventData) Unset added in v0.29.0

type NullableEnvironmentIn added in v0.44.0

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

func NewNullableEnvironmentIn added in v0.44.0

func NewNullableEnvironmentIn(val *EnvironmentIn) *NullableEnvironmentIn

func (NullableEnvironmentIn) Get added in v0.44.0

func (NullableEnvironmentIn) IsSet added in v0.44.0

func (v NullableEnvironmentIn) IsSet() bool

func (NullableEnvironmentIn) MarshalJSON added in v0.44.0

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

func (*NullableEnvironmentIn) Set added in v0.44.0

func (v *NullableEnvironmentIn) Set(val *EnvironmentIn)

func (*NullableEnvironmentIn) UnmarshalJSON added in v0.44.0

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

func (*NullableEnvironmentIn) Unset added in v0.44.0

func (v *NullableEnvironmentIn) Unset()

type NullableEnvironmentOut added in v0.44.0

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

func NewNullableEnvironmentOut added in v0.44.0

func NewNullableEnvironmentOut(val *EnvironmentOut) *NullableEnvironmentOut

func (NullableEnvironmentOut) Get added in v0.44.0

func (NullableEnvironmentOut) IsSet added in v0.44.0

func (v NullableEnvironmentOut) IsSet() bool

func (NullableEnvironmentOut) MarshalJSON added in v0.44.0

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

func (*NullableEnvironmentOut) Set added in v0.44.0

func (*NullableEnvironmentOut) UnmarshalJSON added in v0.44.0

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

func (*NullableEnvironmentOut) Unset added in v0.44.0

func (v *NullableEnvironmentOut) Unset()

type NullableEnvironmentSettingsOut added in v0.44.0

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

func NewNullableEnvironmentSettingsOut added in v0.44.0

func NewNullableEnvironmentSettingsOut(val *EnvironmentSettingsOut) *NullableEnvironmentSettingsOut

func (NullableEnvironmentSettingsOut) Get added in v0.44.0

func (NullableEnvironmentSettingsOut) IsSet added in v0.44.0

func (NullableEnvironmentSettingsOut) MarshalJSON added in v0.44.0

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

func (*NullableEnvironmentSettingsOut) Set added in v0.44.0

func (*NullableEnvironmentSettingsOut) UnmarshalJSON added in v0.44.0

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

func (*NullableEnvironmentSettingsOut) Unset added in v0.44.0

func (v *NullableEnvironmentSettingsOut) Unset()

type NullableEventExampleIn added in v0.26.0

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

func NewNullableEventExampleIn added in v0.26.0

func NewNullableEventExampleIn(val *EventExampleIn) *NullableEventExampleIn

func (NullableEventExampleIn) Get added in v0.26.0

func (NullableEventExampleIn) IsSet added in v0.26.0

func (v NullableEventExampleIn) IsSet() bool

func (NullableEventExampleIn) MarshalJSON added in v0.26.0

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

func (*NullableEventExampleIn) Set added in v0.26.0

func (*NullableEventExampleIn) UnmarshalJSON added in v0.26.0

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

func (*NullableEventExampleIn) Unset added in v0.26.0

func (v *NullableEventExampleIn) Unset()

type NullableEventTypeExampleOut added in v0.34.0

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

func NewNullableEventTypeExampleOut added in v0.34.0

func NewNullableEventTypeExampleOut(val *EventTypeExampleOut) *NullableEventTypeExampleOut

func (NullableEventTypeExampleOut) Get added in v0.34.0

func (NullableEventTypeExampleOut) IsSet added in v0.34.0

func (NullableEventTypeExampleOut) MarshalJSON added in v0.34.0

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

func (*NullableEventTypeExampleOut) Set added in v0.34.0

func (*NullableEventTypeExampleOut) UnmarshalJSON added in v0.34.0

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

func (*NullableEventTypeExampleOut) Unset added in v0.34.0

func (v *NullableEventTypeExampleOut) Unset()

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 NullableEventTypeSchemaIn added in v0.34.0

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

func NewNullableEventTypeSchemaIn added in v0.34.0

func NewNullableEventTypeSchemaIn(val *EventTypeSchemaIn) *NullableEventTypeSchemaIn

func (NullableEventTypeSchemaIn) Get added in v0.34.0

func (NullableEventTypeSchemaIn) IsSet added in v0.34.0

func (v NullableEventTypeSchemaIn) IsSet() bool

func (NullableEventTypeSchemaIn) MarshalJSON added in v0.34.0

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

func (*NullableEventTypeSchemaIn) Set added in v0.34.0

func (*NullableEventTypeSchemaIn) UnmarshalJSON added in v0.34.0

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

func (*NullableEventTypeSchemaIn) Unset added in v0.34.0

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 NullableExportOrganizationOut added in v0.42.1

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

func NewNullableExportOrganizationOut added in v0.42.1

func NewNullableExportOrganizationOut(val *ExportOrganizationOut) *NullableExportOrganizationOut

func (NullableExportOrganizationOut) Get added in v0.42.1

func (NullableExportOrganizationOut) IsSet added in v0.42.1

func (NullableExportOrganizationOut) MarshalJSON added in v0.42.1

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

func (*NullableExportOrganizationOut) Set added in v0.42.1

func (*NullableExportOrganizationOut) UnmarshalJSON added in v0.42.1

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

func (*NullableExportOrganizationOut) Unset added in v0.42.1

func (v *NullableExportOrganizationOut) Unset()

type NullableExportedOrganizationModel added in v0.42.0

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

func NewNullableExportedOrganizationModel added in v0.42.0

func NewNullableExportedOrganizationModel(val *ExportedOrganizationModel) *NullableExportedOrganizationModel

func (NullableExportedOrganizationModel) Get added in v0.42.0

func (NullableExportedOrganizationModel) IsSet added in v0.42.0

func (NullableExportedOrganizationModel) MarshalJSON added in v0.42.0

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

func (*NullableExportedOrganizationModel) Set added in v0.42.0

func (*NullableExportedOrganizationModel) UnmarshalJSON added in v0.42.0

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

func (*NullableExportedOrganizationModel) Unset added in v0.42.0

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 added in v0.39.0

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

func NewNullableFontSizeConfig added in v0.39.0

func NewNullableFontSizeConfig(val *FontSizeConfig) *NullableFontSizeConfig

func (NullableFontSizeConfig) Get added in v0.39.0

func (NullableFontSizeConfig) IsSet added in v0.39.0

func (v NullableFontSizeConfig) IsSet() bool

func (NullableFontSizeConfig) MarshalJSON added in v0.39.0

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

func (*NullableFontSizeConfig) Set added in v0.39.0

func (*NullableFontSizeConfig) UnmarshalJSON added in v0.39.0

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

func (*NullableFontSizeConfig) Unset added in v0.39.0

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 NullableImportOrganizationIn added in v0.42.1

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

func NewNullableImportOrganizationIn added in v0.42.1

func NewNullableImportOrganizationIn(val *ImportOrganizationIn) *NullableImportOrganizationIn

func (NullableImportOrganizationIn) Get added in v0.42.1

func (NullableImportOrganizationIn) IsSet added in v0.42.1

func (NullableImportOrganizationIn) MarshalJSON added in v0.42.1

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

func (*NullableImportOrganizationIn) Set added in v0.42.1

func (*NullableImportOrganizationIn) UnmarshalJSON added in v0.42.1

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

func (*NullableImportOrganizationIn) Unset added in v0.42.1

func (v *NullableImportOrganizationIn) 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 added in v0.44.0

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

func NewNullableIntegrationIn added in v0.44.0

func NewNullableIntegrationIn(val *IntegrationIn) *NullableIntegrationIn

func (NullableIntegrationIn) Get added in v0.44.0

func (NullableIntegrationIn) IsSet added in v0.44.0

func (v NullableIntegrationIn) IsSet() bool

func (NullableIntegrationIn) MarshalJSON added in v0.44.0

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

func (*NullableIntegrationIn) Set added in v0.44.0

func (v *NullableIntegrationIn) Set(val *IntegrationIn)

func (*NullableIntegrationIn) UnmarshalJSON added in v0.44.0

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

func (*NullableIntegrationIn) Unset added in v0.44.0

func (v *NullableIntegrationIn) Unset()

type NullableIntegrationKeyOut added in v0.44.0

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

func NewNullableIntegrationKeyOut added in v0.44.0

func NewNullableIntegrationKeyOut(val *IntegrationKeyOut) *NullableIntegrationKeyOut

func (NullableIntegrationKeyOut) Get added in v0.44.0

func (NullableIntegrationKeyOut) IsSet added in v0.44.0

func (v NullableIntegrationKeyOut) IsSet() bool

func (NullableIntegrationKeyOut) MarshalJSON added in v0.44.0

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

func (*NullableIntegrationKeyOut) Set added in v0.44.0

func (*NullableIntegrationKeyOut) UnmarshalJSON added in v0.44.0

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

func (*NullableIntegrationKeyOut) Unset added in v0.44.0

func (v *NullableIntegrationKeyOut) Unset()

type NullableIntegrationOut added in v0.44.0

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

func NewNullableIntegrationOut added in v0.44.0

func NewNullableIntegrationOut(val *IntegrationOut) *NullableIntegrationOut

func (NullableIntegrationOut) Get added in v0.44.0

func (NullableIntegrationOut) IsSet added in v0.44.0

func (v NullableIntegrationOut) IsSet() bool

func (NullableIntegrationOut) MarshalJSON added in v0.44.0

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

func (*NullableIntegrationOut) Set added in v0.44.0

func (*NullableIntegrationOut) UnmarshalJSON added in v0.44.0

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

func (*NullableIntegrationOut) Unset added in v0.44.0

func (v *NullableIntegrationOut) Unset()

type NullableIntegrationUpdate added in v0.44.0

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

func NewNullableIntegrationUpdate added in v0.44.0

func NewNullableIntegrationUpdate(val *IntegrationUpdate) *NullableIntegrationUpdate

func (NullableIntegrationUpdate) Get added in v0.44.0

func (NullableIntegrationUpdate) IsSet added in v0.44.0

func (v NullableIntegrationUpdate) IsSet() bool

func (NullableIntegrationUpdate) MarshalJSON added in v0.44.0

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

func (*NullableIntegrationUpdate) Set added in v0.44.0

func (*NullableIntegrationUpdate) UnmarshalJSON added in v0.44.0

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

func (*NullableIntegrationUpdate) Unset added in v0.44.0

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 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 added in v0.44.0

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

func NewNullableListResponseIntegrationOut added in v0.44.0

func NewNullableListResponseIntegrationOut(val *ListResponseIntegrationOut) *NullableListResponseIntegrationOut

func (NullableListResponseIntegrationOut) Get added in v0.44.0

func (NullableListResponseIntegrationOut) IsSet added in v0.44.0

func (NullableListResponseIntegrationOut) MarshalJSON added in v0.44.0

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

func (*NullableListResponseIntegrationOut) Set added in v0.44.0

func (*NullableListResponseIntegrationOut) UnmarshalJSON added in v0.44.0

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

func (*NullableListResponseIntegrationOut) Unset added in v0.44.0

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 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 added in v0.26.0

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

func NewNullableMessageAttemptExhaustedEvent added in v0.26.0

func NewNullableMessageAttemptExhaustedEvent(val *MessageAttemptExhaustedEvent) *NullableMessageAttemptExhaustedEvent

func (NullableMessageAttemptExhaustedEvent) Get added in v0.26.0

func (NullableMessageAttemptExhaustedEvent) IsSet added in v0.26.0

func (NullableMessageAttemptExhaustedEvent) MarshalJSON added in v0.26.0

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

func (*NullableMessageAttemptExhaustedEvent) Set added in v0.26.0

func (*NullableMessageAttemptExhaustedEvent) UnmarshalJSON added in v0.26.0

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

func (*NullableMessageAttemptExhaustedEvent) Unset added in v0.26.0

type NullableMessageAttemptExhaustedEventData added in v0.26.0

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

func NewNullableMessageAttemptExhaustedEventData added in v0.26.0

func NewNullableMessageAttemptExhaustedEventData(val *MessageAttemptExhaustedEventData) *NullableMessageAttemptExhaustedEventData

func (NullableMessageAttemptExhaustedEventData) Get added in v0.26.0

func (NullableMessageAttemptExhaustedEventData) IsSet added in v0.26.0

func (NullableMessageAttemptExhaustedEventData) MarshalJSON added in v0.26.0

func (*NullableMessageAttemptExhaustedEventData) Set added in v0.26.0

func (*NullableMessageAttemptExhaustedEventData) UnmarshalJSON added in v0.26.0

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

func (*NullableMessageAttemptExhaustedEventData) Unset added in v0.26.0

type NullableMessageAttemptFailedEvent added in v0.26.0

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

func NewNullableMessageAttemptFailedEvent added in v0.26.0

func NewNullableMessageAttemptFailedEvent(val *MessageAttemptFailedEvent) *NullableMessageAttemptFailedEvent

func (NullableMessageAttemptFailedEvent) Get added in v0.26.0

func (NullableMessageAttemptFailedEvent) IsSet added in v0.26.0

func (NullableMessageAttemptFailedEvent) MarshalJSON added in v0.26.0

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

func (*NullableMessageAttemptFailedEvent) Set added in v0.26.0

func (*NullableMessageAttemptFailedEvent) UnmarshalJSON added in v0.26.0

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

func (*NullableMessageAttemptFailedEvent) Unset added in v0.26.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 NullableMessageAttemptTriggerType added in v0.29.0

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

func NewNullableMessageAttemptTriggerType added in v0.29.0

func NewNullableMessageAttemptTriggerType(val *MessageAttemptTriggerType) *NullableMessageAttemptTriggerType

func (NullableMessageAttemptTriggerType) Get added in v0.29.0

func (NullableMessageAttemptTriggerType) IsSet added in v0.29.0

func (NullableMessageAttemptTriggerType) MarshalJSON added in v0.29.0

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

func (*NullableMessageAttemptTriggerType) Set added in v0.29.0

func (*NullableMessageAttemptTriggerType) UnmarshalJSON added in v0.29.0

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

func (*NullableMessageAttemptTriggerType) Unset added in v0.29.0

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 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 NullablePortalSettingsOut added in v0.39.0

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

func NewNullablePortalSettingsOut added in v0.39.0

func NewNullablePortalSettingsOut(val *PortalSettingsOut) *NullablePortalSettingsOut

func (NullablePortalSettingsOut) Get added in v0.39.0

func (NullablePortalSettingsOut) IsSet added in v0.39.0

func (v NullablePortalSettingsOut) IsSet() bool

func (NullablePortalSettingsOut) MarshalJSON added in v0.39.0

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

func (*NullablePortalSettingsOut) Set added in v0.39.0

func (*NullablePortalSettingsOut) UnmarshalJSON added in v0.39.0

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

func (*NullablePortalSettingsOut) Unset added in v0.39.0

func (v *NullablePortalSettingsOut) Unset()

type NullableRecoverIn added in v0.36.0

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

func NewNullableRecoverIn added in v0.36.0

func NewNullableRecoverIn(val *RecoverIn) *NullableRecoverIn

func (NullableRecoverIn) Get added in v0.36.0

func (v NullableRecoverIn) Get() *RecoverIn

func (NullableRecoverIn) IsSet added in v0.36.0

func (v NullableRecoverIn) IsSet() bool

func (NullableRecoverIn) MarshalJSON added in v0.36.0

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

func (*NullableRecoverIn) Set added in v0.36.0

func (v *NullableRecoverIn) Set(val *RecoverIn)

func (*NullableRecoverIn) UnmarshalJSON added in v0.36.0

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

func (*NullableRecoverIn) Unset added in v0.36.0

func (v *NullableRecoverIn) Unset()

type NullableSettingsIn added in v0.42.1

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

func NewNullableSettingsIn added in v0.42.1

func NewNullableSettingsIn(val *SettingsIn) *NullableSettingsIn

func (NullableSettingsIn) Get added in v0.42.1

func (v NullableSettingsIn) Get() *SettingsIn

func (NullableSettingsIn) IsSet added in v0.42.1

func (v NullableSettingsIn) IsSet() bool

func (NullableSettingsIn) MarshalJSON added in v0.42.1

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

func (*NullableSettingsIn) Set added in v0.42.1

func (v *NullableSettingsIn) Set(val *SettingsIn)

func (*NullableSettingsIn) UnmarshalJSON added in v0.42.1

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

func (*NullableSettingsIn) Unset added in v0.42.1

func (v *NullableSettingsIn) Unset()

type NullableSettingsOut added in v0.42.0

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

func NewNullableSettingsOut added in v0.42.0

func NewNullableSettingsOut(val *SettingsOut) *NullableSettingsOut

func (NullableSettingsOut) Get added in v0.42.0

func (NullableSettingsOut) IsSet added in v0.42.0

func (v NullableSettingsOut) IsSet() bool

func (NullableSettingsOut) MarshalJSON added in v0.42.0

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

func (*NullableSettingsOut) Set added in v0.42.0

func (v *NullableSettingsOut) Set(val *SettingsOut)

func (*NullableSettingsOut) UnmarshalJSON added in v0.42.0

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

func (*NullableSettingsOut) Unset added in v0.42.0

func (v *NullableSettingsOut) Unset()

type NullableStatisticsPeriod added in v0.37.0

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

func NewNullableStatisticsPeriod added in v0.37.0

func NewNullableStatisticsPeriod(val *StatisticsPeriod) *NullableStatisticsPeriod

func (NullableStatisticsPeriod) Get added in v0.37.0

func (NullableStatisticsPeriod) IsSet added in v0.37.0

func (v NullableStatisticsPeriod) IsSet() bool

func (NullableStatisticsPeriod) MarshalJSON added in v0.37.0

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

func (*NullableStatisticsPeriod) Set added in v0.37.0

func (*NullableStatisticsPeriod) UnmarshalJSON added in v0.37.0

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

func (*NullableStatisticsPeriod) Unset added in v0.37.0

func (v *NullableStatisticsPeriod) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type 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 added in v0.26.0

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

func NewNullableWebhookTypes added in v0.26.0

func NewNullableWebhookTypes(val *WebhookTypes) *NullableWebhookTypes

func (NullableWebhookTypes) Get added in v0.26.0

func (NullableWebhookTypes) IsSet added in v0.26.0

func (v NullableWebhookTypes) IsSet() bool

func (NullableWebhookTypes) MarshalJSON added in v0.26.0

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

func (*NullableWebhookTypes) Set added in v0.26.0

func (v *NullableWebhookTypes) Set(val *WebhookTypes)

func (*NullableWebhookTypes) UnmarshalJSON added in v0.26.0

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

func (*NullableWebhookTypes) Unset added in v0.26.0

func (v *NullableWebhookTypes) Unset()

type OrganizationApiService added in v0.42.0

type OrganizationApiService service

OrganizationApiService OrganizationApi service

func (*OrganizationApiService) ExportOrganizationConfigurationApiV1OrgExportPost added in v0.42.1

func (a *OrganizationApiService) ExportOrganizationConfigurationApiV1OrgExportPost(ctx _context.Context) ApiExportOrganizationConfigurationApiV1OrgExportPostRequest

* ExportOrganizationConfigurationApiV1OrgExportPost Export Organization 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 ApiExportOrganizationConfigurationApiV1OrgExportPostRequest

func (*OrganizationApiService) ExportOrganizationConfigurationApiV1OrgExportPostExecute added in v0.42.1

func (a *OrganizationApiService) ExportOrganizationConfigurationApiV1OrgExportPostExecute(r ApiExportOrganizationConfigurationApiV1OrgExportPostRequest) (ExportOrganizationOut, *_nethttp.Response, error)

* Execute executes the request * @return ExportOrganizationOut

func (*OrganizationApiService) ImportOrganizationConfigurationApiV1OrgImportPost added in v0.42.1

func (a *OrganizationApiService) ImportOrganizationConfigurationApiV1OrgImportPost(ctx _context.Context) ApiImportOrganizationConfigurationApiV1OrgImportPostRequest
  • ImportOrganizationConfigurationApiV1OrgImportPost Import Organization 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 ApiImportOrganizationConfigurationApiV1OrgImportPostRequest

func (*OrganizationApiService) ImportOrganizationConfigurationApiV1OrgImportPostExecute added in v0.42.1

func (a *OrganizationApiService) ImportOrganizationConfigurationApiV1OrgImportPostExecute(r ApiImportOrganizationConfigurationApiV1OrgImportPostRequest) (*_nethttp.Response, error)

* Execute executes the request

type OrganizationSettingsApiService added in v0.39.0

type OrganizationSettingsApiService service

OrganizationSettingsApiService OrganizationSettingsApi service

func (*OrganizationSettingsApiService) GetOrgSettingsApiV1OrgSettingsGet added in v0.39.0

* GetOrgSettingsApiV1OrgSettingsGet Get Org Settings * Get the organization's settings * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetOrgSettingsApiV1OrgSettingsGetRequest

func (*OrganizationSettingsApiService) GetOrgSettingsApiV1OrgSettingsGetExecute added in v0.39.0

* Execute executes the request * @return PortalSettingsOut

type PortalSettingsOut added in v0.39.0

type PortalSettingsOut struct {
	CustomColor         *string              `json:"customColor,omitempty"`
	CustomFontFamily    *string              `json:"customFontFamily,omitempty"`
	CustomLogoUrl       *string              `json:"customLogoUrl,omitempty"`
	CustomThemeOverride *CustomThemeOverride `json:"customThemeOverride,omitempty"`
	EnableChannels      *bool                `json:"enableChannels,omitempty"`
}

PortalSettingsOut struct for PortalSettingsOut

func NewPortalSettingsOut added in v0.39.0

func NewPortalSettingsOut() *PortalSettingsOut

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

func NewPortalSettingsOutWithDefaults added in v0.39.0

func NewPortalSettingsOutWithDefaults() *PortalSettingsOut

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

func (*PortalSettingsOut) GetCustomColor added in v0.39.0

func (o *PortalSettingsOut) GetCustomColor() string

GetCustomColor returns the CustomColor field value if set, zero value otherwise.

func (*PortalSettingsOut) GetCustomColorOk added in v0.39.0

func (o *PortalSettingsOut) 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.

func (*PortalSettingsOut) GetCustomFontFamily added in v0.39.0

func (o *PortalSettingsOut) GetCustomFontFamily() string

GetCustomFontFamily returns the CustomFontFamily field value if set, zero value otherwise.

func (*PortalSettingsOut) GetCustomFontFamilyOk added in v0.39.0

func (o *PortalSettingsOut) 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.

func (*PortalSettingsOut) GetCustomLogoUrl added in v0.39.0

func (o *PortalSettingsOut) GetCustomLogoUrl() string

GetCustomLogoUrl returns the CustomLogoUrl field value if set, zero value otherwise.

func (*PortalSettingsOut) GetCustomLogoUrlOk added in v0.39.0

func (o *PortalSettingsOut) 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.

func (*PortalSettingsOut) GetCustomThemeOverride added in v0.39.0

func (o *PortalSettingsOut) GetCustomThemeOverride() CustomThemeOverride

GetCustomThemeOverride returns the CustomThemeOverride field value if set, zero value otherwise.

func (*PortalSettingsOut) GetCustomThemeOverrideOk added in v0.39.0

func (o *PortalSettingsOut) 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 (*PortalSettingsOut) GetEnableChannels added in v0.42.1

func (o *PortalSettingsOut) GetEnableChannels() bool

GetEnableChannels returns the EnableChannels field value if set, zero value otherwise.

func (*PortalSettingsOut) GetEnableChannelsOk added in v0.42.1

func (o *PortalSettingsOut) 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 (*PortalSettingsOut) HasCustomColor added in v0.39.0

func (o *PortalSettingsOut) HasCustomColor() bool

HasCustomColor returns a boolean if a field has been set.

func (*PortalSettingsOut) HasCustomFontFamily added in v0.39.0

func (o *PortalSettingsOut) HasCustomFontFamily() bool

HasCustomFontFamily returns a boolean if a field has been set.

func (*PortalSettingsOut) HasCustomLogoUrl added in v0.39.0

func (o *PortalSettingsOut) HasCustomLogoUrl() bool

HasCustomLogoUrl returns a boolean if a field has been set.

func (*PortalSettingsOut) HasCustomThemeOverride added in v0.39.0

func (o *PortalSettingsOut) HasCustomThemeOverride() bool

HasCustomThemeOverride returns a boolean if a field has been set.

func (*PortalSettingsOut) HasEnableChannels added in v0.42.1

func (o *PortalSettingsOut) HasEnableChannels() bool

HasEnableChannels returns a boolean if a field has been set.

func (PortalSettingsOut) MarshalJSON added in v0.39.0

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

func (*PortalSettingsOut) SetCustomColor added in v0.39.0

func (o *PortalSettingsOut) SetCustomColor(v string)

SetCustomColor gets a reference to the given string and assigns it to the CustomColor field.

func (*PortalSettingsOut) SetCustomFontFamily added in v0.39.0

func (o *PortalSettingsOut) SetCustomFontFamily(v string)

SetCustomFontFamily gets a reference to the given string and assigns it to the CustomFontFamily field.

func (*PortalSettingsOut) SetCustomLogoUrl added in v0.39.0

func (o *PortalSettingsOut) SetCustomLogoUrl(v string)

SetCustomLogoUrl gets a reference to the given string and assigns it to the CustomLogoUrl field.

func (*PortalSettingsOut) SetCustomThemeOverride added in v0.39.0

func (o *PortalSettingsOut) SetCustomThemeOverride(v CustomThemeOverride)

SetCustomThemeOverride gets a reference to the given CustomThemeOverride and assigns it to the CustomThemeOverride field.

func (*PortalSettingsOut) SetEnableChannels added in v0.42.1

func (o *PortalSettingsOut) SetEnableChannels(v bool)

SetEnableChannels gets a reference to the given bool and assigns it to the EnableChannels field.

type RecoverIn added in v0.36.0

type RecoverIn struct {
	Since time.Time `json:"since"`
}

RecoverIn struct for RecoverIn

func NewRecoverIn added in v0.36.0

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 added in v0.36.0

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 added in v0.36.0

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

GetSince returns the Since field value

func (*RecoverIn) GetSinceOk added in v0.36.0

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) MarshalJSON added in v0.36.0

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

func (*RecoverIn) SetSince added in v0.36.0

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

SetSince 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 added in v0.42.1

type SettingsIn struct {
	CustomBaseFontSize          *int32               `json:"customBaseFontSize,omitempty"`
	CustomColor                 *string              `json:"customColor,omitempty"`
	CustomFontFamily            *string              `json:"customFontFamily,omitempty"`
	CustomLogoUrl               *string              `json:"customLogoUrl,omitempty"`
	CustomThemeOverride         *CustomThemeOverride `json:"customThemeOverride,omitempty"`
	DisableEndpointOnFailure    *bool                `json:"disableEndpointOnFailure,omitempty"`
	EnableChannels              *bool                `json:"enableChannels,omitempty"`
	EnableIntegrationManagement *bool                `json:"enableIntegrationManagement,omitempty"`
	EnforceHttps                *bool                `json:"enforceHttps,omitempty"`
}

SettingsIn struct for SettingsIn

func NewSettingsIn added in v0.42.1

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 added in v0.42.1

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) GetCustomBaseFontSize added in v0.42.1

func (o *SettingsIn) GetCustomBaseFontSize() int32

GetCustomBaseFontSize returns the CustomBaseFontSize field value if set, zero value otherwise.

func (*SettingsIn) GetCustomBaseFontSizeOk added in v0.42.1

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.

func (*SettingsIn) GetCustomColor added in v0.42.1

func (o *SettingsIn) GetCustomColor() string

GetCustomColor returns the CustomColor field value if set, zero value otherwise.

func (*SettingsIn) GetCustomColorOk added in v0.42.1

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.

func (*SettingsIn) GetCustomFontFamily added in v0.42.1

func (o *SettingsIn) GetCustomFontFamily() string

GetCustomFontFamily returns the CustomFontFamily field value if set, zero value otherwise.

func (*SettingsIn) GetCustomFontFamilyOk added in v0.42.1

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.

func (*SettingsIn) GetCustomLogoUrl added in v0.42.1

func (o *SettingsIn) GetCustomLogoUrl() string

GetCustomLogoUrl returns the CustomLogoUrl field value if set, zero value otherwise.

func (*SettingsIn) GetCustomLogoUrlOk added in v0.42.1

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.

func (*SettingsIn) GetCustomThemeOverride added in v0.42.1

func (o *SettingsIn) GetCustomThemeOverride() CustomThemeOverride

GetCustomThemeOverride returns the CustomThemeOverride field value if set, zero value otherwise.

func (*SettingsIn) GetCustomThemeOverrideOk added in v0.42.1

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 added in v0.42.1

func (o *SettingsIn) GetDisableEndpointOnFailure() bool

GetDisableEndpointOnFailure returns the DisableEndpointOnFailure field value if set, zero value otherwise.

func (*SettingsIn) GetDisableEndpointOnFailureOk added in v0.42.1

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) GetEnableChannels added in v0.42.1

func (o *SettingsIn) GetEnableChannels() bool

GetEnableChannels returns the EnableChannels field value if set, zero value otherwise.

func (*SettingsIn) GetEnableChannelsOk added in v0.42.1

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 added in v0.44.0

func (o *SettingsIn) GetEnableIntegrationManagement() bool

GetEnableIntegrationManagement returns the EnableIntegrationManagement field value if set, zero value otherwise.

func (*SettingsIn) GetEnableIntegrationManagementOk added in v0.44.0

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) GetEnforceHttps added in v0.42.1

func (o *SettingsIn) GetEnforceHttps() bool

GetEnforceHttps returns the EnforceHttps field value if set, zero value otherwise.

func (*SettingsIn) GetEnforceHttpsOk added in v0.42.1

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) HasCustomBaseFontSize added in v0.42.1

func (o *SettingsIn) HasCustomBaseFontSize() bool

HasCustomBaseFontSize returns a boolean if a field has been set.

func (*SettingsIn) HasCustomColor added in v0.42.1

func (o *SettingsIn) HasCustomColor() bool

HasCustomColor returns a boolean if a field has been set.

func (*SettingsIn) HasCustomFontFamily added in v0.42.1

func (o *SettingsIn) HasCustomFontFamily() bool

HasCustomFontFamily returns a boolean if a field has been set.

func (*SettingsIn) HasCustomLogoUrl added in v0.42.1

func (o *SettingsIn) HasCustomLogoUrl() bool

HasCustomLogoUrl returns a boolean if a field has been set.

func (*SettingsIn) HasCustomThemeOverride added in v0.42.1

func (o *SettingsIn) HasCustomThemeOverride() bool

HasCustomThemeOverride returns a boolean if a field has been set.

func (*SettingsIn) HasDisableEndpointOnFailure added in v0.42.1

func (o *SettingsIn) HasDisableEndpointOnFailure() bool

HasDisableEndpointOnFailure returns a boolean if a field has been set.

func (*SettingsIn) HasEnableChannels added in v0.42.1

func (o *SettingsIn) HasEnableChannels() bool

HasEnableChannels returns a boolean if a field has been set.

func (*SettingsIn) HasEnableIntegrationManagement added in v0.44.0

func (o *SettingsIn) HasEnableIntegrationManagement() bool

HasEnableIntegrationManagement returns a boolean if a field has been set.

func (*SettingsIn) HasEnforceHttps added in v0.42.1

func (o *SettingsIn) HasEnforceHttps() bool

HasEnforceHttps returns a boolean if a field has been set.

func (SettingsIn) MarshalJSON added in v0.42.1

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

func (*SettingsIn) SetCustomBaseFontSize added in v0.42.1

func (o *SettingsIn) SetCustomBaseFontSize(v int32)

SetCustomBaseFontSize gets a reference to the given int32 and assigns it to the CustomBaseFontSize field.

func (*SettingsIn) SetCustomColor added in v0.42.1

func (o *SettingsIn) SetCustomColor(v string)

SetCustomColor gets a reference to the given string and assigns it to the CustomColor field.

func (*SettingsIn) SetCustomFontFamily added in v0.42.1

func (o *SettingsIn) SetCustomFontFamily(v string)

SetCustomFontFamily gets a reference to the given string and assigns it to the CustomFontFamily field.

func (*SettingsIn) SetCustomLogoUrl added in v0.42.1

func (o *SettingsIn) SetCustomLogoUrl(v string)

SetCustomLogoUrl gets a reference to the given string and assigns it to the CustomLogoUrl field.

func (*SettingsIn) SetCustomThemeOverride added in v0.42.1

func (o *SettingsIn) SetCustomThemeOverride(v CustomThemeOverride)

SetCustomThemeOverride gets a reference to the given CustomThemeOverride and assigns it to the CustomThemeOverride field.

func (*SettingsIn) SetDisableEndpointOnFailure added in v0.42.1

func (o *SettingsIn) SetDisableEndpointOnFailure(v bool)

SetDisableEndpointOnFailure gets a reference to the given bool and assigns it to the DisableEndpointOnFailure field.

func (*SettingsIn) SetEnableChannels added in v0.42.1

func (o *SettingsIn) SetEnableChannels(v bool)

SetEnableChannels gets a reference to the given bool and assigns it to the EnableChannels field.

func (*SettingsIn) SetEnableIntegrationManagement added in v0.44.0

func (o *SettingsIn) SetEnableIntegrationManagement(v bool)

SetEnableIntegrationManagement gets a reference to the given bool and assigns it to the EnableIntegrationManagement field.

func (*SettingsIn) SetEnforceHttps added in v0.42.1

func (o *SettingsIn) SetEnforceHttps(v bool)

SetEnforceHttps gets a reference to the given bool and assigns it to the EnforceHttps field.

type SettingsOut added in v0.42.0

type SettingsOut struct {
	CustomBaseFontSize          *int32               `json:"customBaseFontSize,omitempty"`
	CustomColor                 *string              `json:"customColor,omitempty"`
	CustomFontFamily            *string              `json:"customFontFamily,omitempty"`
	CustomLogoUrl               *string              `json:"customLogoUrl,omitempty"`
	CustomThemeOverride         *CustomThemeOverride `json:"customThemeOverride,omitempty"`
	DisableEndpointOnFailure    *bool                `json:"disableEndpointOnFailure,omitempty"`
	EnableChannels              *bool                `json:"enableChannels,omitempty"`
	EnableIntegrationManagement *bool                `json:"enableIntegrationManagement,omitempty"`
	EnforceHttps                *bool                `json:"enforceHttps,omitempty"`
}

SettingsOut struct for SettingsOut

func NewSettingsOut added in v0.42.0

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 added in v0.42.0

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) GetCustomBaseFontSize added in v0.42.0

func (o *SettingsOut) GetCustomBaseFontSize() int32

GetCustomBaseFontSize returns the CustomBaseFontSize field value if set, zero value otherwise.

func (*SettingsOut) GetCustomBaseFontSizeOk added in v0.42.0

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.

func (*SettingsOut) GetCustomColor added in v0.42.0

func (o *SettingsOut) GetCustomColor() string

GetCustomColor returns the CustomColor field value if set, zero value otherwise.

func (*SettingsOut) GetCustomColorOk added in v0.42.0

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.

func (*SettingsOut) GetCustomFontFamily added in v0.42.0

func (o *SettingsOut) GetCustomFontFamily() string

GetCustomFontFamily returns the CustomFontFamily field value if set, zero value otherwise.

func (*SettingsOut) GetCustomFontFamilyOk added in v0.42.0

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.

func (*SettingsOut) GetCustomLogoUrl added in v0.42.0

func (o *SettingsOut) GetCustomLogoUrl() string

GetCustomLogoUrl returns the CustomLogoUrl field value if set, zero value otherwise.

func (*SettingsOut) GetCustomLogoUrlOk added in v0.42.0

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.

func (*SettingsOut) GetCustomThemeOverride added in v0.42.0

func (o *SettingsOut) GetCustomThemeOverride() CustomThemeOverride

GetCustomThemeOverride returns the CustomThemeOverride field value if set, zero value otherwise.

func (*SettingsOut) GetCustomThemeOverrideOk added in v0.42.0

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 added in v0.42.0

func (o *SettingsOut) GetDisableEndpointOnFailure() bool

GetDisableEndpointOnFailure returns the DisableEndpointOnFailure field value if set, zero value otherwise.

func (*SettingsOut) GetDisableEndpointOnFailureOk added in v0.42.0

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) GetEnableChannels added in v0.42.1

func (o *SettingsOut) GetEnableChannels() bool

GetEnableChannels returns the EnableChannels field value if set, zero value otherwise.

func (*SettingsOut) GetEnableChannelsOk added in v0.42.1

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 added in v0.44.0

func (o *SettingsOut) GetEnableIntegrationManagement() bool

GetEnableIntegrationManagement returns the EnableIntegrationManagement field value if set, zero value otherwise.

func (*SettingsOut) GetEnableIntegrationManagementOk added in v0.44.0

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) GetEnforceHttps added in v0.42.0

func (o *SettingsOut) GetEnforceHttps() bool

GetEnforceHttps returns the EnforceHttps field value if set, zero value otherwise.

func (*SettingsOut) GetEnforceHttpsOk added in v0.42.0

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) HasCustomBaseFontSize added in v0.42.0

func (o *SettingsOut) HasCustomBaseFontSize() bool

HasCustomBaseFontSize returns a boolean if a field has been set.

func (*SettingsOut) HasCustomColor added in v0.42.0

func (o *SettingsOut) HasCustomColor() bool

HasCustomColor returns a boolean if a field has been set.

func (*SettingsOut) HasCustomFontFamily added in v0.42.0

func (o *SettingsOut) HasCustomFontFamily() bool

HasCustomFontFamily returns a boolean if a field has been set.

func (*SettingsOut) HasCustomLogoUrl added in v0.42.0

func (o *SettingsOut) HasCustomLogoUrl() bool

HasCustomLogoUrl returns a boolean if a field has been set.

func (*SettingsOut) HasCustomThemeOverride added in v0.42.0

func (o *SettingsOut) HasCustomThemeOverride() bool

HasCustomThemeOverride returns a boolean if a field has been set.

func (*SettingsOut) HasDisableEndpointOnFailure added in v0.42.0

func (o *SettingsOut) HasDisableEndpointOnFailure() bool

HasDisableEndpointOnFailure returns a boolean if a field has been set.

func (*SettingsOut) HasEnableChannels added in v0.42.1

func (o *SettingsOut) HasEnableChannels() bool

HasEnableChannels returns a boolean if a field has been set.

func (*SettingsOut) HasEnableIntegrationManagement added in v0.44.0

func (o *SettingsOut) HasEnableIntegrationManagement() bool

HasEnableIntegrationManagement returns a boolean if a field has been set.

func (*SettingsOut) HasEnforceHttps added in v0.42.0

func (o *SettingsOut) HasEnforceHttps() bool

HasEnforceHttps returns a boolean if a field has been set.

func (SettingsOut) MarshalJSON added in v0.42.0

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

func (*SettingsOut) SetCustomBaseFontSize added in v0.42.0

func (o *SettingsOut) SetCustomBaseFontSize(v int32)

SetCustomBaseFontSize gets a reference to the given int32 and assigns it to the CustomBaseFontSize field.

func (*SettingsOut) SetCustomColor added in v0.42.0

func (o *SettingsOut) SetCustomColor(v string)

SetCustomColor gets a reference to the given string and assigns it to the CustomColor field.

func (*SettingsOut) SetCustomFontFamily added in v0.42.0

func (o *SettingsOut) SetCustomFontFamily(v string)

SetCustomFontFamily gets a reference to the given string and assigns it to the CustomFontFamily field.

func (*SettingsOut) SetCustomLogoUrl added in v0.42.0

func (o *SettingsOut) SetCustomLogoUrl(v string)

SetCustomLogoUrl gets a reference to the given string and assigns it to the CustomLogoUrl field.

func (*SettingsOut) SetCustomThemeOverride added in v0.42.0

func (o *SettingsOut) SetCustomThemeOverride(v CustomThemeOverride)

SetCustomThemeOverride gets a reference to the given CustomThemeOverride and assigns it to the CustomThemeOverride field.

func (*SettingsOut) SetDisableEndpointOnFailure added in v0.42.0

func (o *SettingsOut) SetDisableEndpointOnFailure(v bool)

SetDisableEndpointOnFailure gets a reference to the given bool and assigns it to the DisableEndpointOnFailure field.

func (*SettingsOut) SetEnableChannels added in v0.42.1

func (o *SettingsOut) SetEnableChannels(v bool)

SetEnableChannels gets a reference to the given bool and assigns it to the EnableChannels field.

func (*SettingsOut) SetEnableIntegrationManagement added in v0.44.0

func (o *SettingsOut) SetEnableIntegrationManagement(v bool)

SetEnableIntegrationManagement gets a reference to the given bool and assigns it to the EnableIntegrationManagement field.

func (*SettingsOut) SetEnforceHttps added in v0.42.0

func (o *SettingsOut) SetEnforceHttps(v bool)

SetEnforceHttps gets a reference to the given bool and assigns it to the EnforceHttps field.

type StatisticsApiService added in v0.37.0

type StatisticsApiService service

StatisticsApiService StatisticsApi service

func (*StatisticsApiService) GetAppAttemptStatsApiV1StatsAppAppIdAttemptGet added in v0.37.0

func (a *StatisticsApiService) GetAppAttemptStatsApiV1StatsAppAppIdAttemptGet(ctx _context.Context, appId string) ApiGetAppAttemptStatsApiV1StatsAppAppIdAttemptGetRequest

* GetAppAttemptStatsApiV1StatsAppAppIdAttemptGet 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 * @return ApiGetAppAttemptStatsApiV1StatsAppAppIdAttemptGetRequest

func (*StatisticsApiService) GetAppAttemptStatsApiV1StatsAppAppIdAttemptGetExecute added in v0.37.0

* Execute executes the request * @return AttemptStatisticsResponse

func (*StatisticsApiService) GetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGet added in v0.37.0

func (a *StatisticsApiService) GetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGet(ctx _context.Context, endpointId string, appId string) ApiGetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGetRequest

* GetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGet 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 endpointId * @param appId * @return ApiGetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGetRequest

func (*StatisticsApiService) GetEpStatsApiV1StatsAppAppIdEpEndpointIdAttemptGetExecute added in v0.37.0

* Execute executes the request * @return AttemptStatisticsResponse

type StatisticsPeriod added in v0.37.0

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 added in v0.37.0

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 added in v0.37.0

func (v StatisticsPeriod) IsValid() bool

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

func (StatisticsPeriod) Ptr added in v0.37.0

Ptr returns reference to StatisticsPeriod value

func (*StatisticsPeriod) UnmarshalJSON added in v0.37.0

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

type ValidationError

type ValidationError struct {
	Loc  []string `json:"loc"`
	Msg  string   `json:"msg"`
	Type string   `json:"type"`
}

ValidationError struct for ValidationError

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 added in v0.26.0

type WebhookTypes struct {
	A EndpointDisabledEvent        `json:"a"`
	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 added in v0.26.0

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 added in v0.26.0

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 added in v0.26.0

GetA returns the A field value

func (*WebhookTypes) GetAOk added in v0.26.0

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 added in v0.26.0

GetB returns the B field value

func (*WebhookTypes) GetBOk added in v0.26.0

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 added in v0.29.0

GetC returns the C field value

func (*WebhookTypes) GetCOk added in v0.29.0

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 added in v0.29.0

GetD returns the D field value

func (*WebhookTypes) GetDOk added in v0.29.0

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 added in v0.29.0

GetE returns the E field value

func (*WebhookTypes) GetEOk added in v0.29.0

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

func (WebhookTypes) MarshalJSON added in v0.26.0

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

func (*WebhookTypes) SetA added in v0.26.0

SetA sets field value

func (*WebhookTypes) SetB added in v0.26.0

SetB sets field value

func (*WebhookTypes) SetC added in v0.29.0

SetC sets field value

func (*WebhookTypes) SetD added in v0.29.0

SetD sets field value

func (*WebhookTypes) SetE added in v0.29.0

SetE sets field value

Source Files

Jump to

Keyboard shortcuts

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