Versions in this module Expand all Collapse all v0 v0.4.0 Jan 27, 2025 Changes in this version + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + 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 + EmailAPI *EmailAPIService + 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 ApiSendEmailRequest struct + ApiService *EmailAPIService + func (r ApiSendEmailRequest) Execute() (*SendEmailResponse, *http.Response, error) + func (r ApiSendEmailRequest) SendEmailRequest(sendEmailRequest SendEmailRequest) ApiSendEmailRequest + type BasicAuth struct + Password string + UserName string + 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 EmailAPIService service + func (a *EmailAPIService) SendEmail(ctx context.Context) ApiSendEmailRequest + func (a *EmailAPIService) SendEmailExecute(r ApiSendEmailRequest) (*SendEmailResponse, *http.Response, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type MappedNullable interface + ToMap func() (map[string]interface{}, 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 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 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 NullableSendEmailRequest struct + func NewNullableSendEmailRequest(val *SendEmailRequest) *NullableSendEmailRequest + func (v *NullableSendEmailRequest) Set(val *SendEmailRequest) + func (v *NullableSendEmailRequest) UnmarshalJSON(src []byte) error + func (v *NullableSendEmailRequest) Unset() + func (v NullableSendEmailRequest) Get() *SendEmailRequest + func (v NullableSendEmailRequest) IsSet() bool + func (v NullableSendEmailRequest) MarshalJSON() ([]byte, error) + type NullableSendEmailResponse struct + func NewNullableSendEmailResponse(val *SendEmailResponse) *NullableSendEmailResponse + func (v *NullableSendEmailResponse) Set(val *SendEmailResponse) + func (v *NullableSendEmailResponse) UnmarshalJSON(src []byte) error + func (v *NullableSendEmailResponse) Unset() + func (v NullableSendEmailResponse) Get() *SendEmailResponse + func (v NullableSendEmailResponse) IsSet() bool + func (v NullableSendEmailResponse) 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 SendEmailRequest struct + Bcc *string + Body string + Cc *string + From string + Subject string + To string + func NewSendEmailRequest(to string, from string, subject string, body string) *SendEmailRequest + func NewSendEmailRequestWithDefaults() *SendEmailRequest + func (o *SendEmailRequest) GetBcc() string + func (o *SendEmailRequest) GetBccOk() (*string, bool) + func (o *SendEmailRequest) GetBody() string + func (o *SendEmailRequest) GetBodyOk() (*string, bool) + func (o *SendEmailRequest) GetCc() string + func (o *SendEmailRequest) GetCcOk() (*string, bool) + func (o *SendEmailRequest) GetFrom() string + func (o *SendEmailRequest) GetFromOk() (*string, bool) + func (o *SendEmailRequest) GetSubject() string + func (o *SendEmailRequest) GetSubjectOk() (*string, bool) + func (o *SendEmailRequest) GetTo() string + func (o *SendEmailRequest) GetToOk() (*string, bool) + func (o *SendEmailRequest) HasBcc() bool + func (o *SendEmailRequest) HasCc() bool + func (o *SendEmailRequest) SetBcc(v string) + func (o *SendEmailRequest) SetBody(v string) + func (o *SendEmailRequest) SetCc(v string) + func (o *SendEmailRequest) SetFrom(v string) + func (o *SendEmailRequest) SetSubject(v string) + func (o *SendEmailRequest) SetTo(v string) + func (o *SendEmailRequest) UnmarshalJSON(data []byte) (err error) + func (o SendEmailRequest) MarshalJSON() ([]byte, error) + func (o SendEmailRequest) ToMap() (map[string]interface{}, error) + type SendEmailResponse struct + ErrorCode string + Msg string + func NewSendEmailResponse(errorCode string, msg string) *SendEmailResponse + func NewSendEmailResponseWithDefaults() *SendEmailResponse + func (o *SendEmailResponse) GetErrorCode() string + func (o *SendEmailResponse) GetErrorCodeOk() (*string, bool) + func (o *SendEmailResponse) GetMsg() string + func (o *SendEmailResponse) GetMsgOk() (*string, bool) + func (o *SendEmailResponse) SetErrorCode(v string) + func (o *SendEmailResponse) SetMsg(v string) + func (o *SendEmailResponse) UnmarshalJSON(data []byte) (err error) + func (o SendEmailResponse) MarshalJSON() ([]byte, error) + func (o SendEmailResponse) ToMap() (map[string]interface{}, 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