package
0.0.0-20240817174350-07ad14daec63
Repository: https://github.com/x-webhook/x-webhooks.git
Documentation: pkg.go.dev

# README

Go API client for openapi

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.1.1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sw "./openapi"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

ctx := context.WithValue(context.Background(), sw.ContextServerIndex, 1)

Templated Server URL

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://api.webhook.openweb3.io

ClassMethodHTTP requestDescription
ApplicationApiGetAppUsageStatsApiV1AppStatsUsageGetGet /api/v1/app/stats/usageGet App Usage Stats
ApplicationApiV1ApplicationCreatePost /api/v1/appCreate Application
ApplicationApiV1ApplicationDeleteDelete /api/v1/app/{app_id}Delete Application
ApplicationApiV1ApplicationGetGet /api/v1/app/{app_id}Get Application
ApplicationApiV1ApplicationGetStatsGet /api/v1/app/{app_id}/statsGet App Stats
ApplicationApiV1ApplicationListGet /api/v1/appList Applications
ApplicationApiV1ApplicationPatchPatch /api/v1/app/{app_id}Patch Application
ApplicationApiV1ApplicationUpdatePut /api/v1/app/{app_id}Update Application
AuthenticationApiV1AuthenticationAppPortalAccessPost /api/v1/auth/app-portal-access/{app_id}Get Consumer App Portal Access
AuthenticationApiV1AuthenticationDashboardAccessPost /api/v1/auth/dashboard-access/{app_id}Dashboard Access
AuthenticationApiV1AuthenticationExchangeOneTimeTokenPost /api/v1/auth/one-time-tokenExchange One Time Token
AuthenticationApiV1AuthenticationExpireAllPost /api/v1/auth/app/{app_id}/expire-allExpire All
AuthenticationApiV1AuthenticationLogoutPost /api/v1/auth/logoutLogout
BackgroundTasksApiGetBackgroundTaskGet /api/v1/background-task/{task_id}Get Background Task
BackgroundTasksApiListBackgroundTasksGet /api/v1/background-taskList Background Tasks
BroadcastApiCreateBroadcastMessagePost /api/v1/msg/broadcastCreate Broadcast Message
EndpointApiV1EndpointCreatePost /api/v1/app/{app_id}/endpointCreate Endpoint
EndpointApiV1EndpointDeleteDelete /api/v1/app/{app_id}/endpoint/{endpoint_id}Delete Endpoint
EndpointApiV1EndpointDeleteMtlsConfigDelete /api/v1/app/{app_id}/endpoint/{endpoint_id}/mtlsDelete Endpoint Mtls Config
EndpointApiV1EndpointDeleteOauthConfigDelete /api/v1/app/{app_id}/endpoint/{endpoint_id}/oauthDelete Endpoint Oauth Config
EndpointApiV1EndpointGetGet /api/v1/app/{app_id}/endpoint/{endpoint_id}Get Endpoint
EndpointApiV1EndpointGetHeadersGet /api/v1/app/{app_id}/endpoint/{endpoint_id}/headersGet Endpoint Headers
EndpointApiV1EndpointGetSecretGet /api/v1/app/{app_id}/endpoint/{endpoint_id}/secretGet Endpoint Secret
EndpointApiV1EndpointGetStatsGet /api/v1/app/{app_id}/endpoint/{endpoint_id}/statsEndpoint Stats
EndpointApiV1EndpointListGet /api/v1/app/{app_id}/endpointList Endpoints
EndpointApiV1EndpointPatchPatch /api/v1/app/{app_id}/endpoint/{endpoint_id}Patch Endpoint
EndpointApiV1EndpointPatchHeadersPatch /api/v1/app/{app_id}/endpoint/{endpoint_id}/headersPatch Endpoint Headers
EndpointApiV1EndpointRecoverPost /api/v1/app/{app_id}/endpoint/{endpoint_id}/recoverRecover Failed Webhooks
EndpointApiV1EndpointReplayPost /api/v1/app/{app_id}/endpoint/{endpoint_id}/replay-missingReplay Missing Webhooks
EndpointApiV1EndpointRotateSecretPost /api/v1/app/{app_id}/endpoint/{endpoint_id}/secret/rotateRotate Endpoint Secret
EndpointApiV1EndpointSendExamplePost /api/v1/app/{app_id}/endpoint/{endpoint_id}/send-exampleSend Event Type Example Message
EndpointApiV1EndpointTransformationGetGet /api/v1/app/{app_id}/endpoint/{endpoint_id}/transformationGet Endpoint Transformation
EndpointApiV1EndpointTransformationPartialUpdatePatch /api/v1/app/{app_id}/endpoint/{endpoint_id}/transformationSet Endpoint Transformation
EndpointApiV1EndpointTransformationSimulatePost /api/v1/app/{app_id}/endpoint/{endpoint_id}/transformation/simulateSimulate
EndpointApiV1EndpointUpdatePut /api/v1/app/{app_id}/endpoint/{endpoint_id}Update Endpoint
EndpointApiV1EndpointUpdateHeadersPut /api/v1/app/{app_id}/endpoint/{endpoint_id}/headersUpdate Endpoint Headers
EndpointApiV1EndpointUpdateMtlsConfigPut /api/v1/app/{app_id}/endpoint/{endpoint_id}/mtlsUpdate Endpoint Mtls Config
EndpointApiV1EndpointUpdateOauthConfigPut /api/v1/app/{app_id}/endpoint/{endpoint_id}/oauthUpdate Endpoint Oauth Config
EnvironmentApiV1EnvironmentExportPost /api/v1/environment/exportExport Environment Configuration
EnvironmentApiV1EnvironmentExportGetGet /api/v1/environment/exportExport Environment Configuration
EnvironmentApiV1EnvironmentImportPost /api/v1/environment/importImport Environment Configuration
EnvironmentSettingsApiV1EnvironmentGetSettingsGet /api/v1/environment/settingsGet Org Settings
EventTypeApiV1EventTypeCreatePost /api/v1/event-typeCreate Event Type
EventTypeApiV1EventTypeDeleteDelete /api/v1/event-type/{event_type_name}Delete Event Type
EventTypeApiV1EventTypeExportOpenapiPost /api/v1/event-type/export/openapiEvent Type Export From Openapi
EventTypeApiV1EventTypeGenerateExamplePost /api/v1/event-type/schema/generate-exampleGenerate Schema Example
EventTypeApiV1EventTypeGetGet /api/v1/event-type/{event_type_name}Get Event Type
EventTypeApiV1EventTypeGetRetryScheduleGet /api/v1/event-type/{event_type_name}/retry-scheduleGet Retry Schedule
EventTypeApiV1EventTypeImportOpenapiPost /api/v1/event-type/import/openapiEvent Type Import From Openapi
EventTypeApiV1EventTypeListGet /api/v1/event-typeList Event Types
EventTypeApiV1EventTypePatchPatch /api/v1/event-type/{event_type_name}Patch Event Type
EventTypeApiV1EventTypeUpdatePut /api/v1/event-type/{event_type_name}Update Event Type
EventTypeApiV1EventTypeUpdateRetrySchedulePut /api/v1/event-type/{event_type_name}/retry-scheduleUpdate Retry Schedule
EventsApiV1EventsGet /api/v1/eventsEvents
HealthApiV1HealthGetGet /api/v1/healthHealth
InboundApiV1InboundMsgPost /api/v1/app/{app_id}/inbound/msg/{inbound_token}Handle Inbound
InboundApiV1InboundRotateUrlPost /api/v1/app/{app_id}/inbound/rotate-urlRotate Url
IntegrationApiV1IntegrationCreatePost /api/v1/app/{app_id}/integrationCreate Integration
IntegrationApiV1IntegrationDeleteDelete /api/v1/app/{app_id}/integration/{integ_id}Delete Integration
IntegrationApiV1IntegrationGetGet /api/v1/app/{app_id}/integration/{integ_id}Get Integration
IntegrationApiV1IntegrationGetKeyGet /api/v1/app/{app_id}/integration/{integ_id}/keyGet Integration Key
IntegrationApiV1IntegrationListGet /api/v1/app/{app_id}/integrationList Integrations
IntegrationApiV1IntegrationRotateKeyPost /api/v1/app/{app_id}/integration/{integ_id}/key/rotateRotate Integration Key
IntegrationApiV1IntegrationUpdatePut /api/v1/app/{app_id}/integration/{integ_id}Update Integration
MessageApiCreateMessageAttemptForEndpointPost /api/v1/app/{app_id}/endpoint/{endpoint_id}/msg/test-attemptCreate Message Attempt For Endpoint
MessageApiV1MessageCreatePost /api/v1/app/{app_id}/msgCreate Message
MessageApiV1MessageExpungeContentDelete /api/v1/app/{app_id}/msg/{msg_id}/contentDelete message payload
MessageApiV1MessageGetGet /api/v1/app/{app_id}/msg/{msg_id}Get Message
MessageApiV1MessageGetRawPayloadGet /api/v1/app/{app_id}/msg/{msg_id}/rawGet Raw Message Payload
MessageApiV1MessageListGet /api/v1/app/{app_id}/msgList Messages
MessageApiV1MessageStreamGet /api/v1/app/{app_id}/eventsStream Events
MessageAttemptApiV1MessageAttemptExpungeContentDelete /api/v1/app/{app_id}/msg/{msg_id}/attempt/{attempt_id}/contentDelete attempt response body
MessageAttemptApiV1MessageAttemptGetGet /api/v1/app/{app_id}/msg/{msg_id}/attempt/{attempt_id}Get Attempt
MessageAttemptApiV1MessageAttemptGetHeadersGet /api/v1/app/{app_id}/msg/{msg_id}/attempt/{attempt_id}/headersGet Attempt Headers
MessageAttemptApiV1MessageAttemptListAttemptedDestinationsGet /api/v1/app/{app_id}/msg/{msg_id}/endpointList Attempted Destinations
MessageAttemptApiV1MessageAttemptListAttemptedMessagesGet /api/v1/app/{app_id}/endpoint/{endpoint_id}/msgList Attempted Messages
MessageAttemptApiV1MessageAttemptListByEndpointGet /api/v1/app/{app_id}/attempt/endpoint/{endpoint_id}List Attempts By Endpoint
MessageAttemptApiV1MessageAttemptListByEndpointDeprecatedGet /api/v1/app/{app_id}/msg/{msg_id}/endpoint/{endpoint_id}/attemptList Attempts For Endpoint
MessageAttemptApiV1MessageAttemptListByMsgGet /api/v1/app/{app_id}/attempt/msg/{msg_id}List Attempts By Msg
MessageAttemptApiV1MessageAttemptListByMsgDeprecatedGet /api/v1/app/{app_id}/msg/{msg_id}/attemptList Attempts
MessageAttemptApiV1MessageAttemptResendPost /api/v1/app/{app_id}/msg/{msg_id}/endpoint/{endpoint_id}/resendResend Webhook
StatisticsApiV1StatisticsAggregateAppStatsPost /api/v1/stats/usage/appAggregate App Stats
StatisticsApiV1StatisticsAggregateEventTypesPut /api/v1/stats/usage/event-typesAggregate Event Types
StatisticsApiV1StatsAppAttemptsGet /api/v1/stats/app/{app_id}/attemptGet App Attempt Stats
StatisticsApiV1StatsEndpointAttemptsGet /api/v1/stats/app/{app_id}/ep/{endpoint_id}/attemptGet Ep Stats
TransformationTemplateApiV1EndpointUpdateHubspotOauthConfigPut /api/v1/app/{app_id}/endpoint/{endpoint_id}/transformation-template/oauth/hubspotUpdate Hubspot Oauth Config
TransformationTemplateApiV1TransformationTemplateCreatePost /api/v1/transformation-templateCreate Transformation Template
TransformationTemplateApiV1TransformationTemplateDeleteDelete /api/v1/transformation-template/{transformation_template_id}Delete Transformation Template
TransformationTemplateApiV1TransformationTemplateGeneratePost /api/v1/transformation-template/generateGenerate
TransformationTemplateApiV1TransformationTemplateGetGet /api/v1/transformation-template/{transformation_template_id}Get Transformation Template
TransformationTemplateApiV1TransformationTemplateListGet /api/v1/transformation-templateList Transformation Templates
TransformationTemplateApiV1TransformationTemplateOauthDiscordPost /api/v1/transformation-template/oauth/discordAuthorize Discord
TransformationTemplateApiV1TransformationTemplateOauthHubspotPost /api/v1/transformation-template/oauth/hubspotAuthorize Hubspot
TransformationTemplateApiV1TransformationTemplateOauthSlackPost /api/v1/transformation-template/oauth/slackAuthorize Slack
TransformationTemplateApiV1TransformationTemplatePatchPatch /api/v1/transformation-template/{transformation_template_id}Patch Transformation Template
TransformationTemplateApiV1TransformationTemplateSimulatePost /api/v1/transformation-template/simulateSimulate
TransformationTemplateApiV1TransformationTemplateUpdatePut /api/v1/transformation-template/{transformation_template_id}Update Transformation Template

