Versions in this module Expand all Collapse all v2 v2.0.1 Nov 7, 2022 v2.0.0 Nov 7, 2022 Changes in this version + var ContextAPIKeys = contextKey("apiKeys") + var ContextAccessToken = contextKey("accesstoken") + var ContextBasicAuth = contextKey("basic") + var ContextHttpSignatureAuth = contextKey("httpsignature") + var ContextOAuth2 = contextKey("token") + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + func CacheExpires(r *http.Response) time.Time + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + PublicSmtpTokensApi *PublicSmtpTokensApiService + SingleSendApi *SingleSendApiService + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) GetConfig() *Configuration + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiArchiveTokenRequest struct + ApiService *PublicSmtpTokensApiService + func (r ApiArchiveTokenRequest) Execute() (*http.Response, error) + type ApiCreateTokenRequest struct + ApiService *PublicSmtpTokensApiService + func (r ApiCreateTokenRequest) Execute() (*SmtpApiTokenView, *http.Response, error) + func (r ApiCreateTokenRequest) SmtpApiTokenRequestEgg(smtpApiTokenRequestEgg SmtpApiTokenRequestEgg) ApiCreateTokenRequest + type ApiGetTokenByIDRequest struct + ApiService *PublicSmtpTokensApiService + func (r ApiGetTokenByIDRequest) Execute() (*SmtpApiTokenView, *http.Response, error) + type ApiGetTokensPageRequest struct + ApiService *PublicSmtpTokensApiService + func (r ApiGetTokensPageRequest) After(after string) ApiGetTokensPageRequest + func (r ApiGetTokensPageRequest) CampaignName(campaignName string) ApiGetTokensPageRequest + func (r ApiGetTokensPageRequest) EmailCampaignId(emailCampaignId string) ApiGetTokensPageRequest + func (r ApiGetTokensPageRequest) Execute() (*CollectionResponseSmtpApiTokenViewForwardPaging, *http.Response, error) + func (r ApiGetTokensPageRequest) Limit(limit int32) ApiGetTokensPageRequest + type ApiResetPasswordRequest struct + ApiService *PublicSmtpTokensApiService + func (r ApiResetPasswordRequest) Execute() (*SmtpApiTokenView, *http.Response, error) + type ApiSendEmailRequest struct + ApiService *SingleSendApiService + func (r ApiSendEmailRequest) Execute() (*EmailSendStatusView, *http.Response, error) + func (r ApiSendEmailRequest) PublicSingleSendRequestEgg(publicSingleSendRequestEgg PublicSingleSendRequestEgg) ApiSendEmailRequest + type BasicAuth struct + Password string + UserName string + type CollectionResponseSmtpApiTokenViewForwardPaging struct + Paging *ForwardPaging + Results []SmtpApiTokenView + func NewCollectionResponseSmtpApiTokenViewForwardPaging(results []SmtpApiTokenView) *CollectionResponseSmtpApiTokenViewForwardPaging + func NewCollectionResponseSmtpApiTokenViewForwardPagingWithDefaults() *CollectionResponseSmtpApiTokenViewForwardPaging + func (o *CollectionResponseSmtpApiTokenViewForwardPaging) GetPaging() ForwardPaging + func (o *CollectionResponseSmtpApiTokenViewForwardPaging) GetPagingOk() (*ForwardPaging, bool) + func (o *CollectionResponseSmtpApiTokenViewForwardPaging) GetResults() []SmtpApiTokenView + func (o *CollectionResponseSmtpApiTokenViewForwardPaging) GetResultsOk() ([]SmtpApiTokenView, bool) + func (o *CollectionResponseSmtpApiTokenViewForwardPaging) HasPaging() bool + func (o *CollectionResponseSmtpApiTokenViewForwardPaging) SetPaging(v ForwardPaging) + func (o *CollectionResponseSmtpApiTokenViewForwardPaging) SetResults(v []SmtpApiTokenView) + func (o CollectionResponseSmtpApiTokenViewForwardPaging) MarshalJSON() ([]byte, error) + type Configuration struct + Debug bool + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + OperationServers map[string]ServerConfigurations + Scheme string + Servers ServerConfigurations + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error) + func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error) + type EmailSendStatusView struct + CompletedAt *time.Time + EventId *EventIdView + RequestedAt *time.Time + SendResult *string + StartedAt *time.Time + Status string + StatusId string + func NewEmailSendStatusView(statusId string, status string) *EmailSendStatusView + func NewEmailSendStatusViewWithDefaults() *EmailSendStatusView + func (o *EmailSendStatusView) GetCompletedAt() time.Time + func (o *EmailSendStatusView) GetCompletedAtOk() (*time.Time, bool) + func (o *EmailSendStatusView) GetEventId() EventIdView + func (o *EmailSendStatusView) GetEventIdOk() (*EventIdView, bool) + func (o *EmailSendStatusView) GetRequestedAt() time.Time + func (o *EmailSendStatusView) GetRequestedAtOk() (*time.Time, bool) + func (o *EmailSendStatusView) GetSendResult() string + func (o *EmailSendStatusView) GetSendResultOk() (*string, bool) + func (o *EmailSendStatusView) GetStartedAt() time.Time + func (o *EmailSendStatusView) GetStartedAtOk() (*time.Time, bool) + func (o *EmailSendStatusView) GetStatus() string + func (o *EmailSendStatusView) GetStatusId() string + func (o *EmailSendStatusView) GetStatusIdOk() (*string, bool) + func (o *EmailSendStatusView) GetStatusOk() (*string, bool) + func (o *EmailSendStatusView) HasCompletedAt() bool + func (o *EmailSendStatusView) HasEventId() bool + func (o *EmailSendStatusView) HasRequestedAt() bool + func (o *EmailSendStatusView) HasSendResult() bool + func (o *EmailSendStatusView) HasStartedAt() bool + func (o *EmailSendStatusView) SetCompletedAt(v time.Time) + func (o *EmailSendStatusView) SetEventId(v EventIdView) + func (o *EmailSendStatusView) SetRequestedAt(v time.Time) + func (o *EmailSendStatusView) SetSendResult(v string) + func (o *EmailSendStatusView) SetStartedAt(v time.Time) + func (o *EmailSendStatusView) SetStatus(v string) + func (o *EmailSendStatusView) SetStatusId(v string) + func (o EmailSendStatusView) MarshalJSON() ([]byte, error) + type Error struct + Category string + Context *map[string][]string + CorrelationId string + Errors []ErrorDetail + Links *map[string]string + Message string + SubCategory *string + func NewError(message string, correlationId string, category string) *Error + func NewErrorWithDefaults() *Error + func (o *Error) GetCategory() string + func (o *Error) GetCategoryOk() (*string, bool) + func (o *Error) GetContext() map[string][]string + func (o *Error) GetContextOk() (*map[string][]string, bool) + func (o *Error) GetCorrelationId() string + func (o *Error) GetCorrelationIdOk() (*string, bool) + func (o *Error) GetErrors() []ErrorDetail + func (o *Error) GetErrorsOk() ([]ErrorDetail, bool) + func (o *Error) GetLinks() map[string]string + func (o *Error) GetLinksOk() (*map[string]string, bool) + func (o *Error) GetMessage() string + func (o *Error) GetMessageOk() (*string, bool) + func (o *Error) GetSubCategory() string + func (o *Error) GetSubCategoryOk() (*string, bool) + func (o *Error) HasContext() bool + func (o *Error) HasErrors() bool + func (o *Error) HasLinks() bool + func (o *Error) HasSubCategory() bool + func (o *Error) SetCategory(v string) + func (o *Error) SetContext(v map[string][]string) + func (o *Error) SetCorrelationId(v string) + func (o *Error) SetErrors(v []ErrorDetail) + func (o *Error) SetLinks(v map[string]string) + func (o *Error) SetMessage(v string) + func (o *Error) SetSubCategory(v string) + func (o Error) MarshalJSON() ([]byte, error) + type ErrorDetail struct + Code *string + Context *map[string][]string + In *string + Message string + SubCategory *string + func NewErrorDetail(message string) *ErrorDetail + func NewErrorDetailWithDefaults() *ErrorDetail + func (o *ErrorDetail) GetCode() string + func (o *ErrorDetail) GetCodeOk() (*string, bool) + func (o *ErrorDetail) GetContext() map[string][]string + func (o *ErrorDetail) GetContextOk() (*map[string][]string, bool) + func (o *ErrorDetail) GetIn() string + func (o *ErrorDetail) GetInOk() (*string, bool) + func (o *ErrorDetail) GetMessage() string + func (o *ErrorDetail) GetMessageOk() (*string, bool) + func (o *ErrorDetail) GetSubCategory() string + func (o *ErrorDetail) GetSubCategoryOk() (*string, bool) + func (o *ErrorDetail) HasCode() bool + func (o *ErrorDetail) HasContext() bool + func (o *ErrorDetail) HasIn() bool + func (o *ErrorDetail) HasSubCategory() bool + func (o *ErrorDetail) SetCode(v string) + func (o *ErrorDetail) SetContext(v map[string][]string) + func (o *ErrorDetail) SetIn(v string) + func (o *ErrorDetail) SetMessage(v string) + func (o *ErrorDetail) SetSubCategory(v string) + func (o ErrorDetail) MarshalJSON() ([]byte, error) + type EventIdView struct + Created time.Time + Id string + func NewEventIdView(created time.Time, id string) *EventIdView + func NewEventIdViewWithDefaults() *EventIdView + func (o *EventIdView) GetCreated() time.Time + func (o *EventIdView) GetCreatedOk() (*time.Time, bool) + func (o *EventIdView) GetId() string + func (o *EventIdView) GetIdOk() (*string, bool) + func (o *EventIdView) SetCreated(v time.Time) + func (o *EventIdView) SetId(v string) + func (o EventIdView) MarshalJSON() ([]byte, error) + type ForwardPaging struct + Next *NextPage + func NewForwardPaging() *ForwardPaging + func NewForwardPagingWithDefaults() *ForwardPaging + func (o *ForwardPaging) GetNext() NextPage + func (o *ForwardPaging) GetNextOk() (*NextPage, bool) + func (o *ForwardPaging) HasNext() bool + func (o *ForwardPaging) SetNext(v NextPage) + func (o ForwardPaging) MarshalJSON() ([]byte, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type NextPage struct + After string + Link *string + func NewNextPage(after string) *NextPage + func NewNextPageWithDefaults() *NextPage + func (o *NextPage) GetAfter() string + func (o *NextPage) GetAfterOk() (*string, bool) + func (o *NextPage) GetLink() string + func (o *NextPage) GetLinkOk() (*string, bool) + func (o *NextPage) HasLink() bool + func (o *NextPage) SetAfter(v string) + func (o *NextPage) SetLink(v string) + func (o NextPage) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCollectionResponseSmtpApiTokenViewForwardPaging struct + func NewNullableCollectionResponseSmtpApiTokenViewForwardPaging(val *CollectionResponseSmtpApiTokenViewForwardPaging) *NullableCollectionResponseSmtpApiTokenViewForwardPaging + func (v *NullableCollectionResponseSmtpApiTokenViewForwardPaging) Set(val *CollectionResponseSmtpApiTokenViewForwardPaging) + func (v *NullableCollectionResponseSmtpApiTokenViewForwardPaging) UnmarshalJSON(src []byte) error + func (v *NullableCollectionResponseSmtpApiTokenViewForwardPaging) Unset() + func (v NullableCollectionResponseSmtpApiTokenViewForwardPaging) Get() *CollectionResponseSmtpApiTokenViewForwardPaging + func (v NullableCollectionResponseSmtpApiTokenViewForwardPaging) IsSet() bool + func (v NullableCollectionResponseSmtpApiTokenViewForwardPaging) MarshalJSON() ([]byte, error) + type NullableEmailSendStatusView struct + func NewNullableEmailSendStatusView(val *EmailSendStatusView) *NullableEmailSendStatusView + func (v *NullableEmailSendStatusView) Set(val *EmailSendStatusView) + func (v *NullableEmailSendStatusView) UnmarshalJSON(src []byte) error + func (v *NullableEmailSendStatusView) Unset() + func (v NullableEmailSendStatusView) Get() *EmailSendStatusView + func (v NullableEmailSendStatusView) IsSet() bool + func (v NullableEmailSendStatusView) MarshalJSON() ([]byte, error) + type NullableError struct + func NewNullableError(val *Error) *NullableError + func (v *NullableError) Set(val *Error) + func (v *NullableError) UnmarshalJSON(src []byte) error + func (v *NullableError) Unset() + func (v NullableError) Get() *Error + func (v NullableError) IsSet() bool + func (v NullableError) MarshalJSON() ([]byte, error) + type NullableErrorDetail struct + func NewNullableErrorDetail(val *ErrorDetail) *NullableErrorDetail + func (v *NullableErrorDetail) Set(val *ErrorDetail) + func (v *NullableErrorDetail) UnmarshalJSON(src []byte) error + func (v *NullableErrorDetail) Unset() + func (v NullableErrorDetail) Get() *ErrorDetail + func (v NullableErrorDetail) IsSet() bool + func (v NullableErrorDetail) MarshalJSON() ([]byte, error) + type NullableEventIdView struct + func NewNullableEventIdView(val *EventIdView) *NullableEventIdView + func (v *NullableEventIdView) Set(val *EventIdView) + func (v *NullableEventIdView) UnmarshalJSON(src []byte) error + func (v *NullableEventIdView) Unset() + func (v NullableEventIdView) Get() *EventIdView + func (v NullableEventIdView) IsSet() bool + func (v NullableEventIdView) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableForwardPaging struct + func NewNullableForwardPaging(val *ForwardPaging) *NullableForwardPaging + func (v *NullableForwardPaging) Set(val *ForwardPaging) + func (v *NullableForwardPaging) UnmarshalJSON(src []byte) error + func (v *NullableForwardPaging) Unset() + func (v NullableForwardPaging) Get() *ForwardPaging + func (v NullableForwardPaging) IsSet() bool + func (v NullableForwardPaging) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableNextPage struct + func NewNullableNextPage(val *NextPage) *NullableNextPage + func (v *NullableNextPage) Set(val *NextPage) + func (v *NullableNextPage) UnmarshalJSON(src []byte) error + func (v *NullableNextPage) Unset() + func (v NullableNextPage) Get() *NextPage + func (v NullableNextPage) IsSet() bool + func (v NullableNextPage) MarshalJSON() ([]byte, error) + type NullablePublicSingleSendEmail struct + func NewNullablePublicSingleSendEmail(val *PublicSingleSendEmail) *NullablePublicSingleSendEmail + func (v *NullablePublicSingleSendEmail) Set(val *PublicSingleSendEmail) + func (v *NullablePublicSingleSendEmail) UnmarshalJSON(src []byte) error + func (v *NullablePublicSingleSendEmail) Unset() + func (v NullablePublicSingleSendEmail) Get() *PublicSingleSendEmail + func (v NullablePublicSingleSendEmail) IsSet() bool + func (v NullablePublicSingleSendEmail) MarshalJSON() ([]byte, error) + type NullablePublicSingleSendRequestEgg struct + func NewNullablePublicSingleSendRequestEgg(val *PublicSingleSendRequestEgg) *NullablePublicSingleSendRequestEgg + func (v *NullablePublicSingleSendRequestEgg) Set(val *PublicSingleSendRequestEgg) + func (v *NullablePublicSingleSendRequestEgg) UnmarshalJSON(src []byte) error + func (v *NullablePublicSingleSendRequestEgg) Unset() + func (v NullablePublicSingleSendRequestEgg) Get() *PublicSingleSendRequestEgg + func (v NullablePublicSingleSendRequestEgg) IsSet() bool + func (v NullablePublicSingleSendRequestEgg) MarshalJSON() ([]byte, error) + type NullableSmtpApiTokenRequestEgg struct + func NewNullableSmtpApiTokenRequestEgg(val *SmtpApiTokenRequestEgg) *NullableSmtpApiTokenRequestEgg + func (v *NullableSmtpApiTokenRequestEgg) Set(val *SmtpApiTokenRequestEgg) + func (v *NullableSmtpApiTokenRequestEgg) UnmarshalJSON(src []byte) error + func (v *NullableSmtpApiTokenRequestEgg) Unset() + func (v NullableSmtpApiTokenRequestEgg) Get() *SmtpApiTokenRequestEgg + func (v NullableSmtpApiTokenRequestEgg) IsSet() bool + func (v NullableSmtpApiTokenRequestEgg) MarshalJSON() ([]byte, error) + type NullableSmtpApiTokenView struct + func NewNullableSmtpApiTokenView(val *SmtpApiTokenView) *NullableSmtpApiTokenView + func (v *NullableSmtpApiTokenView) Set(val *SmtpApiTokenView) + func (v *NullableSmtpApiTokenView) UnmarshalJSON(src []byte) error + func (v *NullableSmtpApiTokenView) Unset() + func (v NullableSmtpApiTokenView) Get() *SmtpApiTokenView + func (v NullableSmtpApiTokenView) IsSet() bool + func (v NullableSmtpApiTokenView) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type PublicSingleSendEmail struct + Bcc []string + Cc []string + From *string + ReplyTo []string + SendId *string + To string + func NewPublicSingleSendEmail(to string) *PublicSingleSendEmail + func NewPublicSingleSendEmailWithDefaults() *PublicSingleSendEmail + func (o *PublicSingleSendEmail) GetBcc() []string + func (o *PublicSingleSendEmail) GetBccOk() ([]string, bool) + func (o *PublicSingleSendEmail) GetCc() []string + func (o *PublicSingleSendEmail) GetCcOk() ([]string, bool) + func (o *PublicSingleSendEmail) GetFrom() string + func (o *PublicSingleSendEmail) GetFromOk() (*string, bool) + func (o *PublicSingleSendEmail) GetReplyTo() []string + func (o *PublicSingleSendEmail) GetReplyToOk() ([]string, bool) + func (o *PublicSingleSendEmail) GetSendId() string + func (o *PublicSingleSendEmail) GetSendIdOk() (*string, bool) + func (o *PublicSingleSendEmail) GetTo() string + func (o *PublicSingleSendEmail) GetToOk() (*string, bool) + func (o *PublicSingleSendEmail) HasBcc() bool + func (o *PublicSingleSendEmail) HasCc() bool + func (o *PublicSingleSendEmail) HasFrom() bool + func (o *PublicSingleSendEmail) HasReplyTo() bool + func (o *PublicSingleSendEmail) HasSendId() bool + func (o *PublicSingleSendEmail) SetBcc(v []string) + func (o *PublicSingleSendEmail) SetCc(v []string) + func (o *PublicSingleSendEmail) SetFrom(v string) + func (o *PublicSingleSendEmail) SetReplyTo(v []string) + func (o *PublicSingleSendEmail) SetSendId(v string) + func (o *PublicSingleSendEmail) SetTo(v string) + func (o PublicSingleSendEmail) MarshalJSON() ([]byte, error) + type PublicSingleSendRequestEgg struct + ContactProperties *map[string]string + CustomProperties map[string]map[string]interface{} + EmailId int32 + Message PublicSingleSendEmail + func NewPublicSingleSendRequestEgg(emailId int32, message PublicSingleSendEmail) *PublicSingleSendRequestEgg + func NewPublicSingleSendRequestEggWithDefaults() *PublicSingleSendRequestEgg + func (o *PublicSingleSendRequestEgg) GetContactProperties() map[string]string + func (o *PublicSingleSendRequestEgg) GetContactPropertiesOk() (*map[string]string, bool) + func (o *PublicSingleSendRequestEgg) GetCustomProperties() map[string]map[string]interface{} + func (o *PublicSingleSendRequestEgg) GetCustomPropertiesOk() (map[string]map[string]interface{}, bool) + func (o *PublicSingleSendRequestEgg) GetEmailId() int32 + func (o *PublicSingleSendRequestEgg) GetEmailIdOk() (*int32, bool) + func (o *PublicSingleSendRequestEgg) GetMessage() PublicSingleSendEmail + func (o *PublicSingleSendRequestEgg) GetMessageOk() (*PublicSingleSendEmail, bool) + func (o *PublicSingleSendRequestEgg) HasContactProperties() bool + func (o *PublicSingleSendRequestEgg) HasCustomProperties() bool + func (o *PublicSingleSendRequestEgg) SetContactProperties(v map[string]string) + func (o *PublicSingleSendRequestEgg) SetCustomProperties(v map[string]map[string]interface{}) + func (o *PublicSingleSendRequestEgg) SetEmailId(v int32) + func (o *PublicSingleSendRequestEgg) SetMessage(v PublicSingleSendEmail) + func (o PublicSingleSendRequestEgg) MarshalJSON() ([]byte, error) + type PublicSmtpTokensApiService service + func (a *PublicSmtpTokensApiService) ArchiveToken(ctx context.Context, tokenId string) ApiArchiveTokenRequest + func (a *PublicSmtpTokensApiService) ArchiveTokenExecute(r ApiArchiveTokenRequest) (*http.Response, error) + func (a *PublicSmtpTokensApiService) CreateToken(ctx context.Context) ApiCreateTokenRequest + func (a *PublicSmtpTokensApiService) CreateTokenExecute(r ApiCreateTokenRequest) (*SmtpApiTokenView, *http.Response, error) + func (a *PublicSmtpTokensApiService) GetTokenByID(ctx context.Context, tokenId string) ApiGetTokenByIDRequest + func (a *PublicSmtpTokensApiService) GetTokenByIDExecute(r ApiGetTokenByIDRequest) (*SmtpApiTokenView, *http.Response, error) + func (a *PublicSmtpTokensApiService) GetTokensPage(ctx context.Context) ApiGetTokensPageRequest + func (a *PublicSmtpTokensApiService) GetTokensPageExecute(r ApiGetTokensPageRequest) (*CollectionResponseSmtpApiTokenViewForwardPaging, *http.Response, error) + func (a *PublicSmtpTokensApiService) ResetPassword(ctx context.Context, tokenId string) ApiResetPasswordRequest + func (a *PublicSmtpTokensApiService) ResetPasswordExecute(r ApiResetPasswordRequest) (*SmtpApiTokenView, *http.Response, error) + type ServerConfiguration struct + Description string + URL string + Variables map[string]ServerVariable + type ServerConfigurations []ServerConfiguration + func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error) + type ServerVariable struct + DefaultValue string + Description string + EnumValues []string + type SingleSendApiService service + func (a *SingleSendApiService) SendEmail(ctx context.Context) ApiSendEmailRequest + func (a *SingleSendApiService) SendEmailExecute(r ApiSendEmailRequest) (*EmailSendStatusView, *http.Response, error) + type SmtpApiTokenRequestEgg struct + CampaignName string + CreateContact bool + func NewSmtpApiTokenRequestEgg(createContact bool, campaignName string) *SmtpApiTokenRequestEgg + func NewSmtpApiTokenRequestEggWithDefaults() *SmtpApiTokenRequestEgg + func (o *SmtpApiTokenRequestEgg) GetCampaignName() string + func (o *SmtpApiTokenRequestEgg) GetCampaignNameOk() (*string, bool) + func (o *SmtpApiTokenRequestEgg) GetCreateContact() bool + func (o *SmtpApiTokenRequestEgg) GetCreateContactOk() (*bool, bool) + func (o *SmtpApiTokenRequestEgg) SetCampaignName(v string) + func (o *SmtpApiTokenRequestEgg) SetCreateContact(v bool) + func (o SmtpApiTokenRequestEgg) MarshalJSON() ([]byte, error) + type SmtpApiTokenView struct + CampaignName string + CreateContact bool + CreatedAt time.Time + CreatedBy string + EmailCampaignId string + Id string + Password *string + func NewSmtpApiTokenView(id string, createdBy string, emailCampaignId string, createdAt time.Time, ...) *SmtpApiTokenView + func NewSmtpApiTokenViewWithDefaults() *SmtpApiTokenView + func (o *SmtpApiTokenView) GetCampaignName() string + func (o *SmtpApiTokenView) GetCampaignNameOk() (*string, bool) + func (o *SmtpApiTokenView) GetCreateContact() bool + func (o *SmtpApiTokenView) GetCreateContactOk() (*bool, bool) + func (o *SmtpApiTokenView) GetCreatedAt() time.Time + func (o *SmtpApiTokenView) GetCreatedAtOk() (*time.Time, bool) + func (o *SmtpApiTokenView) GetCreatedBy() string + func (o *SmtpApiTokenView) GetCreatedByOk() (*string, bool) + func (o *SmtpApiTokenView) GetEmailCampaignId() string + func (o *SmtpApiTokenView) GetEmailCampaignIdOk() (*string, bool) + func (o *SmtpApiTokenView) GetId() string + func (o *SmtpApiTokenView) GetIdOk() (*string, bool) + func (o *SmtpApiTokenView) GetPassword() string + func (o *SmtpApiTokenView) GetPasswordOk() (*string, bool) + func (o *SmtpApiTokenView) HasPassword() bool + func (o *SmtpApiTokenView) SetCampaignName(v string) + func (o *SmtpApiTokenView) SetCreateContact(v bool) + func (o *SmtpApiTokenView) SetCreatedAt(v time.Time) + func (o *SmtpApiTokenView) SetCreatedBy(v string) + func (o *SmtpApiTokenView) SetEmailCampaignId(v string) + func (o *SmtpApiTokenView) SetId(v string) + func (o *SmtpApiTokenView) SetPassword(v string) + func (o SmtpApiTokenView) MarshalJSON() ([]byte, error)