Documentation For Models

Documentation For Authorization

HTTPBearer

  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARERTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAggregateEventTypesOut instantiates a new AggregateEventTypesOut 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.
NewAggregateEventTypesOutWithDefaults instantiates a new AggregateEventTypesOut 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.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
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.
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.
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.
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.
NewApplicationPatch instantiates a new ApplicationPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationPatchWithDefaults instantiates a new ApplicationPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationStats instantiates a new ApplicationStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationStatsWithDefaults instantiates a new ApplicationStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationTokenExpireIn instantiates a new ApplicationTokenExpireIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationTokenExpireInWithDefaults instantiates a new ApplicationTokenExpireIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppPortalAccessIn instantiates a new AppPortalAccessIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppPortalAccessInWithDefaults instantiates a new AppPortalAccessIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppPortalAccessOut instantiates a new AppPortalAccessOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppPortalAccessOutWithDefaults instantiates a new AppPortalAccessOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppUsageStatsIn instantiates a new AppUsageStatsIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppUsageStatsInWithDefaults instantiates a new AppUsageStatsIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppUsageStatsOut instantiates a new AppUsageStatsOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppUsageStatsOutWithDefaults instantiates a new AppUsageStatsOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewBackgroundTaskOut instantiates a new BackgroundTaskOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackgroundTaskOutWithDefaults instantiates a new BackgroundTaskOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackgroundTaskStatusFromValue returns a pointer to a valid BackgroundTaskStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewBackgroundTaskTypeFromValue returns a pointer to a valid BackgroundTaskType for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
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.
NewClientSecretJwtParamsIn instantiates a new ClientSecretJwtParamsIn 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.
NewClientSecretJwtParamsInWithDefaults instantiates a new ClientSecretJwtParamsIn 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.
NewCompletionChoice instantiates a new CompletionChoice 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.
NewCompletionChoiceWithDefaults instantiates a new CompletionChoice 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.
NewCompletionMessage instantiates a new CompletionMessage 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.
NewCompletionMessageWithDefaults instantiates a new CompletionMessage 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.
NewConfiguration returns a new Configuration object.
NewCustomColorPalette instantiates a new CustomColorPalette object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomColorPaletteWithDefaults instantiates a new CustomColorPalette object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewDuration instantiates a new Duration 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.
NewDurationWithDefaults instantiates a new Duration 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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewEndpointHeadersPatchIn instantiates a new EndpointHeadersPatchIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEndpointHeadersPatchInWithDefaults instantiates a new EndpointHeadersPatchIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewEndpointMtlsConfigIn instantiates a new EndpointMtlsConfigIn 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.
NewEndpointMtlsConfigInWithDefaults instantiates a new EndpointMtlsConfigIn 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.
NewEndpointOauthConfigIn instantiates a new EndpointOauthConfigIn 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.
NewEndpointOauthConfigInWithDefaults instantiates a new EndpointOauthConfigIn 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.
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.
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.
NewEndpointPatch instantiates a new EndpointPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEndpointPatchWithDefaults instantiates a new EndpointPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
NewEndpointTransformationIn instantiates a new EndpointTransformationIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEndpointTransformationInWithDefaults instantiates a new EndpointTransformationIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEndpointTransformationOut instantiates a new EndpointTransformationOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEndpointTransformationOutWithDefaults instantiates a new EndpointTransformationOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEndpointTransformationSimulateIn instantiates a new EndpointTransformationSimulateIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEndpointTransformationSimulateInWithDefaults instantiates a new EndpointTransformationSimulateIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEndpointTransformationSimulateOut instantiates a new EndpointTransformationSimulateOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEndpointTransformationSimulateOutWithDefaults instantiates a new EndpointTransformationSimulateOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewEventTypeFromOpenApi instantiates a new EventTypeFromOpenApi 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.
NewEventTypeFromOpenApiWithDefaults instantiates a new EventTypeFromOpenApi 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.
NewEventTypeImportOpenApiIn instantiates a new EventTypeImportOpenApiIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventTypeImportOpenApiInWithDefaults instantiates a new EventTypeImportOpenApiIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventTypeImportOpenApiOut instantiates a new EventTypeImportOpenApiOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventTypeImportOpenApiOutData instantiates a new EventTypeImportOpenApiOutData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventTypeImportOpenApiOutDataWithDefaults instantiates a new EventTypeImportOpenApiOutData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventTypeImportOpenApiOutWithDefaults instantiates a new EventTypeImportOpenApiOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewEventTypePatch instantiates a new EventTypePatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventTypePatchWithDefaults instantiates a new EventTypePatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewExportEventTypeOut instantiates a new ExportEventTypeOut 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.
NewExportEventTypeOutWithDefaults instantiates a new ExportEventTypeOut 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.
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.
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.
NewGenerateIn instantiates a new GenerateIn 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.
NewGenerateInWithDefaults instantiates a new GenerateIn 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.
NewGenerateOut instantiates a new GenerateOut 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.
NewGenerateOutWithDefaults instantiates a new GenerateOut 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.
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.
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.
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.
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.
NewHubspotOauthConfigIn instantiates a new HubspotOauthConfigIn 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.
NewHubspotOauthConfigInWithDefaults instantiates a new HubspotOauthConfigIn 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.
NewInboundPathParams instantiates a new InboundPathParams 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.
NewInboundPathParamsWithDefaults instantiates a new InboundPathParams 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.
NewIncomingWebhookPayloadOut instantiates a new IncomingWebhookPayloadOut 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.
NewIncomingWebhookPayloadOutWithDefaults instantiates a new IncomingWebhookPayloadOut 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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewListResponseApplicationStats instantiates a new ListResponseApplicationStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListResponseApplicationStatsWithDefaults instantiates a new ListResponseApplicationStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListResponseBackgroundTaskOut instantiates a new ListResponseBackgroundTaskOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListResponseBackgroundTaskOutWithDefaults instantiates a new ListResponseBackgroundTaskOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
NewListResponseTemplateOut instantiates a new ListResponseTemplateOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListResponseTemplateOutWithDefaults instantiates a new ListResponseTemplateOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
NewMessageAttemptFailedData instantiates a new MessageAttemptFailedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageAttemptFailedDataWithDefaults instantiates a new MessageAttemptFailedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMessageAttemptFailingEvent instantiates a new MessageAttemptFailingEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageAttemptFailingEventData instantiates a new MessageAttemptFailingEventData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageAttemptFailingEventDataWithDefaults instantiates a new MessageAttemptFailingEventData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMessageAttemptFailingEventWithDefaults instantiates a new MessageAttemptFailingEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMessageAttemptHeadersOut instantiates a new MessageAttemptHeadersOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageAttemptHeadersOutWithDefaults instantiates a new MessageAttemptHeadersOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewMessageAttemptRecoveredEvent instantiates a new MessageAttemptRecoveredEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageAttemptRecoveredEventData instantiates a new MessageAttemptRecoveredEventData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageAttemptRecoveredEventDataWithDefaults instantiates a new MessageAttemptRecoveredEventData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMessageAttemptRecoveredEventWithDefaults instantiates a new MessageAttemptRecoveredEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewMessageBroadcastIn instantiates a new MessageBroadcastIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageBroadcastInWithDefaults instantiates a new MessageBroadcastIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMessageBroadcastOut instantiates a new MessageBroadcastOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageBroadcastOutWithDefaults instantiates a new MessageBroadcastOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
NewMessageRawPayloadOut instantiates a new MessageRawPayloadOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageRawPayloadOutWithDefaults instantiates a new MessageRawPayloadOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewMessageStreamOut instantiates a new MessageStreamOut 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.
NewMessageStreamOutWithDefaults instantiates a new MessageStreamOut 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.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOauth2AuthMethodInFromValue returns a pointer to a valid Oauth2AuthMethodIn for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewOauth2GrantTypeInFromValue returns a pointer to a valid Oauth2GrantTypeIn for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewOauthJwsSigningAlgorithmFromValue returns a pointer to a valid OauthJwsSigningAlgorithm for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewOAuthPayloadIn instantiates a new OAuthPayloadIn 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.
NewOAuthPayloadInWithDefaults instantiates a new OAuthPayloadIn 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.
NewOAuthPayloadOut instantiates a new OAuthPayloadOut 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.
NewOAuthPayloadOutWithDefaults instantiates a new OAuthPayloadOut 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.
NewOneTimeTokenIn instantiates a new OneTimeTokenIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOneTimeTokenInWithDefaults instantiates a new OneTimeTokenIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOneTimeTokenOut instantiates a new OneTimeTokenOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOneTimeTokenOutWithDefaults instantiates a new OneTimeTokenOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOrderingFromValue returns a pointer to a valid Ordering for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
NewRecoverOut instantiates a new RecoverOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRecoverOutWithDefaults instantiates a new RecoverOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReplayIn instantiates a new ReplayIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReplayInWithDefaults instantiates a new ReplayIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReplayOut instantiates a new ReplayOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReplayOutWithDefaults instantiates a new ReplayOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRetryScheduleInOut instantiates a new RetryScheduleInOut 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.
NewRetryScheduleInOutWithDefaults instantiates a new RetryScheduleInOut 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.
NewRotatedUrlOut instantiates a new RotatedUrlOut 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.
NewRotatedUrlOutWithDefaults instantiates a new RotatedUrlOut 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.
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.
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.
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.
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.
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.
NewStatusCodeClassFromValue returns a pointer to a valid StatusCodeClass for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTemplateIn instantiates a new TemplateIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateInWithDefaults instantiates a new TemplateIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateOut instantiates a new TemplateOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateOutWithDefaults instantiates a new TemplateOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplatePatch instantiates a new TemplatePatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplatePatchWithDefaults instantiates a new TemplatePatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTemplateUpdate instantiates a new TemplateUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTemplateUpdateWithDefaults instantiates a new TemplateUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransformationHttpMethodFromValue returns a pointer to a valid TransformationHttpMethod for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTransformationSimulateIn instantiates a new TransformationSimulateIn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransformationSimulateInWithDefaults instantiates a new TransformationSimulateIn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransformationSimulateOut instantiates a new TransformationSimulateOut object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransformationSimulateOutWithDefaults instantiates a new TransformationSimulateOut object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransformationTemplateKindFromValue returns a pointer to a valid TransformationTemplateKind for the value passed as argument, or an error if the value passed is not allowed by the enum.
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.
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.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Constants

List of BackgroundTaskStatus.
List of BackgroundTaskStatus.
List of BackgroundTaskStatus.
List of BackgroundTaskType.
List of BackgroundTaskType.
List of BackgroundTaskType.
List of BackgroundTaskType.
List of BackgroundTaskType.
List of BackgroundTaskType.
List of BorderRadiusEnum.
List of BorderRadiusEnum.
List of BorderRadiusEnum.
List of BorderRadiusEnum.
List of BorderRadiusEnum.
List of MessageAttemptTriggerType.
List of MessageAttemptTriggerType.
List of MessageStatus.
List of MessageStatus.
List of MessageStatus.
List of MessageStatus.
No description provided by the author
List of Oauth2AuthMethodIn.
List of Oauth2AuthMethodIn.
OAUTH2AUTHMETHODIN_CLIENT_SECRET_POST
List of Oauth2AuthMethodIn.
List of Oauth2GrantTypeIn.
List of Oauth2GrantTypeIn.
List of OauthJwsSigningAlgorithm.
List of Ordering.
List of Ordering.
List of StatisticsPeriod.
List of StatisticsPeriod.
List of StatusCodeClass.
List of StatusCodeClass.
List of StatusCodeClass.
List of StatusCodeClass.
List of StatusCodeClass.
List of StatusCodeClass.
TRANSFORMATIONHTTPMETHOD_POST
List of TransformationHttpMethod.
List of TransformationHttpMethod.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.
List of TransformationTemplateKind.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AggregateEventTypesOut struct for AggregateEventTypesOut.
APIClient manages communication with the Xwebhook API API v1.1.1 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ApplicationIn struct for ApplicationIn.
ApplicationOut struct for ApplicationOut.
ApplicationPatch struct for ApplicationPatch.
ApplicationStats struct for ApplicationStats.
ApplicationTokenExpireIn struct for ApplicationTokenExpireIn.
AppPortalAccessIn struct for AppPortalAccessIn.
AppPortalAccessOut struct for AppPortalAccessOut.
AppUsageStatsIn struct for AppUsageStatsIn.
AppUsageStatsOut struct for AppUsageStatsOut.
AttemptStatisticsData struct for AttemptStatisticsData.
AttemptStatisticsResponse struct for AttemptStatisticsResponse.
BackgroundTaskOut struct for BackgroundTaskOut.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BorderRadiusConfig struct for BorderRadiusConfig.
ClientSecretJwtParamsIn struct for ClientSecretJwtParamsIn.
CompletionChoice struct for CompletionChoice.
CompletionMessage struct for CompletionMessage.
Configuration stores the configuration of the API client.
CustomColorPalette struct for CustomColorPalette.
CustomThemeOverride struct for CustomThemeOverride.
DashboardAccessOut struct for DashboardAccessOut.
Duration struct for Duration.
EndpointCreatedEvent Sent when an endpoint is created.
EndpointCreatedEventData struct for EndpointCreatedEventData.
EndpointDeletedEvent Sent when an endpoint is deleted.
EndpointDeletedEventData struct for EndpointDeletedEventData.
EndpointDisabledEvent Sent when an endpoint has been automatically disabled after continuous failures.
EndpointDisabledEventData Sent when an endpoint has been automatically disabled after continuous failures.
EndpointHeadersIn struct for EndpointHeadersIn.
EndpointHeadersOut The value of the headers is returned in the `headers` field.
EndpointHeadersPatchIn struct for EndpointHeadersPatchIn.
EndpointIn struct for EndpointIn.
EndpointMessageOut A model containing information on a given message plus additional fields on the last attempt for that message.
EndpointMtlsConfigIn struct for EndpointMtlsConfigIn.
EndpointOauthConfigIn struct for EndpointOauthConfigIn.
EndpointOut struct for EndpointOut.
EndpointPatch struct for EndpointPatch.
EndpointSecretOut struct for EndpointSecretOut.
EndpointSecretRotateIn struct for EndpointSecretRotateIn.
EndpointStats struct for EndpointStats.
EndpointTransformationIn struct for EndpointTransformationIn.
EndpointTransformationOut struct for EndpointTransformationOut.
EndpointTransformationSimulateIn struct for EndpointTransformationSimulateIn.
EndpointTransformationSimulateOut struct for EndpointTransformationSimulateOut.
EndpointUpdate struct for EndpointUpdate.
EndpointUpdatedEvent Sent when an endpoint is updated.
EndpointUpdatedEventData struct for EndpointUpdatedEventData.
EnvironmentIn struct for EnvironmentIn.
EnvironmentOut struct for EnvironmentOut.
EnvironmentSettingsOut struct for EnvironmentSettingsOut.
EventExampleIn struct for EventExampleIn.
EventTypeExampleOut struct for EventTypeExampleOut.
EventTypeFromOpenApi struct for EventTypeFromOpenApi.
EventTypeImportOpenApiIn Import a list of event types from webhooks defined in an OpenAPI spec.
EventTypeImportOpenApiOut struct for EventTypeImportOpenApiOut.
EventTypeImportOpenApiOutData struct for EventTypeImportOpenApiOutData.
EventTypeIn struct for EventTypeIn.
EventTypeOut struct for EventTypeOut.
EventTypePatch struct for EventTypePatch.
EventTypeSchemaIn struct for EventTypeSchemaIn.
EventTypeUpdate struct for EventTypeUpdate.
ExportEventTypeOut struct for ExportEventTypeOut.
FontSizeConfig struct for FontSizeConfig.
GenerateIn struct for GenerateIn.
GenerateOut struct for GenerateOut.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
HttpErrorOut struct for HttpErrorOut.
HTTPValidationError struct for HTTPValidationError.
HubspotOauthConfigIn struct for HubspotOauthConfigIn.
InboundPathParams struct for InboundPathParams.
IncomingWebhookPayloadOut struct for IncomingWebhookPayloadOut.
IntegrationIn struct for IntegrationIn.
IntegrationKeyOut struct for IntegrationKeyOut.
IntegrationOut struct for IntegrationOut.
IntegrationUpdate struct for IntegrationUpdate.
ListResponseApplicationOut struct for ListResponseApplicationOut.
ListResponseApplicationStats struct for ListResponseApplicationStats.
ListResponseBackgroundTaskOut struct for ListResponseBackgroundTaskOut.
ListResponseEndpointMessageOut struct for ListResponseEndpointMessageOut.
ListResponseEndpointOut struct for ListResponseEndpointOut.
ListResponseEventTypeOut struct for ListResponseEventTypeOut.
ListResponseIntegrationOut struct for ListResponseIntegrationOut.
ListResponseMessageAttemptEndpointOut struct for ListResponseMessageAttemptEndpointOut.
ListResponseMessageAttemptOut struct for ListResponseMessageAttemptOut.
ListResponseMessageEndpointOut struct for ListResponseMessageEndpointOut.
ListResponseMessageOut struct for ListResponseMessageOut.
ListResponseTemplateOut struct for ListResponseTemplateOut.
MessageAttemptEndpointOut struct for MessageAttemptEndpointOut.
MessageAttemptExhaustedEvent Sent when a message delivery has failed (all of the retry attempts have been exhausted).
MessageAttemptExhaustedEventData Sent when a message delivery has failed (all of the retry attempts have been exhausted) as a \"message.attempt.exhausted\" type or after it's failed four times as a \"message.attempt.failing\" event.
MessageAttemptFailedData struct for MessageAttemptFailedData.
MessageAttemptFailingEvent Sent after a message has been failing for a few times.
MessageAttemptFailingEventData Sent when a message delivery has failed (all of the retry attempts have been exhausted) as a \"message.attempt.exhausted\" type or after it's failed four times as a \"message.attempt.failing\" event.
MessageAttemptHeadersOut struct for MessageAttemptHeadersOut.
MessageAttemptOut struct for MessageAttemptOut.
MessageAttemptRecoveredEvent Sent on a successful dispatch after an earlier failure op webhook has already been sent.
MessageAttemptRecoveredEventData Sent when a message delivery has failed (all of the retry attempts have been exhausted) as a \"message.attempt.exhausted\" type or after it's failed four times as a \"message.attempt.failing\" event.
MessageBroadcastIn struct for MessageBroadcastIn.
MessageBroadcastOut struct for MessageBroadcastOut.
MessageEndpointOut struct for MessageEndpointOut.
MessageIn struct for MessageIn.
MessageOut struct for MessageOut.
MessageRawPayloadOut struct for MessageRawPayloadOut.
MessageStreamOut struct for MessageStreamOut.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OAuthPayloadIn struct for OAuthPayloadIn.
OAuthPayloadOut struct for OAuthPayloadOut.
OneTimeTokenIn struct for OneTimeTokenIn.
OneTimeTokenOut struct for OneTimeTokenOut.
RecoverIn struct for RecoverIn.
RecoverOut struct for RecoverOut.
ReplayIn struct for ReplayIn.
ReplayOut struct for ReplayOut.
RetryScheduleInOut struct for RetryScheduleInOut.
RotatedUrlOut struct for RotatedUrlOut.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SettingsIn struct for SettingsIn.
SettingsOut struct for SettingsOut.
TemplateIn struct for TemplateIn.
TemplateOut struct for TemplateOut.
TemplatePatch struct for TemplatePatch.
TemplateUpdate struct for TemplateUpdate.
TransformationSimulateIn struct for TransformationSimulateIn.
TransformationSimulateOut struct for TransformationSimulateOut.
ValidationError Validation errors have their own schema to provide context for invalid requests eg.

# Type aliases

ApplicationApiService ApplicationApi service.
AuthenticationApiService AuthenticationApi service.
BackgroundTasksApiService BackgroundTasksApi service.
BackgroundTaskStatus the model 'BackgroundTaskStatus'.
BackgroundTaskType the model 'BackgroundTaskType'.
BorderRadiusEnum the model 'BorderRadiusEnum'.
BroadcastApiService BroadcastApi service.
EndpointApiService EndpointApi service.
EnvironmentApiService EnvironmentApi service.
EnvironmentSettingsApiService EnvironmentSettingsApi service.
EventsApiService EventsApi service.
EventTypeApiService EventTypeApi service.
HealthApiService HealthApi service.
InboundApiService InboundApi service.
IntegrationApiService IntegrationApi service.
MessageApiService MessageApi service.
MessageAttemptApiService MessageAttemptApi service.
MessageAttemptTriggerType The reason an attempt was made: - Scheduled = 0 - Manual = 1.
MessageStatus The sending status of the message: - Success = 0 - Pending = 1 - Fail = 2 - Sending = 3.
Oauth2AuthMethodIn The method used for authenticating to the OAuth authorization server.
Oauth2GrantTypeIn the model 'Oauth2GrantTypeIn'.
OauthJwsSigningAlgorithm the model 'OauthJwsSigningAlgorithm'.
Ordering Defines the ordering in a listing of results.
ServerConfigurations stores multiple ServerConfiguration items.
StatisticsApiService StatisticsApi service.
StatisticsPeriod Period length for a statistics data point.
StatusCodeClass The different classes of HTTP status codes: - CodeNone = 0 - Code1xx = 100 - Code2xx = 200 - Code3xx = 300 - Code4xx = 400 - Code5xx = 500.
TransformationHttpMethod the model 'TransformationHttpMethod'.
TransformationTemplateApiService TransformationTemplateApi service.
TransformationTemplateKind the model 'TransformationTemplateKind'.