greetings

package
v0.0.0-...-853dd42 Latest Latest
Warning

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

Go to latest
Published: Jul 8, 2024 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API interface {
	/*
	   DeleteGreeting deletes a greeting with the given greeting Id
	*/
	DeleteGreeting(ctx context.Context, params *DeleteGreetingParams) error
	/*
	   GetGreeting gets a greeting with the given greeting Id
	*/
	GetGreeting(ctx context.Context, params *GetGreetingParams) (*GetGreetingOK, error)
	/*
	   GetGreetingMedia gets media playback URI for this greeting
	*/
	GetGreetingMedia(ctx context.Context, params *GetGreetingMediaParams) (*GetGreetingMediaOK, error)
	/*
	   GetGreetings gets an organization s greetings
	*/
	GetGreetings(ctx context.Context, params *GetGreetingsParams) (*GetGreetingsOK, error)
	/*
	   GetGreetingsDefaults gets an organization s default greeting list
	*/
	GetGreetingsDefaults(ctx context.Context, params *GetGreetingsDefaultsParams) (*GetGreetingsDefaultsOK, error)
	/*
	   GetGroupGreetings gets a list of the group s greetings
	*/
	GetGroupGreetings(ctx context.Context, params *GetGroupGreetingsParams) (*GetGroupGreetingsOK, error)
	/*
	   GetGroupGreetingsDefaults grabs the list of default greetings given a group s ID
	*/
	GetGroupGreetingsDefaults(ctx context.Context, params *GetGroupGreetingsDefaultsParams) (*GetGroupGreetingsDefaultsOK, error)
	/*
	   GetUserGreetings gets a list of the user s greetings
	*/
	GetUserGreetings(ctx context.Context, params *GetUserGreetingsParams) (*GetUserGreetingsOK, error)
	/*
	   GetUserGreetingsDefaults grabs the list of default greetings given a user s ID
	*/
	GetUserGreetingsDefaults(ctx context.Context, params *GetUserGreetingsDefaultsParams) (*GetUserGreetingsDefaultsOK, error)
	/*
	   PostGreetings creates a greeting for an organization
	*/
	PostGreetings(ctx context.Context, params *PostGreetingsParams) (*PostGreetingsOK, error)
	/*
	   PostGroupGreetings creates a greeting for a group
	*/
	PostGroupGreetings(ctx context.Context, params *PostGroupGreetingsParams) (*PostGroupGreetingsOK, error)
	/*
	   PostUserGreetings creates a greeting for a user
	*/
	PostUserGreetings(ctx context.Context, params *PostUserGreetingsParams) (*PostUserGreetingsOK, error)
	/*
	   PutGreeting updates the greeting with the given greeting Id
	*/
	PutGreeting(ctx context.Context, params *PutGreetingParams) (*PutGreetingOK, error)
	/*
	   PutGreetingsDefaults updates an organization s default greeting list
	*/
	PutGreetingsDefaults(ctx context.Context, params *PutGreetingsDefaultsParams) (*PutGreetingsDefaultsOK, error)
	/*
	   PutGroupGreetingsDefaults updates the default greeting list of the specified group
	*/
	PutGroupGreetingsDefaults(ctx context.Context, params *PutGroupGreetingsDefaultsParams) (*PutGroupGreetingsDefaultsOK, error)
	/*
	   PutUserGreetingsDefaults updates the default greeting list of the specified user
	*/
	PutUserGreetingsDefaults(ctx context.Context, params *PutUserGreetingsDefaultsParams) (*PutUserGreetingsDefaultsOK, error)
}

API is the interface of the greetings client

type Client

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

Client for greetings API

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry, authInfo runtime.ClientAuthInfoWriter) *Client

New creates a new greetings API client.

func (*Client) DeleteGreeting

func (a *Client) DeleteGreeting(ctx context.Context, params *DeleteGreetingParams) error

DeleteGreeting deletes a greeting with the given greeting Id

func (*Client) GetGreeting

func (a *Client) GetGreeting(ctx context.Context, params *GetGreetingParams) (*GetGreetingOK, error)

GetGreeting gets a greeting with the given greeting Id

func (*Client) GetGreetingMedia

func (a *Client) GetGreetingMedia(ctx context.Context, params *GetGreetingMediaParams) (*GetGreetingMediaOK, error)

GetGreetingMedia gets media playback URI for this greeting

func (*Client) GetGreetings

func (a *Client) GetGreetings(ctx context.Context, params *GetGreetingsParams) (*GetGreetingsOK, error)

GetGreetings gets an organization s greetings

func (*Client) GetGreetingsDefaults

func (a *Client) GetGreetingsDefaults(ctx context.Context, params *GetGreetingsDefaultsParams) (*GetGreetingsDefaultsOK, error)

GetGreetingsDefaults gets an organization s default greeting list

func (*Client) GetGroupGreetings

func (a *Client) GetGroupGreetings(ctx context.Context, params *GetGroupGreetingsParams) (*GetGroupGreetingsOK, error)

GetGroupGreetings gets a list of the group s greetings

func (*Client) GetGroupGreetingsDefaults

func (a *Client) GetGroupGreetingsDefaults(ctx context.Context, params *GetGroupGreetingsDefaultsParams) (*GetGroupGreetingsDefaultsOK, error)

GetGroupGreetingsDefaults grabs the list of default greetings given a group s ID

func (*Client) GetUserGreetings

func (a *Client) GetUserGreetings(ctx context.Context, params *GetUserGreetingsParams) (*GetUserGreetingsOK, error)

GetUserGreetings gets a list of the user s greetings

func (*Client) GetUserGreetingsDefaults

func (a *Client) GetUserGreetingsDefaults(ctx context.Context, params *GetUserGreetingsDefaultsParams) (*GetUserGreetingsDefaultsOK, error)

GetUserGreetingsDefaults grabs the list of default greetings given a user s ID

func (*Client) PostGreetings

func (a *Client) PostGreetings(ctx context.Context, params *PostGreetingsParams) (*PostGreetingsOK, error)

PostGreetings creates a greeting for an organization

func (*Client) PostGroupGreetings

func (a *Client) PostGroupGreetings(ctx context.Context, params *PostGroupGreetingsParams) (*PostGroupGreetingsOK, error)

PostGroupGreetings creates a greeting for a group

func (*Client) PostUserGreetings

func (a *Client) PostUserGreetings(ctx context.Context, params *PostUserGreetingsParams) (*PostUserGreetingsOK, error)

PostUserGreetings creates a greeting for a user

func (*Client) PutGreeting

func (a *Client) PutGreeting(ctx context.Context, params *PutGreetingParams) (*PutGreetingOK, error)

PutGreeting updates the greeting with the given greeting Id

func (*Client) PutGreetingsDefaults

func (a *Client) PutGreetingsDefaults(ctx context.Context, params *PutGreetingsDefaultsParams) (*PutGreetingsDefaultsOK, error)

PutGreetingsDefaults updates an organization s default greeting list

func (*Client) PutGroupGreetingsDefaults

func (a *Client) PutGroupGreetingsDefaults(ctx context.Context, params *PutGroupGreetingsDefaultsParams) (*PutGroupGreetingsDefaultsOK, error)

PutGroupGreetingsDefaults updates the default greeting list of the specified group

func (*Client) PutUserGreetingsDefaults

func (a *Client) PutUserGreetingsDefaults(ctx context.Context, params *PutUserGreetingsDefaultsParams) (*PutUserGreetingsDefaultsOK, error)

PutUserGreetingsDefaults updates the default greeting list of the specified user

type DeleteGreetingBadRequest

type DeleteGreetingBadRequest struct {
	Payload *models.ErrorBody
}

DeleteGreetingBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewDeleteGreetingBadRequest

func NewDeleteGreetingBadRequest() *DeleteGreetingBadRequest

NewDeleteGreetingBadRequest creates a DeleteGreetingBadRequest with default headers values

func (*DeleteGreetingBadRequest) Error

func (o *DeleteGreetingBadRequest) Error() string

func (*DeleteGreetingBadRequest) GetPayload

func (o *DeleteGreetingBadRequest) GetPayload() *models.ErrorBody

func (*DeleteGreetingBadRequest) IsClientError

func (o *DeleteGreetingBadRequest) IsClientError() bool

IsClientError returns true when this delete greeting bad request response has a 4xx status code

func (*DeleteGreetingBadRequest) IsCode

func (o *DeleteGreetingBadRequest) IsCode(code int) bool

IsCode returns true when this delete greeting bad request response a status code equal to that given

func (*DeleteGreetingBadRequest) IsRedirect

func (o *DeleteGreetingBadRequest) IsRedirect() bool

IsRedirect returns true when this delete greeting bad request response has a 3xx status code

func (*DeleteGreetingBadRequest) IsServerError

func (o *DeleteGreetingBadRequest) IsServerError() bool

IsServerError returns true when this delete greeting bad request response has a 5xx status code

func (*DeleteGreetingBadRequest) IsSuccess

func (o *DeleteGreetingBadRequest) IsSuccess() bool

IsSuccess returns true when this delete greeting bad request response has a 2xx status code

func (*DeleteGreetingBadRequest) String

func (o *DeleteGreetingBadRequest) String() string

type DeleteGreetingDefault

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

DeleteGreetingDefault describes a response with status code -1, with default header values.

successful operation

func NewDeleteGreetingDefault

func NewDeleteGreetingDefault(code int) *DeleteGreetingDefault

NewDeleteGreetingDefault creates a DeleteGreetingDefault with default headers values

func (*DeleteGreetingDefault) Code

func (o *DeleteGreetingDefault) Code() int

Code gets the status code for the delete greeting default response

func (*DeleteGreetingDefault) Error

func (o *DeleteGreetingDefault) Error() string

func (*DeleteGreetingDefault) IsClientError

func (o *DeleteGreetingDefault) IsClientError() bool

IsClientError returns true when this delete greeting default response has a 4xx status code

func (*DeleteGreetingDefault) IsCode

func (o *DeleteGreetingDefault) IsCode(code int) bool

IsCode returns true when this delete greeting default response a status code equal to that given

func (*DeleteGreetingDefault) IsRedirect

func (o *DeleteGreetingDefault) IsRedirect() bool

IsRedirect returns true when this delete greeting default response has a 3xx status code

func (*DeleteGreetingDefault) IsServerError

func (o *DeleteGreetingDefault) IsServerError() bool

IsServerError returns true when this delete greeting default response has a 5xx status code

func (*DeleteGreetingDefault) IsSuccess

func (o *DeleteGreetingDefault) IsSuccess() bool

IsSuccess returns true when this delete greeting default response has a 2xx status code

func (*DeleteGreetingDefault) String

func (o *DeleteGreetingDefault) String() string

type DeleteGreetingForbidden

type DeleteGreetingForbidden struct {
	Payload *models.ErrorBody
}

DeleteGreetingForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewDeleteGreetingForbidden

func NewDeleteGreetingForbidden() *DeleteGreetingForbidden

NewDeleteGreetingForbidden creates a DeleteGreetingForbidden with default headers values

func (*DeleteGreetingForbidden) Error

func (o *DeleteGreetingForbidden) Error() string

func (*DeleteGreetingForbidden) GetPayload

func (o *DeleteGreetingForbidden) GetPayload() *models.ErrorBody

func (*DeleteGreetingForbidden) IsClientError

func (o *DeleteGreetingForbidden) IsClientError() bool

IsClientError returns true when this delete greeting forbidden response has a 4xx status code

func (*DeleteGreetingForbidden) IsCode

func (o *DeleteGreetingForbidden) IsCode(code int) bool

IsCode returns true when this delete greeting forbidden response a status code equal to that given

func (*DeleteGreetingForbidden) IsRedirect

func (o *DeleteGreetingForbidden) IsRedirect() bool

IsRedirect returns true when this delete greeting forbidden response has a 3xx status code

func (*DeleteGreetingForbidden) IsServerError

func (o *DeleteGreetingForbidden) IsServerError() bool

IsServerError returns true when this delete greeting forbidden response has a 5xx status code

func (*DeleteGreetingForbidden) IsSuccess

func (o *DeleteGreetingForbidden) IsSuccess() bool

IsSuccess returns true when this delete greeting forbidden response has a 2xx status code

func (*DeleteGreetingForbidden) String

func (o *DeleteGreetingForbidden) String() string

type DeleteGreetingGatewayTimeout

type DeleteGreetingGatewayTimeout struct {
	Payload *models.ErrorBody
}

DeleteGreetingGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewDeleteGreetingGatewayTimeout

func NewDeleteGreetingGatewayTimeout() *DeleteGreetingGatewayTimeout

NewDeleteGreetingGatewayTimeout creates a DeleteGreetingGatewayTimeout with default headers values

func (*DeleteGreetingGatewayTimeout) Error

func (*DeleteGreetingGatewayTimeout) GetPayload

func (*DeleteGreetingGatewayTimeout) IsClientError

func (o *DeleteGreetingGatewayTimeout) IsClientError() bool

IsClientError returns true when this delete greeting gateway timeout response has a 4xx status code

func (*DeleteGreetingGatewayTimeout) IsCode

func (o *DeleteGreetingGatewayTimeout) IsCode(code int) bool

IsCode returns true when this delete greeting gateway timeout response a status code equal to that given

func (*DeleteGreetingGatewayTimeout) IsRedirect

func (o *DeleteGreetingGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this delete greeting gateway timeout response has a 3xx status code

func (*DeleteGreetingGatewayTimeout) IsServerError

func (o *DeleteGreetingGatewayTimeout) IsServerError() bool

IsServerError returns true when this delete greeting gateway timeout response has a 5xx status code

func (*DeleteGreetingGatewayTimeout) IsSuccess

func (o *DeleteGreetingGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this delete greeting gateway timeout response has a 2xx status code

func (*DeleteGreetingGatewayTimeout) String

type DeleteGreetingInternalServerError

type DeleteGreetingInternalServerError struct {
	Payload *models.ErrorBody
}

DeleteGreetingInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewDeleteGreetingInternalServerError

func NewDeleteGreetingInternalServerError() *DeleteGreetingInternalServerError

NewDeleteGreetingInternalServerError creates a DeleteGreetingInternalServerError with default headers values

func (*DeleteGreetingInternalServerError) Error

func (*DeleteGreetingInternalServerError) GetPayload

func (*DeleteGreetingInternalServerError) IsClientError

func (o *DeleteGreetingInternalServerError) IsClientError() bool

IsClientError returns true when this delete greeting internal server error response has a 4xx status code

func (*DeleteGreetingInternalServerError) IsCode

func (o *DeleteGreetingInternalServerError) IsCode(code int) bool

IsCode returns true when this delete greeting internal server error response a status code equal to that given

func (*DeleteGreetingInternalServerError) IsRedirect

func (o *DeleteGreetingInternalServerError) IsRedirect() bool

IsRedirect returns true when this delete greeting internal server error response has a 3xx status code

func (*DeleteGreetingInternalServerError) IsServerError

func (o *DeleteGreetingInternalServerError) IsServerError() bool

IsServerError returns true when this delete greeting internal server error response has a 5xx status code

func (*DeleteGreetingInternalServerError) IsSuccess

func (o *DeleteGreetingInternalServerError) IsSuccess() bool

IsSuccess returns true when this delete greeting internal server error response has a 2xx status code

func (*DeleteGreetingInternalServerError) String

type DeleteGreetingNotFound

type DeleteGreetingNotFound struct {
	Payload *models.ErrorBody
}

DeleteGreetingNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewDeleteGreetingNotFound

func NewDeleteGreetingNotFound() *DeleteGreetingNotFound

NewDeleteGreetingNotFound creates a DeleteGreetingNotFound with default headers values

func (*DeleteGreetingNotFound) Error

func (o *DeleteGreetingNotFound) Error() string

func (*DeleteGreetingNotFound) GetPayload

func (o *DeleteGreetingNotFound) GetPayload() *models.ErrorBody

func (*DeleteGreetingNotFound) IsClientError

func (o *DeleteGreetingNotFound) IsClientError() bool

IsClientError returns true when this delete greeting not found response has a 4xx status code

func (*DeleteGreetingNotFound) IsCode

func (o *DeleteGreetingNotFound) IsCode(code int) bool

IsCode returns true when this delete greeting not found response a status code equal to that given

func (*DeleteGreetingNotFound) IsRedirect

func (o *DeleteGreetingNotFound) IsRedirect() bool

IsRedirect returns true when this delete greeting not found response has a 3xx status code

func (*DeleteGreetingNotFound) IsServerError

func (o *DeleteGreetingNotFound) IsServerError() bool

IsServerError returns true when this delete greeting not found response has a 5xx status code

func (*DeleteGreetingNotFound) IsSuccess

func (o *DeleteGreetingNotFound) IsSuccess() bool

IsSuccess returns true when this delete greeting not found response has a 2xx status code

func (*DeleteGreetingNotFound) String

func (o *DeleteGreetingNotFound) String() string

type DeleteGreetingParams

type DeleteGreetingParams struct {

	/* GreetingID.

	   Greeting ID
	*/
	GreetingID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DeleteGreetingParams contains all the parameters to send to the API endpoint

for the delete greeting operation.

Typically these are written to a http.Request.

func NewDeleteGreetingParams

func NewDeleteGreetingParams() *DeleteGreetingParams

NewDeleteGreetingParams creates a new DeleteGreetingParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteGreetingParamsWithContext

func NewDeleteGreetingParamsWithContext(ctx context.Context) *DeleteGreetingParams

NewDeleteGreetingParamsWithContext creates a new DeleteGreetingParams object with the ability to set a context for a request.

func NewDeleteGreetingParamsWithHTTPClient

func NewDeleteGreetingParamsWithHTTPClient(client *http.Client) *DeleteGreetingParams

NewDeleteGreetingParamsWithHTTPClient creates a new DeleteGreetingParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteGreetingParamsWithTimeout

func NewDeleteGreetingParamsWithTimeout(timeout time.Duration) *DeleteGreetingParams

NewDeleteGreetingParamsWithTimeout creates a new DeleteGreetingParams object with the ability to set a timeout on a request.

func (*DeleteGreetingParams) SetContext

func (o *DeleteGreetingParams) SetContext(ctx context.Context)

SetContext adds the context to the delete greeting params

func (*DeleteGreetingParams) SetDefaults

func (o *DeleteGreetingParams) SetDefaults()

SetDefaults hydrates default values in the delete greeting params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteGreetingParams) SetGreetingID

func (o *DeleteGreetingParams) SetGreetingID(greetingID string)

SetGreetingID adds the greetingId to the delete greeting params

func (*DeleteGreetingParams) SetHTTPClient

func (o *DeleteGreetingParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the delete greeting params

func (*DeleteGreetingParams) SetTimeout

func (o *DeleteGreetingParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the delete greeting params

func (*DeleteGreetingParams) WithContext

WithContext adds the context to the delete greeting params

func (*DeleteGreetingParams) WithDefaults

func (o *DeleteGreetingParams) WithDefaults() *DeleteGreetingParams

WithDefaults hydrates default values in the delete greeting params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteGreetingParams) WithGreetingID

func (o *DeleteGreetingParams) WithGreetingID(greetingID string) *DeleteGreetingParams

WithGreetingID adds the greetingID to the delete greeting params

func (*DeleteGreetingParams) WithHTTPClient

func (o *DeleteGreetingParams) WithHTTPClient(client *http.Client) *DeleteGreetingParams

WithHTTPClient adds the HTTPClient to the delete greeting params

func (*DeleteGreetingParams) WithTimeout

func (o *DeleteGreetingParams) WithTimeout(timeout time.Duration) *DeleteGreetingParams

WithTimeout adds the timeout to the delete greeting params

func (*DeleteGreetingParams) WriteToRequest

func (o *DeleteGreetingParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type DeleteGreetingReader

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

DeleteGreetingReader is a Reader for the DeleteGreeting structure.

func (*DeleteGreetingReader) ReadResponse

func (o *DeleteGreetingReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type DeleteGreetingRequestEntityTooLarge

type DeleteGreetingRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

DeleteGreetingRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewDeleteGreetingRequestEntityTooLarge

func NewDeleteGreetingRequestEntityTooLarge() *DeleteGreetingRequestEntityTooLarge

NewDeleteGreetingRequestEntityTooLarge creates a DeleteGreetingRequestEntityTooLarge with default headers values

func (*DeleteGreetingRequestEntityTooLarge) Error

func (*DeleteGreetingRequestEntityTooLarge) GetPayload

func (*DeleteGreetingRequestEntityTooLarge) IsClientError

func (o *DeleteGreetingRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this delete greeting request entity too large response has a 4xx status code

func (*DeleteGreetingRequestEntityTooLarge) IsCode

IsCode returns true when this delete greeting request entity too large response a status code equal to that given

func (*DeleteGreetingRequestEntityTooLarge) IsRedirect

func (o *DeleteGreetingRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this delete greeting request entity too large response has a 3xx status code

func (*DeleteGreetingRequestEntityTooLarge) IsServerError

func (o *DeleteGreetingRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this delete greeting request entity too large response has a 5xx status code

func (*DeleteGreetingRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this delete greeting request entity too large response has a 2xx status code

func (*DeleteGreetingRequestEntityTooLarge) String

type DeleteGreetingRequestTimeout

type DeleteGreetingRequestTimeout struct {
	Payload *models.ErrorBody
}

DeleteGreetingRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewDeleteGreetingRequestTimeout

func NewDeleteGreetingRequestTimeout() *DeleteGreetingRequestTimeout

NewDeleteGreetingRequestTimeout creates a DeleteGreetingRequestTimeout with default headers values

func (*DeleteGreetingRequestTimeout) Error

func (*DeleteGreetingRequestTimeout) GetPayload

func (*DeleteGreetingRequestTimeout) IsClientError

func (o *DeleteGreetingRequestTimeout) IsClientError() bool

IsClientError returns true when this delete greeting request timeout response has a 4xx status code

func (*DeleteGreetingRequestTimeout) IsCode

func (o *DeleteGreetingRequestTimeout) IsCode(code int) bool

IsCode returns true when this delete greeting request timeout response a status code equal to that given

func (*DeleteGreetingRequestTimeout) IsRedirect

func (o *DeleteGreetingRequestTimeout) IsRedirect() bool

IsRedirect returns true when this delete greeting request timeout response has a 3xx status code

func (*DeleteGreetingRequestTimeout) IsServerError

func (o *DeleteGreetingRequestTimeout) IsServerError() bool

IsServerError returns true when this delete greeting request timeout response has a 5xx status code

func (*DeleteGreetingRequestTimeout) IsSuccess

func (o *DeleteGreetingRequestTimeout) IsSuccess() bool

IsSuccess returns true when this delete greeting request timeout response has a 2xx status code

func (*DeleteGreetingRequestTimeout) String

type DeleteGreetingServiceUnavailable

type DeleteGreetingServiceUnavailable struct {
	Payload *models.ErrorBody
}

DeleteGreetingServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewDeleteGreetingServiceUnavailable

func NewDeleteGreetingServiceUnavailable() *DeleteGreetingServiceUnavailable

NewDeleteGreetingServiceUnavailable creates a DeleteGreetingServiceUnavailable with default headers values

func (*DeleteGreetingServiceUnavailable) Error

func (*DeleteGreetingServiceUnavailable) GetPayload

func (*DeleteGreetingServiceUnavailable) IsClientError

func (o *DeleteGreetingServiceUnavailable) IsClientError() bool

IsClientError returns true when this delete greeting service unavailable response has a 4xx status code

func (*DeleteGreetingServiceUnavailable) IsCode

func (o *DeleteGreetingServiceUnavailable) IsCode(code int) bool

IsCode returns true when this delete greeting service unavailable response a status code equal to that given

func (*DeleteGreetingServiceUnavailable) IsRedirect

func (o *DeleteGreetingServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this delete greeting service unavailable response has a 3xx status code

func (*DeleteGreetingServiceUnavailable) IsServerError

func (o *DeleteGreetingServiceUnavailable) IsServerError() bool

IsServerError returns true when this delete greeting service unavailable response has a 5xx status code

func (*DeleteGreetingServiceUnavailable) IsSuccess

func (o *DeleteGreetingServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this delete greeting service unavailable response has a 2xx status code

func (*DeleteGreetingServiceUnavailable) String

type DeleteGreetingTooManyRequests

type DeleteGreetingTooManyRequests struct {
	Payload *models.ErrorBody
}

DeleteGreetingTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewDeleteGreetingTooManyRequests

func NewDeleteGreetingTooManyRequests() *DeleteGreetingTooManyRequests

NewDeleteGreetingTooManyRequests creates a DeleteGreetingTooManyRequests with default headers values

func (*DeleteGreetingTooManyRequests) Error

func (*DeleteGreetingTooManyRequests) GetPayload

func (*DeleteGreetingTooManyRequests) IsClientError

func (o *DeleteGreetingTooManyRequests) IsClientError() bool

IsClientError returns true when this delete greeting too many requests response has a 4xx status code

func (*DeleteGreetingTooManyRequests) IsCode

func (o *DeleteGreetingTooManyRequests) IsCode(code int) bool

IsCode returns true when this delete greeting too many requests response a status code equal to that given

func (*DeleteGreetingTooManyRequests) IsRedirect

func (o *DeleteGreetingTooManyRequests) IsRedirect() bool

IsRedirect returns true when this delete greeting too many requests response has a 3xx status code

func (*DeleteGreetingTooManyRequests) IsServerError

func (o *DeleteGreetingTooManyRequests) IsServerError() bool

IsServerError returns true when this delete greeting too many requests response has a 5xx status code

func (*DeleteGreetingTooManyRequests) IsSuccess

func (o *DeleteGreetingTooManyRequests) IsSuccess() bool

IsSuccess returns true when this delete greeting too many requests response has a 2xx status code

func (*DeleteGreetingTooManyRequests) String

type DeleteGreetingUnauthorized

type DeleteGreetingUnauthorized struct {
	Payload *models.ErrorBody
}

DeleteGreetingUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewDeleteGreetingUnauthorized

func NewDeleteGreetingUnauthorized() *DeleteGreetingUnauthorized

NewDeleteGreetingUnauthorized creates a DeleteGreetingUnauthorized with default headers values

func (*DeleteGreetingUnauthorized) Error

func (*DeleteGreetingUnauthorized) GetPayload

func (o *DeleteGreetingUnauthorized) GetPayload() *models.ErrorBody

func (*DeleteGreetingUnauthorized) IsClientError

func (o *DeleteGreetingUnauthorized) IsClientError() bool

IsClientError returns true when this delete greeting unauthorized response has a 4xx status code

func (*DeleteGreetingUnauthorized) IsCode

func (o *DeleteGreetingUnauthorized) IsCode(code int) bool

IsCode returns true when this delete greeting unauthorized response a status code equal to that given

func (*DeleteGreetingUnauthorized) IsRedirect

func (o *DeleteGreetingUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete greeting unauthorized response has a 3xx status code

func (*DeleteGreetingUnauthorized) IsServerError

func (o *DeleteGreetingUnauthorized) IsServerError() bool

IsServerError returns true when this delete greeting unauthorized response has a 5xx status code

func (*DeleteGreetingUnauthorized) IsSuccess

func (o *DeleteGreetingUnauthorized) IsSuccess() bool

IsSuccess returns true when this delete greeting unauthorized response has a 2xx status code

func (*DeleteGreetingUnauthorized) String

func (o *DeleteGreetingUnauthorized) String() string

type DeleteGreetingUnsupportedMediaType

type DeleteGreetingUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

DeleteGreetingUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewDeleteGreetingUnsupportedMediaType

func NewDeleteGreetingUnsupportedMediaType() *DeleteGreetingUnsupportedMediaType

NewDeleteGreetingUnsupportedMediaType creates a DeleteGreetingUnsupportedMediaType with default headers values

func (*DeleteGreetingUnsupportedMediaType) Error

func (*DeleteGreetingUnsupportedMediaType) GetPayload

func (*DeleteGreetingUnsupportedMediaType) IsClientError

func (o *DeleteGreetingUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this delete greeting unsupported media type response has a 4xx status code

func (*DeleteGreetingUnsupportedMediaType) IsCode

IsCode returns true when this delete greeting unsupported media type response a status code equal to that given

func (*DeleteGreetingUnsupportedMediaType) IsRedirect

func (o *DeleteGreetingUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this delete greeting unsupported media type response has a 3xx status code

func (*DeleteGreetingUnsupportedMediaType) IsServerError

func (o *DeleteGreetingUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this delete greeting unsupported media type response has a 5xx status code

func (*DeleteGreetingUnsupportedMediaType) IsSuccess

IsSuccess returns true when this delete greeting unsupported media type response has a 2xx status code

func (*DeleteGreetingUnsupportedMediaType) String

type GetGreetingBadRequest

type GetGreetingBadRequest struct {
	Payload *models.ErrorBody
}

GetGreetingBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewGetGreetingBadRequest

func NewGetGreetingBadRequest() *GetGreetingBadRequest

NewGetGreetingBadRequest creates a GetGreetingBadRequest with default headers values

func (*GetGreetingBadRequest) Error

func (o *GetGreetingBadRequest) Error() string

func (*GetGreetingBadRequest) GetPayload

func (o *GetGreetingBadRequest) GetPayload() *models.ErrorBody

func (*GetGreetingBadRequest) IsClientError

func (o *GetGreetingBadRequest) IsClientError() bool

IsClientError returns true when this get greeting bad request response has a 4xx status code

func (*GetGreetingBadRequest) IsCode

func (o *GetGreetingBadRequest) IsCode(code int) bool

IsCode returns true when this get greeting bad request response a status code equal to that given

func (*GetGreetingBadRequest) IsRedirect

func (o *GetGreetingBadRequest) IsRedirect() bool

IsRedirect returns true when this get greeting bad request response has a 3xx status code

func (*GetGreetingBadRequest) IsServerError

func (o *GetGreetingBadRequest) IsServerError() bool

IsServerError returns true when this get greeting bad request response has a 5xx status code

func (*GetGreetingBadRequest) IsSuccess

func (o *GetGreetingBadRequest) IsSuccess() bool

IsSuccess returns true when this get greeting bad request response has a 2xx status code

func (*GetGreetingBadRequest) String

func (o *GetGreetingBadRequest) String() string

type GetGreetingForbidden

type GetGreetingForbidden struct {
	Payload *models.ErrorBody
}

GetGreetingForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewGetGreetingForbidden

func NewGetGreetingForbidden() *GetGreetingForbidden

NewGetGreetingForbidden creates a GetGreetingForbidden with default headers values

func (*GetGreetingForbidden) Error

func (o *GetGreetingForbidden) Error() string

func (*GetGreetingForbidden) GetPayload

func (o *GetGreetingForbidden) GetPayload() *models.ErrorBody

func (*GetGreetingForbidden) IsClientError

func (o *GetGreetingForbidden) IsClientError() bool

IsClientError returns true when this get greeting forbidden response has a 4xx status code

func (*GetGreetingForbidden) IsCode

func (o *GetGreetingForbidden) IsCode(code int) bool

IsCode returns true when this get greeting forbidden response a status code equal to that given

func (*GetGreetingForbidden) IsRedirect

func (o *GetGreetingForbidden) IsRedirect() bool

IsRedirect returns true when this get greeting forbidden response has a 3xx status code

func (*GetGreetingForbidden) IsServerError

func (o *GetGreetingForbidden) IsServerError() bool

IsServerError returns true when this get greeting forbidden response has a 5xx status code

func (*GetGreetingForbidden) IsSuccess

func (o *GetGreetingForbidden) IsSuccess() bool

IsSuccess returns true when this get greeting forbidden response has a 2xx status code

func (*GetGreetingForbidden) String

func (o *GetGreetingForbidden) String() string

type GetGreetingGatewayTimeout

type GetGreetingGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetGreetingGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetGreetingGatewayTimeout

func NewGetGreetingGatewayTimeout() *GetGreetingGatewayTimeout

NewGetGreetingGatewayTimeout creates a GetGreetingGatewayTimeout with default headers values

func (*GetGreetingGatewayTimeout) Error

func (o *GetGreetingGatewayTimeout) Error() string

func (*GetGreetingGatewayTimeout) GetPayload

func (o *GetGreetingGatewayTimeout) GetPayload() *models.ErrorBody

func (*GetGreetingGatewayTimeout) IsClientError

func (o *GetGreetingGatewayTimeout) IsClientError() bool

IsClientError returns true when this get greeting gateway timeout response has a 4xx status code

func (*GetGreetingGatewayTimeout) IsCode

func (o *GetGreetingGatewayTimeout) IsCode(code int) bool

IsCode returns true when this get greeting gateway timeout response a status code equal to that given

func (*GetGreetingGatewayTimeout) IsRedirect

func (o *GetGreetingGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get greeting gateway timeout response has a 3xx status code

func (*GetGreetingGatewayTimeout) IsServerError

func (o *GetGreetingGatewayTimeout) IsServerError() bool

IsServerError returns true when this get greeting gateway timeout response has a 5xx status code

func (*GetGreetingGatewayTimeout) IsSuccess

func (o *GetGreetingGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get greeting gateway timeout response has a 2xx status code

func (*GetGreetingGatewayTimeout) String

func (o *GetGreetingGatewayTimeout) String() string

type GetGreetingInternalServerError

type GetGreetingInternalServerError struct {
	Payload *models.ErrorBody
}

GetGreetingInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetGreetingInternalServerError

func NewGetGreetingInternalServerError() *GetGreetingInternalServerError

NewGetGreetingInternalServerError creates a GetGreetingInternalServerError with default headers values

func (*GetGreetingInternalServerError) Error

func (*GetGreetingInternalServerError) GetPayload

func (*GetGreetingInternalServerError) IsClientError

func (o *GetGreetingInternalServerError) IsClientError() bool

IsClientError returns true when this get greeting internal server error response has a 4xx status code

func (*GetGreetingInternalServerError) IsCode

func (o *GetGreetingInternalServerError) IsCode(code int) bool

IsCode returns true when this get greeting internal server error response a status code equal to that given

func (*GetGreetingInternalServerError) IsRedirect

func (o *GetGreetingInternalServerError) IsRedirect() bool

IsRedirect returns true when this get greeting internal server error response has a 3xx status code

func (*GetGreetingInternalServerError) IsServerError

func (o *GetGreetingInternalServerError) IsServerError() bool

IsServerError returns true when this get greeting internal server error response has a 5xx status code

func (*GetGreetingInternalServerError) IsSuccess

func (o *GetGreetingInternalServerError) IsSuccess() bool

IsSuccess returns true when this get greeting internal server error response has a 2xx status code

func (*GetGreetingInternalServerError) String

type GetGreetingMediaBadRequest

type GetGreetingMediaBadRequest struct {
	Payload *models.ErrorBody
}

GetGreetingMediaBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewGetGreetingMediaBadRequest

func NewGetGreetingMediaBadRequest() *GetGreetingMediaBadRequest

NewGetGreetingMediaBadRequest creates a GetGreetingMediaBadRequest with default headers values

func (*GetGreetingMediaBadRequest) Error

func (*GetGreetingMediaBadRequest) GetPayload

func (o *GetGreetingMediaBadRequest) GetPayload() *models.ErrorBody

func (*GetGreetingMediaBadRequest) IsClientError

func (o *GetGreetingMediaBadRequest) IsClientError() bool

IsClientError returns true when this get greeting media bad request response has a 4xx status code

func (*GetGreetingMediaBadRequest) IsCode

func (o *GetGreetingMediaBadRequest) IsCode(code int) bool

IsCode returns true when this get greeting media bad request response a status code equal to that given

func (*GetGreetingMediaBadRequest) IsRedirect

func (o *GetGreetingMediaBadRequest) IsRedirect() bool

IsRedirect returns true when this get greeting media bad request response has a 3xx status code

func (*GetGreetingMediaBadRequest) IsServerError

func (o *GetGreetingMediaBadRequest) IsServerError() bool

IsServerError returns true when this get greeting media bad request response has a 5xx status code

func (*GetGreetingMediaBadRequest) IsSuccess

func (o *GetGreetingMediaBadRequest) IsSuccess() bool

IsSuccess returns true when this get greeting media bad request response has a 2xx status code

func (*GetGreetingMediaBadRequest) String

func (o *GetGreetingMediaBadRequest) String() string

type GetGreetingMediaForbidden

type GetGreetingMediaForbidden struct {
	Payload *models.ErrorBody
}

GetGreetingMediaForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewGetGreetingMediaForbidden

func NewGetGreetingMediaForbidden() *GetGreetingMediaForbidden

NewGetGreetingMediaForbidden creates a GetGreetingMediaForbidden with default headers values

func (*GetGreetingMediaForbidden) Error

func (o *GetGreetingMediaForbidden) Error() string

func (*GetGreetingMediaForbidden) GetPayload

func (o *GetGreetingMediaForbidden) GetPayload() *models.ErrorBody

func (*GetGreetingMediaForbidden) IsClientError

func (o *GetGreetingMediaForbidden) IsClientError() bool

IsClientError returns true when this get greeting media forbidden response has a 4xx status code

func (*GetGreetingMediaForbidden) IsCode

func (o *GetGreetingMediaForbidden) IsCode(code int) bool

IsCode returns true when this get greeting media forbidden response a status code equal to that given

func (*GetGreetingMediaForbidden) IsRedirect

func (o *GetGreetingMediaForbidden) IsRedirect() bool

IsRedirect returns true when this get greeting media forbidden response has a 3xx status code

func (*GetGreetingMediaForbidden) IsServerError

func (o *GetGreetingMediaForbidden) IsServerError() bool

IsServerError returns true when this get greeting media forbidden response has a 5xx status code

func (*GetGreetingMediaForbidden) IsSuccess

func (o *GetGreetingMediaForbidden) IsSuccess() bool

IsSuccess returns true when this get greeting media forbidden response has a 2xx status code

func (*GetGreetingMediaForbidden) String

func (o *GetGreetingMediaForbidden) String() string

type GetGreetingMediaGatewayTimeout

type GetGreetingMediaGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetGreetingMediaGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetGreetingMediaGatewayTimeout

func NewGetGreetingMediaGatewayTimeout() *GetGreetingMediaGatewayTimeout

NewGetGreetingMediaGatewayTimeout creates a GetGreetingMediaGatewayTimeout with default headers values

func (*GetGreetingMediaGatewayTimeout) Error

func (*GetGreetingMediaGatewayTimeout) GetPayload

func (*GetGreetingMediaGatewayTimeout) IsClientError

func (o *GetGreetingMediaGatewayTimeout) IsClientError() bool

IsClientError returns true when this get greeting media gateway timeout response has a 4xx status code

func (*GetGreetingMediaGatewayTimeout) IsCode

func (o *GetGreetingMediaGatewayTimeout) IsCode(code int) bool

IsCode returns true when this get greeting media gateway timeout response a status code equal to that given

func (*GetGreetingMediaGatewayTimeout) IsRedirect

func (o *GetGreetingMediaGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get greeting media gateway timeout response has a 3xx status code

func (*GetGreetingMediaGatewayTimeout) IsServerError

func (o *GetGreetingMediaGatewayTimeout) IsServerError() bool

IsServerError returns true when this get greeting media gateway timeout response has a 5xx status code

func (*GetGreetingMediaGatewayTimeout) IsSuccess

func (o *GetGreetingMediaGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get greeting media gateway timeout response has a 2xx status code

func (*GetGreetingMediaGatewayTimeout) String

type GetGreetingMediaInternalServerError

type GetGreetingMediaInternalServerError struct {
	Payload *models.ErrorBody
}

GetGreetingMediaInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetGreetingMediaInternalServerError

func NewGetGreetingMediaInternalServerError() *GetGreetingMediaInternalServerError

NewGetGreetingMediaInternalServerError creates a GetGreetingMediaInternalServerError with default headers values

func (*GetGreetingMediaInternalServerError) Error

func (*GetGreetingMediaInternalServerError) GetPayload

func (*GetGreetingMediaInternalServerError) IsClientError

func (o *GetGreetingMediaInternalServerError) IsClientError() bool

IsClientError returns true when this get greeting media internal server error response has a 4xx status code

func (*GetGreetingMediaInternalServerError) IsCode

IsCode returns true when this get greeting media internal server error response a status code equal to that given

func (*GetGreetingMediaInternalServerError) IsRedirect

func (o *GetGreetingMediaInternalServerError) IsRedirect() bool

IsRedirect returns true when this get greeting media internal server error response has a 3xx status code

func (*GetGreetingMediaInternalServerError) IsServerError

func (o *GetGreetingMediaInternalServerError) IsServerError() bool

IsServerError returns true when this get greeting media internal server error response has a 5xx status code

func (*GetGreetingMediaInternalServerError) IsSuccess

IsSuccess returns true when this get greeting media internal server error response has a 2xx status code

func (*GetGreetingMediaInternalServerError) String

type GetGreetingMediaNotFound

type GetGreetingMediaNotFound struct {
	Payload *models.ErrorBody
}

GetGreetingMediaNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewGetGreetingMediaNotFound

func NewGetGreetingMediaNotFound() *GetGreetingMediaNotFound

NewGetGreetingMediaNotFound creates a GetGreetingMediaNotFound with default headers values

func (*GetGreetingMediaNotFound) Error

func (o *GetGreetingMediaNotFound) Error() string

func (*GetGreetingMediaNotFound) GetPayload

func (o *GetGreetingMediaNotFound) GetPayload() *models.ErrorBody

func (*GetGreetingMediaNotFound) IsClientError

func (o *GetGreetingMediaNotFound) IsClientError() bool

IsClientError returns true when this get greeting media not found response has a 4xx status code

func (*GetGreetingMediaNotFound) IsCode

func (o *GetGreetingMediaNotFound) IsCode(code int) bool

IsCode returns true when this get greeting media not found response a status code equal to that given

func (*GetGreetingMediaNotFound) IsRedirect

func (o *GetGreetingMediaNotFound) IsRedirect() bool

IsRedirect returns true when this get greeting media not found response has a 3xx status code

func (*GetGreetingMediaNotFound) IsServerError

func (o *GetGreetingMediaNotFound) IsServerError() bool

IsServerError returns true when this get greeting media not found response has a 5xx status code

func (*GetGreetingMediaNotFound) IsSuccess

func (o *GetGreetingMediaNotFound) IsSuccess() bool

IsSuccess returns true when this get greeting media not found response has a 2xx status code

func (*GetGreetingMediaNotFound) String

func (o *GetGreetingMediaNotFound) String() string

type GetGreetingMediaOK

type GetGreetingMediaOK struct {
	Payload *models.GreetingMediaInfo
}

GetGreetingMediaOK describes a response with status code 200, with default header values.

successful operation

func NewGetGreetingMediaOK

func NewGetGreetingMediaOK() *GetGreetingMediaOK

NewGetGreetingMediaOK creates a GetGreetingMediaOK with default headers values

func (*GetGreetingMediaOK) Error

func (o *GetGreetingMediaOK) Error() string

func (*GetGreetingMediaOK) GetPayload

func (o *GetGreetingMediaOK) GetPayload() *models.GreetingMediaInfo

func (*GetGreetingMediaOK) IsClientError

func (o *GetGreetingMediaOK) IsClientError() bool

IsClientError returns true when this get greeting media o k response has a 4xx status code

func (*GetGreetingMediaOK) IsCode

func (o *GetGreetingMediaOK) IsCode(code int) bool

IsCode returns true when this get greeting media o k response a status code equal to that given

func (*GetGreetingMediaOK) IsRedirect

func (o *GetGreetingMediaOK) IsRedirect() bool

IsRedirect returns true when this get greeting media o k response has a 3xx status code

func (*GetGreetingMediaOK) IsServerError

func (o *GetGreetingMediaOK) IsServerError() bool

IsServerError returns true when this get greeting media o k response has a 5xx status code

func (*GetGreetingMediaOK) IsSuccess

func (o *GetGreetingMediaOK) IsSuccess() bool

IsSuccess returns true when this get greeting media o k response has a 2xx status code

func (*GetGreetingMediaOK) String

func (o *GetGreetingMediaOK) String() string

type GetGreetingMediaParams

type GetGreetingMediaParams struct {

	/* FormatID.

	   The desired media format.

	   Default: "WAV"
	*/
	FormatID *string

	/* GreetingID.

	   Greeting ID
	*/
	GreetingID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetGreetingMediaParams contains all the parameters to send to the API endpoint

for the get greeting media operation.

Typically these are written to a http.Request.

func NewGetGreetingMediaParams

func NewGetGreetingMediaParams() *GetGreetingMediaParams

NewGetGreetingMediaParams creates a new GetGreetingMediaParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetGreetingMediaParamsWithContext

func NewGetGreetingMediaParamsWithContext(ctx context.Context) *GetGreetingMediaParams

NewGetGreetingMediaParamsWithContext creates a new GetGreetingMediaParams object with the ability to set a context for a request.

func NewGetGreetingMediaParamsWithHTTPClient

func NewGetGreetingMediaParamsWithHTTPClient(client *http.Client) *GetGreetingMediaParams

NewGetGreetingMediaParamsWithHTTPClient creates a new GetGreetingMediaParams object with the ability to set a custom HTTPClient for a request.

func NewGetGreetingMediaParamsWithTimeout

func NewGetGreetingMediaParamsWithTimeout(timeout time.Duration) *GetGreetingMediaParams

NewGetGreetingMediaParamsWithTimeout creates a new GetGreetingMediaParams object with the ability to set a timeout on a request.

func (*GetGreetingMediaParams) SetContext

func (o *GetGreetingMediaParams) SetContext(ctx context.Context)

SetContext adds the context to the get greeting media params

func (*GetGreetingMediaParams) SetDefaults

func (o *GetGreetingMediaParams) SetDefaults()

SetDefaults hydrates default values in the get greeting media params (not the query body).

All values with no default are reset to their zero value.

func (*GetGreetingMediaParams) SetFormatID

func (o *GetGreetingMediaParams) SetFormatID(formatID *string)

SetFormatID adds the formatId to the get greeting media params

func (*GetGreetingMediaParams) SetGreetingID

func (o *GetGreetingMediaParams) SetGreetingID(greetingID string)

SetGreetingID adds the greetingId to the get greeting media params

func (*GetGreetingMediaParams) SetHTTPClient

func (o *GetGreetingMediaParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get greeting media params

func (*GetGreetingMediaParams) SetTimeout

func (o *GetGreetingMediaParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get greeting media params

func (*GetGreetingMediaParams) WithContext

WithContext adds the context to the get greeting media params

func (*GetGreetingMediaParams) WithDefaults

WithDefaults hydrates default values in the get greeting media params (not the query body).

All values with no default are reset to their zero value.

func (*GetGreetingMediaParams) WithFormatID

func (o *GetGreetingMediaParams) WithFormatID(formatID *string) *GetGreetingMediaParams

WithFormatID adds the formatID to the get greeting media params

func (*GetGreetingMediaParams) WithGreetingID

func (o *GetGreetingMediaParams) WithGreetingID(greetingID string) *GetGreetingMediaParams

WithGreetingID adds the greetingID to the get greeting media params

func (*GetGreetingMediaParams) WithHTTPClient

func (o *GetGreetingMediaParams) WithHTTPClient(client *http.Client) *GetGreetingMediaParams

WithHTTPClient adds the HTTPClient to the get greeting media params

func (*GetGreetingMediaParams) WithTimeout

WithTimeout adds the timeout to the get greeting media params

func (*GetGreetingMediaParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetGreetingMediaReader

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

GetGreetingMediaReader is a Reader for the GetGreetingMedia structure.

func (*GetGreetingMediaReader) ReadResponse

func (o *GetGreetingMediaReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetGreetingMediaRequestEntityTooLarge

type GetGreetingMediaRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetGreetingMediaRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetGreetingMediaRequestEntityTooLarge

func NewGetGreetingMediaRequestEntityTooLarge() *GetGreetingMediaRequestEntityTooLarge

NewGetGreetingMediaRequestEntityTooLarge creates a GetGreetingMediaRequestEntityTooLarge with default headers values

func (*GetGreetingMediaRequestEntityTooLarge) Error

func (*GetGreetingMediaRequestEntityTooLarge) GetPayload

func (*GetGreetingMediaRequestEntityTooLarge) IsClientError

func (o *GetGreetingMediaRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get greeting media request entity too large response has a 4xx status code

func (*GetGreetingMediaRequestEntityTooLarge) IsCode

IsCode returns true when this get greeting media request entity too large response a status code equal to that given

func (*GetGreetingMediaRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get greeting media request entity too large response has a 3xx status code

func (*GetGreetingMediaRequestEntityTooLarge) IsServerError

func (o *GetGreetingMediaRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get greeting media request entity too large response has a 5xx status code

func (*GetGreetingMediaRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get greeting media request entity too large response has a 2xx status code

func (*GetGreetingMediaRequestEntityTooLarge) String

type GetGreetingMediaRequestTimeout

type GetGreetingMediaRequestTimeout struct {
	Payload *models.ErrorBody
}

GetGreetingMediaRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetGreetingMediaRequestTimeout

func NewGetGreetingMediaRequestTimeout() *GetGreetingMediaRequestTimeout

NewGetGreetingMediaRequestTimeout creates a GetGreetingMediaRequestTimeout with default headers values

func (*GetGreetingMediaRequestTimeout) Error

func (*GetGreetingMediaRequestTimeout) GetPayload

func (*GetGreetingMediaRequestTimeout) IsClientError

func (o *GetGreetingMediaRequestTimeout) IsClientError() bool

IsClientError returns true when this get greeting media request timeout response has a 4xx status code

func (*GetGreetingMediaRequestTimeout) IsCode

func (o *GetGreetingMediaRequestTimeout) IsCode(code int) bool

IsCode returns true when this get greeting media request timeout response a status code equal to that given

func (*GetGreetingMediaRequestTimeout) IsRedirect

func (o *GetGreetingMediaRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get greeting media request timeout response has a 3xx status code

func (*GetGreetingMediaRequestTimeout) IsServerError

func (o *GetGreetingMediaRequestTimeout) IsServerError() bool

IsServerError returns true when this get greeting media request timeout response has a 5xx status code

func (*GetGreetingMediaRequestTimeout) IsSuccess

func (o *GetGreetingMediaRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get greeting media request timeout response has a 2xx status code

func (*GetGreetingMediaRequestTimeout) String

type GetGreetingMediaServiceUnavailable

type GetGreetingMediaServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetGreetingMediaServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetGreetingMediaServiceUnavailable

func NewGetGreetingMediaServiceUnavailable() *GetGreetingMediaServiceUnavailable

NewGetGreetingMediaServiceUnavailable creates a GetGreetingMediaServiceUnavailable with default headers values

func (*GetGreetingMediaServiceUnavailable) Error

func (*GetGreetingMediaServiceUnavailable) GetPayload

func (*GetGreetingMediaServiceUnavailable) IsClientError

func (o *GetGreetingMediaServiceUnavailable) IsClientError() bool

IsClientError returns true when this get greeting media service unavailable response has a 4xx status code

func (*GetGreetingMediaServiceUnavailable) IsCode

IsCode returns true when this get greeting media service unavailable response a status code equal to that given

func (*GetGreetingMediaServiceUnavailable) IsRedirect

func (o *GetGreetingMediaServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get greeting media service unavailable response has a 3xx status code

func (*GetGreetingMediaServiceUnavailable) IsServerError

func (o *GetGreetingMediaServiceUnavailable) IsServerError() bool

IsServerError returns true when this get greeting media service unavailable response has a 5xx status code

func (*GetGreetingMediaServiceUnavailable) IsSuccess

IsSuccess returns true when this get greeting media service unavailable response has a 2xx status code

func (*GetGreetingMediaServiceUnavailable) String

type GetGreetingMediaTooManyRequests

type GetGreetingMediaTooManyRequests struct {
	Payload *models.ErrorBody
}

GetGreetingMediaTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetGreetingMediaTooManyRequests

func NewGetGreetingMediaTooManyRequests() *GetGreetingMediaTooManyRequests

NewGetGreetingMediaTooManyRequests creates a GetGreetingMediaTooManyRequests with default headers values

func (*GetGreetingMediaTooManyRequests) Error

func (*GetGreetingMediaTooManyRequests) GetPayload

func (*GetGreetingMediaTooManyRequests) IsClientError

func (o *GetGreetingMediaTooManyRequests) IsClientError() bool

IsClientError returns true when this get greeting media too many requests response has a 4xx status code

func (*GetGreetingMediaTooManyRequests) IsCode

func (o *GetGreetingMediaTooManyRequests) IsCode(code int) bool

IsCode returns true when this get greeting media too many requests response a status code equal to that given

func (*GetGreetingMediaTooManyRequests) IsRedirect

func (o *GetGreetingMediaTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get greeting media too many requests response has a 3xx status code

func (*GetGreetingMediaTooManyRequests) IsServerError

func (o *GetGreetingMediaTooManyRequests) IsServerError() bool

IsServerError returns true when this get greeting media too many requests response has a 5xx status code

func (*GetGreetingMediaTooManyRequests) IsSuccess

func (o *GetGreetingMediaTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get greeting media too many requests response has a 2xx status code

func (*GetGreetingMediaTooManyRequests) String

type GetGreetingMediaUnauthorized

type GetGreetingMediaUnauthorized struct {
	Payload *models.ErrorBody
}

GetGreetingMediaUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewGetGreetingMediaUnauthorized

func NewGetGreetingMediaUnauthorized() *GetGreetingMediaUnauthorized

NewGetGreetingMediaUnauthorized creates a GetGreetingMediaUnauthorized with default headers values

func (*GetGreetingMediaUnauthorized) Error

func (*GetGreetingMediaUnauthorized) GetPayload

func (*GetGreetingMediaUnauthorized) IsClientError

func (o *GetGreetingMediaUnauthorized) IsClientError() bool

IsClientError returns true when this get greeting media unauthorized response has a 4xx status code

func (*GetGreetingMediaUnauthorized) IsCode

func (o *GetGreetingMediaUnauthorized) IsCode(code int) bool

IsCode returns true when this get greeting media unauthorized response a status code equal to that given

func (*GetGreetingMediaUnauthorized) IsRedirect

func (o *GetGreetingMediaUnauthorized) IsRedirect() bool

IsRedirect returns true when this get greeting media unauthorized response has a 3xx status code

func (*GetGreetingMediaUnauthorized) IsServerError

func (o *GetGreetingMediaUnauthorized) IsServerError() bool

IsServerError returns true when this get greeting media unauthorized response has a 5xx status code

func (*GetGreetingMediaUnauthorized) IsSuccess

func (o *GetGreetingMediaUnauthorized) IsSuccess() bool

IsSuccess returns true when this get greeting media unauthorized response has a 2xx status code

func (*GetGreetingMediaUnauthorized) String

type GetGreetingMediaUnsupportedMediaType

type GetGreetingMediaUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetGreetingMediaUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetGreetingMediaUnsupportedMediaType

func NewGetGreetingMediaUnsupportedMediaType() *GetGreetingMediaUnsupportedMediaType

NewGetGreetingMediaUnsupportedMediaType creates a GetGreetingMediaUnsupportedMediaType with default headers values

func (*GetGreetingMediaUnsupportedMediaType) Error

func (*GetGreetingMediaUnsupportedMediaType) GetPayload

func (*GetGreetingMediaUnsupportedMediaType) IsClientError

func (o *GetGreetingMediaUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get greeting media unsupported media type response has a 4xx status code

func (*GetGreetingMediaUnsupportedMediaType) IsCode

IsCode returns true when this get greeting media unsupported media type response a status code equal to that given

func (*GetGreetingMediaUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get greeting media unsupported media type response has a 3xx status code

func (*GetGreetingMediaUnsupportedMediaType) IsServerError

func (o *GetGreetingMediaUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get greeting media unsupported media type response has a 5xx status code

func (*GetGreetingMediaUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get greeting media unsupported media type response has a 2xx status code

func (*GetGreetingMediaUnsupportedMediaType) String

type GetGreetingNotFound

type GetGreetingNotFound struct {
	Payload *models.ErrorBody
}

GetGreetingNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewGetGreetingNotFound

func NewGetGreetingNotFound() *GetGreetingNotFound

NewGetGreetingNotFound creates a GetGreetingNotFound with default headers values

func (*GetGreetingNotFound) Error

func (o *GetGreetingNotFound) Error() string

func (*GetGreetingNotFound) GetPayload

func (o *GetGreetingNotFound) GetPayload() *models.ErrorBody

func (*GetGreetingNotFound) IsClientError

func (o *GetGreetingNotFound) IsClientError() bool

IsClientError returns true when this get greeting not found response has a 4xx status code

func (*GetGreetingNotFound) IsCode

func (o *GetGreetingNotFound) IsCode(code int) bool

IsCode returns true when this get greeting not found response a status code equal to that given

func (*GetGreetingNotFound) IsRedirect

func (o *GetGreetingNotFound) IsRedirect() bool

IsRedirect returns true when this get greeting not found response has a 3xx status code

func (*GetGreetingNotFound) IsServerError

func (o *GetGreetingNotFound) IsServerError() bool

IsServerError returns true when this get greeting not found response has a 5xx status code

func (*GetGreetingNotFound) IsSuccess

func (o *GetGreetingNotFound) IsSuccess() bool

IsSuccess returns true when this get greeting not found response has a 2xx status code

func (*GetGreetingNotFound) String

func (o *GetGreetingNotFound) String() string

type GetGreetingOK

type GetGreetingOK struct {
	Payload *models.Greeting
}

GetGreetingOK describes a response with status code 200, with default header values.

successful operation

func NewGetGreetingOK

func NewGetGreetingOK() *GetGreetingOK

NewGetGreetingOK creates a GetGreetingOK with default headers values

func (*GetGreetingOK) Error

func (o *GetGreetingOK) Error() string

func (*GetGreetingOK) GetPayload

func (o *GetGreetingOK) GetPayload() *models.Greeting

func (*GetGreetingOK) IsClientError

func (o *GetGreetingOK) IsClientError() bool

IsClientError returns true when this get greeting o k response has a 4xx status code

func (*GetGreetingOK) IsCode

func (o *GetGreetingOK) IsCode(code int) bool

IsCode returns true when this get greeting o k response a status code equal to that given

func (*GetGreetingOK) IsRedirect

func (o *GetGreetingOK) IsRedirect() bool

IsRedirect returns true when this get greeting o k response has a 3xx status code

func (*GetGreetingOK) IsServerError

func (o *GetGreetingOK) IsServerError() bool

IsServerError returns true when this get greeting o k response has a 5xx status code

func (*GetGreetingOK) IsSuccess

func (o *GetGreetingOK) IsSuccess() bool

IsSuccess returns true when this get greeting o k response has a 2xx status code

func (*GetGreetingOK) String

func (o *GetGreetingOK) String() string

type GetGreetingParams

type GetGreetingParams struct {

	/* GreetingID.

	   Greeting ID
	*/
	GreetingID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetGreetingParams contains all the parameters to send to the API endpoint

for the get greeting operation.

Typically these are written to a http.Request.

func NewGetGreetingParams

func NewGetGreetingParams() *GetGreetingParams

NewGetGreetingParams creates a new GetGreetingParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetGreetingParamsWithContext

func NewGetGreetingParamsWithContext(ctx context.Context) *GetGreetingParams

NewGetGreetingParamsWithContext creates a new GetGreetingParams object with the ability to set a context for a request.

func NewGetGreetingParamsWithHTTPClient

func NewGetGreetingParamsWithHTTPClient(client *http.Client) *GetGreetingParams

NewGetGreetingParamsWithHTTPClient creates a new GetGreetingParams object with the ability to set a custom HTTPClient for a request.

func NewGetGreetingParamsWithTimeout

func NewGetGreetingParamsWithTimeout(timeout time.Duration) *GetGreetingParams

NewGetGreetingParamsWithTimeout creates a new GetGreetingParams object with the ability to set a timeout on a request.

func (*GetGreetingParams) SetContext

func (o *GetGreetingParams) SetContext(ctx context.Context)

SetContext adds the context to the get greeting params

func (*GetGreetingParams) SetDefaults

func (o *GetGreetingParams) SetDefaults()

SetDefaults hydrates default values in the get greeting params (not the query body).

All values with no default are reset to their zero value.

func (*GetGreetingParams) SetGreetingID

func (o *GetGreetingParams) SetGreetingID(greetingID string)

SetGreetingID adds the greetingId to the get greeting params

func (*GetGreetingParams) SetHTTPClient

func (o *GetGreetingParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get greeting params

func (*GetGreetingParams) SetTimeout

func (o *GetGreetingParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get greeting params

func (*GetGreetingParams) WithContext

func (o *GetGreetingParams) WithContext(ctx context.Context) *GetGreetingParams

WithContext adds the context to the get greeting params

func (*GetGreetingParams) WithDefaults

func (o *GetGreetingParams) WithDefaults() *GetGreetingParams

WithDefaults hydrates default values in the get greeting params (not the query body).

All values with no default are reset to their zero value.

func (*GetGreetingParams) WithGreetingID

func (o *GetGreetingParams) WithGreetingID(greetingID string) *GetGreetingParams

WithGreetingID adds the greetingID to the get greeting params

func (*GetGreetingParams) WithHTTPClient

func (o *GetGreetingParams) WithHTTPClient(client *http.Client) *GetGreetingParams

WithHTTPClient adds the HTTPClient to the get greeting params

func (*GetGreetingParams) WithTimeout

func (o *GetGreetingParams) WithTimeout(timeout time.Duration) *GetGreetingParams

WithTimeout adds the timeout to the get greeting params

func (*GetGreetingParams) WriteToRequest

func (o *GetGreetingParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetGreetingReader

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

GetGreetingReader is a Reader for the GetGreeting structure.

func (*GetGreetingReader) ReadResponse

func (o *GetGreetingReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetGreetingRequestEntityTooLarge

type GetGreetingRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetGreetingRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetGreetingRequestEntityTooLarge

func NewGetGreetingRequestEntityTooLarge() *GetGreetingRequestEntityTooLarge

NewGetGreetingRequestEntityTooLarge creates a GetGreetingRequestEntityTooLarge with default headers values

func (*GetGreetingRequestEntityTooLarge) Error

func (*GetGreetingRequestEntityTooLarge) GetPayload

func (*GetGreetingRequestEntityTooLarge) IsClientError

func (o *GetGreetingRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get greeting request entity too large response has a 4xx status code

func (*GetGreetingRequestEntityTooLarge) IsCode

func (o *GetGreetingRequestEntityTooLarge) IsCode(code int) bool

IsCode returns true when this get greeting request entity too large response a status code equal to that given

func (*GetGreetingRequestEntityTooLarge) IsRedirect

func (o *GetGreetingRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get greeting request entity too large response has a 3xx status code

func (*GetGreetingRequestEntityTooLarge) IsServerError

func (o *GetGreetingRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get greeting request entity too large response has a 5xx status code

func (*GetGreetingRequestEntityTooLarge) IsSuccess

func (o *GetGreetingRequestEntityTooLarge) IsSuccess() bool

IsSuccess returns true when this get greeting request entity too large response has a 2xx status code

func (*GetGreetingRequestEntityTooLarge) String

type GetGreetingRequestTimeout

type GetGreetingRequestTimeout struct {
	Payload *models.ErrorBody
}

GetGreetingRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetGreetingRequestTimeout

func NewGetGreetingRequestTimeout() *GetGreetingRequestTimeout

NewGetGreetingRequestTimeout creates a GetGreetingRequestTimeout with default headers values

func (*GetGreetingRequestTimeout) Error

func (o *GetGreetingRequestTimeout) Error() string

func (*GetGreetingRequestTimeout) GetPayload

func (o *GetGreetingRequestTimeout) GetPayload() *models.ErrorBody

func (*GetGreetingRequestTimeout) IsClientError

func (o *GetGreetingRequestTimeout) IsClientError() bool

IsClientError returns true when this get greeting request timeout response has a 4xx status code

func (*GetGreetingRequestTimeout) IsCode

func (o *GetGreetingRequestTimeout) IsCode(code int) bool

IsCode returns true when this get greeting request timeout response a status code equal to that given

func (*GetGreetingRequestTimeout) IsRedirect

func (o *GetGreetingRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get greeting request timeout response has a 3xx status code

func (*GetGreetingRequestTimeout) IsServerError

func (o *GetGreetingRequestTimeout) IsServerError() bool

IsServerError returns true when this get greeting request timeout response has a 5xx status code

func (*GetGreetingRequestTimeout) IsSuccess

func (o *GetGreetingRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get greeting request timeout response has a 2xx status code

func (*GetGreetingRequestTimeout) String

func (o *GetGreetingRequestTimeout) String() string

type GetGreetingServiceUnavailable

type GetGreetingServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetGreetingServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetGreetingServiceUnavailable

func NewGetGreetingServiceUnavailable() *GetGreetingServiceUnavailable

NewGetGreetingServiceUnavailable creates a GetGreetingServiceUnavailable with default headers values

func (*GetGreetingServiceUnavailable) Error

func (*GetGreetingServiceUnavailable) GetPayload

func (*GetGreetingServiceUnavailable) IsClientError

func (o *GetGreetingServiceUnavailable) IsClientError() bool

IsClientError returns true when this get greeting service unavailable response has a 4xx status code

func (*GetGreetingServiceUnavailable) IsCode

func (o *GetGreetingServiceUnavailable) IsCode(code int) bool

IsCode returns true when this get greeting service unavailable response a status code equal to that given

func (*GetGreetingServiceUnavailable) IsRedirect

func (o *GetGreetingServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get greeting service unavailable response has a 3xx status code

func (*GetGreetingServiceUnavailable) IsServerError

func (o *GetGreetingServiceUnavailable) IsServerError() bool

IsServerError returns true when this get greeting service unavailable response has a 5xx status code

func (*GetGreetingServiceUnavailable) IsSuccess

func (o *GetGreetingServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get greeting service unavailable response has a 2xx status code

func (*GetGreetingServiceUnavailable) String

type GetGreetingTooManyRequests

type GetGreetingTooManyRequests struct {
	Payload *models.ErrorBody
}

GetGreetingTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetGreetingTooManyRequests

func NewGetGreetingTooManyRequests() *GetGreetingTooManyRequests

NewGetGreetingTooManyRequests creates a GetGreetingTooManyRequests with default headers values

func (*GetGreetingTooManyRequests) Error

func (*GetGreetingTooManyRequests) GetPayload

func (o *GetGreetingTooManyRequests) GetPayload() *models.ErrorBody

func (*GetGreetingTooManyRequests) IsClientError

func (o *GetGreetingTooManyRequests) IsClientError() bool

IsClientError returns true when this get greeting too many requests response has a 4xx status code

func (*GetGreetingTooManyRequests) IsCode

func (o *GetGreetingTooManyRequests) IsCode(code int) bool

IsCode returns true when this get greeting too many requests response a status code equal to that given

func (*GetGreetingTooManyRequests) IsRedirect

func (o *GetGreetingTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get greeting too many requests response has a 3xx status code

func (*GetGreetingTooManyRequests) IsServerError

func (o *GetGreetingTooManyRequests) IsServerError() bool

IsServerError returns true when this get greeting too many requests response has a 5xx status code

func (*GetGreetingTooManyRequests) IsSuccess

func (o *GetGreetingTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get greeting too many requests response has a 2xx status code

func (*GetGreetingTooManyRequests) String

func (o *GetGreetingTooManyRequests) String() string

type GetGreetingUnauthorized

type GetGreetingUnauthorized struct {
	Payload *models.ErrorBody
}

GetGreetingUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewGetGreetingUnauthorized

func NewGetGreetingUnauthorized() *GetGreetingUnauthorized

NewGetGreetingUnauthorized creates a GetGreetingUnauthorized with default headers values

func (*GetGreetingUnauthorized) Error

func (o *GetGreetingUnauthorized) Error() string

func (*GetGreetingUnauthorized) GetPayload

func (o *GetGreetingUnauthorized) GetPayload() *models.ErrorBody

func (*GetGreetingUnauthorized) IsClientError

func (o *GetGreetingUnauthorized) IsClientError() bool

IsClientError returns true when this get greeting unauthorized response has a 4xx status code

func (*GetGreetingUnauthorized) IsCode

func (o *GetGreetingUnauthorized) IsCode(code int) bool

IsCode returns true when this get greeting unauthorized response a status code equal to that given

func (*GetGreetingUnauthorized) IsRedirect

func (o *GetGreetingUnauthorized) IsRedirect() bool

IsRedirect returns true when this get greeting unauthorized response has a 3xx status code

func (*GetGreetingUnauthorized) IsServerError

func (o *GetGreetingUnauthorized) IsServerError() bool

IsServerError returns true when this get greeting unauthorized response has a 5xx status code

func (*GetGreetingUnauthorized) IsSuccess

func (o *GetGreetingUnauthorized) IsSuccess() bool

IsSuccess returns true when this get greeting unauthorized response has a 2xx status code

func (*GetGreetingUnauthorized) String

func (o *GetGreetingUnauthorized) String() string

type GetGreetingUnsupportedMediaType

type GetGreetingUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetGreetingUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetGreetingUnsupportedMediaType

func NewGetGreetingUnsupportedMediaType() *GetGreetingUnsupportedMediaType

NewGetGreetingUnsupportedMediaType creates a GetGreetingUnsupportedMediaType with default headers values

func (*GetGreetingUnsupportedMediaType) Error

func (*GetGreetingUnsupportedMediaType) GetPayload

func (*GetGreetingUnsupportedMediaType) IsClientError

func (o *GetGreetingUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get greeting unsupported media type response has a 4xx status code

func (*GetGreetingUnsupportedMediaType) IsCode

func (o *GetGreetingUnsupportedMediaType) IsCode(code int) bool

IsCode returns true when this get greeting unsupported media type response a status code equal to that given

func (*GetGreetingUnsupportedMediaType) IsRedirect

func (o *GetGreetingUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get greeting unsupported media type response has a 3xx status code

func (*GetGreetingUnsupportedMediaType) IsServerError

func (o *GetGreetingUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get greeting unsupported media type response has a 5xx status code

func (*GetGreetingUnsupportedMediaType) IsSuccess

func (o *GetGreetingUnsupportedMediaType) IsSuccess() bool

IsSuccess returns true when this get greeting unsupported media type response has a 2xx status code

func (*GetGreetingUnsupportedMediaType) String

type GetGreetingsBadRequest

type GetGreetingsBadRequest struct {
	Payload *models.ErrorBody
}

GetGreetingsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewGetGreetingsBadRequest

func NewGetGreetingsBadRequest() *GetGreetingsBadRequest

NewGetGreetingsBadRequest creates a GetGreetingsBadRequest with default headers values

func (*GetGreetingsBadRequest) Error

func (o *GetGreetingsBadRequest) Error() string

func (*GetGreetingsBadRequest) GetPayload

func (o *GetGreetingsBadRequest) GetPayload() *models.ErrorBody

func (*GetGreetingsBadRequest) IsClientError

func (o *GetGreetingsBadRequest) IsClientError() bool

IsClientError returns true when this get greetings bad request response has a 4xx status code

func (*GetGreetingsBadRequest) IsCode

func (o *GetGreetingsBadRequest) IsCode(code int) bool

IsCode returns true when this get greetings bad request response a status code equal to that given

func (*GetGreetingsBadRequest) IsRedirect

func (o *GetGreetingsBadRequest) IsRedirect() bool

IsRedirect returns true when this get greetings bad request response has a 3xx status code

func (*GetGreetingsBadRequest) IsServerError

func (o *GetGreetingsBadRequest) IsServerError() bool

IsServerError returns true when this get greetings bad request response has a 5xx status code

func (*GetGreetingsBadRequest) IsSuccess

func (o *GetGreetingsBadRequest) IsSuccess() bool

IsSuccess returns true when this get greetings bad request response has a 2xx status code

func (*GetGreetingsBadRequest) String

func (o *GetGreetingsBadRequest) String() string

type GetGreetingsDefaultsBadRequest

type GetGreetingsDefaultsBadRequest struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewGetGreetingsDefaultsBadRequest

func NewGetGreetingsDefaultsBadRequest() *GetGreetingsDefaultsBadRequest

NewGetGreetingsDefaultsBadRequest creates a GetGreetingsDefaultsBadRequest with default headers values

func (*GetGreetingsDefaultsBadRequest) Error

func (*GetGreetingsDefaultsBadRequest) GetPayload

func (*GetGreetingsDefaultsBadRequest) IsClientError

func (o *GetGreetingsDefaultsBadRequest) IsClientError() bool

IsClientError returns true when this get greetings defaults bad request response has a 4xx status code

func (*GetGreetingsDefaultsBadRequest) IsCode

func (o *GetGreetingsDefaultsBadRequest) IsCode(code int) bool

IsCode returns true when this get greetings defaults bad request response a status code equal to that given

func (*GetGreetingsDefaultsBadRequest) IsRedirect

func (o *GetGreetingsDefaultsBadRequest) IsRedirect() bool

IsRedirect returns true when this get greetings defaults bad request response has a 3xx status code

func (*GetGreetingsDefaultsBadRequest) IsServerError

func (o *GetGreetingsDefaultsBadRequest) IsServerError() bool

IsServerError returns true when this get greetings defaults bad request response has a 5xx status code

func (*GetGreetingsDefaultsBadRequest) IsSuccess

func (o *GetGreetingsDefaultsBadRequest) IsSuccess() bool

IsSuccess returns true when this get greetings defaults bad request response has a 2xx status code

func (*GetGreetingsDefaultsBadRequest) String

type GetGreetingsDefaultsForbidden

type GetGreetingsDefaultsForbidden struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewGetGreetingsDefaultsForbidden

func NewGetGreetingsDefaultsForbidden() *GetGreetingsDefaultsForbidden

NewGetGreetingsDefaultsForbidden creates a GetGreetingsDefaultsForbidden with default headers values

func (*GetGreetingsDefaultsForbidden) Error

func (*GetGreetingsDefaultsForbidden) GetPayload

func (*GetGreetingsDefaultsForbidden) IsClientError

func (o *GetGreetingsDefaultsForbidden) IsClientError() bool

IsClientError returns true when this get greetings defaults forbidden response has a 4xx status code

func (*GetGreetingsDefaultsForbidden) IsCode

func (o *GetGreetingsDefaultsForbidden) IsCode(code int) bool

IsCode returns true when this get greetings defaults forbidden response a status code equal to that given

func (*GetGreetingsDefaultsForbidden) IsRedirect

func (o *GetGreetingsDefaultsForbidden) IsRedirect() bool

IsRedirect returns true when this get greetings defaults forbidden response has a 3xx status code

func (*GetGreetingsDefaultsForbidden) IsServerError

func (o *GetGreetingsDefaultsForbidden) IsServerError() bool

IsServerError returns true when this get greetings defaults forbidden response has a 5xx status code

func (*GetGreetingsDefaultsForbidden) IsSuccess

func (o *GetGreetingsDefaultsForbidden) IsSuccess() bool

IsSuccess returns true when this get greetings defaults forbidden response has a 2xx status code

func (*GetGreetingsDefaultsForbidden) String

type GetGreetingsDefaultsGatewayTimeout

type GetGreetingsDefaultsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetGreetingsDefaultsGatewayTimeout

func NewGetGreetingsDefaultsGatewayTimeout() *GetGreetingsDefaultsGatewayTimeout

NewGetGreetingsDefaultsGatewayTimeout creates a GetGreetingsDefaultsGatewayTimeout with default headers values

func (*GetGreetingsDefaultsGatewayTimeout) Error

func (*GetGreetingsDefaultsGatewayTimeout) GetPayload

func (*GetGreetingsDefaultsGatewayTimeout) IsClientError

func (o *GetGreetingsDefaultsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get greetings defaults gateway timeout response has a 4xx status code

func (*GetGreetingsDefaultsGatewayTimeout) IsCode

IsCode returns true when this get greetings defaults gateway timeout response a status code equal to that given

func (*GetGreetingsDefaultsGatewayTimeout) IsRedirect

func (o *GetGreetingsDefaultsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get greetings defaults gateway timeout response has a 3xx status code

func (*GetGreetingsDefaultsGatewayTimeout) IsServerError

func (o *GetGreetingsDefaultsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get greetings defaults gateway timeout response has a 5xx status code

func (*GetGreetingsDefaultsGatewayTimeout) IsSuccess

IsSuccess returns true when this get greetings defaults gateway timeout response has a 2xx status code

func (*GetGreetingsDefaultsGatewayTimeout) String

type GetGreetingsDefaultsInternalServerError

type GetGreetingsDefaultsInternalServerError struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetGreetingsDefaultsInternalServerError

func NewGetGreetingsDefaultsInternalServerError() *GetGreetingsDefaultsInternalServerError

NewGetGreetingsDefaultsInternalServerError creates a GetGreetingsDefaultsInternalServerError with default headers values

func (*GetGreetingsDefaultsInternalServerError) Error

func (*GetGreetingsDefaultsInternalServerError) GetPayload

func (*GetGreetingsDefaultsInternalServerError) IsClientError

func (o *GetGreetingsDefaultsInternalServerError) IsClientError() bool

IsClientError returns true when this get greetings defaults internal server error response has a 4xx status code

func (*GetGreetingsDefaultsInternalServerError) IsCode

IsCode returns true when this get greetings defaults internal server error response a status code equal to that given

func (*GetGreetingsDefaultsInternalServerError) IsRedirect

IsRedirect returns true when this get greetings defaults internal server error response has a 3xx status code

func (*GetGreetingsDefaultsInternalServerError) IsServerError

func (o *GetGreetingsDefaultsInternalServerError) IsServerError() bool

IsServerError returns true when this get greetings defaults internal server error response has a 5xx status code

func (*GetGreetingsDefaultsInternalServerError) IsSuccess

IsSuccess returns true when this get greetings defaults internal server error response has a 2xx status code

func (*GetGreetingsDefaultsInternalServerError) String

type GetGreetingsDefaultsNotFound

type GetGreetingsDefaultsNotFound struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewGetGreetingsDefaultsNotFound

func NewGetGreetingsDefaultsNotFound() *GetGreetingsDefaultsNotFound

NewGetGreetingsDefaultsNotFound creates a GetGreetingsDefaultsNotFound with default headers values

func (*GetGreetingsDefaultsNotFound) Error

func (*GetGreetingsDefaultsNotFound) GetPayload

func (*GetGreetingsDefaultsNotFound) IsClientError

func (o *GetGreetingsDefaultsNotFound) IsClientError() bool

IsClientError returns true when this get greetings defaults not found response has a 4xx status code

func (*GetGreetingsDefaultsNotFound) IsCode

func (o *GetGreetingsDefaultsNotFound) IsCode(code int) bool

IsCode returns true when this get greetings defaults not found response a status code equal to that given

func (*GetGreetingsDefaultsNotFound) IsRedirect

func (o *GetGreetingsDefaultsNotFound) IsRedirect() bool

IsRedirect returns true when this get greetings defaults not found response has a 3xx status code

func (*GetGreetingsDefaultsNotFound) IsServerError

func (o *GetGreetingsDefaultsNotFound) IsServerError() bool

IsServerError returns true when this get greetings defaults not found response has a 5xx status code

func (*GetGreetingsDefaultsNotFound) IsSuccess

func (o *GetGreetingsDefaultsNotFound) IsSuccess() bool

IsSuccess returns true when this get greetings defaults not found response has a 2xx status code

func (*GetGreetingsDefaultsNotFound) String

type GetGreetingsDefaultsOK

type GetGreetingsDefaultsOK struct {
	Payload *models.DefaultGreetingList
}

GetGreetingsDefaultsOK describes a response with status code 200, with default header values.

successful operation

func NewGetGreetingsDefaultsOK

func NewGetGreetingsDefaultsOK() *GetGreetingsDefaultsOK

NewGetGreetingsDefaultsOK creates a GetGreetingsDefaultsOK with default headers values

func (*GetGreetingsDefaultsOK) Error

func (o *GetGreetingsDefaultsOK) Error() string

func (*GetGreetingsDefaultsOK) GetPayload

func (*GetGreetingsDefaultsOK) IsClientError

func (o *GetGreetingsDefaultsOK) IsClientError() bool

IsClientError returns true when this get greetings defaults o k response has a 4xx status code

func (*GetGreetingsDefaultsOK) IsCode

func (o *GetGreetingsDefaultsOK) IsCode(code int) bool

IsCode returns true when this get greetings defaults o k response a status code equal to that given

func (*GetGreetingsDefaultsOK) IsRedirect

func (o *GetGreetingsDefaultsOK) IsRedirect() bool

IsRedirect returns true when this get greetings defaults o k response has a 3xx status code

func (*GetGreetingsDefaultsOK) IsServerError

func (o *GetGreetingsDefaultsOK) IsServerError() bool

IsServerError returns true when this get greetings defaults o k response has a 5xx status code

func (*GetGreetingsDefaultsOK) IsSuccess

func (o *GetGreetingsDefaultsOK) IsSuccess() bool

IsSuccess returns true when this get greetings defaults o k response has a 2xx status code

func (*GetGreetingsDefaultsOK) String

func (o *GetGreetingsDefaultsOK) String() string

type GetGreetingsDefaultsParams

type GetGreetingsDefaultsParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetGreetingsDefaultsParams contains all the parameters to send to the API endpoint

for the get greetings defaults operation.

Typically these are written to a http.Request.

func NewGetGreetingsDefaultsParams

func NewGetGreetingsDefaultsParams() *GetGreetingsDefaultsParams

NewGetGreetingsDefaultsParams creates a new GetGreetingsDefaultsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetGreetingsDefaultsParamsWithContext

func NewGetGreetingsDefaultsParamsWithContext(ctx context.Context) *GetGreetingsDefaultsParams

NewGetGreetingsDefaultsParamsWithContext creates a new GetGreetingsDefaultsParams object with the ability to set a context for a request.

func NewGetGreetingsDefaultsParamsWithHTTPClient

func NewGetGreetingsDefaultsParamsWithHTTPClient(client *http.Client) *GetGreetingsDefaultsParams

NewGetGreetingsDefaultsParamsWithHTTPClient creates a new GetGreetingsDefaultsParams object with the ability to set a custom HTTPClient for a request.

func NewGetGreetingsDefaultsParamsWithTimeout

func NewGetGreetingsDefaultsParamsWithTimeout(timeout time.Duration) *GetGreetingsDefaultsParams

NewGetGreetingsDefaultsParamsWithTimeout creates a new GetGreetingsDefaultsParams object with the ability to set a timeout on a request.

func (*GetGreetingsDefaultsParams) SetContext

func (o *GetGreetingsDefaultsParams) SetContext(ctx context.Context)

SetContext adds the context to the get greetings defaults params

func (*GetGreetingsDefaultsParams) SetDefaults

func (o *GetGreetingsDefaultsParams) SetDefaults()

SetDefaults hydrates default values in the get greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*GetGreetingsDefaultsParams) SetHTTPClient

func (o *GetGreetingsDefaultsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get greetings defaults params

func (*GetGreetingsDefaultsParams) SetTimeout

func (o *GetGreetingsDefaultsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get greetings defaults params

func (*GetGreetingsDefaultsParams) WithContext

WithContext adds the context to the get greetings defaults params

func (*GetGreetingsDefaultsParams) WithDefaults

WithDefaults hydrates default values in the get greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*GetGreetingsDefaultsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get greetings defaults params

func (*GetGreetingsDefaultsParams) WithTimeout

WithTimeout adds the timeout to the get greetings defaults params

func (*GetGreetingsDefaultsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetGreetingsDefaultsReader

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

GetGreetingsDefaultsReader is a Reader for the GetGreetingsDefaults structure.

func (*GetGreetingsDefaultsReader) ReadResponse

func (o *GetGreetingsDefaultsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetGreetingsDefaultsRequestEntityTooLarge

type GetGreetingsDefaultsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetGreetingsDefaultsRequestEntityTooLarge

func NewGetGreetingsDefaultsRequestEntityTooLarge() *GetGreetingsDefaultsRequestEntityTooLarge

NewGetGreetingsDefaultsRequestEntityTooLarge creates a GetGreetingsDefaultsRequestEntityTooLarge with default headers values

func (*GetGreetingsDefaultsRequestEntityTooLarge) Error

func (*GetGreetingsDefaultsRequestEntityTooLarge) GetPayload

func (*GetGreetingsDefaultsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get greetings defaults request entity too large response has a 4xx status code

func (*GetGreetingsDefaultsRequestEntityTooLarge) IsCode

IsCode returns true when this get greetings defaults request entity too large response a status code equal to that given

func (*GetGreetingsDefaultsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get greetings defaults request entity too large response has a 3xx status code

func (*GetGreetingsDefaultsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get greetings defaults request entity too large response has a 5xx status code

func (*GetGreetingsDefaultsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get greetings defaults request entity too large response has a 2xx status code

func (*GetGreetingsDefaultsRequestEntityTooLarge) String

type GetGreetingsDefaultsRequestTimeout

type GetGreetingsDefaultsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetGreetingsDefaultsRequestTimeout

func NewGetGreetingsDefaultsRequestTimeout() *GetGreetingsDefaultsRequestTimeout

NewGetGreetingsDefaultsRequestTimeout creates a GetGreetingsDefaultsRequestTimeout with default headers values

func (*GetGreetingsDefaultsRequestTimeout) Error

func (*GetGreetingsDefaultsRequestTimeout) GetPayload

func (*GetGreetingsDefaultsRequestTimeout) IsClientError

func (o *GetGreetingsDefaultsRequestTimeout) IsClientError() bool

IsClientError returns true when this get greetings defaults request timeout response has a 4xx status code

func (*GetGreetingsDefaultsRequestTimeout) IsCode

IsCode returns true when this get greetings defaults request timeout response a status code equal to that given

func (*GetGreetingsDefaultsRequestTimeout) IsRedirect

func (o *GetGreetingsDefaultsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get greetings defaults request timeout response has a 3xx status code

func (*GetGreetingsDefaultsRequestTimeout) IsServerError

func (o *GetGreetingsDefaultsRequestTimeout) IsServerError() bool

IsServerError returns true when this get greetings defaults request timeout response has a 5xx status code

func (*GetGreetingsDefaultsRequestTimeout) IsSuccess

IsSuccess returns true when this get greetings defaults request timeout response has a 2xx status code

func (*GetGreetingsDefaultsRequestTimeout) String

type GetGreetingsDefaultsServiceUnavailable

type GetGreetingsDefaultsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetGreetingsDefaultsServiceUnavailable

func NewGetGreetingsDefaultsServiceUnavailable() *GetGreetingsDefaultsServiceUnavailable

NewGetGreetingsDefaultsServiceUnavailable creates a GetGreetingsDefaultsServiceUnavailable with default headers values

func (*GetGreetingsDefaultsServiceUnavailable) Error

func (*GetGreetingsDefaultsServiceUnavailable) GetPayload

func (*GetGreetingsDefaultsServiceUnavailable) IsClientError

func (o *GetGreetingsDefaultsServiceUnavailable) IsClientError() bool

IsClientError returns true when this get greetings defaults service unavailable response has a 4xx status code

func (*GetGreetingsDefaultsServiceUnavailable) IsCode

IsCode returns true when this get greetings defaults service unavailable response a status code equal to that given

func (*GetGreetingsDefaultsServiceUnavailable) IsRedirect

IsRedirect returns true when this get greetings defaults service unavailable response has a 3xx status code

func (*GetGreetingsDefaultsServiceUnavailable) IsServerError

func (o *GetGreetingsDefaultsServiceUnavailable) IsServerError() bool

IsServerError returns true when this get greetings defaults service unavailable response has a 5xx status code

func (*GetGreetingsDefaultsServiceUnavailable) IsSuccess

IsSuccess returns true when this get greetings defaults service unavailable response has a 2xx status code

func (*GetGreetingsDefaultsServiceUnavailable) String

type GetGreetingsDefaultsTooManyRequests

type GetGreetingsDefaultsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetGreetingsDefaultsTooManyRequests

func NewGetGreetingsDefaultsTooManyRequests() *GetGreetingsDefaultsTooManyRequests

NewGetGreetingsDefaultsTooManyRequests creates a GetGreetingsDefaultsTooManyRequests with default headers values

func (*GetGreetingsDefaultsTooManyRequests) Error

func (*GetGreetingsDefaultsTooManyRequests) GetPayload

func (*GetGreetingsDefaultsTooManyRequests) IsClientError

func (o *GetGreetingsDefaultsTooManyRequests) IsClientError() bool

IsClientError returns true when this get greetings defaults too many requests response has a 4xx status code

func (*GetGreetingsDefaultsTooManyRequests) IsCode

IsCode returns true when this get greetings defaults too many requests response a status code equal to that given

func (*GetGreetingsDefaultsTooManyRequests) IsRedirect

func (o *GetGreetingsDefaultsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get greetings defaults too many requests response has a 3xx status code

func (*GetGreetingsDefaultsTooManyRequests) IsServerError

func (o *GetGreetingsDefaultsTooManyRequests) IsServerError() bool

IsServerError returns true when this get greetings defaults too many requests response has a 5xx status code

func (*GetGreetingsDefaultsTooManyRequests) IsSuccess

IsSuccess returns true when this get greetings defaults too many requests response has a 2xx status code

func (*GetGreetingsDefaultsTooManyRequests) String

type GetGreetingsDefaultsUnauthorized

type GetGreetingsDefaultsUnauthorized struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewGetGreetingsDefaultsUnauthorized

func NewGetGreetingsDefaultsUnauthorized() *GetGreetingsDefaultsUnauthorized

NewGetGreetingsDefaultsUnauthorized creates a GetGreetingsDefaultsUnauthorized with default headers values

func (*GetGreetingsDefaultsUnauthorized) Error

func (*GetGreetingsDefaultsUnauthorized) GetPayload

func (*GetGreetingsDefaultsUnauthorized) IsClientError

func (o *GetGreetingsDefaultsUnauthorized) IsClientError() bool

IsClientError returns true when this get greetings defaults unauthorized response has a 4xx status code

func (*GetGreetingsDefaultsUnauthorized) IsCode

func (o *GetGreetingsDefaultsUnauthorized) IsCode(code int) bool

IsCode returns true when this get greetings defaults unauthorized response a status code equal to that given

func (*GetGreetingsDefaultsUnauthorized) IsRedirect

func (o *GetGreetingsDefaultsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get greetings defaults unauthorized response has a 3xx status code

func (*GetGreetingsDefaultsUnauthorized) IsServerError

func (o *GetGreetingsDefaultsUnauthorized) IsServerError() bool

IsServerError returns true when this get greetings defaults unauthorized response has a 5xx status code

func (*GetGreetingsDefaultsUnauthorized) IsSuccess

func (o *GetGreetingsDefaultsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get greetings defaults unauthorized response has a 2xx status code

func (*GetGreetingsDefaultsUnauthorized) String

type GetGreetingsDefaultsUnsupportedMediaType

type GetGreetingsDefaultsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetGreetingsDefaultsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetGreetingsDefaultsUnsupportedMediaType

func NewGetGreetingsDefaultsUnsupportedMediaType() *GetGreetingsDefaultsUnsupportedMediaType

NewGetGreetingsDefaultsUnsupportedMediaType creates a GetGreetingsDefaultsUnsupportedMediaType with default headers values

func (*GetGreetingsDefaultsUnsupportedMediaType) Error

func (*GetGreetingsDefaultsUnsupportedMediaType) GetPayload

func (*GetGreetingsDefaultsUnsupportedMediaType) IsClientError

IsClientError returns true when this get greetings defaults unsupported media type response has a 4xx status code

func (*GetGreetingsDefaultsUnsupportedMediaType) IsCode

IsCode returns true when this get greetings defaults unsupported media type response a status code equal to that given

func (*GetGreetingsDefaultsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get greetings defaults unsupported media type response has a 3xx status code

func (*GetGreetingsDefaultsUnsupportedMediaType) IsServerError

IsServerError returns true when this get greetings defaults unsupported media type response has a 5xx status code

func (*GetGreetingsDefaultsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get greetings defaults unsupported media type response has a 2xx status code

func (*GetGreetingsDefaultsUnsupportedMediaType) String

type GetGreetingsForbidden

type GetGreetingsForbidden struct {
	Payload *models.ErrorBody
}

GetGreetingsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewGetGreetingsForbidden

func NewGetGreetingsForbidden() *GetGreetingsForbidden

NewGetGreetingsForbidden creates a GetGreetingsForbidden with default headers values

func (*GetGreetingsForbidden) Error

func (o *GetGreetingsForbidden) Error() string

func (*GetGreetingsForbidden) GetPayload

func (o *GetGreetingsForbidden) GetPayload() *models.ErrorBody

func (*GetGreetingsForbidden) IsClientError

func (o *GetGreetingsForbidden) IsClientError() bool

IsClientError returns true when this get greetings forbidden response has a 4xx status code

func (*GetGreetingsForbidden) IsCode

func (o *GetGreetingsForbidden) IsCode(code int) bool

IsCode returns true when this get greetings forbidden response a status code equal to that given

func (*GetGreetingsForbidden) IsRedirect

func (o *GetGreetingsForbidden) IsRedirect() bool

IsRedirect returns true when this get greetings forbidden response has a 3xx status code

func (*GetGreetingsForbidden) IsServerError

func (o *GetGreetingsForbidden) IsServerError() bool

IsServerError returns true when this get greetings forbidden response has a 5xx status code

func (*GetGreetingsForbidden) IsSuccess

func (o *GetGreetingsForbidden) IsSuccess() bool

IsSuccess returns true when this get greetings forbidden response has a 2xx status code

func (*GetGreetingsForbidden) String

func (o *GetGreetingsForbidden) String() string

type GetGreetingsGatewayTimeout

type GetGreetingsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetGreetingsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetGreetingsGatewayTimeout

func NewGetGreetingsGatewayTimeout() *GetGreetingsGatewayTimeout

NewGetGreetingsGatewayTimeout creates a GetGreetingsGatewayTimeout with default headers values

func (*GetGreetingsGatewayTimeout) Error

func (*GetGreetingsGatewayTimeout) GetPayload

func (o *GetGreetingsGatewayTimeout) GetPayload() *models.ErrorBody

func (*GetGreetingsGatewayTimeout) IsClientError

func (o *GetGreetingsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get greetings gateway timeout response has a 4xx status code

func (*GetGreetingsGatewayTimeout) IsCode

func (o *GetGreetingsGatewayTimeout) IsCode(code int) bool

IsCode returns true when this get greetings gateway timeout response a status code equal to that given

func (*GetGreetingsGatewayTimeout) IsRedirect

func (o *GetGreetingsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get greetings gateway timeout response has a 3xx status code

func (*GetGreetingsGatewayTimeout) IsServerError

func (o *GetGreetingsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get greetings gateway timeout response has a 5xx status code

func (*GetGreetingsGatewayTimeout) IsSuccess

func (o *GetGreetingsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get greetings gateway timeout response has a 2xx status code

func (*GetGreetingsGatewayTimeout) String

func (o *GetGreetingsGatewayTimeout) String() string

type GetGreetingsInternalServerError

type GetGreetingsInternalServerError struct {
	Payload *models.ErrorBody
}

GetGreetingsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetGreetingsInternalServerError

func NewGetGreetingsInternalServerError() *GetGreetingsInternalServerError

NewGetGreetingsInternalServerError creates a GetGreetingsInternalServerError with default headers values

func (*GetGreetingsInternalServerError) Error

func (*GetGreetingsInternalServerError) GetPayload

func (*GetGreetingsInternalServerError) IsClientError

func (o *GetGreetingsInternalServerError) IsClientError() bool

IsClientError returns true when this get greetings internal server error response has a 4xx status code

func (*GetGreetingsInternalServerError) IsCode

func (o *GetGreetingsInternalServerError) IsCode(code int) bool

IsCode returns true when this get greetings internal server error response a status code equal to that given

func (*GetGreetingsInternalServerError) IsRedirect

func (o *GetGreetingsInternalServerError) IsRedirect() bool

IsRedirect returns true when this get greetings internal server error response has a 3xx status code

func (*GetGreetingsInternalServerError) IsServerError

func (o *GetGreetingsInternalServerError) IsServerError() bool

IsServerError returns true when this get greetings internal server error response has a 5xx status code

func (*GetGreetingsInternalServerError) IsSuccess

func (o *GetGreetingsInternalServerError) IsSuccess() bool

IsSuccess returns true when this get greetings internal server error response has a 2xx status code

func (*GetGreetingsInternalServerError) String

type GetGreetingsNotFound

type GetGreetingsNotFound struct {
	Payload *models.ErrorBody
}

GetGreetingsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewGetGreetingsNotFound

func NewGetGreetingsNotFound() *GetGreetingsNotFound

NewGetGreetingsNotFound creates a GetGreetingsNotFound with default headers values

func (*GetGreetingsNotFound) Error

func (o *GetGreetingsNotFound) Error() string

func (*GetGreetingsNotFound) GetPayload

func (o *GetGreetingsNotFound) GetPayload() *models.ErrorBody

func (*GetGreetingsNotFound) IsClientError

func (o *GetGreetingsNotFound) IsClientError() bool

IsClientError returns true when this get greetings not found response has a 4xx status code

func (*GetGreetingsNotFound) IsCode

func (o *GetGreetingsNotFound) IsCode(code int) bool

IsCode returns true when this get greetings not found response a status code equal to that given

func (*GetGreetingsNotFound) IsRedirect

func (o *GetGreetingsNotFound) IsRedirect() bool

IsRedirect returns true when this get greetings not found response has a 3xx status code

func (*GetGreetingsNotFound) IsServerError

func (o *GetGreetingsNotFound) IsServerError() bool

IsServerError returns true when this get greetings not found response has a 5xx status code

func (*GetGreetingsNotFound) IsSuccess

func (o *GetGreetingsNotFound) IsSuccess() bool

IsSuccess returns true when this get greetings not found response has a 2xx status code

func (*GetGreetingsNotFound) String

func (o *GetGreetingsNotFound) String() string

type GetGreetingsOK

type GetGreetingsOK struct {
	Payload *models.DomainEntityListing
}

GetGreetingsOK describes a response with status code 200, with default header values.

successful operation

func NewGetGreetingsOK

func NewGetGreetingsOK() *GetGreetingsOK

NewGetGreetingsOK creates a GetGreetingsOK with default headers values

func (*GetGreetingsOK) Error

func (o *GetGreetingsOK) Error() string

func (*GetGreetingsOK) GetPayload

func (o *GetGreetingsOK) GetPayload() *models.DomainEntityListing

func (*GetGreetingsOK) IsClientError

func (o *GetGreetingsOK) IsClientError() bool

IsClientError returns true when this get greetings o k response has a 4xx status code

func (*GetGreetingsOK) IsCode

func (o *GetGreetingsOK) IsCode(code int) bool

IsCode returns true when this get greetings o k response a status code equal to that given

func (*GetGreetingsOK) IsRedirect

func (o *GetGreetingsOK) IsRedirect() bool

IsRedirect returns true when this get greetings o k response has a 3xx status code

func (*GetGreetingsOK) IsServerError

func (o *GetGreetingsOK) IsServerError() bool

IsServerError returns true when this get greetings o k response has a 5xx status code

func (*GetGreetingsOK) IsSuccess

func (o *GetGreetingsOK) IsSuccess() bool

IsSuccess returns true when this get greetings o k response has a 2xx status code

func (*GetGreetingsOK) String

func (o *GetGreetingsOK) String() string

type GetGreetingsParams

type GetGreetingsParams struct {

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetGreetingsParams contains all the parameters to send to the API endpoint

for the get greetings operation.

Typically these are written to a http.Request.

func NewGetGreetingsParams

func NewGetGreetingsParams() *GetGreetingsParams

NewGetGreetingsParams creates a new GetGreetingsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetGreetingsParamsWithContext

func NewGetGreetingsParamsWithContext(ctx context.Context) *GetGreetingsParams

NewGetGreetingsParamsWithContext creates a new GetGreetingsParams object with the ability to set a context for a request.

func NewGetGreetingsParamsWithHTTPClient

func NewGetGreetingsParamsWithHTTPClient(client *http.Client) *GetGreetingsParams

NewGetGreetingsParamsWithHTTPClient creates a new GetGreetingsParams object with the ability to set a custom HTTPClient for a request.

func NewGetGreetingsParamsWithTimeout

func NewGetGreetingsParamsWithTimeout(timeout time.Duration) *GetGreetingsParams

NewGetGreetingsParamsWithTimeout creates a new GetGreetingsParams object with the ability to set a timeout on a request.

func (*GetGreetingsParams) SetContext

func (o *GetGreetingsParams) SetContext(ctx context.Context)

SetContext adds the context to the get greetings params

func (*GetGreetingsParams) SetDefaults

func (o *GetGreetingsParams) SetDefaults()

SetDefaults hydrates default values in the get greetings params (not the query body).

All values with no default are reset to their zero value.

func (*GetGreetingsParams) SetHTTPClient

func (o *GetGreetingsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get greetings params

func (*GetGreetingsParams) SetPageNumber

func (o *GetGreetingsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get greetings params

func (*GetGreetingsParams) SetPageSize

func (o *GetGreetingsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get greetings params

func (*GetGreetingsParams) SetTimeout

func (o *GetGreetingsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get greetings params

func (*GetGreetingsParams) WithContext

WithContext adds the context to the get greetings params

func (*GetGreetingsParams) WithDefaults

func (o *GetGreetingsParams) WithDefaults() *GetGreetingsParams

WithDefaults hydrates default values in the get greetings params (not the query body).

All values with no default are reset to their zero value.

func (*GetGreetingsParams) WithHTTPClient

func (o *GetGreetingsParams) WithHTTPClient(client *http.Client) *GetGreetingsParams

WithHTTPClient adds the HTTPClient to the get greetings params

func (*GetGreetingsParams) WithPageNumber

func (o *GetGreetingsParams) WithPageNumber(pageNumber *int32) *GetGreetingsParams

WithPageNumber adds the pageNumber to the get greetings params

func (*GetGreetingsParams) WithPageSize

func (o *GetGreetingsParams) WithPageSize(pageSize *int32) *GetGreetingsParams

WithPageSize adds the pageSize to the get greetings params

func (*GetGreetingsParams) WithTimeout

func (o *GetGreetingsParams) WithTimeout(timeout time.Duration) *GetGreetingsParams

WithTimeout adds the timeout to the get greetings params

func (*GetGreetingsParams) WriteToRequest

func (o *GetGreetingsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetGreetingsReader

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

GetGreetingsReader is a Reader for the GetGreetings structure.

func (*GetGreetingsReader) ReadResponse

func (o *GetGreetingsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetGreetingsRequestEntityTooLarge

type GetGreetingsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetGreetingsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetGreetingsRequestEntityTooLarge

func NewGetGreetingsRequestEntityTooLarge() *GetGreetingsRequestEntityTooLarge

NewGetGreetingsRequestEntityTooLarge creates a GetGreetingsRequestEntityTooLarge with default headers values

func (*GetGreetingsRequestEntityTooLarge) Error

func (*GetGreetingsRequestEntityTooLarge) GetPayload

func (*GetGreetingsRequestEntityTooLarge) IsClientError

func (o *GetGreetingsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get greetings request entity too large response has a 4xx status code

func (*GetGreetingsRequestEntityTooLarge) IsCode

func (o *GetGreetingsRequestEntityTooLarge) IsCode(code int) bool

IsCode returns true when this get greetings request entity too large response a status code equal to that given

func (*GetGreetingsRequestEntityTooLarge) IsRedirect

func (o *GetGreetingsRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get greetings request entity too large response has a 3xx status code

func (*GetGreetingsRequestEntityTooLarge) IsServerError

func (o *GetGreetingsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get greetings request entity too large response has a 5xx status code

func (*GetGreetingsRequestEntityTooLarge) IsSuccess

func (o *GetGreetingsRequestEntityTooLarge) IsSuccess() bool

IsSuccess returns true when this get greetings request entity too large response has a 2xx status code

func (*GetGreetingsRequestEntityTooLarge) String

type GetGreetingsRequestTimeout

type GetGreetingsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetGreetingsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetGreetingsRequestTimeout

func NewGetGreetingsRequestTimeout() *GetGreetingsRequestTimeout

NewGetGreetingsRequestTimeout creates a GetGreetingsRequestTimeout with default headers values

func (*GetGreetingsRequestTimeout) Error

func (*GetGreetingsRequestTimeout) GetPayload

func (o *GetGreetingsRequestTimeout) GetPayload() *models.ErrorBody

func (*GetGreetingsRequestTimeout) IsClientError

func (o *GetGreetingsRequestTimeout) IsClientError() bool

IsClientError returns true when this get greetings request timeout response has a 4xx status code

func (*GetGreetingsRequestTimeout) IsCode

func (o *GetGreetingsRequestTimeout) IsCode(code int) bool

IsCode returns true when this get greetings request timeout response a status code equal to that given

func (*GetGreetingsRequestTimeout) IsRedirect

func (o *GetGreetingsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get greetings request timeout response has a 3xx status code

func (*GetGreetingsRequestTimeout) IsServerError

func (o *GetGreetingsRequestTimeout) IsServerError() bool

IsServerError returns true when this get greetings request timeout response has a 5xx status code

func (*GetGreetingsRequestTimeout) IsSuccess

func (o *GetGreetingsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get greetings request timeout response has a 2xx status code

func (*GetGreetingsRequestTimeout) String

func (o *GetGreetingsRequestTimeout) String() string

type GetGreetingsServiceUnavailable

type GetGreetingsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetGreetingsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetGreetingsServiceUnavailable

func NewGetGreetingsServiceUnavailable() *GetGreetingsServiceUnavailable

NewGetGreetingsServiceUnavailable creates a GetGreetingsServiceUnavailable with default headers values

func (*GetGreetingsServiceUnavailable) Error

func (*GetGreetingsServiceUnavailable) GetPayload

func (*GetGreetingsServiceUnavailable) IsClientError

func (o *GetGreetingsServiceUnavailable) IsClientError() bool

IsClientError returns true when this get greetings service unavailable response has a 4xx status code

func (*GetGreetingsServiceUnavailable) IsCode

func (o *GetGreetingsServiceUnavailable) IsCode(code int) bool

IsCode returns true when this get greetings service unavailable response a status code equal to that given

func (*GetGreetingsServiceUnavailable) IsRedirect

func (o *GetGreetingsServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get greetings service unavailable response has a 3xx status code

func (*GetGreetingsServiceUnavailable) IsServerError

func (o *GetGreetingsServiceUnavailable) IsServerError() bool

IsServerError returns true when this get greetings service unavailable response has a 5xx status code

func (*GetGreetingsServiceUnavailable) IsSuccess

func (o *GetGreetingsServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get greetings service unavailable response has a 2xx status code

func (*GetGreetingsServiceUnavailable) String

type GetGreetingsTooManyRequests

type GetGreetingsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetGreetingsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetGreetingsTooManyRequests

func NewGetGreetingsTooManyRequests() *GetGreetingsTooManyRequests

NewGetGreetingsTooManyRequests creates a GetGreetingsTooManyRequests with default headers values

func (*GetGreetingsTooManyRequests) Error

func (*GetGreetingsTooManyRequests) GetPayload

func (o *GetGreetingsTooManyRequests) GetPayload() *models.ErrorBody

func (*GetGreetingsTooManyRequests) IsClientError

func (o *GetGreetingsTooManyRequests) IsClientError() bool

IsClientError returns true when this get greetings too many requests response has a 4xx status code

func (*GetGreetingsTooManyRequests) IsCode

func (o *GetGreetingsTooManyRequests) IsCode(code int) bool

IsCode returns true when this get greetings too many requests response a status code equal to that given

func (*GetGreetingsTooManyRequests) IsRedirect

func (o *GetGreetingsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get greetings too many requests response has a 3xx status code

func (*GetGreetingsTooManyRequests) IsServerError

func (o *GetGreetingsTooManyRequests) IsServerError() bool

IsServerError returns true when this get greetings too many requests response has a 5xx status code

func (*GetGreetingsTooManyRequests) IsSuccess

func (o *GetGreetingsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get greetings too many requests response has a 2xx status code

func (*GetGreetingsTooManyRequests) String

func (o *GetGreetingsTooManyRequests) String() string

type GetGreetingsUnauthorized

type GetGreetingsUnauthorized struct {
	Payload *models.ErrorBody
}

GetGreetingsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewGetGreetingsUnauthorized

func NewGetGreetingsUnauthorized() *GetGreetingsUnauthorized

NewGetGreetingsUnauthorized creates a GetGreetingsUnauthorized with default headers values

func (*GetGreetingsUnauthorized) Error

func (o *GetGreetingsUnauthorized) Error() string

func (*GetGreetingsUnauthorized) GetPayload

func (o *GetGreetingsUnauthorized) GetPayload() *models.ErrorBody

func (*GetGreetingsUnauthorized) IsClientError

func (o *GetGreetingsUnauthorized) IsClientError() bool

IsClientError returns true when this get greetings unauthorized response has a 4xx status code

func (*GetGreetingsUnauthorized) IsCode

func (o *GetGreetingsUnauthorized) IsCode(code int) bool

IsCode returns true when this get greetings unauthorized response a status code equal to that given

func (*GetGreetingsUnauthorized) IsRedirect

func (o *GetGreetingsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get greetings unauthorized response has a 3xx status code

func (*GetGreetingsUnauthorized) IsServerError

func (o *GetGreetingsUnauthorized) IsServerError() bool

IsServerError returns true when this get greetings unauthorized response has a 5xx status code

func (*GetGreetingsUnauthorized) IsSuccess

func (o *GetGreetingsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get greetings unauthorized response has a 2xx status code

func (*GetGreetingsUnauthorized) String

func (o *GetGreetingsUnauthorized) String() string

type GetGreetingsUnsupportedMediaType

type GetGreetingsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetGreetingsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetGreetingsUnsupportedMediaType

func NewGetGreetingsUnsupportedMediaType() *GetGreetingsUnsupportedMediaType

NewGetGreetingsUnsupportedMediaType creates a GetGreetingsUnsupportedMediaType with default headers values

func (*GetGreetingsUnsupportedMediaType) Error

func (*GetGreetingsUnsupportedMediaType) GetPayload

func (*GetGreetingsUnsupportedMediaType) IsClientError

func (o *GetGreetingsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get greetings unsupported media type response has a 4xx status code

func (*GetGreetingsUnsupportedMediaType) IsCode

func (o *GetGreetingsUnsupportedMediaType) IsCode(code int) bool

IsCode returns true when this get greetings unsupported media type response a status code equal to that given

func (*GetGreetingsUnsupportedMediaType) IsRedirect

func (o *GetGreetingsUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get greetings unsupported media type response has a 3xx status code

func (*GetGreetingsUnsupportedMediaType) IsServerError

func (o *GetGreetingsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get greetings unsupported media type response has a 5xx status code

func (*GetGreetingsUnsupportedMediaType) IsSuccess

func (o *GetGreetingsUnsupportedMediaType) IsSuccess() bool

IsSuccess returns true when this get greetings unsupported media type response has a 2xx status code

func (*GetGreetingsUnsupportedMediaType) String

type GetGroupGreetingsBadRequest

type GetGroupGreetingsBadRequest struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewGetGroupGreetingsBadRequest

func NewGetGroupGreetingsBadRequest() *GetGroupGreetingsBadRequest

NewGetGroupGreetingsBadRequest creates a GetGroupGreetingsBadRequest with default headers values

func (*GetGroupGreetingsBadRequest) Error

func (*GetGroupGreetingsBadRequest) GetPayload

func (o *GetGroupGreetingsBadRequest) GetPayload() *models.ErrorBody

func (*GetGroupGreetingsBadRequest) IsClientError

func (o *GetGroupGreetingsBadRequest) IsClientError() bool

IsClientError returns true when this get group greetings bad request response has a 4xx status code

func (*GetGroupGreetingsBadRequest) IsCode

func (o *GetGroupGreetingsBadRequest) IsCode(code int) bool

IsCode returns true when this get group greetings bad request response a status code equal to that given

func (*GetGroupGreetingsBadRequest) IsRedirect

func (o *GetGroupGreetingsBadRequest) IsRedirect() bool

IsRedirect returns true when this get group greetings bad request response has a 3xx status code

func (*GetGroupGreetingsBadRequest) IsServerError

func (o *GetGroupGreetingsBadRequest) IsServerError() bool

IsServerError returns true when this get group greetings bad request response has a 5xx status code

func (*GetGroupGreetingsBadRequest) IsSuccess

func (o *GetGroupGreetingsBadRequest) IsSuccess() bool

IsSuccess returns true when this get group greetings bad request response has a 2xx status code

func (*GetGroupGreetingsBadRequest) String

func (o *GetGroupGreetingsBadRequest) String() string

type GetGroupGreetingsDefaultsBadRequest

type GetGroupGreetingsDefaultsBadRequest struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewGetGroupGreetingsDefaultsBadRequest

func NewGetGroupGreetingsDefaultsBadRequest() *GetGroupGreetingsDefaultsBadRequest

NewGetGroupGreetingsDefaultsBadRequest creates a GetGroupGreetingsDefaultsBadRequest with default headers values

func (*GetGroupGreetingsDefaultsBadRequest) Error

func (*GetGroupGreetingsDefaultsBadRequest) GetPayload

func (*GetGroupGreetingsDefaultsBadRequest) IsClientError

func (o *GetGroupGreetingsDefaultsBadRequest) IsClientError() bool

IsClientError returns true when this get group greetings defaults bad request response has a 4xx status code

func (*GetGroupGreetingsDefaultsBadRequest) IsCode

IsCode returns true when this get group greetings defaults bad request response a status code equal to that given

func (*GetGroupGreetingsDefaultsBadRequest) IsRedirect

func (o *GetGroupGreetingsDefaultsBadRequest) IsRedirect() bool

IsRedirect returns true when this get group greetings defaults bad request response has a 3xx status code

func (*GetGroupGreetingsDefaultsBadRequest) IsServerError

func (o *GetGroupGreetingsDefaultsBadRequest) IsServerError() bool

IsServerError returns true when this get group greetings defaults bad request response has a 5xx status code

func (*GetGroupGreetingsDefaultsBadRequest) IsSuccess

IsSuccess returns true when this get group greetings defaults bad request response has a 2xx status code

func (*GetGroupGreetingsDefaultsBadRequest) String

type GetGroupGreetingsDefaultsForbidden

type GetGroupGreetingsDefaultsForbidden struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewGetGroupGreetingsDefaultsForbidden

func NewGetGroupGreetingsDefaultsForbidden() *GetGroupGreetingsDefaultsForbidden

NewGetGroupGreetingsDefaultsForbidden creates a GetGroupGreetingsDefaultsForbidden with default headers values

func (*GetGroupGreetingsDefaultsForbidden) Error

func (*GetGroupGreetingsDefaultsForbidden) GetPayload

func (*GetGroupGreetingsDefaultsForbidden) IsClientError

func (o *GetGroupGreetingsDefaultsForbidden) IsClientError() bool

IsClientError returns true when this get group greetings defaults forbidden response has a 4xx status code

func (*GetGroupGreetingsDefaultsForbidden) IsCode

IsCode returns true when this get group greetings defaults forbidden response a status code equal to that given

func (*GetGroupGreetingsDefaultsForbidden) IsRedirect

func (o *GetGroupGreetingsDefaultsForbidden) IsRedirect() bool

IsRedirect returns true when this get group greetings defaults forbidden response has a 3xx status code

func (*GetGroupGreetingsDefaultsForbidden) IsServerError

func (o *GetGroupGreetingsDefaultsForbidden) IsServerError() bool

IsServerError returns true when this get group greetings defaults forbidden response has a 5xx status code

func (*GetGroupGreetingsDefaultsForbidden) IsSuccess

IsSuccess returns true when this get group greetings defaults forbidden response has a 2xx status code

func (*GetGroupGreetingsDefaultsForbidden) String

type GetGroupGreetingsDefaultsGatewayTimeout

type GetGroupGreetingsDefaultsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetGroupGreetingsDefaultsGatewayTimeout

func NewGetGroupGreetingsDefaultsGatewayTimeout() *GetGroupGreetingsDefaultsGatewayTimeout

NewGetGroupGreetingsDefaultsGatewayTimeout creates a GetGroupGreetingsDefaultsGatewayTimeout with default headers values

func (*GetGroupGreetingsDefaultsGatewayTimeout) Error

func (*GetGroupGreetingsDefaultsGatewayTimeout) GetPayload

func (*GetGroupGreetingsDefaultsGatewayTimeout) IsClientError

func (o *GetGroupGreetingsDefaultsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get group greetings defaults gateway timeout response has a 4xx status code

func (*GetGroupGreetingsDefaultsGatewayTimeout) IsCode

IsCode returns true when this get group greetings defaults gateway timeout response a status code equal to that given

func (*GetGroupGreetingsDefaultsGatewayTimeout) IsRedirect

IsRedirect returns true when this get group greetings defaults gateway timeout response has a 3xx status code

func (*GetGroupGreetingsDefaultsGatewayTimeout) IsServerError

func (o *GetGroupGreetingsDefaultsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get group greetings defaults gateway timeout response has a 5xx status code

func (*GetGroupGreetingsDefaultsGatewayTimeout) IsSuccess

IsSuccess returns true when this get group greetings defaults gateway timeout response has a 2xx status code

func (*GetGroupGreetingsDefaultsGatewayTimeout) String

type GetGroupGreetingsDefaultsInternalServerError

type GetGroupGreetingsDefaultsInternalServerError struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetGroupGreetingsDefaultsInternalServerError

func NewGetGroupGreetingsDefaultsInternalServerError() *GetGroupGreetingsDefaultsInternalServerError

NewGetGroupGreetingsDefaultsInternalServerError creates a GetGroupGreetingsDefaultsInternalServerError with default headers values

func (*GetGroupGreetingsDefaultsInternalServerError) Error

func (*GetGroupGreetingsDefaultsInternalServerError) GetPayload

func (*GetGroupGreetingsDefaultsInternalServerError) IsClientError

IsClientError returns true when this get group greetings defaults internal server error response has a 4xx status code

func (*GetGroupGreetingsDefaultsInternalServerError) IsCode

IsCode returns true when this get group greetings defaults internal server error response a status code equal to that given

func (*GetGroupGreetingsDefaultsInternalServerError) IsRedirect

IsRedirect returns true when this get group greetings defaults internal server error response has a 3xx status code

func (*GetGroupGreetingsDefaultsInternalServerError) IsServerError

IsServerError returns true when this get group greetings defaults internal server error response has a 5xx status code

func (*GetGroupGreetingsDefaultsInternalServerError) IsSuccess

IsSuccess returns true when this get group greetings defaults internal server error response has a 2xx status code

func (*GetGroupGreetingsDefaultsInternalServerError) String

type GetGroupGreetingsDefaultsNotFound

type GetGroupGreetingsDefaultsNotFound struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewGetGroupGreetingsDefaultsNotFound

func NewGetGroupGreetingsDefaultsNotFound() *GetGroupGreetingsDefaultsNotFound

NewGetGroupGreetingsDefaultsNotFound creates a GetGroupGreetingsDefaultsNotFound with default headers values

func (*GetGroupGreetingsDefaultsNotFound) Error

func (*GetGroupGreetingsDefaultsNotFound) GetPayload

func (*GetGroupGreetingsDefaultsNotFound) IsClientError

func (o *GetGroupGreetingsDefaultsNotFound) IsClientError() bool

IsClientError returns true when this get group greetings defaults not found response has a 4xx status code

func (*GetGroupGreetingsDefaultsNotFound) IsCode

func (o *GetGroupGreetingsDefaultsNotFound) IsCode(code int) bool

IsCode returns true when this get group greetings defaults not found response a status code equal to that given

func (*GetGroupGreetingsDefaultsNotFound) IsRedirect

func (o *GetGroupGreetingsDefaultsNotFound) IsRedirect() bool

IsRedirect returns true when this get group greetings defaults not found response has a 3xx status code

func (*GetGroupGreetingsDefaultsNotFound) IsServerError

func (o *GetGroupGreetingsDefaultsNotFound) IsServerError() bool

IsServerError returns true when this get group greetings defaults not found response has a 5xx status code

func (*GetGroupGreetingsDefaultsNotFound) IsSuccess

func (o *GetGroupGreetingsDefaultsNotFound) IsSuccess() bool

IsSuccess returns true when this get group greetings defaults not found response has a 2xx status code

func (*GetGroupGreetingsDefaultsNotFound) String

type GetGroupGreetingsDefaultsOK

type GetGroupGreetingsDefaultsOK struct {
	Payload *models.DefaultGreetingList
}

GetGroupGreetingsDefaultsOK describes a response with status code 200, with default header values.

successful operation

func NewGetGroupGreetingsDefaultsOK

func NewGetGroupGreetingsDefaultsOK() *GetGroupGreetingsDefaultsOK

NewGetGroupGreetingsDefaultsOK creates a GetGroupGreetingsDefaultsOK with default headers values

func (*GetGroupGreetingsDefaultsOK) Error

func (*GetGroupGreetingsDefaultsOK) GetPayload

func (*GetGroupGreetingsDefaultsOK) IsClientError

func (o *GetGroupGreetingsDefaultsOK) IsClientError() bool

IsClientError returns true when this get group greetings defaults o k response has a 4xx status code

func (*GetGroupGreetingsDefaultsOK) IsCode

func (o *GetGroupGreetingsDefaultsOK) IsCode(code int) bool

IsCode returns true when this get group greetings defaults o k response a status code equal to that given

func (*GetGroupGreetingsDefaultsOK) IsRedirect

func (o *GetGroupGreetingsDefaultsOK) IsRedirect() bool

IsRedirect returns true when this get group greetings defaults o k response has a 3xx status code

func (*GetGroupGreetingsDefaultsOK) IsServerError

func (o *GetGroupGreetingsDefaultsOK) IsServerError() bool

IsServerError returns true when this get group greetings defaults o k response has a 5xx status code

func (*GetGroupGreetingsDefaultsOK) IsSuccess

func (o *GetGroupGreetingsDefaultsOK) IsSuccess() bool

IsSuccess returns true when this get group greetings defaults o k response has a 2xx status code

func (*GetGroupGreetingsDefaultsOK) String

func (o *GetGroupGreetingsDefaultsOK) String() string

type GetGroupGreetingsDefaultsParams

type GetGroupGreetingsDefaultsParams struct {

	/* GroupID.

	   Group ID
	*/
	GroupID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetGroupGreetingsDefaultsParams contains all the parameters to send to the API endpoint

for the get group greetings defaults operation.

Typically these are written to a http.Request.

func NewGetGroupGreetingsDefaultsParams

func NewGetGroupGreetingsDefaultsParams() *GetGroupGreetingsDefaultsParams

NewGetGroupGreetingsDefaultsParams creates a new GetGroupGreetingsDefaultsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetGroupGreetingsDefaultsParamsWithContext

func NewGetGroupGreetingsDefaultsParamsWithContext(ctx context.Context) *GetGroupGreetingsDefaultsParams

NewGetGroupGreetingsDefaultsParamsWithContext creates a new GetGroupGreetingsDefaultsParams object with the ability to set a context for a request.

func NewGetGroupGreetingsDefaultsParamsWithHTTPClient

func NewGetGroupGreetingsDefaultsParamsWithHTTPClient(client *http.Client) *GetGroupGreetingsDefaultsParams

NewGetGroupGreetingsDefaultsParamsWithHTTPClient creates a new GetGroupGreetingsDefaultsParams object with the ability to set a custom HTTPClient for a request.

func NewGetGroupGreetingsDefaultsParamsWithTimeout

func NewGetGroupGreetingsDefaultsParamsWithTimeout(timeout time.Duration) *GetGroupGreetingsDefaultsParams

NewGetGroupGreetingsDefaultsParamsWithTimeout creates a new GetGroupGreetingsDefaultsParams object with the ability to set a timeout on a request.

func (*GetGroupGreetingsDefaultsParams) SetContext

func (o *GetGroupGreetingsDefaultsParams) SetContext(ctx context.Context)

SetContext adds the context to the get group greetings defaults params

func (*GetGroupGreetingsDefaultsParams) SetDefaults

func (o *GetGroupGreetingsDefaultsParams) SetDefaults()

SetDefaults hydrates default values in the get group greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*GetGroupGreetingsDefaultsParams) SetGroupID

func (o *GetGroupGreetingsDefaultsParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get group greetings defaults params

func (*GetGroupGreetingsDefaultsParams) SetHTTPClient

func (o *GetGroupGreetingsDefaultsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get group greetings defaults params

func (*GetGroupGreetingsDefaultsParams) SetTimeout

func (o *GetGroupGreetingsDefaultsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get group greetings defaults params

func (*GetGroupGreetingsDefaultsParams) WithContext

WithContext adds the context to the get group greetings defaults params

func (*GetGroupGreetingsDefaultsParams) WithDefaults

WithDefaults hydrates default values in the get group greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*GetGroupGreetingsDefaultsParams) WithGroupID

WithGroupID adds the groupID to the get group greetings defaults params

func (*GetGroupGreetingsDefaultsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get group greetings defaults params

func (*GetGroupGreetingsDefaultsParams) WithTimeout

WithTimeout adds the timeout to the get group greetings defaults params

func (*GetGroupGreetingsDefaultsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetGroupGreetingsDefaultsReader

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

GetGroupGreetingsDefaultsReader is a Reader for the GetGroupGreetingsDefaults structure.

func (*GetGroupGreetingsDefaultsReader) ReadResponse

func (o *GetGroupGreetingsDefaultsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetGroupGreetingsDefaultsRequestEntityTooLarge

type GetGroupGreetingsDefaultsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetGroupGreetingsDefaultsRequestEntityTooLarge

func NewGetGroupGreetingsDefaultsRequestEntityTooLarge() *GetGroupGreetingsDefaultsRequestEntityTooLarge

NewGetGroupGreetingsDefaultsRequestEntityTooLarge creates a GetGroupGreetingsDefaultsRequestEntityTooLarge with default headers values

func (*GetGroupGreetingsDefaultsRequestEntityTooLarge) Error

func (*GetGroupGreetingsDefaultsRequestEntityTooLarge) GetPayload

func (*GetGroupGreetingsDefaultsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get group greetings defaults request entity too large response has a 4xx status code

func (*GetGroupGreetingsDefaultsRequestEntityTooLarge) IsCode

IsCode returns true when this get group greetings defaults request entity too large response a status code equal to that given

func (*GetGroupGreetingsDefaultsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get group greetings defaults request entity too large response has a 3xx status code

func (*GetGroupGreetingsDefaultsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get group greetings defaults request entity too large response has a 5xx status code

func (*GetGroupGreetingsDefaultsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get group greetings defaults request entity too large response has a 2xx status code

func (*GetGroupGreetingsDefaultsRequestEntityTooLarge) String

type GetGroupGreetingsDefaultsRequestTimeout

type GetGroupGreetingsDefaultsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetGroupGreetingsDefaultsRequestTimeout

func NewGetGroupGreetingsDefaultsRequestTimeout() *GetGroupGreetingsDefaultsRequestTimeout

NewGetGroupGreetingsDefaultsRequestTimeout creates a GetGroupGreetingsDefaultsRequestTimeout with default headers values

func (*GetGroupGreetingsDefaultsRequestTimeout) Error

func (*GetGroupGreetingsDefaultsRequestTimeout) GetPayload

func (*GetGroupGreetingsDefaultsRequestTimeout) IsClientError

func (o *GetGroupGreetingsDefaultsRequestTimeout) IsClientError() bool

IsClientError returns true when this get group greetings defaults request timeout response has a 4xx status code

func (*GetGroupGreetingsDefaultsRequestTimeout) IsCode

IsCode returns true when this get group greetings defaults request timeout response a status code equal to that given

func (*GetGroupGreetingsDefaultsRequestTimeout) IsRedirect

IsRedirect returns true when this get group greetings defaults request timeout response has a 3xx status code

func (*GetGroupGreetingsDefaultsRequestTimeout) IsServerError

func (o *GetGroupGreetingsDefaultsRequestTimeout) IsServerError() bool

IsServerError returns true when this get group greetings defaults request timeout response has a 5xx status code

func (*GetGroupGreetingsDefaultsRequestTimeout) IsSuccess

IsSuccess returns true when this get group greetings defaults request timeout response has a 2xx status code

func (*GetGroupGreetingsDefaultsRequestTimeout) String

type GetGroupGreetingsDefaultsServiceUnavailable

type GetGroupGreetingsDefaultsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetGroupGreetingsDefaultsServiceUnavailable

func NewGetGroupGreetingsDefaultsServiceUnavailable() *GetGroupGreetingsDefaultsServiceUnavailable

NewGetGroupGreetingsDefaultsServiceUnavailable creates a GetGroupGreetingsDefaultsServiceUnavailable with default headers values

func (*GetGroupGreetingsDefaultsServiceUnavailable) Error

func (*GetGroupGreetingsDefaultsServiceUnavailable) GetPayload

func (*GetGroupGreetingsDefaultsServiceUnavailable) IsClientError

IsClientError returns true when this get group greetings defaults service unavailable response has a 4xx status code

func (*GetGroupGreetingsDefaultsServiceUnavailable) IsCode

IsCode returns true when this get group greetings defaults service unavailable response a status code equal to that given

func (*GetGroupGreetingsDefaultsServiceUnavailable) IsRedirect

IsRedirect returns true when this get group greetings defaults service unavailable response has a 3xx status code

func (*GetGroupGreetingsDefaultsServiceUnavailable) IsServerError

IsServerError returns true when this get group greetings defaults service unavailable response has a 5xx status code

func (*GetGroupGreetingsDefaultsServiceUnavailable) IsSuccess

IsSuccess returns true when this get group greetings defaults service unavailable response has a 2xx status code

func (*GetGroupGreetingsDefaultsServiceUnavailable) String

type GetGroupGreetingsDefaultsTooManyRequests

type GetGroupGreetingsDefaultsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetGroupGreetingsDefaultsTooManyRequests

func NewGetGroupGreetingsDefaultsTooManyRequests() *GetGroupGreetingsDefaultsTooManyRequests

NewGetGroupGreetingsDefaultsTooManyRequests creates a GetGroupGreetingsDefaultsTooManyRequests with default headers values

func (*GetGroupGreetingsDefaultsTooManyRequests) Error

func (*GetGroupGreetingsDefaultsTooManyRequests) GetPayload

func (*GetGroupGreetingsDefaultsTooManyRequests) IsClientError

IsClientError returns true when this get group greetings defaults too many requests response has a 4xx status code

func (*GetGroupGreetingsDefaultsTooManyRequests) IsCode

IsCode returns true when this get group greetings defaults too many requests response a status code equal to that given

func (*GetGroupGreetingsDefaultsTooManyRequests) IsRedirect

IsRedirect returns true when this get group greetings defaults too many requests response has a 3xx status code

func (*GetGroupGreetingsDefaultsTooManyRequests) IsServerError

IsServerError returns true when this get group greetings defaults too many requests response has a 5xx status code

func (*GetGroupGreetingsDefaultsTooManyRequests) IsSuccess

IsSuccess returns true when this get group greetings defaults too many requests response has a 2xx status code

func (*GetGroupGreetingsDefaultsTooManyRequests) String

type GetGroupGreetingsDefaultsUnauthorized

type GetGroupGreetingsDefaultsUnauthorized struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewGetGroupGreetingsDefaultsUnauthorized

func NewGetGroupGreetingsDefaultsUnauthorized() *GetGroupGreetingsDefaultsUnauthorized

NewGetGroupGreetingsDefaultsUnauthorized creates a GetGroupGreetingsDefaultsUnauthorized with default headers values

func (*GetGroupGreetingsDefaultsUnauthorized) Error

func (*GetGroupGreetingsDefaultsUnauthorized) GetPayload

func (*GetGroupGreetingsDefaultsUnauthorized) IsClientError

func (o *GetGroupGreetingsDefaultsUnauthorized) IsClientError() bool

IsClientError returns true when this get group greetings defaults unauthorized response has a 4xx status code

func (*GetGroupGreetingsDefaultsUnauthorized) IsCode

IsCode returns true when this get group greetings defaults unauthorized response a status code equal to that given

func (*GetGroupGreetingsDefaultsUnauthorized) IsRedirect

IsRedirect returns true when this get group greetings defaults unauthorized response has a 3xx status code

func (*GetGroupGreetingsDefaultsUnauthorized) IsServerError

func (o *GetGroupGreetingsDefaultsUnauthorized) IsServerError() bool

IsServerError returns true when this get group greetings defaults unauthorized response has a 5xx status code

func (*GetGroupGreetingsDefaultsUnauthorized) IsSuccess

IsSuccess returns true when this get group greetings defaults unauthorized response has a 2xx status code

func (*GetGroupGreetingsDefaultsUnauthorized) String

type GetGroupGreetingsDefaultsUnsupportedMediaType

type GetGroupGreetingsDefaultsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsDefaultsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetGroupGreetingsDefaultsUnsupportedMediaType

func NewGetGroupGreetingsDefaultsUnsupportedMediaType() *GetGroupGreetingsDefaultsUnsupportedMediaType

NewGetGroupGreetingsDefaultsUnsupportedMediaType creates a GetGroupGreetingsDefaultsUnsupportedMediaType with default headers values

func (*GetGroupGreetingsDefaultsUnsupportedMediaType) Error

func (*GetGroupGreetingsDefaultsUnsupportedMediaType) GetPayload

func (*GetGroupGreetingsDefaultsUnsupportedMediaType) IsClientError

IsClientError returns true when this get group greetings defaults unsupported media type response has a 4xx status code

func (*GetGroupGreetingsDefaultsUnsupportedMediaType) IsCode

IsCode returns true when this get group greetings defaults unsupported media type response a status code equal to that given

func (*GetGroupGreetingsDefaultsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get group greetings defaults unsupported media type response has a 3xx status code

func (*GetGroupGreetingsDefaultsUnsupportedMediaType) IsServerError

IsServerError returns true when this get group greetings defaults unsupported media type response has a 5xx status code

func (*GetGroupGreetingsDefaultsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get group greetings defaults unsupported media type response has a 2xx status code

func (*GetGroupGreetingsDefaultsUnsupportedMediaType) String

type GetGroupGreetingsForbidden

type GetGroupGreetingsForbidden struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewGetGroupGreetingsForbidden

func NewGetGroupGreetingsForbidden() *GetGroupGreetingsForbidden

NewGetGroupGreetingsForbidden creates a GetGroupGreetingsForbidden with default headers values

func (*GetGroupGreetingsForbidden) Error

func (*GetGroupGreetingsForbidden) GetPayload

func (o *GetGroupGreetingsForbidden) GetPayload() *models.ErrorBody

func (*GetGroupGreetingsForbidden) IsClientError

func (o *GetGroupGreetingsForbidden) IsClientError() bool

IsClientError returns true when this get group greetings forbidden response has a 4xx status code

func (*GetGroupGreetingsForbidden) IsCode

func (o *GetGroupGreetingsForbidden) IsCode(code int) bool

IsCode returns true when this get group greetings forbidden response a status code equal to that given

func (*GetGroupGreetingsForbidden) IsRedirect

func (o *GetGroupGreetingsForbidden) IsRedirect() bool

IsRedirect returns true when this get group greetings forbidden response has a 3xx status code

func (*GetGroupGreetingsForbidden) IsServerError

func (o *GetGroupGreetingsForbidden) IsServerError() bool

IsServerError returns true when this get group greetings forbidden response has a 5xx status code

func (*GetGroupGreetingsForbidden) IsSuccess

func (o *GetGroupGreetingsForbidden) IsSuccess() bool

IsSuccess returns true when this get group greetings forbidden response has a 2xx status code

func (*GetGroupGreetingsForbidden) String

func (o *GetGroupGreetingsForbidden) String() string

type GetGroupGreetingsGatewayTimeout

type GetGroupGreetingsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetGroupGreetingsGatewayTimeout

func NewGetGroupGreetingsGatewayTimeout() *GetGroupGreetingsGatewayTimeout

NewGetGroupGreetingsGatewayTimeout creates a GetGroupGreetingsGatewayTimeout with default headers values

func (*GetGroupGreetingsGatewayTimeout) Error

func (*GetGroupGreetingsGatewayTimeout) GetPayload

func (*GetGroupGreetingsGatewayTimeout) IsClientError

func (o *GetGroupGreetingsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get group greetings gateway timeout response has a 4xx status code

func (*GetGroupGreetingsGatewayTimeout) IsCode

func (o *GetGroupGreetingsGatewayTimeout) IsCode(code int) bool

IsCode returns true when this get group greetings gateway timeout response a status code equal to that given

func (*GetGroupGreetingsGatewayTimeout) IsRedirect

func (o *GetGroupGreetingsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get group greetings gateway timeout response has a 3xx status code

func (*GetGroupGreetingsGatewayTimeout) IsServerError

func (o *GetGroupGreetingsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get group greetings gateway timeout response has a 5xx status code

func (*GetGroupGreetingsGatewayTimeout) IsSuccess

func (o *GetGroupGreetingsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get group greetings gateway timeout response has a 2xx status code

func (*GetGroupGreetingsGatewayTimeout) String

type GetGroupGreetingsInternalServerError

type GetGroupGreetingsInternalServerError struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetGroupGreetingsInternalServerError

func NewGetGroupGreetingsInternalServerError() *GetGroupGreetingsInternalServerError

NewGetGroupGreetingsInternalServerError creates a GetGroupGreetingsInternalServerError with default headers values

func (*GetGroupGreetingsInternalServerError) Error

func (*GetGroupGreetingsInternalServerError) GetPayload

func (*GetGroupGreetingsInternalServerError) IsClientError

func (o *GetGroupGreetingsInternalServerError) IsClientError() bool

IsClientError returns true when this get group greetings internal server error response has a 4xx status code

func (*GetGroupGreetingsInternalServerError) IsCode

IsCode returns true when this get group greetings internal server error response a status code equal to that given

func (*GetGroupGreetingsInternalServerError) IsRedirect

IsRedirect returns true when this get group greetings internal server error response has a 3xx status code

func (*GetGroupGreetingsInternalServerError) IsServerError

func (o *GetGroupGreetingsInternalServerError) IsServerError() bool

IsServerError returns true when this get group greetings internal server error response has a 5xx status code

func (*GetGroupGreetingsInternalServerError) IsSuccess

IsSuccess returns true when this get group greetings internal server error response has a 2xx status code

func (*GetGroupGreetingsInternalServerError) String

type GetGroupGreetingsNotFound

type GetGroupGreetingsNotFound struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewGetGroupGreetingsNotFound

func NewGetGroupGreetingsNotFound() *GetGroupGreetingsNotFound

NewGetGroupGreetingsNotFound creates a GetGroupGreetingsNotFound with default headers values

func (*GetGroupGreetingsNotFound) Error

func (o *GetGroupGreetingsNotFound) Error() string

func (*GetGroupGreetingsNotFound) GetPayload

func (o *GetGroupGreetingsNotFound) GetPayload() *models.ErrorBody

func (*GetGroupGreetingsNotFound) IsClientError

func (o *GetGroupGreetingsNotFound) IsClientError() bool

IsClientError returns true when this get group greetings not found response has a 4xx status code

func (*GetGroupGreetingsNotFound) IsCode

func (o *GetGroupGreetingsNotFound) IsCode(code int) bool

IsCode returns true when this get group greetings not found response a status code equal to that given

func (*GetGroupGreetingsNotFound) IsRedirect

func (o *GetGroupGreetingsNotFound) IsRedirect() bool

IsRedirect returns true when this get group greetings not found response has a 3xx status code

func (*GetGroupGreetingsNotFound) IsServerError

func (o *GetGroupGreetingsNotFound) IsServerError() bool

IsServerError returns true when this get group greetings not found response has a 5xx status code

func (*GetGroupGreetingsNotFound) IsSuccess

func (o *GetGroupGreetingsNotFound) IsSuccess() bool

IsSuccess returns true when this get group greetings not found response has a 2xx status code

func (*GetGroupGreetingsNotFound) String

func (o *GetGroupGreetingsNotFound) String() string

type GetGroupGreetingsOK

type GetGroupGreetingsOK struct {
	Payload *models.GreetingListing
}

GetGroupGreetingsOK describes a response with status code 200, with default header values.

successful operation

func NewGetGroupGreetingsOK

func NewGetGroupGreetingsOK() *GetGroupGreetingsOK

NewGetGroupGreetingsOK creates a GetGroupGreetingsOK with default headers values

func (*GetGroupGreetingsOK) Error

func (o *GetGroupGreetingsOK) Error() string

func (*GetGroupGreetingsOK) GetPayload

func (o *GetGroupGreetingsOK) GetPayload() *models.GreetingListing

func (*GetGroupGreetingsOK) IsClientError

func (o *GetGroupGreetingsOK) IsClientError() bool

IsClientError returns true when this get group greetings o k response has a 4xx status code

func (*GetGroupGreetingsOK) IsCode

func (o *GetGroupGreetingsOK) IsCode(code int) bool

IsCode returns true when this get group greetings o k response a status code equal to that given

func (*GetGroupGreetingsOK) IsRedirect

func (o *GetGroupGreetingsOK) IsRedirect() bool

IsRedirect returns true when this get group greetings o k response has a 3xx status code

func (*GetGroupGreetingsOK) IsServerError

func (o *GetGroupGreetingsOK) IsServerError() bool

IsServerError returns true when this get group greetings o k response has a 5xx status code

func (*GetGroupGreetingsOK) IsSuccess

func (o *GetGroupGreetingsOK) IsSuccess() bool

IsSuccess returns true when this get group greetings o k response has a 2xx status code

func (*GetGroupGreetingsOK) String

func (o *GetGroupGreetingsOK) String() string

type GetGroupGreetingsParams

type GetGroupGreetingsParams struct {

	/* GroupID.

	   Group ID
	*/
	GroupID string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetGroupGreetingsParams contains all the parameters to send to the API endpoint

for the get group greetings operation.

Typically these are written to a http.Request.

func NewGetGroupGreetingsParams

func NewGetGroupGreetingsParams() *GetGroupGreetingsParams

NewGetGroupGreetingsParams creates a new GetGroupGreetingsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetGroupGreetingsParamsWithContext

func NewGetGroupGreetingsParamsWithContext(ctx context.Context) *GetGroupGreetingsParams

NewGetGroupGreetingsParamsWithContext creates a new GetGroupGreetingsParams object with the ability to set a context for a request.

func NewGetGroupGreetingsParamsWithHTTPClient

func NewGetGroupGreetingsParamsWithHTTPClient(client *http.Client) *GetGroupGreetingsParams

NewGetGroupGreetingsParamsWithHTTPClient creates a new GetGroupGreetingsParams object with the ability to set a custom HTTPClient for a request.

func NewGetGroupGreetingsParamsWithTimeout

func NewGetGroupGreetingsParamsWithTimeout(timeout time.Duration) *GetGroupGreetingsParams

NewGetGroupGreetingsParamsWithTimeout creates a new GetGroupGreetingsParams object with the ability to set a timeout on a request.

func (*GetGroupGreetingsParams) SetContext

func (o *GetGroupGreetingsParams) SetContext(ctx context.Context)

SetContext adds the context to the get group greetings params

func (*GetGroupGreetingsParams) SetDefaults

func (o *GetGroupGreetingsParams) SetDefaults()

SetDefaults hydrates default values in the get group greetings params (not the query body).

All values with no default are reset to their zero value.

func (*GetGroupGreetingsParams) SetGroupID

func (o *GetGroupGreetingsParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the get group greetings params

func (*GetGroupGreetingsParams) SetHTTPClient

func (o *GetGroupGreetingsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get group greetings params

func (*GetGroupGreetingsParams) SetPageNumber

func (o *GetGroupGreetingsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get group greetings params

func (*GetGroupGreetingsParams) SetPageSize

func (o *GetGroupGreetingsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get group greetings params

func (*GetGroupGreetingsParams) SetTimeout

func (o *GetGroupGreetingsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get group greetings params

func (*GetGroupGreetingsParams) WithContext

WithContext adds the context to the get group greetings params

func (*GetGroupGreetingsParams) WithDefaults

WithDefaults hydrates default values in the get group greetings params (not the query body).

All values with no default are reset to their zero value.

func (*GetGroupGreetingsParams) WithGroupID

func (o *GetGroupGreetingsParams) WithGroupID(groupID string) *GetGroupGreetingsParams

WithGroupID adds the groupID to the get group greetings params

func (*GetGroupGreetingsParams) WithHTTPClient

func (o *GetGroupGreetingsParams) WithHTTPClient(client *http.Client) *GetGroupGreetingsParams

WithHTTPClient adds the HTTPClient to the get group greetings params

func (*GetGroupGreetingsParams) WithPageNumber

func (o *GetGroupGreetingsParams) WithPageNumber(pageNumber *int32) *GetGroupGreetingsParams

WithPageNumber adds the pageNumber to the get group greetings params

func (*GetGroupGreetingsParams) WithPageSize

func (o *GetGroupGreetingsParams) WithPageSize(pageSize *int32) *GetGroupGreetingsParams

WithPageSize adds the pageSize to the get group greetings params

func (*GetGroupGreetingsParams) WithTimeout

WithTimeout adds the timeout to the get group greetings params

func (*GetGroupGreetingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetGroupGreetingsReader

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

GetGroupGreetingsReader is a Reader for the GetGroupGreetings structure.

func (*GetGroupGreetingsReader) ReadResponse

func (o *GetGroupGreetingsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetGroupGreetingsRequestEntityTooLarge

type GetGroupGreetingsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetGroupGreetingsRequestEntityTooLarge

func NewGetGroupGreetingsRequestEntityTooLarge() *GetGroupGreetingsRequestEntityTooLarge

NewGetGroupGreetingsRequestEntityTooLarge creates a GetGroupGreetingsRequestEntityTooLarge with default headers values

func (*GetGroupGreetingsRequestEntityTooLarge) Error

func (*GetGroupGreetingsRequestEntityTooLarge) GetPayload

func (*GetGroupGreetingsRequestEntityTooLarge) IsClientError

func (o *GetGroupGreetingsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get group greetings request entity too large response has a 4xx status code

func (*GetGroupGreetingsRequestEntityTooLarge) IsCode

IsCode returns true when this get group greetings request entity too large response a status code equal to that given

func (*GetGroupGreetingsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get group greetings request entity too large response has a 3xx status code

func (*GetGroupGreetingsRequestEntityTooLarge) IsServerError

func (o *GetGroupGreetingsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get group greetings request entity too large response has a 5xx status code

func (*GetGroupGreetingsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get group greetings request entity too large response has a 2xx status code

func (*GetGroupGreetingsRequestEntityTooLarge) String

type GetGroupGreetingsRequestTimeout

type GetGroupGreetingsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetGroupGreetingsRequestTimeout

func NewGetGroupGreetingsRequestTimeout() *GetGroupGreetingsRequestTimeout

NewGetGroupGreetingsRequestTimeout creates a GetGroupGreetingsRequestTimeout with default headers values

func (*GetGroupGreetingsRequestTimeout) Error

func (*GetGroupGreetingsRequestTimeout) GetPayload

func (*GetGroupGreetingsRequestTimeout) IsClientError

func (o *GetGroupGreetingsRequestTimeout) IsClientError() bool

IsClientError returns true when this get group greetings request timeout response has a 4xx status code

func (*GetGroupGreetingsRequestTimeout) IsCode

func (o *GetGroupGreetingsRequestTimeout) IsCode(code int) bool

IsCode returns true when this get group greetings request timeout response a status code equal to that given

func (*GetGroupGreetingsRequestTimeout) IsRedirect

func (o *GetGroupGreetingsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get group greetings request timeout response has a 3xx status code

func (*GetGroupGreetingsRequestTimeout) IsServerError

func (o *GetGroupGreetingsRequestTimeout) IsServerError() bool

IsServerError returns true when this get group greetings request timeout response has a 5xx status code

func (*GetGroupGreetingsRequestTimeout) IsSuccess

func (o *GetGroupGreetingsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get group greetings request timeout response has a 2xx status code

func (*GetGroupGreetingsRequestTimeout) String

type GetGroupGreetingsServiceUnavailable

type GetGroupGreetingsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetGroupGreetingsServiceUnavailable

func NewGetGroupGreetingsServiceUnavailable() *GetGroupGreetingsServiceUnavailable

NewGetGroupGreetingsServiceUnavailable creates a GetGroupGreetingsServiceUnavailable with default headers values

func (*GetGroupGreetingsServiceUnavailable) Error

func (*GetGroupGreetingsServiceUnavailable) GetPayload

func (*GetGroupGreetingsServiceUnavailable) IsClientError

func (o *GetGroupGreetingsServiceUnavailable) IsClientError() bool

IsClientError returns true when this get group greetings service unavailable response has a 4xx status code

func (*GetGroupGreetingsServiceUnavailable) IsCode

IsCode returns true when this get group greetings service unavailable response a status code equal to that given

func (*GetGroupGreetingsServiceUnavailable) IsRedirect

func (o *GetGroupGreetingsServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get group greetings service unavailable response has a 3xx status code

func (*GetGroupGreetingsServiceUnavailable) IsServerError

func (o *GetGroupGreetingsServiceUnavailable) IsServerError() bool

IsServerError returns true when this get group greetings service unavailable response has a 5xx status code

func (*GetGroupGreetingsServiceUnavailable) IsSuccess

IsSuccess returns true when this get group greetings service unavailable response has a 2xx status code

func (*GetGroupGreetingsServiceUnavailable) String

type GetGroupGreetingsTooManyRequests

type GetGroupGreetingsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetGroupGreetingsTooManyRequests

func NewGetGroupGreetingsTooManyRequests() *GetGroupGreetingsTooManyRequests

NewGetGroupGreetingsTooManyRequests creates a GetGroupGreetingsTooManyRequests with default headers values

func (*GetGroupGreetingsTooManyRequests) Error

func (*GetGroupGreetingsTooManyRequests) GetPayload

func (*GetGroupGreetingsTooManyRequests) IsClientError

func (o *GetGroupGreetingsTooManyRequests) IsClientError() bool

IsClientError returns true when this get group greetings too many requests response has a 4xx status code

func (*GetGroupGreetingsTooManyRequests) IsCode

func (o *GetGroupGreetingsTooManyRequests) IsCode(code int) bool

IsCode returns true when this get group greetings too many requests response a status code equal to that given

func (*GetGroupGreetingsTooManyRequests) IsRedirect

func (o *GetGroupGreetingsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get group greetings too many requests response has a 3xx status code

func (*GetGroupGreetingsTooManyRequests) IsServerError

func (o *GetGroupGreetingsTooManyRequests) IsServerError() bool

IsServerError returns true when this get group greetings too many requests response has a 5xx status code

func (*GetGroupGreetingsTooManyRequests) IsSuccess

func (o *GetGroupGreetingsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get group greetings too many requests response has a 2xx status code

func (*GetGroupGreetingsTooManyRequests) String

type GetGroupGreetingsUnauthorized

type GetGroupGreetingsUnauthorized struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewGetGroupGreetingsUnauthorized

func NewGetGroupGreetingsUnauthorized() *GetGroupGreetingsUnauthorized

NewGetGroupGreetingsUnauthorized creates a GetGroupGreetingsUnauthorized with default headers values

func (*GetGroupGreetingsUnauthorized) Error

func (*GetGroupGreetingsUnauthorized) GetPayload

func (*GetGroupGreetingsUnauthorized) IsClientError

func (o *GetGroupGreetingsUnauthorized) IsClientError() bool

IsClientError returns true when this get group greetings unauthorized response has a 4xx status code

func (*GetGroupGreetingsUnauthorized) IsCode

func (o *GetGroupGreetingsUnauthorized) IsCode(code int) bool

IsCode returns true when this get group greetings unauthorized response a status code equal to that given

func (*GetGroupGreetingsUnauthorized) IsRedirect

func (o *GetGroupGreetingsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get group greetings unauthorized response has a 3xx status code

func (*GetGroupGreetingsUnauthorized) IsServerError

func (o *GetGroupGreetingsUnauthorized) IsServerError() bool

IsServerError returns true when this get group greetings unauthorized response has a 5xx status code

func (*GetGroupGreetingsUnauthorized) IsSuccess

func (o *GetGroupGreetingsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get group greetings unauthorized response has a 2xx status code

func (*GetGroupGreetingsUnauthorized) String

type GetGroupGreetingsUnsupportedMediaType

type GetGroupGreetingsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetGroupGreetingsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetGroupGreetingsUnsupportedMediaType

func NewGetGroupGreetingsUnsupportedMediaType() *GetGroupGreetingsUnsupportedMediaType

NewGetGroupGreetingsUnsupportedMediaType creates a GetGroupGreetingsUnsupportedMediaType with default headers values

func (*GetGroupGreetingsUnsupportedMediaType) Error

func (*GetGroupGreetingsUnsupportedMediaType) GetPayload

func (*GetGroupGreetingsUnsupportedMediaType) IsClientError

func (o *GetGroupGreetingsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get group greetings unsupported media type response has a 4xx status code

func (*GetGroupGreetingsUnsupportedMediaType) IsCode

IsCode returns true when this get group greetings unsupported media type response a status code equal to that given

func (*GetGroupGreetingsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get group greetings unsupported media type response has a 3xx status code

func (*GetGroupGreetingsUnsupportedMediaType) IsServerError

func (o *GetGroupGreetingsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get group greetings unsupported media type response has a 5xx status code

func (*GetGroupGreetingsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get group greetings unsupported media type response has a 2xx status code

func (*GetGroupGreetingsUnsupportedMediaType) String

type GetUserGreetingsBadRequest

type GetUserGreetingsBadRequest struct {
	Payload *models.ErrorBody
}

GetUserGreetingsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewGetUserGreetingsBadRequest

func NewGetUserGreetingsBadRequest() *GetUserGreetingsBadRequest

NewGetUserGreetingsBadRequest creates a GetUserGreetingsBadRequest with default headers values

func (*GetUserGreetingsBadRequest) Error

func (*GetUserGreetingsBadRequest) GetPayload

func (o *GetUserGreetingsBadRequest) GetPayload() *models.ErrorBody

func (*GetUserGreetingsBadRequest) IsClientError

func (o *GetUserGreetingsBadRequest) IsClientError() bool

IsClientError returns true when this get user greetings bad request response has a 4xx status code

func (*GetUserGreetingsBadRequest) IsCode

func (o *GetUserGreetingsBadRequest) IsCode(code int) bool

IsCode returns true when this get user greetings bad request response a status code equal to that given

func (*GetUserGreetingsBadRequest) IsRedirect

func (o *GetUserGreetingsBadRequest) IsRedirect() bool

IsRedirect returns true when this get user greetings bad request response has a 3xx status code

func (*GetUserGreetingsBadRequest) IsServerError

func (o *GetUserGreetingsBadRequest) IsServerError() bool

IsServerError returns true when this get user greetings bad request response has a 5xx status code

func (*GetUserGreetingsBadRequest) IsSuccess

func (o *GetUserGreetingsBadRequest) IsSuccess() bool

IsSuccess returns true when this get user greetings bad request response has a 2xx status code

func (*GetUserGreetingsBadRequest) String

func (o *GetUserGreetingsBadRequest) String() string

type GetUserGreetingsDefaultsBadRequest

type GetUserGreetingsDefaultsBadRequest struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewGetUserGreetingsDefaultsBadRequest

func NewGetUserGreetingsDefaultsBadRequest() *GetUserGreetingsDefaultsBadRequest

NewGetUserGreetingsDefaultsBadRequest creates a GetUserGreetingsDefaultsBadRequest with default headers values

func (*GetUserGreetingsDefaultsBadRequest) Error

func (*GetUserGreetingsDefaultsBadRequest) GetPayload

func (*GetUserGreetingsDefaultsBadRequest) IsClientError

func (o *GetUserGreetingsDefaultsBadRequest) IsClientError() bool

IsClientError returns true when this get user greetings defaults bad request response has a 4xx status code

func (*GetUserGreetingsDefaultsBadRequest) IsCode

IsCode returns true when this get user greetings defaults bad request response a status code equal to that given

func (*GetUserGreetingsDefaultsBadRequest) IsRedirect

func (o *GetUserGreetingsDefaultsBadRequest) IsRedirect() bool

IsRedirect returns true when this get user greetings defaults bad request response has a 3xx status code

func (*GetUserGreetingsDefaultsBadRequest) IsServerError

func (o *GetUserGreetingsDefaultsBadRequest) IsServerError() bool

IsServerError returns true when this get user greetings defaults bad request response has a 5xx status code

func (*GetUserGreetingsDefaultsBadRequest) IsSuccess

IsSuccess returns true when this get user greetings defaults bad request response has a 2xx status code

func (*GetUserGreetingsDefaultsBadRequest) String

type GetUserGreetingsDefaultsForbidden

type GetUserGreetingsDefaultsForbidden struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewGetUserGreetingsDefaultsForbidden

func NewGetUserGreetingsDefaultsForbidden() *GetUserGreetingsDefaultsForbidden

NewGetUserGreetingsDefaultsForbidden creates a GetUserGreetingsDefaultsForbidden with default headers values

func (*GetUserGreetingsDefaultsForbidden) Error

func (*GetUserGreetingsDefaultsForbidden) GetPayload

func (*GetUserGreetingsDefaultsForbidden) IsClientError

func (o *GetUserGreetingsDefaultsForbidden) IsClientError() bool

IsClientError returns true when this get user greetings defaults forbidden response has a 4xx status code

func (*GetUserGreetingsDefaultsForbidden) IsCode

func (o *GetUserGreetingsDefaultsForbidden) IsCode(code int) bool

IsCode returns true when this get user greetings defaults forbidden response a status code equal to that given

func (*GetUserGreetingsDefaultsForbidden) IsRedirect

func (o *GetUserGreetingsDefaultsForbidden) IsRedirect() bool

IsRedirect returns true when this get user greetings defaults forbidden response has a 3xx status code

func (*GetUserGreetingsDefaultsForbidden) IsServerError

func (o *GetUserGreetingsDefaultsForbidden) IsServerError() bool

IsServerError returns true when this get user greetings defaults forbidden response has a 5xx status code

func (*GetUserGreetingsDefaultsForbidden) IsSuccess

func (o *GetUserGreetingsDefaultsForbidden) IsSuccess() bool

IsSuccess returns true when this get user greetings defaults forbidden response has a 2xx status code

func (*GetUserGreetingsDefaultsForbidden) String

type GetUserGreetingsDefaultsGatewayTimeout

type GetUserGreetingsDefaultsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetUserGreetingsDefaultsGatewayTimeout

func NewGetUserGreetingsDefaultsGatewayTimeout() *GetUserGreetingsDefaultsGatewayTimeout

NewGetUserGreetingsDefaultsGatewayTimeout creates a GetUserGreetingsDefaultsGatewayTimeout with default headers values

func (*GetUserGreetingsDefaultsGatewayTimeout) Error

func (*GetUserGreetingsDefaultsGatewayTimeout) GetPayload

func (*GetUserGreetingsDefaultsGatewayTimeout) IsClientError

func (o *GetUserGreetingsDefaultsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get user greetings defaults gateway timeout response has a 4xx status code

func (*GetUserGreetingsDefaultsGatewayTimeout) IsCode

IsCode returns true when this get user greetings defaults gateway timeout response a status code equal to that given

func (*GetUserGreetingsDefaultsGatewayTimeout) IsRedirect

IsRedirect returns true when this get user greetings defaults gateway timeout response has a 3xx status code

func (*GetUserGreetingsDefaultsGatewayTimeout) IsServerError

func (o *GetUserGreetingsDefaultsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get user greetings defaults gateway timeout response has a 5xx status code

func (*GetUserGreetingsDefaultsGatewayTimeout) IsSuccess

IsSuccess returns true when this get user greetings defaults gateway timeout response has a 2xx status code

func (*GetUserGreetingsDefaultsGatewayTimeout) String

type GetUserGreetingsDefaultsInternalServerError

type GetUserGreetingsDefaultsInternalServerError struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetUserGreetingsDefaultsInternalServerError

func NewGetUserGreetingsDefaultsInternalServerError() *GetUserGreetingsDefaultsInternalServerError

NewGetUserGreetingsDefaultsInternalServerError creates a GetUserGreetingsDefaultsInternalServerError with default headers values

func (*GetUserGreetingsDefaultsInternalServerError) Error

func (*GetUserGreetingsDefaultsInternalServerError) GetPayload

func (*GetUserGreetingsDefaultsInternalServerError) IsClientError

IsClientError returns true when this get user greetings defaults internal server error response has a 4xx status code

func (*GetUserGreetingsDefaultsInternalServerError) IsCode

IsCode returns true when this get user greetings defaults internal server error response a status code equal to that given

func (*GetUserGreetingsDefaultsInternalServerError) IsRedirect

IsRedirect returns true when this get user greetings defaults internal server error response has a 3xx status code

func (*GetUserGreetingsDefaultsInternalServerError) IsServerError

IsServerError returns true when this get user greetings defaults internal server error response has a 5xx status code

func (*GetUserGreetingsDefaultsInternalServerError) IsSuccess

IsSuccess returns true when this get user greetings defaults internal server error response has a 2xx status code

func (*GetUserGreetingsDefaultsInternalServerError) String

type GetUserGreetingsDefaultsNotFound

type GetUserGreetingsDefaultsNotFound struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewGetUserGreetingsDefaultsNotFound

func NewGetUserGreetingsDefaultsNotFound() *GetUserGreetingsDefaultsNotFound

NewGetUserGreetingsDefaultsNotFound creates a GetUserGreetingsDefaultsNotFound with default headers values

func (*GetUserGreetingsDefaultsNotFound) Error

func (*GetUserGreetingsDefaultsNotFound) GetPayload

func (*GetUserGreetingsDefaultsNotFound) IsClientError

func (o *GetUserGreetingsDefaultsNotFound) IsClientError() bool

IsClientError returns true when this get user greetings defaults not found response has a 4xx status code

func (*GetUserGreetingsDefaultsNotFound) IsCode

func (o *GetUserGreetingsDefaultsNotFound) IsCode(code int) bool

IsCode returns true when this get user greetings defaults not found response a status code equal to that given

func (*GetUserGreetingsDefaultsNotFound) IsRedirect

func (o *GetUserGreetingsDefaultsNotFound) IsRedirect() bool

IsRedirect returns true when this get user greetings defaults not found response has a 3xx status code

func (*GetUserGreetingsDefaultsNotFound) IsServerError

func (o *GetUserGreetingsDefaultsNotFound) IsServerError() bool

IsServerError returns true when this get user greetings defaults not found response has a 5xx status code

func (*GetUserGreetingsDefaultsNotFound) IsSuccess

func (o *GetUserGreetingsDefaultsNotFound) IsSuccess() bool

IsSuccess returns true when this get user greetings defaults not found response has a 2xx status code

func (*GetUserGreetingsDefaultsNotFound) String

type GetUserGreetingsDefaultsOK

type GetUserGreetingsDefaultsOK struct {
	Payload *models.DefaultGreetingList
}

GetUserGreetingsDefaultsOK describes a response with status code 200, with default header values.

successful operation

func NewGetUserGreetingsDefaultsOK

func NewGetUserGreetingsDefaultsOK() *GetUserGreetingsDefaultsOK

NewGetUserGreetingsDefaultsOK creates a GetUserGreetingsDefaultsOK with default headers values

func (*GetUserGreetingsDefaultsOK) Error

func (*GetUserGreetingsDefaultsOK) GetPayload

func (*GetUserGreetingsDefaultsOK) IsClientError

func (o *GetUserGreetingsDefaultsOK) IsClientError() bool

IsClientError returns true when this get user greetings defaults o k response has a 4xx status code

func (*GetUserGreetingsDefaultsOK) IsCode

func (o *GetUserGreetingsDefaultsOK) IsCode(code int) bool

IsCode returns true when this get user greetings defaults o k response a status code equal to that given

func (*GetUserGreetingsDefaultsOK) IsRedirect

func (o *GetUserGreetingsDefaultsOK) IsRedirect() bool

IsRedirect returns true when this get user greetings defaults o k response has a 3xx status code

func (*GetUserGreetingsDefaultsOK) IsServerError

func (o *GetUserGreetingsDefaultsOK) IsServerError() bool

IsServerError returns true when this get user greetings defaults o k response has a 5xx status code

func (*GetUserGreetingsDefaultsOK) IsSuccess

func (o *GetUserGreetingsDefaultsOK) IsSuccess() bool

IsSuccess returns true when this get user greetings defaults o k response has a 2xx status code

func (*GetUserGreetingsDefaultsOK) String

func (o *GetUserGreetingsDefaultsOK) String() string

type GetUserGreetingsDefaultsParams

type GetUserGreetingsDefaultsParams struct {

	/* UserID.

	   User ID
	*/
	UserID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetUserGreetingsDefaultsParams contains all the parameters to send to the API endpoint

for the get user greetings defaults operation.

Typically these are written to a http.Request.

func NewGetUserGreetingsDefaultsParams

func NewGetUserGreetingsDefaultsParams() *GetUserGreetingsDefaultsParams

NewGetUserGreetingsDefaultsParams creates a new GetUserGreetingsDefaultsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetUserGreetingsDefaultsParamsWithContext

func NewGetUserGreetingsDefaultsParamsWithContext(ctx context.Context) *GetUserGreetingsDefaultsParams

NewGetUserGreetingsDefaultsParamsWithContext creates a new GetUserGreetingsDefaultsParams object with the ability to set a context for a request.

func NewGetUserGreetingsDefaultsParamsWithHTTPClient

func NewGetUserGreetingsDefaultsParamsWithHTTPClient(client *http.Client) *GetUserGreetingsDefaultsParams

NewGetUserGreetingsDefaultsParamsWithHTTPClient creates a new GetUserGreetingsDefaultsParams object with the ability to set a custom HTTPClient for a request.

func NewGetUserGreetingsDefaultsParamsWithTimeout

func NewGetUserGreetingsDefaultsParamsWithTimeout(timeout time.Duration) *GetUserGreetingsDefaultsParams

NewGetUserGreetingsDefaultsParamsWithTimeout creates a new GetUserGreetingsDefaultsParams object with the ability to set a timeout on a request.

func (*GetUserGreetingsDefaultsParams) SetContext

func (o *GetUserGreetingsDefaultsParams) SetContext(ctx context.Context)

SetContext adds the context to the get user greetings defaults params

func (*GetUserGreetingsDefaultsParams) SetDefaults

func (o *GetUserGreetingsDefaultsParams) SetDefaults()

SetDefaults hydrates default values in the get user greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*GetUserGreetingsDefaultsParams) SetHTTPClient

func (o *GetUserGreetingsDefaultsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get user greetings defaults params

func (*GetUserGreetingsDefaultsParams) SetTimeout

func (o *GetUserGreetingsDefaultsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get user greetings defaults params

func (*GetUserGreetingsDefaultsParams) SetUserID

func (o *GetUserGreetingsDefaultsParams) SetUserID(userID string)

SetUserID adds the userId to the get user greetings defaults params

func (*GetUserGreetingsDefaultsParams) WithContext

WithContext adds the context to the get user greetings defaults params

func (*GetUserGreetingsDefaultsParams) WithDefaults

WithDefaults hydrates default values in the get user greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*GetUserGreetingsDefaultsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get user greetings defaults params

func (*GetUserGreetingsDefaultsParams) WithTimeout

WithTimeout adds the timeout to the get user greetings defaults params

func (*GetUserGreetingsDefaultsParams) WithUserID

WithUserID adds the userID to the get user greetings defaults params

func (*GetUserGreetingsDefaultsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetUserGreetingsDefaultsReader

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

GetUserGreetingsDefaultsReader is a Reader for the GetUserGreetingsDefaults structure.

func (*GetUserGreetingsDefaultsReader) ReadResponse

func (o *GetUserGreetingsDefaultsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetUserGreetingsDefaultsRequestEntityTooLarge

type GetUserGreetingsDefaultsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetUserGreetingsDefaultsRequestEntityTooLarge

func NewGetUserGreetingsDefaultsRequestEntityTooLarge() *GetUserGreetingsDefaultsRequestEntityTooLarge

NewGetUserGreetingsDefaultsRequestEntityTooLarge creates a GetUserGreetingsDefaultsRequestEntityTooLarge with default headers values

func (*GetUserGreetingsDefaultsRequestEntityTooLarge) Error

func (*GetUserGreetingsDefaultsRequestEntityTooLarge) GetPayload

func (*GetUserGreetingsDefaultsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get user greetings defaults request entity too large response has a 4xx status code

func (*GetUserGreetingsDefaultsRequestEntityTooLarge) IsCode

IsCode returns true when this get user greetings defaults request entity too large response a status code equal to that given

func (*GetUserGreetingsDefaultsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get user greetings defaults request entity too large response has a 3xx status code

func (*GetUserGreetingsDefaultsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get user greetings defaults request entity too large response has a 5xx status code

func (*GetUserGreetingsDefaultsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get user greetings defaults request entity too large response has a 2xx status code

func (*GetUserGreetingsDefaultsRequestEntityTooLarge) String

type GetUserGreetingsDefaultsRequestTimeout

type GetUserGreetingsDefaultsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetUserGreetingsDefaultsRequestTimeout

func NewGetUserGreetingsDefaultsRequestTimeout() *GetUserGreetingsDefaultsRequestTimeout

NewGetUserGreetingsDefaultsRequestTimeout creates a GetUserGreetingsDefaultsRequestTimeout with default headers values

func (*GetUserGreetingsDefaultsRequestTimeout) Error

func (*GetUserGreetingsDefaultsRequestTimeout) GetPayload

func (*GetUserGreetingsDefaultsRequestTimeout) IsClientError

func (o *GetUserGreetingsDefaultsRequestTimeout) IsClientError() bool

IsClientError returns true when this get user greetings defaults request timeout response has a 4xx status code

func (*GetUserGreetingsDefaultsRequestTimeout) IsCode

IsCode returns true when this get user greetings defaults request timeout response a status code equal to that given

func (*GetUserGreetingsDefaultsRequestTimeout) IsRedirect

IsRedirect returns true when this get user greetings defaults request timeout response has a 3xx status code

func (*GetUserGreetingsDefaultsRequestTimeout) IsServerError

func (o *GetUserGreetingsDefaultsRequestTimeout) IsServerError() bool

IsServerError returns true when this get user greetings defaults request timeout response has a 5xx status code

func (*GetUserGreetingsDefaultsRequestTimeout) IsSuccess

IsSuccess returns true when this get user greetings defaults request timeout response has a 2xx status code

func (*GetUserGreetingsDefaultsRequestTimeout) String

type GetUserGreetingsDefaultsServiceUnavailable

type GetUserGreetingsDefaultsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetUserGreetingsDefaultsServiceUnavailable

func NewGetUserGreetingsDefaultsServiceUnavailable() *GetUserGreetingsDefaultsServiceUnavailable

NewGetUserGreetingsDefaultsServiceUnavailable creates a GetUserGreetingsDefaultsServiceUnavailable with default headers values

func (*GetUserGreetingsDefaultsServiceUnavailable) Error

func (*GetUserGreetingsDefaultsServiceUnavailable) GetPayload

func (*GetUserGreetingsDefaultsServiceUnavailable) IsClientError

IsClientError returns true when this get user greetings defaults service unavailable response has a 4xx status code

func (*GetUserGreetingsDefaultsServiceUnavailable) IsCode

IsCode returns true when this get user greetings defaults service unavailable response a status code equal to that given

func (*GetUserGreetingsDefaultsServiceUnavailable) IsRedirect

IsRedirect returns true when this get user greetings defaults service unavailable response has a 3xx status code

func (*GetUserGreetingsDefaultsServiceUnavailable) IsServerError

IsServerError returns true when this get user greetings defaults service unavailable response has a 5xx status code

func (*GetUserGreetingsDefaultsServiceUnavailable) IsSuccess

IsSuccess returns true when this get user greetings defaults service unavailable response has a 2xx status code

func (*GetUserGreetingsDefaultsServiceUnavailable) String

type GetUserGreetingsDefaultsTooManyRequests

type GetUserGreetingsDefaultsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetUserGreetingsDefaultsTooManyRequests

func NewGetUserGreetingsDefaultsTooManyRequests() *GetUserGreetingsDefaultsTooManyRequests

NewGetUserGreetingsDefaultsTooManyRequests creates a GetUserGreetingsDefaultsTooManyRequests with default headers values

func (*GetUserGreetingsDefaultsTooManyRequests) Error

func (*GetUserGreetingsDefaultsTooManyRequests) GetPayload

func (*GetUserGreetingsDefaultsTooManyRequests) IsClientError

func (o *GetUserGreetingsDefaultsTooManyRequests) IsClientError() bool

IsClientError returns true when this get user greetings defaults too many requests response has a 4xx status code

func (*GetUserGreetingsDefaultsTooManyRequests) IsCode

IsCode returns true when this get user greetings defaults too many requests response a status code equal to that given

func (*GetUserGreetingsDefaultsTooManyRequests) IsRedirect

IsRedirect returns true when this get user greetings defaults too many requests response has a 3xx status code

func (*GetUserGreetingsDefaultsTooManyRequests) IsServerError

func (o *GetUserGreetingsDefaultsTooManyRequests) IsServerError() bool

IsServerError returns true when this get user greetings defaults too many requests response has a 5xx status code

func (*GetUserGreetingsDefaultsTooManyRequests) IsSuccess

IsSuccess returns true when this get user greetings defaults too many requests response has a 2xx status code

func (*GetUserGreetingsDefaultsTooManyRequests) String

type GetUserGreetingsDefaultsUnauthorized

type GetUserGreetingsDefaultsUnauthorized struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewGetUserGreetingsDefaultsUnauthorized

func NewGetUserGreetingsDefaultsUnauthorized() *GetUserGreetingsDefaultsUnauthorized

NewGetUserGreetingsDefaultsUnauthorized creates a GetUserGreetingsDefaultsUnauthorized with default headers values

func (*GetUserGreetingsDefaultsUnauthorized) Error

func (*GetUserGreetingsDefaultsUnauthorized) GetPayload

func (*GetUserGreetingsDefaultsUnauthorized) IsClientError

func (o *GetUserGreetingsDefaultsUnauthorized) IsClientError() bool

IsClientError returns true when this get user greetings defaults unauthorized response has a 4xx status code

func (*GetUserGreetingsDefaultsUnauthorized) IsCode

IsCode returns true when this get user greetings defaults unauthorized response a status code equal to that given

func (*GetUserGreetingsDefaultsUnauthorized) IsRedirect

IsRedirect returns true when this get user greetings defaults unauthorized response has a 3xx status code

func (*GetUserGreetingsDefaultsUnauthorized) IsServerError

func (o *GetUserGreetingsDefaultsUnauthorized) IsServerError() bool

IsServerError returns true when this get user greetings defaults unauthorized response has a 5xx status code

func (*GetUserGreetingsDefaultsUnauthorized) IsSuccess

IsSuccess returns true when this get user greetings defaults unauthorized response has a 2xx status code

func (*GetUserGreetingsDefaultsUnauthorized) String

type GetUserGreetingsDefaultsUnsupportedMediaType

type GetUserGreetingsDefaultsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetUserGreetingsDefaultsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetUserGreetingsDefaultsUnsupportedMediaType

func NewGetUserGreetingsDefaultsUnsupportedMediaType() *GetUserGreetingsDefaultsUnsupportedMediaType

NewGetUserGreetingsDefaultsUnsupportedMediaType creates a GetUserGreetingsDefaultsUnsupportedMediaType with default headers values

func (*GetUserGreetingsDefaultsUnsupportedMediaType) Error

func (*GetUserGreetingsDefaultsUnsupportedMediaType) GetPayload

func (*GetUserGreetingsDefaultsUnsupportedMediaType) IsClientError

IsClientError returns true when this get user greetings defaults unsupported media type response has a 4xx status code

func (*GetUserGreetingsDefaultsUnsupportedMediaType) IsCode

IsCode returns true when this get user greetings defaults unsupported media type response a status code equal to that given

func (*GetUserGreetingsDefaultsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get user greetings defaults unsupported media type response has a 3xx status code

func (*GetUserGreetingsDefaultsUnsupportedMediaType) IsServerError

IsServerError returns true when this get user greetings defaults unsupported media type response has a 5xx status code

func (*GetUserGreetingsDefaultsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get user greetings defaults unsupported media type response has a 2xx status code

func (*GetUserGreetingsDefaultsUnsupportedMediaType) String

type GetUserGreetingsForbidden

type GetUserGreetingsForbidden struct {
	Payload *models.ErrorBody
}

GetUserGreetingsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewGetUserGreetingsForbidden

func NewGetUserGreetingsForbidden() *GetUserGreetingsForbidden

NewGetUserGreetingsForbidden creates a GetUserGreetingsForbidden with default headers values

func (*GetUserGreetingsForbidden) Error

func (o *GetUserGreetingsForbidden) Error() string

func (*GetUserGreetingsForbidden) GetPayload

func (o *GetUserGreetingsForbidden) GetPayload() *models.ErrorBody

func (*GetUserGreetingsForbidden) IsClientError

func (o *GetUserGreetingsForbidden) IsClientError() bool

IsClientError returns true when this get user greetings forbidden response has a 4xx status code

func (*GetUserGreetingsForbidden) IsCode

func (o *GetUserGreetingsForbidden) IsCode(code int) bool

IsCode returns true when this get user greetings forbidden response a status code equal to that given

func (*GetUserGreetingsForbidden) IsRedirect

func (o *GetUserGreetingsForbidden) IsRedirect() bool

IsRedirect returns true when this get user greetings forbidden response has a 3xx status code

func (*GetUserGreetingsForbidden) IsServerError

func (o *GetUserGreetingsForbidden) IsServerError() bool

IsServerError returns true when this get user greetings forbidden response has a 5xx status code

func (*GetUserGreetingsForbidden) IsSuccess

func (o *GetUserGreetingsForbidden) IsSuccess() bool

IsSuccess returns true when this get user greetings forbidden response has a 2xx status code

func (*GetUserGreetingsForbidden) String

func (o *GetUserGreetingsForbidden) String() string

type GetUserGreetingsGatewayTimeout

type GetUserGreetingsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetUserGreetingsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetUserGreetingsGatewayTimeout

func NewGetUserGreetingsGatewayTimeout() *GetUserGreetingsGatewayTimeout

NewGetUserGreetingsGatewayTimeout creates a GetUserGreetingsGatewayTimeout with default headers values

func (*GetUserGreetingsGatewayTimeout) Error

func (*GetUserGreetingsGatewayTimeout) GetPayload

func (*GetUserGreetingsGatewayTimeout) IsClientError

func (o *GetUserGreetingsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get user greetings gateway timeout response has a 4xx status code

func (*GetUserGreetingsGatewayTimeout) IsCode

func (o *GetUserGreetingsGatewayTimeout) IsCode(code int) bool

IsCode returns true when this get user greetings gateway timeout response a status code equal to that given

func (*GetUserGreetingsGatewayTimeout) IsRedirect

func (o *GetUserGreetingsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get user greetings gateway timeout response has a 3xx status code

func (*GetUserGreetingsGatewayTimeout) IsServerError

func (o *GetUserGreetingsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get user greetings gateway timeout response has a 5xx status code

func (*GetUserGreetingsGatewayTimeout) IsSuccess

func (o *GetUserGreetingsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get user greetings gateway timeout response has a 2xx status code

func (*GetUserGreetingsGatewayTimeout) String

type GetUserGreetingsInternalServerError

type GetUserGreetingsInternalServerError struct {
	Payload *models.ErrorBody
}

GetUserGreetingsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetUserGreetingsInternalServerError

func NewGetUserGreetingsInternalServerError() *GetUserGreetingsInternalServerError

NewGetUserGreetingsInternalServerError creates a GetUserGreetingsInternalServerError with default headers values

func (*GetUserGreetingsInternalServerError) Error

func (*GetUserGreetingsInternalServerError) GetPayload

func (*GetUserGreetingsInternalServerError) IsClientError

func (o *GetUserGreetingsInternalServerError) IsClientError() bool

IsClientError returns true when this get user greetings internal server error response has a 4xx status code

func (*GetUserGreetingsInternalServerError) IsCode

IsCode returns true when this get user greetings internal server error response a status code equal to that given

func (*GetUserGreetingsInternalServerError) IsRedirect

func (o *GetUserGreetingsInternalServerError) IsRedirect() bool

IsRedirect returns true when this get user greetings internal server error response has a 3xx status code

func (*GetUserGreetingsInternalServerError) IsServerError

func (o *GetUserGreetingsInternalServerError) IsServerError() bool

IsServerError returns true when this get user greetings internal server error response has a 5xx status code

func (*GetUserGreetingsInternalServerError) IsSuccess

IsSuccess returns true when this get user greetings internal server error response has a 2xx status code

func (*GetUserGreetingsInternalServerError) String

type GetUserGreetingsNotFound

type GetUserGreetingsNotFound struct {
	Payload *models.ErrorBody
}

GetUserGreetingsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewGetUserGreetingsNotFound

func NewGetUserGreetingsNotFound() *GetUserGreetingsNotFound

NewGetUserGreetingsNotFound creates a GetUserGreetingsNotFound with default headers values

func (*GetUserGreetingsNotFound) Error

func (o *GetUserGreetingsNotFound) Error() string

func (*GetUserGreetingsNotFound) GetPayload

func (o *GetUserGreetingsNotFound) GetPayload() *models.ErrorBody

func (*GetUserGreetingsNotFound) IsClientError

func (o *GetUserGreetingsNotFound) IsClientError() bool

IsClientError returns true when this get user greetings not found response has a 4xx status code

func (*GetUserGreetingsNotFound) IsCode

func (o *GetUserGreetingsNotFound) IsCode(code int) bool

IsCode returns true when this get user greetings not found response a status code equal to that given

func (*GetUserGreetingsNotFound) IsRedirect

func (o *GetUserGreetingsNotFound) IsRedirect() bool

IsRedirect returns true when this get user greetings not found response has a 3xx status code

func (*GetUserGreetingsNotFound) IsServerError

func (o *GetUserGreetingsNotFound) IsServerError() bool

IsServerError returns true when this get user greetings not found response has a 5xx status code

func (*GetUserGreetingsNotFound) IsSuccess

func (o *GetUserGreetingsNotFound) IsSuccess() bool

IsSuccess returns true when this get user greetings not found response has a 2xx status code

func (*GetUserGreetingsNotFound) String

func (o *GetUserGreetingsNotFound) String() string

type GetUserGreetingsOK

type GetUserGreetingsOK struct {
	Payload *models.DomainEntityListing
}

GetUserGreetingsOK describes a response with status code 200, with default header values.

successful operation

func NewGetUserGreetingsOK

func NewGetUserGreetingsOK() *GetUserGreetingsOK

NewGetUserGreetingsOK creates a GetUserGreetingsOK with default headers values

func (*GetUserGreetingsOK) Error

func (o *GetUserGreetingsOK) Error() string

func (*GetUserGreetingsOK) GetPayload

func (*GetUserGreetingsOK) IsClientError

func (o *GetUserGreetingsOK) IsClientError() bool

IsClientError returns true when this get user greetings o k response has a 4xx status code

func (*GetUserGreetingsOK) IsCode

func (o *GetUserGreetingsOK) IsCode(code int) bool

IsCode returns true when this get user greetings o k response a status code equal to that given

func (*GetUserGreetingsOK) IsRedirect

func (o *GetUserGreetingsOK) IsRedirect() bool

IsRedirect returns true when this get user greetings o k response has a 3xx status code

func (*GetUserGreetingsOK) IsServerError

func (o *GetUserGreetingsOK) IsServerError() bool

IsServerError returns true when this get user greetings o k response has a 5xx status code

func (*GetUserGreetingsOK) IsSuccess

func (o *GetUserGreetingsOK) IsSuccess() bool

IsSuccess returns true when this get user greetings o k response has a 2xx status code

func (*GetUserGreetingsOK) String

func (o *GetUserGreetingsOK) String() string

type GetUserGreetingsParams

type GetUserGreetingsParams struct {

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	/* UserID.

	   User ID
	*/
	UserID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetUserGreetingsParams contains all the parameters to send to the API endpoint

for the get user greetings operation.

Typically these are written to a http.Request.

func NewGetUserGreetingsParams

func NewGetUserGreetingsParams() *GetUserGreetingsParams

NewGetUserGreetingsParams creates a new GetUserGreetingsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetUserGreetingsParamsWithContext

func NewGetUserGreetingsParamsWithContext(ctx context.Context) *GetUserGreetingsParams

NewGetUserGreetingsParamsWithContext creates a new GetUserGreetingsParams object with the ability to set a context for a request.

func NewGetUserGreetingsParamsWithHTTPClient

func NewGetUserGreetingsParamsWithHTTPClient(client *http.Client) *GetUserGreetingsParams

NewGetUserGreetingsParamsWithHTTPClient creates a new GetUserGreetingsParams object with the ability to set a custom HTTPClient for a request.

func NewGetUserGreetingsParamsWithTimeout

func NewGetUserGreetingsParamsWithTimeout(timeout time.Duration) *GetUserGreetingsParams

NewGetUserGreetingsParamsWithTimeout creates a new GetUserGreetingsParams object with the ability to set a timeout on a request.

func (*GetUserGreetingsParams) SetContext

func (o *GetUserGreetingsParams) SetContext(ctx context.Context)

SetContext adds the context to the get user greetings params

func (*GetUserGreetingsParams) SetDefaults

func (o *GetUserGreetingsParams) SetDefaults()

SetDefaults hydrates default values in the get user greetings params (not the query body).

All values with no default are reset to their zero value.

func (*GetUserGreetingsParams) SetHTTPClient

func (o *GetUserGreetingsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get user greetings params

func (*GetUserGreetingsParams) SetPageNumber

func (o *GetUserGreetingsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get user greetings params

func (*GetUserGreetingsParams) SetPageSize

func (o *GetUserGreetingsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get user greetings params

func (*GetUserGreetingsParams) SetTimeout

func (o *GetUserGreetingsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get user greetings params

func (*GetUserGreetingsParams) SetUserID

func (o *GetUserGreetingsParams) SetUserID(userID string)

SetUserID adds the userId to the get user greetings params

func (*GetUserGreetingsParams) WithContext

WithContext adds the context to the get user greetings params

func (*GetUserGreetingsParams) WithDefaults

WithDefaults hydrates default values in the get user greetings params (not the query body).

All values with no default are reset to their zero value.

func (*GetUserGreetingsParams) WithHTTPClient

func (o *GetUserGreetingsParams) WithHTTPClient(client *http.Client) *GetUserGreetingsParams

WithHTTPClient adds the HTTPClient to the get user greetings params

func (*GetUserGreetingsParams) WithPageNumber

func (o *GetUserGreetingsParams) WithPageNumber(pageNumber *int32) *GetUserGreetingsParams

WithPageNumber adds the pageNumber to the get user greetings params

func (*GetUserGreetingsParams) WithPageSize

func (o *GetUserGreetingsParams) WithPageSize(pageSize *int32) *GetUserGreetingsParams

WithPageSize adds the pageSize to the get user greetings params

func (*GetUserGreetingsParams) WithTimeout

WithTimeout adds the timeout to the get user greetings params

func (*GetUserGreetingsParams) WithUserID

func (o *GetUserGreetingsParams) WithUserID(userID string) *GetUserGreetingsParams

WithUserID adds the userID to the get user greetings params

func (*GetUserGreetingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetUserGreetingsReader

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

GetUserGreetingsReader is a Reader for the GetUserGreetings structure.

func (*GetUserGreetingsReader) ReadResponse

func (o *GetUserGreetingsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetUserGreetingsRequestEntityTooLarge

type GetUserGreetingsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetUserGreetingsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetUserGreetingsRequestEntityTooLarge

func NewGetUserGreetingsRequestEntityTooLarge() *GetUserGreetingsRequestEntityTooLarge

NewGetUserGreetingsRequestEntityTooLarge creates a GetUserGreetingsRequestEntityTooLarge with default headers values

func (*GetUserGreetingsRequestEntityTooLarge) Error

func (*GetUserGreetingsRequestEntityTooLarge) GetPayload

func (*GetUserGreetingsRequestEntityTooLarge) IsClientError

func (o *GetUserGreetingsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get user greetings request entity too large response has a 4xx status code

func (*GetUserGreetingsRequestEntityTooLarge) IsCode

IsCode returns true when this get user greetings request entity too large response a status code equal to that given

func (*GetUserGreetingsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get user greetings request entity too large response has a 3xx status code

func (*GetUserGreetingsRequestEntityTooLarge) IsServerError

func (o *GetUserGreetingsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get user greetings request entity too large response has a 5xx status code

func (*GetUserGreetingsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get user greetings request entity too large response has a 2xx status code

func (*GetUserGreetingsRequestEntityTooLarge) String

type GetUserGreetingsRequestTimeout

type GetUserGreetingsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetUserGreetingsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetUserGreetingsRequestTimeout

func NewGetUserGreetingsRequestTimeout() *GetUserGreetingsRequestTimeout

NewGetUserGreetingsRequestTimeout creates a GetUserGreetingsRequestTimeout with default headers values

func (*GetUserGreetingsRequestTimeout) Error

func (*GetUserGreetingsRequestTimeout) GetPayload

func (*GetUserGreetingsRequestTimeout) IsClientError

func (o *GetUserGreetingsRequestTimeout) IsClientError() bool

IsClientError returns true when this get user greetings request timeout response has a 4xx status code

func (*GetUserGreetingsRequestTimeout) IsCode

func (o *GetUserGreetingsRequestTimeout) IsCode(code int) bool

IsCode returns true when this get user greetings request timeout response a status code equal to that given

func (*GetUserGreetingsRequestTimeout) IsRedirect

func (o *GetUserGreetingsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get user greetings request timeout response has a 3xx status code

func (*GetUserGreetingsRequestTimeout) IsServerError

func (o *GetUserGreetingsRequestTimeout) IsServerError() bool

IsServerError returns true when this get user greetings request timeout response has a 5xx status code

func (*GetUserGreetingsRequestTimeout) IsSuccess

func (o *GetUserGreetingsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get user greetings request timeout response has a 2xx status code

func (*GetUserGreetingsRequestTimeout) String

type GetUserGreetingsServiceUnavailable

type GetUserGreetingsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetUserGreetingsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetUserGreetingsServiceUnavailable

func NewGetUserGreetingsServiceUnavailable() *GetUserGreetingsServiceUnavailable

NewGetUserGreetingsServiceUnavailable creates a GetUserGreetingsServiceUnavailable with default headers values

func (*GetUserGreetingsServiceUnavailable) Error

func (*GetUserGreetingsServiceUnavailable) GetPayload

func (*GetUserGreetingsServiceUnavailable) IsClientError

func (o *GetUserGreetingsServiceUnavailable) IsClientError() bool

IsClientError returns true when this get user greetings service unavailable response has a 4xx status code

func (*GetUserGreetingsServiceUnavailable) IsCode

IsCode returns true when this get user greetings service unavailable response a status code equal to that given

func (*GetUserGreetingsServiceUnavailable) IsRedirect

func (o *GetUserGreetingsServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get user greetings service unavailable response has a 3xx status code

func (*GetUserGreetingsServiceUnavailable) IsServerError

func (o *GetUserGreetingsServiceUnavailable) IsServerError() bool

IsServerError returns true when this get user greetings service unavailable response has a 5xx status code

func (*GetUserGreetingsServiceUnavailable) IsSuccess

IsSuccess returns true when this get user greetings service unavailable response has a 2xx status code

func (*GetUserGreetingsServiceUnavailable) String

type GetUserGreetingsTooManyRequests

type GetUserGreetingsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetUserGreetingsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetUserGreetingsTooManyRequests

func NewGetUserGreetingsTooManyRequests() *GetUserGreetingsTooManyRequests

NewGetUserGreetingsTooManyRequests creates a GetUserGreetingsTooManyRequests with default headers values

func (*GetUserGreetingsTooManyRequests) Error

func (*GetUserGreetingsTooManyRequests) GetPayload

func (*GetUserGreetingsTooManyRequests) IsClientError

func (o *GetUserGreetingsTooManyRequests) IsClientError() bool

IsClientError returns true when this get user greetings too many requests response has a 4xx status code

func (*GetUserGreetingsTooManyRequests) IsCode

func (o *GetUserGreetingsTooManyRequests) IsCode(code int) bool

IsCode returns true when this get user greetings too many requests response a status code equal to that given

func (*GetUserGreetingsTooManyRequests) IsRedirect

func (o *GetUserGreetingsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get user greetings too many requests response has a 3xx status code

func (*GetUserGreetingsTooManyRequests) IsServerError

func (o *GetUserGreetingsTooManyRequests) IsServerError() bool

IsServerError returns true when this get user greetings too many requests response has a 5xx status code

func (*GetUserGreetingsTooManyRequests) IsSuccess

func (o *GetUserGreetingsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get user greetings too many requests response has a 2xx status code

func (*GetUserGreetingsTooManyRequests) String

type GetUserGreetingsUnauthorized

type GetUserGreetingsUnauthorized struct {
	Payload *models.ErrorBody
}

GetUserGreetingsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewGetUserGreetingsUnauthorized

func NewGetUserGreetingsUnauthorized() *GetUserGreetingsUnauthorized

NewGetUserGreetingsUnauthorized creates a GetUserGreetingsUnauthorized with default headers values

func (*GetUserGreetingsUnauthorized) Error

func (*GetUserGreetingsUnauthorized) GetPayload

func (*GetUserGreetingsUnauthorized) IsClientError

func (o *GetUserGreetingsUnauthorized) IsClientError() bool

IsClientError returns true when this get user greetings unauthorized response has a 4xx status code

func (*GetUserGreetingsUnauthorized) IsCode

func (o *GetUserGreetingsUnauthorized) IsCode(code int) bool

IsCode returns true when this get user greetings unauthorized response a status code equal to that given

func (*GetUserGreetingsUnauthorized) IsRedirect

func (o *GetUserGreetingsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get user greetings unauthorized response has a 3xx status code

func (*GetUserGreetingsUnauthorized) IsServerError

func (o *GetUserGreetingsUnauthorized) IsServerError() bool

IsServerError returns true when this get user greetings unauthorized response has a 5xx status code

func (*GetUserGreetingsUnauthorized) IsSuccess

func (o *GetUserGreetingsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get user greetings unauthorized response has a 2xx status code

func (*GetUserGreetingsUnauthorized) String

type GetUserGreetingsUnsupportedMediaType

type GetUserGreetingsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetUserGreetingsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetUserGreetingsUnsupportedMediaType

func NewGetUserGreetingsUnsupportedMediaType() *GetUserGreetingsUnsupportedMediaType

NewGetUserGreetingsUnsupportedMediaType creates a GetUserGreetingsUnsupportedMediaType with default headers values

func (*GetUserGreetingsUnsupportedMediaType) Error

func (*GetUserGreetingsUnsupportedMediaType) GetPayload

func (*GetUserGreetingsUnsupportedMediaType) IsClientError

func (o *GetUserGreetingsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get user greetings unsupported media type response has a 4xx status code

func (*GetUserGreetingsUnsupportedMediaType) IsCode

IsCode returns true when this get user greetings unsupported media type response a status code equal to that given

func (*GetUserGreetingsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get user greetings unsupported media type response has a 3xx status code

func (*GetUserGreetingsUnsupportedMediaType) IsServerError

func (o *GetUserGreetingsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get user greetings unsupported media type response has a 5xx status code

func (*GetUserGreetingsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get user greetings unsupported media type response has a 2xx status code

func (*GetUserGreetingsUnsupportedMediaType) String

type PostGreetingsBadRequest

type PostGreetingsBadRequest struct {
	Payload *models.ErrorBody
}

PostGreetingsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewPostGreetingsBadRequest

func NewPostGreetingsBadRequest() *PostGreetingsBadRequest

NewPostGreetingsBadRequest creates a PostGreetingsBadRequest with default headers values

func (*PostGreetingsBadRequest) Error

func (o *PostGreetingsBadRequest) Error() string

func (*PostGreetingsBadRequest) GetPayload

func (o *PostGreetingsBadRequest) GetPayload() *models.ErrorBody

func (*PostGreetingsBadRequest) IsClientError

func (o *PostGreetingsBadRequest) IsClientError() bool

IsClientError returns true when this post greetings bad request response has a 4xx status code

func (*PostGreetingsBadRequest) IsCode

func (o *PostGreetingsBadRequest) IsCode(code int) bool

IsCode returns true when this post greetings bad request response a status code equal to that given

func (*PostGreetingsBadRequest) IsRedirect

func (o *PostGreetingsBadRequest) IsRedirect() bool

IsRedirect returns true when this post greetings bad request response has a 3xx status code

func (*PostGreetingsBadRequest) IsServerError

func (o *PostGreetingsBadRequest) IsServerError() bool

IsServerError returns true when this post greetings bad request response has a 5xx status code

func (*PostGreetingsBadRequest) IsSuccess

func (o *PostGreetingsBadRequest) IsSuccess() bool

IsSuccess returns true when this post greetings bad request response has a 2xx status code

func (*PostGreetingsBadRequest) String

func (o *PostGreetingsBadRequest) String() string

type PostGreetingsForbidden

type PostGreetingsForbidden struct {
	Payload *models.ErrorBody
}

PostGreetingsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewPostGreetingsForbidden

func NewPostGreetingsForbidden() *PostGreetingsForbidden

NewPostGreetingsForbidden creates a PostGreetingsForbidden with default headers values

func (*PostGreetingsForbidden) Error

func (o *PostGreetingsForbidden) Error() string

func (*PostGreetingsForbidden) GetPayload

func (o *PostGreetingsForbidden) GetPayload() *models.ErrorBody

func (*PostGreetingsForbidden) IsClientError

func (o *PostGreetingsForbidden) IsClientError() bool

IsClientError returns true when this post greetings forbidden response has a 4xx status code

func (*PostGreetingsForbidden) IsCode

func (o *PostGreetingsForbidden) IsCode(code int) bool

IsCode returns true when this post greetings forbidden response a status code equal to that given

func (*PostGreetingsForbidden) IsRedirect

func (o *PostGreetingsForbidden) IsRedirect() bool

IsRedirect returns true when this post greetings forbidden response has a 3xx status code

func (*PostGreetingsForbidden) IsServerError

func (o *PostGreetingsForbidden) IsServerError() bool

IsServerError returns true when this post greetings forbidden response has a 5xx status code

func (*PostGreetingsForbidden) IsSuccess

func (o *PostGreetingsForbidden) IsSuccess() bool

IsSuccess returns true when this post greetings forbidden response has a 2xx status code

func (*PostGreetingsForbidden) String

func (o *PostGreetingsForbidden) String() string

type PostGreetingsGatewayTimeout

type PostGreetingsGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostGreetingsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostGreetingsGatewayTimeout

func NewPostGreetingsGatewayTimeout() *PostGreetingsGatewayTimeout

NewPostGreetingsGatewayTimeout creates a PostGreetingsGatewayTimeout with default headers values

func (*PostGreetingsGatewayTimeout) Error

func (*PostGreetingsGatewayTimeout) GetPayload

func (o *PostGreetingsGatewayTimeout) GetPayload() *models.ErrorBody

func (*PostGreetingsGatewayTimeout) IsClientError

func (o *PostGreetingsGatewayTimeout) IsClientError() bool

IsClientError returns true when this post greetings gateway timeout response has a 4xx status code

func (*PostGreetingsGatewayTimeout) IsCode

func (o *PostGreetingsGatewayTimeout) IsCode(code int) bool

IsCode returns true when this post greetings gateway timeout response a status code equal to that given

func (*PostGreetingsGatewayTimeout) IsRedirect

func (o *PostGreetingsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post greetings gateway timeout response has a 3xx status code

func (*PostGreetingsGatewayTimeout) IsServerError

func (o *PostGreetingsGatewayTimeout) IsServerError() bool

IsServerError returns true when this post greetings gateway timeout response has a 5xx status code

func (*PostGreetingsGatewayTimeout) IsSuccess

func (o *PostGreetingsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this post greetings gateway timeout response has a 2xx status code

func (*PostGreetingsGatewayTimeout) String

func (o *PostGreetingsGatewayTimeout) String() string

type PostGreetingsInternalServerError

type PostGreetingsInternalServerError struct {
	Payload *models.ErrorBody
}

PostGreetingsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostGreetingsInternalServerError

func NewPostGreetingsInternalServerError() *PostGreetingsInternalServerError

NewPostGreetingsInternalServerError creates a PostGreetingsInternalServerError with default headers values

func (*PostGreetingsInternalServerError) Error

func (*PostGreetingsInternalServerError) GetPayload

func (*PostGreetingsInternalServerError) IsClientError

func (o *PostGreetingsInternalServerError) IsClientError() bool

IsClientError returns true when this post greetings internal server error response has a 4xx status code

func (*PostGreetingsInternalServerError) IsCode

func (o *PostGreetingsInternalServerError) IsCode(code int) bool

IsCode returns true when this post greetings internal server error response a status code equal to that given

func (*PostGreetingsInternalServerError) IsRedirect

func (o *PostGreetingsInternalServerError) IsRedirect() bool

IsRedirect returns true when this post greetings internal server error response has a 3xx status code

func (*PostGreetingsInternalServerError) IsServerError

func (o *PostGreetingsInternalServerError) IsServerError() bool

IsServerError returns true when this post greetings internal server error response has a 5xx status code

func (*PostGreetingsInternalServerError) IsSuccess

func (o *PostGreetingsInternalServerError) IsSuccess() bool

IsSuccess returns true when this post greetings internal server error response has a 2xx status code

func (*PostGreetingsInternalServerError) String

type PostGreetingsNotFound

type PostGreetingsNotFound struct {
	Payload *models.ErrorBody
}

PostGreetingsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewPostGreetingsNotFound

func NewPostGreetingsNotFound() *PostGreetingsNotFound

NewPostGreetingsNotFound creates a PostGreetingsNotFound with default headers values

func (*PostGreetingsNotFound) Error

func (o *PostGreetingsNotFound) Error() string

func (*PostGreetingsNotFound) GetPayload

func (o *PostGreetingsNotFound) GetPayload() *models.ErrorBody

func (*PostGreetingsNotFound) IsClientError

func (o *PostGreetingsNotFound) IsClientError() bool

IsClientError returns true when this post greetings not found response has a 4xx status code

func (*PostGreetingsNotFound) IsCode

func (o *PostGreetingsNotFound) IsCode(code int) bool

IsCode returns true when this post greetings not found response a status code equal to that given

func (*PostGreetingsNotFound) IsRedirect

func (o *PostGreetingsNotFound) IsRedirect() bool

IsRedirect returns true when this post greetings not found response has a 3xx status code

func (*PostGreetingsNotFound) IsServerError

func (o *PostGreetingsNotFound) IsServerError() bool

IsServerError returns true when this post greetings not found response has a 5xx status code

func (*PostGreetingsNotFound) IsSuccess

func (o *PostGreetingsNotFound) IsSuccess() bool

IsSuccess returns true when this post greetings not found response has a 2xx status code

func (*PostGreetingsNotFound) String

func (o *PostGreetingsNotFound) String() string

type PostGreetingsOK

type PostGreetingsOK struct {
	Payload *models.Greeting
}

PostGreetingsOK describes a response with status code 200, with default header values.

successful operation

func NewPostGreetingsOK

func NewPostGreetingsOK() *PostGreetingsOK

NewPostGreetingsOK creates a PostGreetingsOK with default headers values

func (*PostGreetingsOK) Error

func (o *PostGreetingsOK) Error() string

func (*PostGreetingsOK) GetPayload

func (o *PostGreetingsOK) GetPayload() *models.Greeting

func (*PostGreetingsOK) IsClientError

func (o *PostGreetingsOK) IsClientError() bool

IsClientError returns true when this post greetings o k response has a 4xx status code

func (*PostGreetingsOK) IsCode

func (o *PostGreetingsOK) IsCode(code int) bool

IsCode returns true when this post greetings o k response a status code equal to that given

func (*PostGreetingsOK) IsRedirect

func (o *PostGreetingsOK) IsRedirect() bool

IsRedirect returns true when this post greetings o k response has a 3xx status code

func (*PostGreetingsOK) IsServerError

func (o *PostGreetingsOK) IsServerError() bool

IsServerError returns true when this post greetings o k response has a 5xx status code

func (*PostGreetingsOK) IsSuccess

func (o *PostGreetingsOK) IsSuccess() bool

IsSuccess returns true when this post greetings o k response has a 2xx status code

func (*PostGreetingsOK) String

func (o *PostGreetingsOK) String() string

type PostGreetingsParams

type PostGreetingsParams struct {

	/* Body.

	   The Greeting to create
	*/
	Body *models.Greeting

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostGreetingsParams contains all the parameters to send to the API endpoint

for the post greetings operation.

Typically these are written to a http.Request.

func NewPostGreetingsParams

func NewPostGreetingsParams() *PostGreetingsParams

NewPostGreetingsParams creates a new PostGreetingsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewPostGreetingsParamsWithContext

func NewPostGreetingsParamsWithContext(ctx context.Context) *PostGreetingsParams

NewPostGreetingsParamsWithContext creates a new PostGreetingsParams object with the ability to set a context for a request.

func NewPostGreetingsParamsWithHTTPClient

func NewPostGreetingsParamsWithHTTPClient(client *http.Client) *PostGreetingsParams

NewPostGreetingsParamsWithHTTPClient creates a new PostGreetingsParams object with the ability to set a custom HTTPClient for a request.

func NewPostGreetingsParamsWithTimeout

func NewPostGreetingsParamsWithTimeout(timeout time.Duration) *PostGreetingsParams

NewPostGreetingsParamsWithTimeout creates a new PostGreetingsParams object with the ability to set a timeout on a request.

func (*PostGreetingsParams) SetBody

func (o *PostGreetingsParams) SetBody(body *models.Greeting)

SetBody adds the body to the post greetings params

func (*PostGreetingsParams) SetContext

func (o *PostGreetingsParams) SetContext(ctx context.Context)

SetContext adds the context to the post greetings params

func (*PostGreetingsParams) SetDefaults

func (o *PostGreetingsParams) SetDefaults()

SetDefaults hydrates default values in the post greetings params (not the query body).

All values with no default are reset to their zero value.

func (*PostGreetingsParams) SetHTTPClient

func (o *PostGreetingsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post greetings params

func (*PostGreetingsParams) SetTimeout

func (o *PostGreetingsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post greetings params

func (*PostGreetingsParams) WithBody

WithBody adds the body to the post greetings params

func (*PostGreetingsParams) WithContext

WithContext adds the context to the post greetings params

func (*PostGreetingsParams) WithDefaults

func (o *PostGreetingsParams) WithDefaults() *PostGreetingsParams

WithDefaults hydrates default values in the post greetings params (not the query body).

All values with no default are reset to their zero value.

func (*PostGreetingsParams) WithHTTPClient

func (o *PostGreetingsParams) WithHTTPClient(client *http.Client) *PostGreetingsParams

WithHTTPClient adds the HTTPClient to the post greetings params

func (*PostGreetingsParams) WithTimeout

func (o *PostGreetingsParams) WithTimeout(timeout time.Duration) *PostGreetingsParams

WithTimeout adds the timeout to the post greetings params

func (*PostGreetingsParams) WriteToRequest

func (o *PostGreetingsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type PostGreetingsReader

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

PostGreetingsReader is a Reader for the PostGreetings structure.

func (*PostGreetingsReader) ReadResponse

func (o *PostGreetingsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostGreetingsRequestEntityTooLarge

type PostGreetingsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostGreetingsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostGreetingsRequestEntityTooLarge

func NewPostGreetingsRequestEntityTooLarge() *PostGreetingsRequestEntityTooLarge

NewPostGreetingsRequestEntityTooLarge creates a PostGreetingsRequestEntityTooLarge with default headers values

func (*PostGreetingsRequestEntityTooLarge) Error

func (*PostGreetingsRequestEntityTooLarge) GetPayload

func (*PostGreetingsRequestEntityTooLarge) IsClientError

func (o *PostGreetingsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this post greetings request entity too large response has a 4xx status code

func (*PostGreetingsRequestEntityTooLarge) IsCode

IsCode returns true when this post greetings request entity too large response a status code equal to that given

func (*PostGreetingsRequestEntityTooLarge) IsRedirect

func (o *PostGreetingsRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this post greetings request entity too large response has a 3xx status code

func (*PostGreetingsRequestEntityTooLarge) IsServerError

func (o *PostGreetingsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this post greetings request entity too large response has a 5xx status code

func (*PostGreetingsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post greetings request entity too large response has a 2xx status code

func (*PostGreetingsRequestEntityTooLarge) String

type PostGreetingsRequestTimeout

type PostGreetingsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostGreetingsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostGreetingsRequestTimeout

func NewPostGreetingsRequestTimeout() *PostGreetingsRequestTimeout

NewPostGreetingsRequestTimeout creates a PostGreetingsRequestTimeout with default headers values

func (*PostGreetingsRequestTimeout) Error

func (*PostGreetingsRequestTimeout) GetPayload

func (o *PostGreetingsRequestTimeout) GetPayload() *models.ErrorBody

func (*PostGreetingsRequestTimeout) IsClientError

func (o *PostGreetingsRequestTimeout) IsClientError() bool

IsClientError returns true when this post greetings request timeout response has a 4xx status code

func (*PostGreetingsRequestTimeout) IsCode

func (o *PostGreetingsRequestTimeout) IsCode(code int) bool

IsCode returns true when this post greetings request timeout response a status code equal to that given

func (*PostGreetingsRequestTimeout) IsRedirect

func (o *PostGreetingsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post greetings request timeout response has a 3xx status code

func (*PostGreetingsRequestTimeout) IsServerError

func (o *PostGreetingsRequestTimeout) IsServerError() bool

IsServerError returns true when this post greetings request timeout response has a 5xx status code

func (*PostGreetingsRequestTimeout) IsSuccess

func (o *PostGreetingsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this post greetings request timeout response has a 2xx status code

func (*PostGreetingsRequestTimeout) String

func (o *PostGreetingsRequestTimeout) String() string

type PostGreetingsServiceUnavailable

type PostGreetingsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostGreetingsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostGreetingsServiceUnavailable

func NewPostGreetingsServiceUnavailable() *PostGreetingsServiceUnavailable

NewPostGreetingsServiceUnavailable creates a PostGreetingsServiceUnavailable with default headers values

func (*PostGreetingsServiceUnavailable) Error

func (*PostGreetingsServiceUnavailable) GetPayload

func (*PostGreetingsServiceUnavailable) IsClientError

func (o *PostGreetingsServiceUnavailable) IsClientError() bool

IsClientError returns true when this post greetings service unavailable response has a 4xx status code

func (*PostGreetingsServiceUnavailable) IsCode

func (o *PostGreetingsServiceUnavailable) IsCode(code int) bool

IsCode returns true when this post greetings service unavailable response a status code equal to that given

func (*PostGreetingsServiceUnavailable) IsRedirect

func (o *PostGreetingsServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this post greetings service unavailable response has a 3xx status code

func (*PostGreetingsServiceUnavailable) IsServerError

func (o *PostGreetingsServiceUnavailable) IsServerError() bool

IsServerError returns true when this post greetings service unavailable response has a 5xx status code

func (*PostGreetingsServiceUnavailable) IsSuccess

func (o *PostGreetingsServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this post greetings service unavailable response has a 2xx status code

func (*PostGreetingsServiceUnavailable) String

type PostGreetingsTooManyRequests

type PostGreetingsTooManyRequests struct {
	Payload *models.ErrorBody
}

PostGreetingsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostGreetingsTooManyRequests

func NewPostGreetingsTooManyRequests() *PostGreetingsTooManyRequests

NewPostGreetingsTooManyRequests creates a PostGreetingsTooManyRequests with default headers values

func (*PostGreetingsTooManyRequests) Error

func (*PostGreetingsTooManyRequests) GetPayload

func (*PostGreetingsTooManyRequests) IsClientError

func (o *PostGreetingsTooManyRequests) IsClientError() bool

IsClientError returns true when this post greetings too many requests response has a 4xx status code

func (*PostGreetingsTooManyRequests) IsCode

func (o *PostGreetingsTooManyRequests) IsCode(code int) bool

IsCode returns true when this post greetings too many requests response a status code equal to that given

func (*PostGreetingsTooManyRequests) IsRedirect

func (o *PostGreetingsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this post greetings too many requests response has a 3xx status code

func (*PostGreetingsTooManyRequests) IsServerError

func (o *PostGreetingsTooManyRequests) IsServerError() bool

IsServerError returns true when this post greetings too many requests response has a 5xx status code

func (*PostGreetingsTooManyRequests) IsSuccess

func (o *PostGreetingsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this post greetings too many requests response has a 2xx status code

func (*PostGreetingsTooManyRequests) String

type PostGreetingsUnauthorized

type PostGreetingsUnauthorized struct {
	Payload *models.ErrorBody
}

PostGreetingsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewPostGreetingsUnauthorized

func NewPostGreetingsUnauthorized() *PostGreetingsUnauthorized

NewPostGreetingsUnauthorized creates a PostGreetingsUnauthorized with default headers values

func (*PostGreetingsUnauthorized) Error

func (o *PostGreetingsUnauthorized) Error() string

func (*PostGreetingsUnauthorized) GetPayload

func (o *PostGreetingsUnauthorized) GetPayload() *models.ErrorBody

func (*PostGreetingsUnauthorized) IsClientError

func (o *PostGreetingsUnauthorized) IsClientError() bool

IsClientError returns true when this post greetings unauthorized response has a 4xx status code

func (*PostGreetingsUnauthorized) IsCode

func (o *PostGreetingsUnauthorized) IsCode(code int) bool

IsCode returns true when this post greetings unauthorized response a status code equal to that given

func (*PostGreetingsUnauthorized) IsRedirect

func (o *PostGreetingsUnauthorized) IsRedirect() bool

IsRedirect returns true when this post greetings unauthorized response has a 3xx status code

func (*PostGreetingsUnauthorized) IsServerError

func (o *PostGreetingsUnauthorized) IsServerError() bool

IsServerError returns true when this post greetings unauthorized response has a 5xx status code

func (*PostGreetingsUnauthorized) IsSuccess

func (o *PostGreetingsUnauthorized) IsSuccess() bool

IsSuccess returns true when this post greetings unauthorized response has a 2xx status code

func (*PostGreetingsUnauthorized) String

func (o *PostGreetingsUnauthorized) String() string

type PostGreetingsUnsupportedMediaType

type PostGreetingsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostGreetingsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostGreetingsUnsupportedMediaType

func NewPostGreetingsUnsupportedMediaType() *PostGreetingsUnsupportedMediaType

NewPostGreetingsUnsupportedMediaType creates a PostGreetingsUnsupportedMediaType with default headers values

func (*PostGreetingsUnsupportedMediaType) Error

func (*PostGreetingsUnsupportedMediaType) GetPayload

func (*PostGreetingsUnsupportedMediaType) IsClientError

func (o *PostGreetingsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this post greetings unsupported media type response has a 4xx status code

func (*PostGreetingsUnsupportedMediaType) IsCode

func (o *PostGreetingsUnsupportedMediaType) IsCode(code int) bool

IsCode returns true when this post greetings unsupported media type response a status code equal to that given

func (*PostGreetingsUnsupportedMediaType) IsRedirect

func (o *PostGreetingsUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this post greetings unsupported media type response has a 3xx status code

func (*PostGreetingsUnsupportedMediaType) IsServerError

func (o *PostGreetingsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this post greetings unsupported media type response has a 5xx status code

func (*PostGreetingsUnsupportedMediaType) IsSuccess

func (o *PostGreetingsUnsupportedMediaType) IsSuccess() bool

IsSuccess returns true when this post greetings unsupported media type response has a 2xx status code

func (*PostGreetingsUnsupportedMediaType) String

type PostGroupGreetingsBadRequest

type PostGroupGreetingsBadRequest struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewPostGroupGreetingsBadRequest

func NewPostGroupGreetingsBadRequest() *PostGroupGreetingsBadRequest

NewPostGroupGreetingsBadRequest creates a PostGroupGreetingsBadRequest with default headers values

func (*PostGroupGreetingsBadRequest) Error

func (*PostGroupGreetingsBadRequest) GetPayload

func (*PostGroupGreetingsBadRequest) IsClientError

func (o *PostGroupGreetingsBadRequest) IsClientError() bool

IsClientError returns true when this post group greetings bad request response has a 4xx status code

func (*PostGroupGreetingsBadRequest) IsCode

func (o *PostGroupGreetingsBadRequest) IsCode(code int) bool

IsCode returns true when this post group greetings bad request response a status code equal to that given

func (*PostGroupGreetingsBadRequest) IsRedirect

func (o *PostGroupGreetingsBadRequest) IsRedirect() bool

IsRedirect returns true when this post group greetings bad request response has a 3xx status code

func (*PostGroupGreetingsBadRequest) IsServerError

func (o *PostGroupGreetingsBadRequest) IsServerError() bool

IsServerError returns true when this post group greetings bad request response has a 5xx status code

func (*PostGroupGreetingsBadRequest) IsSuccess

func (o *PostGroupGreetingsBadRequest) IsSuccess() bool

IsSuccess returns true when this post group greetings bad request response has a 2xx status code

func (*PostGroupGreetingsBadRequest) String

type PostGroupGreetingsForbidden

type PostGroupGreetingsForbidden struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewPostGroupGreetingsForbidden

func NewPostGroupGreetingsForbidden() *PostGroupGreetingsForbidden

NewPostGroupGreetingsForbidden creates a PostGroupGreetingsForbidden with default headers values

func (*PostGroupGreetingsForbidden) Error

func (*PostGroupGreetingsForbidden) GetPayload

func (o *PostGroupGreetingsForbidden) GetPayload() *models.ErrorBody

func (*PostGroupGreetingsForbidden) IsClientError

func (o *PostGroupGreetingsForbidden) IsClientError() bool

IsClientError returns true when this post group greetings forbidden response has a 4xx status code

func (*PostGroupGreetingsForbidden) IsCode

func (o *PostGroupGreetingsForbidden) IsCode(code int) bool

IsCode returns true when this post group greetings forbidden response a status code equal to that given

func (*PostGroupGreetingsForbidden) IsRedirect

func (o *PostGroupGreetingsForbidden) IsRedirect() bool

IsRedirect returns true when this post group greetings forbidden response has a 3xx status code

func (*PostGroupGreetingsForbidden) IsServerError

func (o *PostGroupGreetingsForbidden) IsServerError() bool

IsServerError returns true when this post group greetings forbidden response has a 5xx status code

func (*PostGroupGreetingsForbidden) IsSuccess

func (o *PostGroupGreetingsForbidden) IsSuccess() bool

IsSuccess returns true when this post group greetings forbidden response has a 2xx status code

func (*PostGroupGreetingsForbidden) String

func (o *PostGroupGreetingsForbidden) String() string

type PostGroupGreetingsGatewayTimeout

type PostGroupGreetingsGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostGroupGreetingsGatewayTimeout

func NewPostGroupGreetingsGatewayTimeout() *PostGroupGreetingsGatewayTimeout

NewPostGroupGreetingsGatewayTimeout creates a PostGroupGreetingsGatewayTimeout with default headers values

func (*PostGroupGreetingsGatewayTimeout) Error

func (*PostGroupGreetingsGatewayTimeout) GetPayload

func (*PostGroupGreetingsGatewayTimeout) IsClientError

func (o *PostGroupGreetingsGatewayTimeout) IsClientError() bool

IsClientError returns true when this post group greetings gateway timeout response has a 4xx status code

func (*PostGroupGreetingsGatewayTimeout) IsCode

func (o *PostGroupGreetingsGatewayTimeout) IsCode(code int) bool

IsCode returns true when this post group greetings gateway timeout response a status code equal to that given

func (*PostGroupGreetingsGatewayTimeout) IsRedirect

func (o *PostGroupGreetingsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post group greetings gateway timeout response has a 3xx status code

func (*PostGroupGreetingsGatewayTimeout) IsServerError

func (o *PostGroupGreetingsGatewayTimeout) IsServerError() bool

IsServerError returns true when this post group greetings gateway timeout response has a 5xx status code

func (*PostGroupGreetingsGatewayTimeout) IsSuccess

func (o *PostGroupGreetingsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this post group greetings gateway timeout response has a 2xx status code

func (*PostGroupGreetingsGatewayTimeout) String

type PostGroupGreetingsInternalServerError

type PostGroupGreetingsInternalServerError struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostGroupGreetingsInternalServerError

func NewPostGroupGreetingsInternalServerError() *PostGroupGreetingsInternalServerError

NewPostGroupGreetingsInternalServerError creates a PostGroupGreetingsInternalServerError with default headers values

func (*PostGroupGreetingsInternalServerError) Error

func (*PostGroupGreetingsInternalServerError) GetPayload

func (*PostGroupGreetingsInternalServerError) IsClientError

func (o *PostGroupGreetingsInternalServerError) IsClientError() bool

IsClientError returns true when this post group greetings internal server error response has a 4xx status code

func (*PostGroupGreetingsInternalServerError) IsCode

IsCode returns true when this post group greetings internal server error response a status code equal to that given

func (*PostGroupGreetingsInternalServerError) IsRedirect

IsRedirect returns true when this post group greetings internal server error response has a 3xx status code

func (*PostGroupGreetingsInternalServerError) IsServerError

func (o *PostGroupGreetingsInternalServerError) IsServerError() bool

IsServerError returns true when this post group greetings internal server error response has a 5xx status code

func (*PostGroupGreetingsInternalServerError) IsSuccess

IsSuccess returns true when this post group greetings internal server error response has a 2xx status code

func (*PostGroupGreetingsInternalServerError) String

type PostGroupGreetingsNotFound

type PostGroupGreetingsNotFound struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewPostGroupGreetingsNotFound

func NewPostGroupGreetingsNotFound() *PostGroupGreetingsNotFound

NewPostGroupGreetingsNotFound creates a PostGroupGreetingsNotFound with default headers values

func (*PostGroupGreetingsNotFound) Error

func (*PostGroupGreetingsNotFound) GetPayload

func (o *PostGroupGreetingsNotFound) GetPayload() *models.ErrorBody

func (*PostGroupGreetingsNotFound) IsClientError

func (o *PostGroupGreetingsNotFound) IsClientError() bool

IsClientError returns true when this post group greetings not found response has a 4xx status code

func (*PostGroupGreetingsNotFound) IsCode

func (o *PostGroupGreetingsNotFound) IsCode(code int) bool

IsCode returns true when this post group greetings not found response a status code equal to that given

func (*PostGroupGreetingsNotFound) IsRedirect

func (o *PostGroupGreetingsNotFound) IsRedirect() bool

IsRedirect returns true when this post group greetings not found response has a 3xx status code

func (*PostGroupGreetingsNotFound) IsServerError

func (o *PostGroupGreetingsNotFound) IsServerError() bool

IsServerError returns true when this post group greetings not found response has a 5xx status code

func (*PostGroupGreetingsNotFound) IsSuccess

func (o *PostGroupGreetingsNotFound) IsSuccess() bool

IsSuccess returns true when this post group greetings not found response has a 2xx status code

func (*PostGroupGreetingsNotFound) String

func (o *PostGroupGreetingsNotFound) String() string

type PostGroupGreetingsOK

type PostGroupGreetingsOK struct {
	Payload *models.Greeting
}

PostGroupGreetingsOK describes a response with status code 200, with default header values.

successful operation

func NewPostGroupGreetingsOK

func NewPostGroupGreetingsOK() *PostGroupGreetingsOK

NewPostGroupGreetingsOK creates a PostGroupGreetingsOK with default headers values

func (*PostGroupGreetingsOK) Error

func (o *PostGroupGreetingsOK) Error() string

func (*PostGroupGreetingsOK) GetPayload

func (o *PostGroupGreetingsOK) GetPayload() *models.Greeting

func (*PostGroupGreetingsOK) IsClientError

func (o *PostGroupGreetingsOK) IsClientError() bool

IsClientError returns true when this post group greetings o k response has a 4xx status code

func (*PostGroupGreetingsOK) IsCode

func (o *PostGroupGreetingsOK) IsCode(code int) bool

IsCode returns true when this post group greetings o k response a status code equal to that given

func (*PostGroupGreetingsOK) IsRedirect

func (o *PostGroupGreetingsOK) IsRedirect() bool

IsRedirect returns true when this post group greetings o k response has a 3xx status code

func (*PostGroupGreetingsOK) IsServerError

func (o *PostGroupGreetingsOK) IsServerError() bool

IsServerError returns true when this post group greetings o k response has a 5xx status code

func (*PostGroupGreetingsOK) IsSuccess

func (o *PostGroupGreetingsOK) IsSuccess() bool

IsSuccess returns true when this post group greetings o k response has a 2xx status code

func (*PostGroupGreetingsOK) String

func (o *PostGroupGreetingsOK) String() string

type PostGroupGreetingsParams

type PostGroupGreetingsParams struct {

	/* Body.

	   The Greeting to create
	*/
	Body *models.Greeting

	/* GroupID.

	   Group ID
	*/
	GroupID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostGroupGreetingsParams contains all the parameters to send to the API endpoint

for the post group greetings operation.

Typically these are written to a http.Request.

func NewPostGroupGreetingsParams

func NewPostGroupGreetingsParams() *PostGroupGreetingsParams

NewPostGroupGreetingsParams creates a new PostGroupGreetingsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewPostGroupGreetingsParamsWithContext

func NewPostGroupGreetingsParamsWithContext(ctx context.Context) *PostGroupGreetingsParams

NewPostGroupGreetingsParamsWithContext creates a new PostGroupGreetingsParams object with the ability to set a context for a request.

func NewPostGroupGreetingsParamsWithHTTPClient

func NewPostGroupGreetingsParamsWithHTTPClient(client *http.Client) *PostGroupGreetingsParams

NewPostGroupGreetingsParamsWithHTTPClient creates a new PostGroupGreetingsParams object with the ability to set a custom HTTPClient for a request.

func NewPostGroupGreetingsParamsWithTimeout

func NewPostGroupGreetingsParamsWithTimeout(timeout time.Duration) *PostGroupGreetingsParams

NewPostGroupGreetingsParamsWithTimeout creates a new PostGroupGreetingsParams object with the ability to set a timeout on a request.

func (*PostGroupGreetingsParams) SetBody

func (o *PostGroupGreetingsParams) SetBody(body *models.Greeting)

SetBody adds the body to the post group greetings params

func (*PostGroupGreetingsParams) SetContext

func (o *PostGroupGreetingsParams) SetContext(ctx context.Context)

SetContext adds the context to the post group greetings params

func (*PostGroupGreetingsParams) SetDefaults

func (o *PostGroupGreetingsParams) SetDefaults()

SetDefaults hydrates default values in the post group greetings params (not the query body).

All values with no default are reset to their zero value.

func (*PostGroupGreetingsParams) SetGroupID

func (o *PostGroupGreetingsParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the post group greetings params

func (*PostGroupGreetingsParams) SetHTTPClient

func (o *PostGroupGreetingsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post group greetings params

func (*PostGroupGreetingsParams) SetTimeout

func (o *PostGroupGreetingsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post group greetings params

func (*PostGroupGreetingsParams) WithBody

WithBody adds the body to the post group greetings params

func (*PostGroupGreetingsParams) WithContext

WithContext adds the context to the post group greetings params

func (*PostGroupGreetingsParams) WithDefaults

WithDefaults hydrates default values in the post group greetings params (not the query body).

All values with no default are reset to their zero value.

func (*PostGroupGreetingsParams) WithGroupID

func (o *PostGroupGreetingsParams) WithGroupID(groupID string) *PostGroupGreetingsParams

WithGroupID adds the groupID to the post group greetings params

func (*PostGroupGreetingsParams) WithHTTPClient

func (o *PostGroupGreetingsParams) WithHTTPClient(client *http.Client) *PostGroupGreetingsParams

WithHTTPClient adds the HTTPClient to the post group greetings params

func (*PostGroupGreetingsParams) WithTimeout

WithTimeout adds the timeout to the post group greetings params

func (*PostGroupGreetingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostGroupGreetingsReader

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

PostGroupGreetingsReader is a Reader for the PostGroupGreetings structure.

func (*PostGroupGreetingsReader) ReadResponse

func (o *PostGroupGreetingsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostGroupGreetingsRequestEntityTooLarge

type PostGroupGreetingsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostGroupGreetingsRequestEntityTooLarge

func NewPostGroupGreetingsRequestEntityTooLarge() *PostGroupGreetingsRequestEntityTooLarge

NewPostGroupGreetingsRequestEntityTooLarge creates a PostGroupGreetingsRequestEntityTooLarge with default headers values

func (*PostGroupGreetingsRequestEntityTooLarge) Error

func (*PostGroupGreetingsRequestEntityTooLarge) GetPayload

func (*PostGroupGreetingsRequestEntityTooLarge) IsClientError

func (o *PostGroupGreetingsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this post group greetings request entity too large response has a 4xx status code

func (*PostGroupGreetingsRequestEntityTooLarge) IsCode

IsCode returns true when this post group greetings request entity too large response a status code equal to that given

func (*PostGroupGreetingsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post group greetings request entity too large response has a 3xx status code

func (*PostGroupGreetingsRequestEntityTooLarge) IsServerError

func (o *PostGroupGreetingsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this post group greetings request entity too large response has a 5xx status code

func (*PostGroupGreetingsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post group greetings request entity too large response has a 2xx status code

func (*PostGroupGreetingsRequestEntityTooLarge) String

type PostGroupGreetingsRequestTimeout

type PostGroupGreetingsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostGroupGreetingsRequestTimeout

func NewPostGroupGreetingsRequestTimeout() *PostGroupGreetingsRequestTimeout

NewPostGroupGreetingsRequestTimeout creates a PostGroupGreetingsRequestTimeout with default headers values

func (*PostGroupGreetingsRequestTimeout) Error

func (*PostGroupGreetingsRequestTimeout) GetPayload

func (*PostGroupGreetingsRequestTimeout) IsClientError

func (o *PostGroupGreetingsRequestTimeout) IsClientError() bool

IsClientError returns true when this post group greetings request timeout response has a 4xx status code

func (*PostGroupGreetingsRequestTimeout) IsCode

func (o *PostGroupGreetingsRequestTimeout) IsCode(code int) bool

IsCode returns true when this post group greetings request timeout response a status code equal to that given

func (*PostGroupGreetingsRequestTimeout) IsRedirect

func (o *PostGroupGreetingsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post group greetings request timeout response has a 3xx status code

func (*PostGroupGreetingsRequestTimeout) IsServerError

func (o *PostGroupGreetingsRequestTimeout) IsServerError() bool

IsServerError returns true when this post group greetings request timeout response has a 5xx status code

func (*PostGroupGreetingsRequestTimeout) IsSuccess

func (o *PostGroupGreetingsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this post group greetings request timeout response has a 2xx status code

func (*PostGroupGreetingsRequestTimeout) String

type PostGroupGreetingsServiceUnavailable

type PostGroupGreetingsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostGroupGreetingsServiceUnavailable

func NewPostGroupGreetingsServiceUnavailable() *PostGroupGreetingsServiceUnavailable

NewPostGroupGreetingsServiceUnavailable creates a PostGroupGreetingsServiceUnavailable with default headers values

func (*PostGroupGreetingsServiceUnavailable) Error

func (*PostGroupGreetingsServiceUnavailable) GetPayload

func (*PostGroupGreetingsServiceUnavailable) IsClientError

func (o *PostGroupGreetingsServiceUnavailable) IsClientError() bool

IsClientError returns true when this post group greetings service unavailable response has a 4xx status code

func (*PostGroupGreetingsServiceUnavailable) IsCode

IsCode returns true when this post group greetings service unavailable response a status code equal to that given

func (*PostGroupGreetingsServiceUnavailable) IsRedirect

IsRedirect returns true when this post group greetings service unavailable response has a 3xx status code

func (*PostGroupGreetingsServiceUnavailable) IsServerError

func (o *PostGroupGreetingsServiceUnavailable) IsServerError() bool

IsServerError returns true when this post group greetings service unavailable response has a 5xx status code

func (*PostGroupGreetingsServiceUnavailable) IsSuccess

IsSuccess returns true when this post group greetings service unavailable response has a 2xx status code

func (*PostGroupGreetingsServiceUnavailable) String

type PostGroupGreetingsTooManyRequests

type PostGroupGreetingsTooManyRequests struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostGroupGreetingsTooManyRequests

func NewPostGroupGreetingsTooManyRequests() *PostGroupGreetingsTooManyRequests

NewPostGroupGreetingsTooManyRequests creates a PostGroupGreetingsTooManyRequests with default headers values

func (*PostGroupGreetingsTooManyRequests) Error

func (*PostGroupGreetingsTooManyRequests) GetPayload

func (*PostGroupGreetingsTooManyRequests) IsClientError

func (o *PostGroupGreetingsTooManyRequests) IsClientError() bool

IsClientError returns true when this post group greetings too many requests response has a 4xx status code

func (*PostGroupGreetingsTooManyRequests) IsCode

func (o *PostGroupGreetingsTooManyRequests) IsCode(code int) bool

IsCode returns true when this post group greetings too many requests response a status code equal to that given

func (*PostGroupGreetingsTooManyRequests) IsRedirect

func (o *PostGroupGreetingsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this post group greetings too many requests response has a 3xx status code

func (*PostGroupGreetingsTooManyRequests) IsServerError

func (o *PostGroupGreetingsTooManyRequests) IsServerError() bool

IsServerError returns true when this post group greetings too many requests response has a 5xx status code

func (*PostGroupGreetingsTooManyRequests) IsSuccess

func (o *PostGroupGreetingsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this post group greetings too many requests response has a 2xx status code

func (*PostGroupGreetingsTooManyRequests) String

type PostGroupGreetingsUnauthorized

type PostGroupGreetingsUnauthorized struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewPostGroupGreetingsUnauthorized

func NewPostGroupGreetingsUnauthorized() *PostGroupGreetingsUnauthorized

NewPostGroupGreetingsUnauthorized creates a PostGroupGreetingsUnauthorized with default headers values

func (*PostGroupGreetingsUnauthorized) Error

func (*PostGroupGreetingsUnauthorized) GetPayload

func (*PostGroupGreetingsUnauthorized) IsClientError

func (o *PostGroupGreetingsUnauthorized) IsClientError() bool

IsClientError returns true when this post group greetings unauthorized response has a 4xx status code

func (*PostGroupGreetingsUnauthorized) IsCode

func (o *PostGroupGreetingsUnauthorized) IsCode(code int) bool

IsCode returns true when this post group greetings unauthorized response a status code equal to that given

func (*PostGroupGreetingsUnauthorized) IsRedirect

func (o *PostGroupGreetingsUnauthorized) IsRedirect() bool

IsRedirect returns true when this post group greetings unauthorized response has a 3xx status code

func (*PostGroupGreetingsUnauthorized) IsServerError

func (o *PostGroupGreetingsUnauthorized) IsServerError() bool

IsServerError returns true when this post group greetings unauthorized response has a 5xx status code

func (*PostGroupGreetingsUnauthorized) IsSuccess

func (o *PostGroupGreetingsUnauthorized) IsSuccess() bool

IsSuccess returns true when this post group greetings unauthorized response has a 2xx status code

func (*PostGroupGreetingsUnauthorized) String

type PostGroupGreetingsUnsupportedMediaType

type PostGroupGreetingsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostGroupGreetingsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostGroupGreetingsUnsupportedMediaType

func NewPostGroupGreetingsUnsupportedMediaType() *PostGroupGreetingsUnsupportedMediaType

NewPostGroupGreetingsUnsupportedMediaType creates a PostGroupGreetingsUnsupportedMediaType with default headers values

func (*PostGroupGreetingsUnsupportedMediaType) Error

func (*PostGroupGreetingsUnsupportedMediaType) GetPayload

func (*PostGroupGreetingsUnsupportedMediaType) IsClientError

func (o *PostGroupGreetingsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this post group greetings unsupported media type response has a 4xx status code

func (*PostGroupGreetingsUnsupportedMediaType) IsCode

IsCode returns true when this post group greetings unsupported media type response a status code equal to that given

func (*PostGroupGreetingsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post group greetings unsupported media type response has a 3xx status code

func (*PostGroupGreetingsUnsupportedMediaType) IsServerError

func (o *PostGroupGreetingsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this post group greetings unsupported media type response has a 5xx status code

func (*PostGroupGreetingsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post group greetings unsupported media type response has a 2xx status code

func (*PostGroupGreetingsUnsupportedMediaType) String

type PostUserGreetingsBadRequest

type PostUserGreetingsBadRequest struct {
	Payload *models.ErrorBody
}

PostUserGreetingsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewPostUserGreetingsBadRequest

func NewPostUserGreetingsBadRequest() *PostUserGreetingsBadRequest

NewPostUserGreetingsBadRequest creates a PostUserGreetingsBadRequest with default headers values

func (*PostUserGreetingsBadRequest) Error

func (*PostUserGreetingsBadRequest) GetPayload

func (o *PostUserGreetingsBadRequest) GetPayload() *models.ErrorBody

func (*PostUserGreetingsBadRequest) IsClientError

func (o *PostUserGreetingsBadRequest) IsClientError() bool

IsClientError returns true when this post user greetings bad request response has a 4xx status code

func (*PostUserGreetingsBadRequest) IsCode

func (o *PostUserGreetingsBadRequest) IsCode(code int) bool

IsCode returns true when this post user greetings bad request response a status code equal to that given

func (*PostUserGreetingsBadRequest) IsRedirect

func (o *PostUserGreetingsBadRequest) IsRedirect() bool

IsRedirect returns true when this post user greetings bad request response has a 3xx status code

func (*PostUserGreetingsBadRequest) IsServerError

func (o *PostUserGreetingsBadRequest) IsServerError() bool

IsServerError returns true when this post user greetings bad request response has a 5xx status code

func (*PostUserGreetingsBadRequest) IsSuccess

func (o *PostUserGreetingsBadRequest) IsSuccess() bool

IsSuccess returns true when this post user greetings bad request response has a 2xx status code

func (*PostUserGreetingsBadRequest) String

func (o *PostUserGreetingsBadRequest) String() string

type PostUserGreetingsForbidden

type PostUserGreetingsForbidden struct {
	Payload *models.ErrorBody
}

PostUserGreetingsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewPostUserGreetingsForbidden

func NewPostUserGreetingsForbidden() *PostUserGreetingsForbidden

NewPostUserGreetingsForbidden creates a PostUserGreetingsForbidden with default headers values

func (*PostUserGreetingsForbidden) Error

func (*PostUserGreetingsForbidden) GetPayload

func (o *PostUserGreetingsForbidden) GetPayload() *models.ErrorBody

func (*PostUserGreetingsForbidden) IsClientError

func (o *PostUserGreetingsForbidden) IsClientError() bool

IsClientError returns true when this post user greetings forbidden response has a 4xx status code

func (*PostUserGreetingsForbidden) IsCode

func (o *PostUserGreetingsForbidden) IsCode(code int) bool

IsCode returns true when this post user greetings forbidden response a status code equal to that given

func (*PostUserGreetingsForbidden) IsRedirect

func (o *PostUserGreetingsForbidden) IsRedirect() bool

IsRedirect returns true when this post user greetings forbidden response has a 3xx status code

func (*PostUserGreetingsForbidden) IsServerError

func (o *PostUserGreetingsForbidden) IsServerError() bool

IsServerError returns true when this post user greetings forbidden response has a 5xx status code

func (*PostUserGreetingsForbidden) IsSuccess

func (o *PostUserGreetingsForbidden) IsSuccess() bool

IsSuccess returns true when this post user greetings forbidden response has a 2xx status code

func (*PostUserGreetingsForbidden) String

func (o *PostUserGreetingsForbidden) String() string

type PostUserGreetingsGatewayTimeout

type PostUserGreetingsGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostUserGreetingsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostUserGreetingsGatewayTimeout

func NewPostUserGreetingsGatewayTimeout() *PostUserGreetingsGatewayTimeout

NewPostUserGreetingsGatewayTimeout creates a PostUserGreetingsGatewayTimeout with default headers values

func (*PostUserGreetingsGatewayTimeout) Error

func (*PostUserGreetingsGatewayTimeout) GetPayload

func (*PostUserGreetingsGatewayTimeout) IsClientError

func (o *PostUserGreetingsGatewayTimeout) IsClientError() bool

IsClientError returns true when this post user greetings gateway timeout response has a 4xx status code

func (*PostUserGreetingsGatewayTimeout) IsCode

func (o *PostUserGreetingsGatewayTimeout) IsCode(code int) bool

IsCode returns true when this post user greetings gateway timeout response a status code equal to that given

func (*PostUserGreetingsGatewayTimeout) IsRedirect

func (o *PostUserGreetingsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post user greetings gateway timeout response has a 3xx status code

func (*PostUserGreetingsGatewayTimeout) IsServerError

func (o *PostUserGreetingsGatewayTimeout) IsServerError() bool

IsServerError returns true when this post user greetings gateway timeout response has a 5xx status code

func (*PostUserGreetingsGatewayTimeout) IsSuccess

func (o *PostUserGreetingsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this post user greetings gateway timeout response has a 2xx status code

func (*PostUserGreetingsGatewayTimeout) String

type PostUserGreetingsInternalServerError

type PostUserGreetingsInternalServerError struct {
	Payload *models.ErrorBody
}

PostUserGreetingsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostUserGreetingsInternalServerError

func NewPostUserGreetingsInternalServerError() *PostUserGreetingsInternalServerError

NewPostUserGreetingsInternalServerError creates a PostUserGreetingsInternalServerError with default headers values

func (*PostUserGreetingsInternalServerError) Error

func (*PostUserGreetingsInternalServerError) GetPayload

func (*PostUserGreetingsInternalServerError) IsClientError

func (o *PostUserGreetingsInternalServerError) IsClientError() bool

IsClientError returns true when this post user greetings internal server error response has a 4xx status code

func (*PostUserGreetingsInternalServerError) IsCode

IsCode returns true when this post user greetings internal server error response a status code equal to that given

func (*PostUserGreetingsInternalServerError) IsRedirect

IsRedirect returns true when this post user greetings internal server error response has a 3xx status code

func (*PostUserGreetingsInternalServerError) IsServerError

func (o *PostUserGreetingsInternalServerError) IsServerError() bool

IsServerError returns true when this post user greetings internal server error response has a 5xx status code

func (*PostUserGreetingsInternalServerError) IsSuccess

IsSuccess returns true when this post user greetings internal server error response has a 2xx status code

func (*PostUserGreetingsInternalServerError) String

type PostUserGreetingsNotFound

type PostUserGreetingsNotFound struct {
	Payload *models.ErrorBody
}

PostUserGreetingsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewPostUserGreetingsNotFound

func NewPostUserGreetingsNotFound() *PostUserGreetingsNotFound

NewPostUserGreetingsNotFound creates a PostUserGreetingsNotFound with default headers values

func (*PostUserGreetingsNotFound) Error

func (o *PostUserGreetingsNotFound) Error() string

func (*PostUserGreetingsNotFound) GetPayload

func (o *PostUserGreetingsNotFound) GetPayload() *models.ErrorBody

func (*PostUserGreetingsNotFound) IsClientError

func (o *PostUserGreetingsNotFound) IsClientError() bool

IsClientError returns true when this post user greetings not found response has a 4xx status code

func (*PostUserGreetingsNotFound) IsCode

func (o *PostUserGreetingsNotFound) IsCode(code int) bool

IsCode returns true when this post user greetings not found response a status code equal to that given

func (*PostUserGreetingsNotFound) IsRedirect

func (o *PostUserGreetingsNotFound) IsRedirect() bool

IsRedirect returns true when this post user greetings not found response has a 3xx status code

func (*PostUserGreetingsNotFound) IsServerError

func (o *PostUserGreetingsNotFound) IsServerError() bool

IsServerError returns true when this post user greetings not found response has a 5xx status code

func (*PostUserGreetingsNotFound) IsSuccess

func (o *PostUserGreetingsNotFound) IsSuccess() bool

IsSuccess returns true when this post user greetings not found response has a 2xx status code

func (*PostUserGreetingsNotFound) String

func (o *PostUserGreetingsNotFound) String() string

type PostUserGreetingsOK

type PostUserGreetingsOK struct {
	Payload *models.Greeting
}

PostUserGreetingsOK describes a response with status code 200, with default header values.

successful operation

func NewPostUserGreetingsOK

func NewPostUserGreetingsOK() *PostUserGreetingsOK

NewPostUserGreetingsOK creates a PostUserGreetingsOK with default headers values

func (*PostUserGreetingsOK) Error

func (o *PostUserGreetingsOK) Error() string

func (*PostUserGreetingsOK) GetPayload

func (o *PostUserGreetingsOK) GetPayload() *models.Greeting

func (*PostUserGreetingsOK) IsClientError

func (o *PostUserGreetingsOK) IsClientError() bool

IsClientError returns true when this post user greetings o k response has a 4xx status code

func (*PostUserGreetingsOK) IsCode

func (o *PostUserGreetingsOK) IsCode(code int) bool

IsCode returns true when this post user greetings o k response a status code equal to that given

func (*PostUserGreetingsOK) IsRedirect

func (o *PostUserGreetingsOK) IsRedirect() bool

IsRedirect returns true when this post user greetings o k response has a 3xx status code

func (*PostUserGreetingsOK) IsServerError

func (o *PostUserGreetingsOK) IsServerError() bool

IsServerError returns true when this post user greetings o k response has a 5xx status code

func (*PostUserGreetingsOK) IsSuccess

func (o *PostUserGreetingsOK) IsSuccess() bool

IsSuccess returns true when this post user greetings o k response has a 2xx status code

func (*PostUserGreetingsOK) String

func (o *PostUserGreetingsOK) String() string

type PostUserGreetingsParams

type PostUserGreetingsParams struct {

	/* Body.

	   The Greeting to create
	*/
	Body *models.Greeting

	/* UserID.

	   User ID
	*/
	UserID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostUserGreetingsParams contains all the parameters to send to the API endpoint

for the post user greetings operation.

Typically these are written to a http.Request.

func NewPostUserGreetingsParams

func NewPostUserGreetingsParams() *PostUserGreetingsParams

NewPostUserGreetingsParams creates a new PostUserGreetingsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewPostUserGreetingsParamsWithContext

func NewPostUserGreetingsParamsWithContext(ctx context.Context) *PostUserGreetingsParams

NewPostUserGreetingsParamsWithContext creates a new PostUserGreetingsParams object with the ability to set a context for a request.

func NewPostUserGreetingsParamsWithHTTPClient

func NewPostUserGreetingsParamsWithHTTPClient(client *http.Client) *PostUserGreetingsParams

NewPostUserGreetingsParamsWithHTTPClient creates a new PostUserGreetingsParams object with the ability to set a custom HTTPClient for a request.

func NewPostUserGreetingsParamsWithTimeout

func NewPostUserGreetingsParamsWithTimeout(timeout time.Duration) *PostUserGreetingsParams

NewPostUserGreetingsParamsWithTimeout creates a new PostUserGreetingsParams object with the ability to set a timeout on a request.

func (*PostUserGreetingsParams) SetBody

func (o *PostUserGreetingsParams) SetBody(body *models.Greeting)

SetBody adds the body to the post user greetings params

func (*PostUserGreetingsParams) SetContext

func (o *PostUserGreetingsParams) SetContext(ctx context.Context)

SetContext adds the context to the post user greetings params

func (*PostUserGreetingsParams) SetDefaults

func (o *PostUserGreetingsParams) SetDefaults()

SetDefaults hydrates default values in the post user greetings params (not the query body).

All values with no default are reset to their zero value.

func (*PostUserGreetingsParams) SetHTTPClient

func (o *PostUserGreetingsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post user greetings params

func (*PostUserGreetingsParams) SetTimeout

func (o *PostUserGreetingsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post user greetings params

func (*PostUserGreetingsParams) SetUserID

func (o *PostUserGreetingsParams) SetUserID(userID string)

SetUserID adds the userId to the post user greetings params

func (*PostUserGreetingsParams) WithBody

WithBody adds the body to the post user greetings params

func (*PostUserGreetingsParams) WithContext

WithContext adds the context to the post user greetings params

func (*PostUserGreetingsParams) WithDefaults

WithDefaults hydrates default values in the post user greetings params (not the query body).

All values with no default are reset to their zero value.

func (*PostUserGreetingsParams) WithHTTPClient

func (o *PostUserGreetingsParams) WithHTTPClient(client *http.Client) *PostUserGreetingsParams

WithHTTPClient adds the HTTPClient to the post user greetings params

func (*PostUserGreetingsParams) WithTimeout

WithTimeout adds the timeout to the post user greetings params

func (*PostUserGreetingsParams) WithUserID

WithUserID adds the userID to the post user greetings params

func (*PostUserGreetingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostUserGreetingsReader

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

PostUserGreetingsReader is a Reader for the PostUserGreetings structure.

func (*PostUserGreetingsReader) ReadResponse

func (o *PostUserGreetingsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostUserGreetingsRequestEntityTooLarge

type PostUserGreetingsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostUserGreetingsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostUserGreetingsRequestEntityTooLarge

func NewPostUserGreetingsRequestEntityTooLarge() *PostUserGreetingsRequestEntityTooLarge

NewPostUserGreetingsRequestEntityTooLarge creates a PostUserGreetingsRequestEntityTooLarge with default headers values

func (*PostUserGreetingsRequestEntityTooLarge) Error

func (*PostUserGreetingsRequestEntityTooLarge) GetPayload

func (*PostUserGreetingsRequestEntityTooLarge) IsClientError

func (o *PostUserGreetingsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this post user greetings request entity too large response has a 4xx status code

func (*PostUserGreetingsRequestEntityTooLarge) IsCode

IsCode returns true when this post user greetings request entity too large response a status code equal to that given

func (*PostUserGreetingsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post user greetings request entity too large response has a 3xx status code

func (*PostUserGreetingsRequestEntityTooLarge) IsServerError

func (o *PostUserGreetingsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this post user greetings request entity too large response has a 5xx status code

func (*PostUserGreetingsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post user greetings request entity too large response has a 2xx status code

func (*PostUserGreetingsRequestEntityTooLarge) String

type PostUserGreetingsRequestTimeout

type PostUserGreetingsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostUserGreetingsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostUserGreetingsRequestTimeout

func NewPostUserGreetingsRequestTimeout() *PostUserGreetingsRequestTimeout

NewPostUserGreetingsRequestTimeout creates a PostUserGreetingsRequestTimeout with default headers values

func (*PostUserGreetingsRequestTimeout) Error

func (*PostUserGreetingsRequestTimeout) GetPayload

func (*PostUserGreetingsRequestTimeout) IsClientError

func (o *PostUserGreetingsRequestTimeout) IsClientError() bool

IsClientError returns true when this post user greetings request timeout response has a 4xx status code

func (*PostUserGreetingsRequestTimeout) IsCode

func (o *PostUserGreetingsRequestTimeout) IsCode(code int) bool

IsCode returns true when this post user greetings request timeout response a status code equal to that given

func (*PostUserGreetingsRequestTimeout) IsRedirect

func (o *PostUserGreetingsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post user greetings request timeout response has a 3xx status code

func (*PostUserGreetingsRequestTimeout) IsServerError

func (o *PostUserGreetingsRequestTimeout) IsServerError() bool

IsServerError returns true when this post user greetings request timeout response has a 5xx status code

func (*PostUserGreetingsRequestTimeout) IsSuccess

func (o *PostUserGreetingsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this post user greetings request timeout response has a 2xx status code

func (*PostUserGreetingsRequestTimeout) String

type PostUserGreetingsServiceUnavailable

type PostUserGreetingsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostUserGreetingsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostUserGreetingsServiceUnavailable

func NewPostUserGreetingsServiceUnavailable() *PostUserGreetingsServiceUnavailable

NewPostUserGreetingsServiceUnavailable creates a PostUserGreetingsServiceUnavailable with default headers values

func (*PostUserGreetingsServiceUnavailable) Error

func (*PostUserGreetingsServiceUnavailable) GetPayload

func (*PostUserGreetingsServiceUnavailable) IsClientError

func (o *PostUserGreetingsServiceUnavailable) IsClientError() bool

IsClientError returns true when this post user greetings service unavailable response has a 4xx status code

func (*PostUserGreetingsServiceUnavailable) IsCode

IsCode returns true when this post user greetings service unavailable response a status code equal to that given

func (*PostUserGreetingsServiceUnavailable) IsRedirect

func (o *PostUserGreetingsServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this post user greetings service unavailable response has a 3xx status code

func (*PostUserGreetingsServiceUnavailable) IsServerError

func (o *PostUserGreetingsServiceUnavailable) IsServerError() bool

IsServerError returns true when this post user greetings service unavailable response has a 5xx status code

func (*PostUserGreetingsServiceUnavailable) IsSuccess

IsSuccess returns true when this post user greetings service unavailable response has a 2xx status code

func (*PostUserGreetingsServiceUnavailable) String

type PostUserGreetingsTooManyRequests

type PostUserGreetingsTooManyRequests struct {
	Payload *models.ErrorBody
}

PostUserGreetingsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostUserGreetingsTooManyRequests

func NewPostUserGreetingsTooManyRequests() *PostUserGreetingsTooManyRequests

NewPostUserGreetingsTooManyRequests creates a PostUserGreetingsTooManyRequests with default headers values

func (*PostUserGreetingsTooManyRequests) Error

func (*PostUserGreetingsTooManyRequests) GetPayload

func (*PostUserGreetingsTooManyRequests) IsClientError

func (o *PostUserGreetingsTooManyRequests) IsClientError() bool

IsClientError returns true when this post user greetings too many requests response has a 4xx status code

func (*PostUserGreetingsTooManyRequests) IsCode

func (o *PostUserGreetingsTooManyRequests) IsCode(code int) bool

IsCode returns true when this post user greetings too many requests response a status code equal to that given

func (*PostUserGreetingsTooManyRequests) IsRedirect

func (o *PostUserGreetingsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this post user greetings too many requests response has a 3xx status code

func (*PostUserGreetingsTooManyRequests) IsServerError

func (o *PostUserGreetingsTooManyRequests) IsServerError() bool

IsServerError returns true when this post user greetings too many requests response has a 5xx status code

func (*PostUserGreetingsTooManyRequests) IsSuccess

func (o *PostUserGreetingsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this post user greetings too many requests response has a 2xx status code

func (*PostUserGreetingsTooManyRequests) String

type PostUserGreetingsUnauthorized

type PostUserGreetingsUnauthorized struct {
	Payload *models.ErrorBody
}

PostUserGreetingsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewPostUserGreetingsUnauthorized

func NewPostUserGreetingsUnauthorized() *PostUserGreetingsUnauthorized

NewPostUserGreetingsUnauthorized creates a PostUserGreetingsUnauthorized with default headers values

func (*PostUserGreetingsUnauthorized) Error

func (*PostUserGreetingsUnauthorized) GetPayload

func (*PostUserGreetingsUnauthorized) IsClientError

func (o *PostUserGreetingsUnauthorized) IsClientError() bool

IsClientError returns true when this post user greetings unauthorized response has a 4xx status code

func (*PostUserGreetingsUnauthorized) IsCode

func (o *PostUserGreetingsUnauthorized) IsCode(code int) bool

IsCode returns true when this post user greetings unauthorized response a status code equal to that given

func (*PostUserGreetingsUnauthorized) IsRedirect

func (o *PostUserGreetingsUnauthorized) IsRedirect() bool

IsRedirect returns true when this post user greetings unauthorized response has a 3xx status code

func (*PostUserGreetingsUnauthorized) IsServerError

func (o *PostUserGreetingsUnauthorized) IsServerError() bool

IsServerError returns true when this post user greetings unauthorized response has a 5xx status code

func (*PostUserGreetingsUnauthorized) IsSuccess

func (o *PostUserGreetingsUnauthorized) IsSuccess() bool

IsSuccess returns true when this post user greetings unauthorized response has a 2xx status code

func (*PostUserGreetingsUnauthorized) String

type PostUserGreetingsUnsupportedMediaType

type PostUserGreetingsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostUserGreetingsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostUserGreetingsUnsupportedMediaType

func NewPostUserGreetingsUnsupportedMediaType() *PostUserGreetingsUnsupportedMediaType

NewPostUserGreetingsUnsupportedMediaType creates a PostUserGreetingsUnsupportedMediaType with default headers values

func (*PostUserGreetingsUnsupportedMediaType) Error

func (*PostUserGreetingsUnsupportedMediaType) GetPayload

func (*PostUserGreetingsUnsupportedMediaType) IsClientError

func (o *PostUserGreetingsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this post user greetings unsupported media type response has a 4xx status code

func (*PostUserGreetingsUnsupportedMediaType) IsCode

IsCode returns true when this post user greetings unsupported media type response a status code equal to that given

func (*PostUserGreetingsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post user greetings unsupported media type response has a 3xx status code

func (*PostUserGreetingsUnsupportedMediaType) IsServerError

func (o *PostUserGreetingsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this post user greetings unsupported media type response has a 5xx status code

func (*PostUserGreetingsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post user greetings unsupported media type response has a 2xx status code

func (*PostUserGreetingsUnsupportedMediaType) String

type PutGreetingBadRequest

type PutGreetingBadRequest struct {
	Payload *models.ErrorBody
}

PutGreetingBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewPutGreetingBadRequest

func NewPutGreetingBadRequest() *PutGreetingBadRequest

NewPutGreetingBadRequest creates a PutGreetingBadRequest with default headers values

func (*PutGreetingBadRequest) Error

func (o *PutGreetingBadRequest) Error() string

func (*PutGreetingBadRequest) GetPayload

func (o *PutGreetingBadRequest) GetPayload() *models.ErrorBody

func (*PutGreetingBadRequest) IsClientError

func (o *PutGreetingBadRequest) IsClientError() bool

IsClientError returns true when this put greeting bad request response has a 4xx status code

func (*PutGreetingBadRequest) IsCode

func (o *PutGreetingBadRequest) IsCode(code int) bool

IsCode returns true when this put greeting bad request response a status code equal to that given

func (*PutGreetingBadRequest) IsRedirect

func (o *PutGreetingBadRequest) IsRedirect() bool

IsRedirect returns true when this put greeting bad request response has a 3xx status code

func (*PutGreetingBadRequest) IsServerError

func (o *PutGreetingBadRequest) IsServerError() bool

IsServerError returns true when this put greeting bad request response has a 5xx status code

func (*PutGreetingBadRequest) IsSuccess

func (o *PutGreetingBadRequest) IsSuccess() bool

IsSuccess returns true when this put greeting bad request response has a 2xx status code

func (*PutGreetingBadRequest) String

func (o *PutGreetingBadRequest) String() string

type PutGreetingForbidden

type PutGreetingForbidden struct {
	Payload *models.ErrorBody
}

PutGreetingForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewPutGreetingForbidden

func NewPutGreetingForbidden() *PutGreetingForbidden

NewPutGreetingForbidden creates a PutGreetingForbidden with default headers values

func (*PutGreetingForbidden) Error

func (o *PutGreetingForbidden) Error() string

func (*PutGreetingForbidden) GetPayload

func (o *PutGreetingForbidden) GetPayload() *models.ErrorBody

func (*PutGreetingForbidden) IsClientError

func (o *PutGreetingForbidden) IsClientError() bool

IsClientError returns true when this put greeting forbidden response has a 4xx status code

func (*PutGreetingForbidden) IsCode

func (o *PutGreetingForbidden) IsCode(code int) bool

IsCode returns true when this put greeting forbidden response a status code equal to that given

func (*PutGreetingForbidden) IsRedirect

func (o *PutGreetingForbidden) IsRedirect() bool

IsRedirect returns true when this put greeting forbidden response has a 3xx status code

func (*PutGreetingForbidden) IsServerError

func (o *PutGreetingForbidden) IsServerError() bool

IsServerError returns true when this put greeting forbidden response has a 5xx status code

func (*PutGreetingForbidden) IsSuccess

func (o *PutGreetingForbidden) IsSuccess() bool

IsSuccess returns true when this put greeting forbidden response has a 2xx status code

func (*PutGreetingForbidden) String

func (o *PutGreetingForbidden) String() string

type PutGreetingGatewayTimeout

type PutGreetingGatewayTimeout struct {
	Payload *models.ErrorBody
}

PutGreetingGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPutGreetingGatewayTimeout

func NewPutGreetingGatewayTimeout() *PutGreetingGatewayTimeout

NewPutGreetingGatewayTimeout creates a PutGreetingGatewayTimeout with default headers values

func (*PutGreetingGatewayTimeout) Error

func (o *PutGreetingGatewayTimeout) Error() string

func (*PutGreetingGatewayTimeout) GetPayload

func (o *PutGreetingGatewayTimeout) GetPayload() *models.ErrorBody

func (*PutGreetingGatewayTimeout) IsClientError

func (o *PutGreetingGatewayTimeout) IsClientError() bool

IsClientError returns true when this put greeting gateway timeout response has a 4xx status code

func (*PutGreetingGatewayTimeout) IsCode

func (o *PutGreetingGatewayTimeout) IsCode(code int) bool

IsCode returns true when this put greeting gateway timeout response a status code equal to that given

func (*PutGreetingGatewayTimeout) IsRedirect

func (o *PutGreetingGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this put greeting gateway timeout response has a 3xx status code

func (*PutGreetingGatewayTimeout) IsServerError

func (o *PutGreetingGatewayTimeout) IsServerError() bool

IsServerError returns true when this put greeting gateway timeout response has a 5xx status code

func (*PutGreetingGatewayTimeout) IsSuccess

func (o *PutGreetingGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this put greeting gateway timeout response has a 2xx status code

func (*PutGreetingGatewayTimeout) String

func (o *PutGreetingGatewayTimeout) String() string

type PutGreetingInternalServerError

type PutGreetingInternalServerError struct {
	Payload *models.ErrorBody
}

PutGreetingInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPutGreetingInternalServerError

func NewPutGreetingInternalServerError() *PutGreetingInternalServerError

NewPutGreetingInternalServerError creates a PutGreetingInternalServerError with default headers values

func (*PutGreetingInternalServerError) Error

func (*PutGreetingInternalServerError) GetPayload

func (*PutGreetingInternalServerError) IsClientError

func (o *PutGreetingInternalServerError) IsClientError() bool

IsClientError returns true when this put greeting internal server error response has a 4xx status code

func (*PutGreetingInternalServerError) IsCode

func (o *PutGreetingInternalServerError) IsCode(code int) bool

IsCode returns true when this put greeting internal server error response a status code equal to that given

func (*PutGreetingInternalServerError) IsRedirect

func (o *PutGreetingInternalServerError) IsRedirect() bool

IsRedirect returns true when this put greeting internal server error response has a 3xx status code

func (*PutGreetingInternalServerError) IsServerError

func (o *PutGreetingInternalServerError) IsServerError() bool

IsServerError returns true when this put greeting internal server error response has a 5xx status code

func (*PutGreetingInternalServerError) IsSuccess

func (o *PutGreetingInternalServerError) IsSuccess() bool

IsSuccess returns true when this put greeting internal server error response has a 2xx status code

func (*PutGreetingInternalServerError) String

type PutGreetingNotFound

type PutGreetingNotFound struct {
	Payload *models.ErrorBody
}

PutGreetingNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewPutGreetingNotFound

func NewPutGreetingNotFound() *PutGreetingNotFound

NewPutGreetingNotFound creates a PutGreetingNotFound with default headers values

func (*PutGreetingNotFound) Error

func (o *PutGreetingNotFound) Error() string

func (*PutGreetingNotFound) GetPayload

func (o *PutGreetingNotFound) GetPayload() *models.ErrorBody

func (*PutGreetingNotFound) IsClientError

func (o *PutGreetingNotFound) IsClientError() bool

IsClientError returns true when this put greeting not found response has a 4xx status code

func (*PutGreetingNotFound) IsCode

func (o *PutGreetingNotFound) IsCode(code int) bool

IsCode returns true when this put greeting not found response a status code equal to that given

func (*PutGreetingNotFound) IsRedirect

func (o *PutGreetingNotFound) IsRedirect() bool

IsRedirect returns true when this put greeting not found response has a 3xx status code

func (*PutGreetingNotFound) IsServerError

func (o *PutGreetingNotFound) IsServerError() bool

IsServerError returns true when this put greeting not found response has a 5xx status code

func (*PutGreetingNotFound) IsSuccess

func (o *PutGreetingNotFound) IsSuccess() bool

IsSuccess returns true when this put greeting not found response has a 2xx status code

func (*PutGreetingNotFound) String

func (o *PutGreetingNotFound) String() string

type PutGreetingOK

type PutGreetingOK struct {
	Payload *models.Greeting
}

PutGreetingOK describes a response with status code 200, with default header values.

successful operation

func NewPutGreetingOK

func NewPutGreetingOK() *PutGreetingOK

NewPutGreetingOK creates a PutGreetingOK with default headers values

func (*PutGreetingOK) Error

func (o *PutGreetingOK) Error() string

func (*PutGreetingOK) GetPayload

func (o *PutGreetingOK) GetPayload() *models.Greeting

func (*PutGreetingOK) IsClientError

func (o *PutGreetingOK) IsClientError() bool

IsClientError returns true when this put greeting o k response has a 4xx status code

func (*PutGreetingOK) IsCode

func (o *PutGreetingOK) IsCode(code int) bool

IsCode returns true when this put greeting o k response a status code equal to that given

func (*PutGreetingOK) IsRedirect

func (o *PutGreetingOK) IsRedirect() bool

IsRedirect returns true when this put greeting o k response has a 3xx status code

func (*PutGreetingOK) IsServerError

func (o *PutGreetingOK) IsServerError() bool

IsServerError returns true when this put greeting o k response has a 5xx status code

func (*PutGreetingOK) IsSuccess

func (o *PutGreetingOK) IsSuccess() bool

IsSuccess returns true when this put greeting o k response has a 2xx status code

func (*PutGreetingOK) String

func (o *PutGreetingOK) String() string

type PutGreetingParams

type PutGreetingParams struct {

	/* Body.

	   The updated Greeting
	*/
	Body *models.Greeting

	/* GreetingID.

	   Greeting ID
	*/
	GreetingID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PutGreetingParams contains all the parameters to send to the API endpoint

for the put greeting operation.

Typically these are written to a http.Request.

func NewPutGreetingParams

func NewPutGreetingParams() *PutGreetingParams

NewPutGreetingParams creates a new PutGreetingParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewPutGreetingParamsWithContext

func NewPutGreetingParamsWithContext(ctx context.Context) *PutGreetingParams

NewPutGreetingParamsWithContext creates a new PutGreetingParams object with the ability to set a context for a request.

func NewPutGreetingParamsWithHTTPClient

func NewPutGreetingParamsWithHTTPClient(client *http.Client) *PutGreetingParams

NewPutGreetingParamsWithHTTPClient creates a new PutGreetingParams object with the ability to set a custom HTTPClient for a request.

func NewPutGreetingParamsWithTimeout

func NewPutGreetingParamsWithTimeout(timeout time.Duration) *PutGreetingParams

NewPutGreetingParamsWithTimeout creates a new PutGreetingParams object with the ability to set a timeout on a request.

func (*PutGreetingParams) SetBody

func (o *PutGreetingParams) SetBody(body *models.Greeting)

SetBody adds the body to the put greeting params

func (*PutGreetingParams) SetContext

func (o *PutGreetingParams) SetContext(ctx context.Context)

SetContext adds the context to the put greeting params

func (*PutGreetingParams) SetDefaults

func (o *PutGreetingParams) SetDefaults()

SetDefaults hydrates default values in the put greeting params (not the query body).

All values with no default are reset to their zero value.

func (*PutGreetingParams) SetGreetingID

func (o *PutGreetingParams) SetGreetingID(greetingID string)

SetGreetingID adds the greetingId to the put greeting params

func (*PutGreetingParams) SetHTTPClient

func (o *PutGreetingParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the put greeting params

func (*PutGreetingParams) SetTimeout

func (o *PutGreetingParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the put greeting params

func (*PutGreetingParams) WithBody

func (o *PutGreetingParams) WithBody(body *models.Greeting) *PutGreetingParams

WithBody adds the body to the put greeting params

func (*PutGreetingParams) WithContext

func (o *PutGreetingParams) WithContext(ctx context.Context) *PutGreetingParams

WithContext adds the context to the put greeting params

func (*PutGreetingParams) WithDefaults

func (o *PutGreetingParams) WithDefaults() *PutGreetingParams

WithDefaults hydrates default values in the put greeting params (not the query body).

All values with no default are reset to their zero value.

func (*PutGreetingParams) WithGreetingID

func (o *PutGreetingParams) WithGreetingID(greetingID string) *PutGreetingParams

WithGreetingID adds the greetingID to the put greeting params

func (*PutGreetingParams) WithHTTPClient

func (o *PutGreetingParams) WithHTTPClient(client *http.Client) *PutGreetingParams

WithHTTPClient adds the HTTPClient to the put greeting params

func (*PutGreetingParams) WithTimeout

func (o *PutGreetingParams) WithTimeout(timeout time.Duration) *PutGreetingParams

WithTimeout adds the timeout to the put greeting params

func (*PutGreetingParams) WriteToRequest

func (o *PutGreetingParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type PutGreetingReader

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

PutGreetingReader is a Reader for the PutGreeting structure.

func (*PutGreetingReader) ReadResponse

func (o *PutGreetingReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PutGreetingRequestEntityTooLarge

type PutGreetingRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PutGreetingRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPutGreetingRequestEntityTooLarge

func NewPutGreetingRequestEntityTooLarge() *PutGreetingRequestEntityTooLarge

NewPutGreetingRequestEntityTooLarge creates a PutGreetingRequestEntityTooLarge with default headers values

func (*PutGreetingRequestEntityTooLarge) Error

func (*PutGreetingRequestEntityTooLarge) GetPayload

func (*PutGreetingRequestEntityTooLarge) IsClientError

func (o *PutGreetingRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this put greeting request entity too large response has a 4xx status code

func (*PutGreetingRequestEntityTooLarge) IsCode

func (o *PutGreetingRequestEntityTooLarge) IsCode(code int) bool

IsCode returns true when this put greeting request entity too large response a status code equal to that given

func (*PutGreetingRequestEntityTooLarge) IsRedirect

func (o *PutGreetingRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this put greeting request entity too large response has a 3xx status code

func (*PutGreetingRequestEntityTooLarge) IsServerError

func (o *PutGreetingRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this put greeting request entity too large response has a 5xx status code

func (*PutGreetingRequestEntityTooLarge) IsSuccess

func (o *PutGreetingRequestEntityTooLarge) IsSuccess() bool

IsSuccess returns true when this put greeting request entity too large response has a 2xx status code

func (*PutGreetingRequestEntityTooLarge) String

type PutGreetingRequestTimeout

type PutGreetingRequestTimeout struct {
	Payload *models.ErrorBody
}

PutGreetingRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPutGreetingRequestTimeout

func NewPutGreetingRequestTimeout() *PutGreetingRequestTimeout

NewPutGreetingRequestTimeout creates a PutGreetingRequestTimeout with default headers values

func (*PutGreetingRequestTimeout) Error

func (o *PutGreetingRequestTimeout) Error() string

func (*PutGreetingRequestTimeout) GetPayload

func (o *PutGreetingRequestTimeout) GetPayload() *models.ErrorBody

func (*PutGreetingRequestTimeout) IsClientError

func (o *PutGreetingRequestTimeout) IsClientError() bool

IsClientError returns true when this put greeting request timeout response has a 4xx status code

func (*PutGreetingRequestTimeout) IsCode

func (o *PutGreetingRequestTimeout) IsCode(code int) bool

IsCode returns true when this put greeting request timeout response a status code equal to that given

func (*PutGreetingRequestTimeout) IsRedirect

func (o *PutGreetingRequestTimeout) IsRedirect() bool

IsRedirect returns true when this put greeting request timeout response has a 3xx status code

func (*PutGreetingRequestTimeout) IsServerError

func (o *PutGreetingRequestTimeout) IsServerError() bool

IsServerError returns true when this put greeting request timeout response has a 5xx status code

func (*PutGreetingRequestTimeout) IsSuccess

func (o *PutGreetingRequestTimeout) IsSuccess() bool

IsSuccess returns true when this put greeting request timeout response has a 2xx status code

func (*PutGreetingRequestTimeout) String

func (o *PutGreetingRequestTimeout) String() string

type PutGreetingServiceUnavailable

type PutGreetingServiceUnavailable struct {
	Payload *models.ErrorBody
}

PutGreetingServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPutGreetingServiceUnavailable

func NewPutGreetingServiceUnavailable() *PutGreetingServiceUnavailable

NewPutGreetingServiceUnavailable creates a PutGreetingServiceUnavailable with default headers values

func (*PutGreetingServiceUnavailable) Error

func (*PutGreetingServiceUnavailable) GetPayload

func (*PutGreetingServiceUnavailable) IsClientError

func (o *PutGreetingServiceUnavailable) IsClientError() bool

IsClientError returns true when this put greeting service unavailable response has a 4xx status code

func (*PutGreetingServiceUnavailable) IsCode

func (o *PutGreetingServiceUnavailable) IsCode(code int) bool

IsCode returns true when this put greeting service unavailable response a status code equal to that given

func (*PutGreetingServiceUnavailable) IsRedirect

func (o *PutGreetingServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this put greeting service unavailable response has a 3xx status code

func (*PutGreetingServiceUnavailable) IsServerError

func (o *PutGreetingServiceUnavailable) IsServerError() bool

IsServerError returns true when this put greeting service unavailable response has a 5xx status code

func (*PutGreetingServiceUnavailable) IsSuccess

func (o *PutGreetingServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this put greeting service unavailable response has a 2xx status code

func (*PutGreetingServiceUnavailable) String

type PutGreetingTooManyRequests

type PutGreetingTooManyRequests struct {
	Payload *models.ErrorBody
}

PutGreetingTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPutGreetingTooManyRequests

func NewPutGreetingTooManyRequests() *PutGreetingTooManyRequests

NewPutGreetingTooManyRequests creates a PutGreetingTooManyRequests with default headers values

func (*PutGreetingTooManyRequests) Error

func (*PutGreetingTooManyRequests) GetPayload

func (o *PutGreetingTooManyRequests) GetPayload() *models.ErrorBody

func (*PutGreetingTooManyRequests) IsClientError

func (o *PutGreetingTooManyRequests) IsClientError() bool

IsClientError returns true when this put greeting too many requests response has a 4xx status code

func (*PutGreetingTooManyRequests) IsCode

func (o *PutGreetingTooManyRequests) IsCode(code int) bool

IsCode returns true when this put greeting too many requests response a status code equal to that given

func (*PutGreetingTooManyRequests) IsRedirect

func (o *PutGreetingTooManyRequests) IsRedirect() bool

IsRedirect returns true when this put greeting too many requests response has a 3xx status code

func (*PutGreetingTooManyRequests) IsServerError

func (o *PutGreetingTooManyRequests) IsServerError() bool

IsServerError returns true when this put greeting too many requests response has a 5xx status code

func (*PutGreetingTooManyRequests) IsSuccess

func (o *PutGreetingTooManyRequests) IsSuccess() bool

IsSuccess returns true when this put greeting too many requests response has a 2xx status code

func (*PutGreetingTooManyRequests) String

func (o *PutGreetingTooManyRequests) String() string

type PutGreetingUnauthorized

type PutGreetingUnauthorized struct {
	Payload *models.ErrorBody
}

PutGreetingUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewPutGreetingUnauthorized

func NewPutGreetingUnauthorized() *PutGreetingUnauthorized

NewPutGreetingUnauthorized creates a PutGreetingUnauthorized with default headers values

func (*PutGreetingUnauthorized) Error

func (o *PutGreetingUnauthorized) Error() string

func (*PutGreetingUnauthorized) GetPayload

func (o *PutGreetingUnauthorized) GetPayload() *models.ErrorBody

func (*PutGreetingUnauthorized) IsClientError

func (o *PutGreetingUnauthorized) IsClientError() bool

IsClientError returns true when this put greeting unauthorized response has a 4xx status code

func (*PutGreetingUnauthorized) IsCode

func (o *PutGreetingUnauthorized) IsCode(code int) bool

IsCode returns true when this put greeting unauthorized response a status code equal to that given

func (*PutGreetingUnauthorized) IsRedirect

func (o *PutGreetingUnauthorized) IsRedirect() bool

IsRedirect returns true when this put greeting unauthorized response has a 3xx status code

func (*PutGreetingUnauthorized) IsServerError

func (o *PutGreetingUnauthorized) IsServerError() bool

IsServerError returns true when this put greeting unauthorized response has a 5xx status code

func (*PutGreetingUnauthorized) IsSuccess

func (o *PutGreetingUnauthorized) IsSuccess() bool

IsSuccess returns true when this put greeting unauthorized response has a 2xx status code

func (*PutGreetingUnauthorized) String

func (o *PutGreetingUnauthorized) String() string

type PutGreetingUnsupportedMediaType

type PutGreetingUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PutGreetingUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPutGreetingUnsupportedMediaType

func NewPutGreetingUnsupportedMediaType() *PutGreetingUnsupportedMediaType

NewPutGreetingUnsupportedMediaType creates a PutGreetingUnsupportedMediaType with default headers values

func (*PutGreetingUnsupportedMediaType) Error

func (*PutGreetingUnsupportedMediaType) GetPayload

func (*PutGreetingUnsupportedMediaType) IsClientError

func (o *PutGreetingUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this put greeting unsupported media type response has a 4xx status code

func (*PutGreetingUnsupportedMediaType) IsCode

func (o *PutGreetingUnsupportedMediaType) IsCode(code int) bool

IsCode returns true when this put greeting unsupported media type response a status code equal to that given

func (*PutGreetingUnsupportedMediaType) IsRedirect

func (o *PutGreetingUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this put greeting unsupported media type response has a 3xx status code

func (*PutGreetingUnsupportedMediaType) IsServerError

func (o *PutGreetingUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this put greeting unsupported media type response has a 5xx status code

func (*PutGreetingUnsupportedMediaType) IsSuccess

func (o *PutGreetingUnsupportedMediaType) IsSuccess() bool

IsSuccess returns true when this put greeting unsupported media type response has a 2xx status code

func (*PutGreetingUnsupportedMediaType) String

type PutGreetingsDefaultsBadRequest

type PutGreetingsDefaultsBadRequest struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewPutGreetingsDefaultsBadRequest

func NewPutGreetingsDefaultsBadRequest() *PutGreetingsDefaultsBadRequest

NewPutGreetingsDefaultsBadRequest creates a PutGreetingsDefaultsBadRequest with default headers values

func (*PutGreetingsDefaultsBadRequest) Error

func (*PutGreetingsDefaultsBadRequest) GetPayload

func (*PutGreetingsDefaultsBadRequest) IsClientError

func (o *PutGreetingsDefaultsBadRequest) IsClientError() bool

IsClientError returns true when this put greetings defaults bad request response has a 4xx status code

func (*PutGreetingsDefaultsBadRequest) IsCode

func (o *PutGreetingsDefaultsBadRequest) IsCode(code int) bool

IsCode returns true when this put greetings defaults bad request response a status code equal to that given

func (*PutGreetingsDefaultsBadRequest) IsRedirect

func (o *PutGreetingsDefaultsBadRequest) IsRedirect() bool

IsRedirect returns true when this put greetings defaults bad request response has a 3xx status code

func (*PutGreetingsDefaultsBadRequest) IsServerError

func (o *PutGreetingsDefaultsBadRequest) IsServerError() bool

IsServerError returns true when this put greetings defaults bad request response has a 5xx status code

func (*PutGreetingsDefaultsBadRequest) IsSuccess

func (o *PutGreetingsDefaultsBadRequest) IsSuccess() bool

IsSuccess returns true when this put greetings defaults bad request response has a 2xx status code

func (*PutGreetingsDefaultsBadRequest) String

type PutGreetingsDefaultsForbidden

type PutGreetingsDefaultsForbidden struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewPutGreetingsDefaultsForbidden

func NewPutGreetingsDefaultsForbidden() *PutGreetingsDefaultsForbidden

NewPutGreetingsDefaultsForbidden creates a PutGreetingsDefaultsForbidden with default headers values

func (*PutGreetingsDefaultsForbidden) Error

func (*PutGreetingsDefaultsForbidden) GetPayload

func (*PutGreetingsDefaultsForbidden) IsClientError

func (o *PutGreetingsDefaultsForbidden) IsClientError() bool

IsClientError returns true when this put greetings defaults forbidden response has a 4xx status code

func (*PutGreetingsDefaultsForbidden) IsCode

func (o *PutGreetingsDefaultsForbidden) IsCode(code int) bool

IsCode returns true when this put greetings defaults forbidden response a status code equal to that given

func (*PutGreetingsDefaultsForbidden) IsRedirect

func (o *PutGreetingsDefaultsForbidden) IsRedirect() bool

IsRedirect returns true when this put greetings defaults forbidden response has a 3xx status code

func (*PutGreetingsDefaultsForbidden) IsServerError

func (o *PutGreetingsDefaultsForbidden) IsServerError() bool

IsServerError returns true when this put greetings defaults forbidden response has a 5xx status code

func (*PutGreetingsDefaultsForbidden) IsSuccess

func (o *PutGreetingsDefaultsForbidden) IsSuccess() bool

IsSuccess returns true when this put greetings defaults forbidden response has a 2xx status code

func (*PutGreetingsDefaultsForbidden) String

type PutGreetingsDefaultsGatewayTimeout

type PutGreetingsDefaultsGatewayTimeout struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPutGreetingsDefaultsGatewayTimeout

func NewPutGreetingsDefaultsGatewayTimeout() *PutGreetingsDefaultsGatewayTimeout

NewPutGreetingsDefaultsGatewayTimeout creates a PutGreetingsDefaultsGatewayTimeout with default headers values

func (*PutGreetingsDefaultsGatewayTimeout) Error

func (*PutGreetingsDefaultsGatewayTimeout) GetPayload

func (*PutGreetingsDefaultsGatewayTimeout) IsClientError

func (o *PutGreetingsDefaultsGatewayTimeout) IsClientError() bool

IsClientError returns true when this put greetings defaults gateway timeout response has a 4xx status code

func (*PutGreetingsDefaultsGatewayTimeout) IsCode

IsCode returns true when this put greetings defaults gateway timeout response a status code equal to that given

func (*PutGreetingsDefaultsGatewayTimeout) IsRedirect

func (o *PutGreetingsDefaultsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this put greetings defaults gateway timeout response has a 3xx status code

func (*PutGreetingsDefaultsGatewayTimeout) IsServerError

func (o *PutGreetingsDefaultsGatewayTimeout) IsServerError() bool

IsServerError returns true when this put greetings defaults gateway timeout response has a 5xx status code

func (*PutGreetingsDefaultsGatewayTimeout) IsSuccess

IsSuccess returns true when this put greetings defaults gateway timeout response has a 2xx status code

func (*PutGreetingsDefaultsGatewayTimeout) String

type PutGreetingsDefaultsInternalServerError

type PutGreetingsDefaultsInternalServerError struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPutGreetingsDefaultsInternalServerError

func NewPutGreetingsDefaultsInternalServerError() *PutGreetingsDefaultsInternalServerError

NewPutGreetingsDefaultsInternalServerError creates a PutGreetingsDefaultsInternalServerError with default headers values

func (*PutGreetingsDefaultsInternalServerError) Error

func (*PutGreetingsDefaultsInternalServerError) GetPayload

func (*PutGreetingsDefaultsInternalServerError) IsClientError

func (o *PutGreetingsDefaultsInternalServerError) IsClientError() bool

IsClientError returns true when this put greetings defaults internal server error response has a 4xx status code

func (*PutGreetingsDefaultsInternalServerError) IsCode

IsCode returns true when this put greetings defaults internal server error response a status code equal to that given

func (*PutGreetingsDefaultsInternalServerError) IsRedirect

IsRedirect returns true when this put greetings defaults internal server error response has a 3xx status code

func (*PutGreetingsDefaultsInternalServerError) IsServerError

func (o *PutGreetingsDefaultsInternalServerError) IsServerError() bool

IsServerError returns true when this put greetings defaults internal server error response has a 5xx status code

func (*PutGreetingsDefaultsInternalServerError) IsSuccess

IsSuccess returns true when this put greetings defaults internal server error response has a 2xx status code

func (*PutGreetingsDefaultsInternalServerError) String

type PutGreetingsDefaultsNotFound

type PutGreetingsDefaultsNotFound struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewPutGreetingsDefaultsNotFound

func NewPutGreetingsDefaultsNotFound() *PutGreetingsDefaultsNotFound

NewPutGreetingsDefaultsNotFound creates a PutGreetingsDefaultsNotFound with default headers values

func (*PutGreetingsDefaultsNotFound) Error

func (*PutGreetingsDefaultsNotFound) GetPayload

func (*PutGreetingsDefaultsNotFound) IsClientError

func (o *PutGreetingsDefaultsNotFound) IsClientError() bool

IsClientError returns true when this put greetings defaults not found response has a 4xx status code

func (*PutGreetingsDefaultsNotFound) IsCode

func (o *PutGreetingsDefaultsNotFound) IsCode(code int) bool

IsCode returns true when this put greetings defaults not found response a status code equal to that given

func (*PutGreetingsDefaultsNotFound) IsRedirect

func (o *PutGreetingsDefaultsNotFound) IsRedirect() bool

IsRedirect returns true when this put greetings defaults not found response has a 3xx status code

func (*PutGreetingsDefaultsNotFound) IsServerError

func (o *PutGreetingsDefaultsNotFound) IsServerError() bool

IsServerError returns true when this put greetings defaults not found response has a 5xx status code

func (*PutGreetingsDefaultsNotFound) IsSuccess

func (o *PutGreetingsDefaultsNotFound) IsSuccess() bool

IsSuccess returns true when this put greetings defaults not found response has a 2xx status code

func (*PutGreetingsDefaultsNotFound) String

type PutGreetingsDefaultsOK

type PutGreetingsDefaultsOK struct {
	Payload *models.DefaultGreetingList
}

PutGreetingsDefaultsOK describes a response with status code 200, with default header values.

successful operation

func NewPutGreetingsDefaultsOK

func NewPutGreetingsDefaultsOK() *PutGreetingsDefaultsOK

NewPutGreetingsDefaultsOK creates a PutGreetingsDefaultsOK with default headers values

func (*PutGreetingsDefaultsOK) Error

func (o *PutGreetingsDefaultsOK) Error() string

func (*PutGreetingsDefaultsOK) GetPayload

func (*PutGreetingsDefaultsOK) IsClientError

func (o *PutGreetingsDefaultsOK) IsClientError() bool

IsClientError returns true when this put greetings defaults o k response has a 4xx status code

func (*PutGreetingsDefaultsOK) IsCode

func (o *PutGreetingsDefaultsOK) IsCode(code int) bool

IsCode returns true when this put greetings defaults o k response a status code equal to that given

func (*PutGreetingsDefaultsOK) IsRedirect

func (o *PutGreetingsDefaultsOK) IsRedirect() bool

IsRedirect returns true when this put greetings defaults o k response has a 3xx status code

func (*PutGreetingsDefaultsOK) IsServerError

func (o *PutGreetingsDefaultsOK) IsServerError() bool

IsServerError returns true when this put greetings defaults o k response has a 5xx status code

func (*PutGreetingsDefaultsOK) IsSuccess

func (o *PutGreetingsDefaultsOK) IsSuccess() bool

IsSuccess returns true when this put greetings defaults o k response has a 2xx status code

func (*PutGreetingsDefaultsOK) String

func (o *PutGreetingsDefaultsOK) String() string

type PutGreetingsDefaultsParams

type PutGreetingsDefaultsParams struct {

	/* Body.

	   The updated defaultGreetingList
	*/
	Body *models.DefaultGreetingList

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PutGreetingsDefaultsParams contains all the parameters to send to the API endpoint

for the put greetings defaults operation.

Typically these are written to a http.Request.

func NewPutGreetingsDefaultsParams

func NewPutGreetingsDefaultsParams() *PutGreetingsDefaultsParams

NewPutGreetingsDefaultsParams creates a new PutGreetingsDefaultsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewPutGreetingsDefaultsParamsWithContext

func NewPutGreetingsDefaultsParamsWithContext(ctx context.Context) *PutGreetingsDefaultsParams

NewPutGreetingsDefaultsParamsWithContext creates a new PutGreetingsDefaultsParams object with the ability to set a context for a request.

func NewPutGreetingsDefaultsParamsWithHTTPClient

func NewPutGreetingsDefaultsParamsWithHTTPClient(client *http.Client) *PutGreetingsDefaultsParams

NewPutGreetingsDefaultsParamsWithHTTPClient creates a new PutGreetingsDefaultsParams object with the ability to set a custom HTTPClient for a request.

func NewPutGreetingsDefaultsParamsWithTimeout

func NewPutGreetingsDefaultsParamsWithTimeout(timeout time.Duration) *PutGreetingsDefaultsParams

NewPutGreetingsDefaultsParamsWithTimeout creates a new PutGreetingsDefaultsParams object with the ability to set a timeout on a request.

func (*PutGreetingsDefaultsParams) SetBody

SetBody adds the body to the put greetings defaults params

func (*PutGreetingsDefaultsParams) SetContext

func (o *PutGreetingsDefaultsParams) SetContext(ctx context.Context)

SetContext adds the context to the put greetings defaults params

func (*PutGreetingsDefaultsParams) SetDefaults

func (o *PutGreetingsDefaultsParams) SetDefaults()

SetDefaults hydrates default values in the put greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*PutGreetingsDefaultsParams) SetHTTPClient

func (o *PutGreetingsDefaultsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the put greetings defaults params

func (*PutGreetingsDefaultsParams) SetTimeout

func (o *PutGreetingsDefaultsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the put greetings defaults params

func (*PutGreetingsDefaultsParams) WithBody

WithBody adds the body to the put greetings defaults params

func (*PutGreetingsDefaultsParams) WithContext

WithContext adds the context to the put greetings defaults params

func (*PutGreetingsDefaultsParams) WithDefaults

WithDefaults hydrates default values in the put greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*PutGreetingsDefaultsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the put greetings defaults params

func (*PutGreetingsDefaultsParams) WithTimeout

WithTimeout adds the timeout to the put greetings defaults params

func (*PutGreetingsDefaultsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutGreetingsDefaultsReader

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

PutGreetingsDefaultsReader is a Reader for the PutGreetingsDefaults structure.

func (*PutGreetingsDefaultsReader) ReadResponse

func (o *PutGreetingsDefaultsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PutGreetingsDefaultsRequestEntityTooLarge

type PutGreetingsDefaultsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPutGreetingsDefaultsRequestEntityTooLarge

func NewPutGreetingsDefaultsRequestEntityTooLarge() *PutGreetingsDefaultsRequestEntityTooLarge

NewPutGreetingsDefaultsRequestEntityTooLarge creates a PutGreetingsDefaultsRequestEntityTooLarge with default headers values

func (*PutGreetingsDefaultsRequestEntityTooLarge) Error

func (*PutGreetingsDefaultsRequestEntityTooLarge) GetPayload

func (*PutGreetingsDefaultsRequestEntityTooLarge) IsClientError

IsClientError returns true when this put greetings defaults request entity too large response has a 4xx status code

func (*PutGreetingsDefaultsRequestEntityTooLarge) IsCode

IsCode returns true when this put greetings defaults request entity too large response a status code equal to that given

func (*PutGreetingsDefaultsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this put greetings defaults request entity too large response has a 3xx status code

func (*PutGreetingsDefaultsRequestEntityTooLarge) IsServerError

IsServerError returns true when this put greetings defaults request entity too large response has a 5xx status code

func (*PutGreetingsDefaultsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this put greetings defaults request entity too large response has a 2xx status code

func (*PutGreetingsDefaultsRequestEntityTooLarge) String

type PutGreetingsDefaultsRequestTimeout

type PutGreetingsDefaultsRequestTimeout struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPutGreetingsDefaultsRequestTimeout

func NewPutGreetingsDefaultsRequestTimeout() *PutGreetingsDefaultsRequestTimeout

NewPutGreetingsDefaultsRequestTimeout creates a PutGreetingsDefaultsRequestTimeout with default headers values

func (*PutGreetingsDefaultsRequestTimeout) Error

func (*PutGreetingsDefaultsRequestTimeout) GetPayload

func (*PutGreetingsDefaultsRequestTimeout) IsClientError

func (o *PutGreetingsDefaultsRequestTimeout) IsClientError() bool

IsClientError returns true when this put greetings defaults request timeout response has a 4xx status code

func (*PutGreetingsDefaultsRequestTimeout) IsCode

IsCode returns true when this put greetings defaults request timeout response a status code equal to that given

func (*PutGreetingsDefaultsRequestTimeout) IsRedirect

func (o *PutGreetingsDefaultsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this put greetings defaults request timeout response has a 3xx status code

func (*PutGreetingsDefaultsRequestTimeout) IsServerError

func (o *PutGreetingsDefaultsRequestTimeout) IsServerError() bool

IsServerError returns true when this put greetings defaults request timeout response has a 5xx status code

func (*PutGreetingsDefaultsRequestTimeout) IsSuccess

IsSuccess returns true when this put greetings defaults request timeout response has a 2xx status code

func (*PutGreetingsDefaultsRequestTimeout) String

type PutGreetingsDefaultsServiceUnavailable

type PutGreetingsDefaultsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPutGreetingsDefaultsServiceUnavailable

func NewPutGreetingsDefaultsServiceUnavailable() *PutGreetingsDefaultsServiceUnavailable

NewPutGreetingsDefaultsServiceUnavailable creates a PutGreetingsDefaultsServiceUnavailable with default headers values

func (*PutGreetingsDefaultsServiceUnavailable) Error

func (*PutGreetingsDefaultsServiceUnavailable) GetPayload

func (*PutGreetingsDefaultsServiceUnavailable) IsClientError

func (o *PutGreetingsDefaultsServiceUnavailable) IsClientError() bool

IsClientError returns true when this put greetings defaults service unavailable response has a 4xx status code

func (*PutGreetingsDefaultsServiceUnavailable) IsCode

IsCode returns true when this put greetings defaults service unavailable response a status code equal to that given

func (*PutGreetingsDefaultsServiceUnavailable) IsRedirect

IsRedirect returns true when this put greetings defaults service unavailable response has a 3xx status code

func (*PutGreetingsDefaultsServiceUnavailable) IsServerError

func (o *PutGreetingsDefaultsServiceUnavailable) IsServerError() bool

IsServerError returns true when this put greetings defaults service unavailable response has a 5xx status code

func (*PutGreetingsDefaultsServiceUnavailable) IsSuccess

IsSuccess returns true when this put greetings defaults service unavailable response has a 2xx status code

func (*PutGreetingsDefaultsServiceUnavailable) String

type PutGreetingsDefaultsTooManyRequests

type PutGreetingsDefaultsTooManyRequests struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPutGreetingsDefaultsTooManyRequests

func NewPutGreetingsDefaultsTooManyRequests() *PutGreetingsDefaultsTooManyRequests

NewPutGreetingsDefaultsTooManyRequests creates a PutGreetingsDefaultsTooManyRequests with default headers values

func (*PutGreetingsDefaultsTooManyRequests) Error

func (*PutGreetingsDefaultsTooManyRequests) GetPayload

func (*PutGreetingsDefaultsTooManyRequests) IsClientError

func (o *PutGreetingsDefaultsTooManyRequests) IsClientError() bool

IsClientError returns true when this put greetings defaults too many requests response has a 4xx status code

func (*PutGreetingsDefaultsTooManyRequests) IsCode

IsCode returns true when this put greetings defaults too many requests response a status code equal to that given

func (*PutGreetingsDefaultsTooManyRequests) IsRedirect

func (o *PutGreetingsDefaultsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this put greetings defaults too many requests response has a 3xx status code

func (*PutGreetingsDefaultsTooManyRequests) IsServerError

func (o *PutGreetingsDefaultsTooManyRequests) IsServerError() bool

IsServerError returns true when this put greetings defaults too many requests response has a 5xx status code

func (*PutGreetingsDefaultsTooManyRequests) IsSuccess

IsSuccess returns true when this put greetings defaults too many requests response has a 2xx status code

func (*PutGreetingsDefaultsTooManyRequests) String

type PutGreetingsDefaultsUnauthorized

type PutGreetingsDefaultsUnauthorized struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewPutGreetingsDefaultsUnauthorized

func NewPutGreetingsDefaultsUnauthorized() *PutGreetingsDefaultsUnauthorized

NewPutGreetingsDefaultsUnauthorized creates a PutGreetingsDefaultsUnauthorized with default headers values

func (*PutGreetingsDefaultsUnauthorized) Error

func (*PutGreetingsDefaultsUnauthorized) GetPayload

func (*PutGreetingsDefaultsUnauthorized) IsClientError

func (o *PutGreetingsDefaultsUnauthorized) IsClientError() bool

IsClientError returns true when this put greetings defaults unauthorized response has a 4xx status code

func (*PutGreetingsDefaultsUnauthorized) IsCode

func (o *PutGreetingsDefaultsUnauthorized) IsCode(code int) bool

IsCode returns true when this put greetings defaults unauthorized response a status code equal to that given

func (*PutGreetingsDefaultsUnauthorized) IsRedirect

func (o *PutGreetingsDefaultsUnauthorized) IsRedirect() bool

IsRedirect returns true when this put greetings defaults unauthorized response has a 3xx status code

func (*PutGreetingsDefaultsUnauthorized) IsServerError

func (o *PutGreetingsDefaultsUnauthorized) IsServerError() bool

IsServerError returns true when this put greetings defaults unauthorized response has a 5xx status code

func (*PutGreetingsDefaultsUnauthorized) IsSuccess

func (o *PutGreetingsDefaultsUnauthorized) IsSuccess() bool

IsSuccess returns true when this put greetings defaults unauthorized response has a 2xx status code

func (*PutGreetingsDefaultsUnauthorized) String

type PutGreetingsDefaultsUnsupportedMediaType

type PutGreetingsDefaultsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PutGreetingsDefaultsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPutGreetingsDefaultsUnsupportedMediaType

func NewPutGreetingsDefaultsUnsupportedMediaType() *PutGreetingsDefaultsUnsupportedMediaType

NewPutGreetingsDefaultsUnsupportedMediaType creates a PutGreetingsDefaultsUnsupportedMediaType with default headers values

func (*PutGreetingsDefaultsUnsupportedMediaType) Error

func (*PutGreetingsDefaultsUnsupportedMediaType) GetPayload

func (*PutGreetingsDefaultsUnsupportedMediaType) IsClientError

IsClientError returns true when this put greetings defaults unsupported media type response has a 4xx status code

func (*PutGreetingsDefaultsUnsupportedMediaType) IsCode

IsCode returns true when this put greetings defaults unsupported media type response a status code equal to that given

func (*PutGreetingsDefaultsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this put greetings defaults unsupported media type response has a 3xx status code

func (*PutGreetingsDefaultsUnsupportedMediaType) IsServerError

IsServerError returns true when this put greetings defaults unsupported media type response has a 5xx status code

func (*PutGreetingsDefaultsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this put greetings defaults unsupported media type response has a 2xx status code

func (*PutGreetingsDefaultsUnsupportedMediaType) String

type PutGroupGreetingsDefaultsBadRequest

type PutGroupGreetingsDefaultsBadRequest struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewPutGroupGreetingsDefaultsBadRequest

func NewPutGroupGreetingsDefaultsBadRequest() *PutGroupGreetingsDefaultsBadRequest

NewPutGroupGreetingsDefaultsBadRequest creates a PutGroupGreetingsDefaultsBadRequest with default headers values

func (*PutGroupGreetingsDefaultsBadRequest) Error

func (*PutGroupGreetingsDefaultsBadRequest) GetPayload

func (*PutGroupGreetingsDefaultsBadRequest) IsClientError

func (o *PutGroupGreetingsDefaultsBadRequest) IsClientError() bool

IsClientError returns true when this put group greetings defaults bad request response has a 4xx status code

func (*PutGroupGreetingsDefaultsBadRequest) IsCode

IsCode returns true when this put group greetings defaults bad request response a status code equal to that given

func (*PutGroupGreetingsDefaultsBadRequest) IsRedirect

func (o *PutGroupGreetingsDefaultsBadRequest) IsRedirect() bool

IsRedirect returns true when this put group greetings defaults bad request response has a 3xx status code

func (*PutGroupGreetingsDefaultsBadRequest) IsServerError

func (o *PutGroupGreetingsDefaultsBadRequest) IsServerError() bool

IsServerError returns true when this put group greetings defaults bad request response has a 5xx status code

func (*PutGroupGreetingsDefaultsBadRequest) IsSuccess

IsSuccess returns true when this put group greetings defaults bad request response has a 2xx status code

func (*PutGroupGreetingsDefaultsBadRequest) String

type PutGroupGreetingsDefaultsForbidden

type PutGroupGreetingsDefaultsForbidden struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewPutGroupGreetingsDefaultsForbidden

func NewPutGroupGreetingsDefaultsForbidden() *PutGroupGreetingsDefaultsForbidden

NewPutGroupGreetingsDefaultsForbidden creates a PutGroupGreetingsDefaultsForbidden with default headers values

func (*PutGroupGreetingsDefaultsForbidden) Error

func (*PutGroupGreetingsDefaultsForbidden) GetPayload

func (*PutGroupGreetingsDefaultsForbidden) IsClientError

func (o *PutGroupGreetingsDefaultsForbidden) IsClientError() bool

IsClientError returns true when this put group greetings defaults forbidden response has a 4xx status code

func (*PutGroupGreetingsDefaultsForbidden) IsCode

IsCode returns true when this put group greetings defaults forbidden response a status code equal to that given

func (*PutGroupGreetingsDefaultsForbidden) IsRedirect

func (o *PutGroupGreetingsDefaultsForbidden) IsRedirect() bool

IsRedirect returns true when this put group greetings defaults forbidden response has a 3xx status code

func (*PutGroupGreetingsDefaultsForbidden) IsServerError

func (o *PutGroupGreetingsDefaultsForbidden) IsServerError() bool

IsServerError returns true when this put group greetings defaults forbidden response has a 5xx status code

func (*PutGroupGreetingsDefaultsForbidden) IsSuccess

IsSuccess returns true when this put group greetings defaults forbidden response has a 2xx status code

func (*PutGroupGreetingsDefaultsForbidden) String

type PutGroupGreetingsDefaultsGatewayTimeout

type PutGroupGreetingsDefaultsGatewayTimeout struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPutGroupGreetingsDefaultsGatewayTimeout

func NewPutGroupGreetingsDefaultsGatewayTimeout() *PutGroupGreetingsDefaultsGatewayTimeout

NewPutGroupGreetingsDefaultsGatewayTimeout creates a PutGroupGreetingsDefaultsGatewayTimeout with default headers values

func (*PutGroupGreetingsDefaultsGatewayTimeout) Error

func (*PutGroupGreetingsDefaultsGatewayTimeout) GetPayload

func (*PutGroupGreetingsDefaultsGatewayTimeout) IsClientError

func (o *PutGroupGreetingsDefaultsGatewayTimeout) IsClientError() bool

IsClientError returns true when this put group greetings defaults gateway timeout response has a 4xx status code

func (*PutGroupGreetingsDefaultsGatewayTimeout) IsCode

IsCode returns true when this put group greetings defaults gateway timeout response a status code equal to that given

func (*PutGroupGreetingsDefaultsGatewayTimeout) IsRedirect

IsRedirect returns true when this put group greetings defaults gateway timeout response has a 3xx status code

func (*PutGroupGreetingsDefaultsGatewayTimeout) IsServerError

func (o *PutGroupGreetingsDefaultsGatewayTimeout) IsServerError() bool

IsServerError returns true when this put group greetings defaults gateway timeout response has a 5xx status code

func (*PutGroupGreetingsDefaultsGatewayTimeout) IsSuccess

IsSuccess returns true when this put group greetings defaults gateway timeout response has a 2xx status code

func (*PutGroupGreetingsDefaultsGatewayTimeout) String

type PutGroupGreetingsDefaultsInternalServerError

type PutGroupGreetingsDefaultsInternalServerError struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPutGroupGreetingsDefaultsInternalServerError

func NewPutGroupGreetingsDefaultsInternalServerError() *PutGroupGreetingsDefaultsInternalServerError

NewPutGroupGreetingsDefaultsInternalServerError creates a PutGroupGreetingsDefaultsInternalServerError with default headers values

func (*PutGroupGreetingsDefaultsInternalServerError) Error

func (*PutGroupGreetingsDefaultsInternalServerError) GetPayload

func (*PutGroupGreetingsDefaultsInternalServerError) IsClientError

IsClientError returns true when this put group greetings defaults internal server error response has a 4xx status code

func (*PutGroupGreetingsDefaultsInternalServerError) IsCode

IsCode returns true when this put group greetings defaults internal server error response a status code equal to that given

func (*PutGroupGreetingsDefaultsInternalServerError) IsRedirect

IsRedirect returns true when this put group greetings defaults internal server error response has a 3xx status code

func (*PutGroupGreetingsDefaultsInternalServerError) IsServerError

IsServerError returns true when this put group greetings defaults internal server error response has a 5xx status code

func (*PutGroupGreetingsDefaultsInternalServerError) IsSuccess

IsSuccess returns true when this put group greetings defaults internal server error response has a 2xx status code

func (*PutGroupGreetingsDefaultsInternalServerError) String

type PutGroupGreetingsDefaultsNotFound

type PutGroupGreetingsDefaultsNotFound struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewPutGroupGreetingsDefaultsNotFound

func NewPutGroupGreetingsDefaultsNotFound() *PutGroupGreetingsDefaultsNotFound

NewPutGroupGreetingsDefaultsNotFound creates a PutGroupGreetingsDefaultsNotFound with default headers values

func (*PutGroupGreetingsDefaultsNotFound) Error

func (*PutGroupGreetingsDefaultsNotFound) GetPayload

func (*PutGroupGreetingsDefaultsNotFound) IsClientError

func (o *PutGroupGreetingsDefaultsNotFound) IsClientError() bool

IsClientError returns true when this put group greetings defaults not found response has a 4xx status code

func (*PutGroupGreetingsDefaultsNotFound) IsCode

func (o *PutGroupGreetingsDefaultsNotFound) IsCode(code int) bool

IsCode returns true when this put group greetings defaults not found response a status code equal to that given

func (*PutGroupGreetingsDefaultsNotFound) IsRedirect

func (o *PutGroupGreetingsDefaultsNotFound) IsRedirect() bool

IsRedirect returns true when this put group greetings defaults not found response has a 3xx status code

func (*PutGroupGreetingsDefaultsNotFound) IsServerError

func (o *PutGroupGreetingsDefaultsNotFound) IsServerError() bool

IsServerError returns true when this put group greetings defaults not found response has a 5xx status code

func (*PutGroupGreetingsDefaultsNotFound) IsSuccess

func (o *PutGroupGreetingsDefaultsNotFound) IsSuccess() bool

IsSuccess returns true when this put group greetings defaults not found response has a 2xx status code

func (*PutGroupGreetingsDefaultsNotFound) String

type PutGroupGreetingsDefaultsOK

type PutGroupGreetingsDefaultsOK struct {
	Payload *models.DefaultGreetingList
}

PutGroupGreetingsDefaultsOK describes a response with status code 200, with default header values.

successful operation

func NewPutGroupGreetingsDefaultsOK

func NewPutGroupGreetingsDefaultsOK() *PutGroupGreetingsDefaultsOK

NewPutGroupGreetingsDefaultsOK creates a PutGroupGreetingsDefaultsOK with default headers values

func (*PutGroupGreetingsDefaultsOK) Error

func (*PutGroupGreetingsDefaultsOK) GetPayload

func (*PutGroupGreetingsDefaultsOK) IsClientError

func (o *PutGroupGreetingsDefaultsOK) IsClientError() bool

IsClientError returns true when this put group greetings defaults o k response has a 4xx status code

func (*PutGroupGreetingsDefaultsOK) IsCode

func (o *PutGroupGreetingsDefaultsOK) IsCode(code int) bool

IsCode returns true when this put group greetings defaults o k response a status code equal to that given

func (*PutGroupGreetingsDefaultsOK) IsRedirect

func (o *PutGroupGreetingsDefaultsOK) IsRedirect() bool

IsRedirect returns true when this put group greetings defaults o k response has a 3xx status code

func (*PutGroupGreetingsDefaultsOK) IsServerError

func (o *PutGroupGreetingsDefaultsOK) IsServerError() bool

IsServerError returns true when this put group greetings defaults o k response has a 5xx status code

func (*PutGroupGreetingsDefaultsOK) IsSuccess

func (o *PutGroupGreetingsDefaultsOK) IsSuccess() bool

IsSuccess returns true when this put group greetings defaults o k response has a 2xx status code

func (*PutGroupGreetingsDefaultsOK) String

func (o *PutGroupGreetingsDefaultsOK) String() string

type PutGroupGreetingsDefaultsParams

type PutGroupGreetingsDefaultsParams struct {

	/* Body.

	   The updated defaultGreetingList
	*/
	Body *models.DefaultGreetingList

	/* GroupID.

	   Group ID
	*/
	GroupID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PutGroupGreetingsDefaultsParams contains all the parameters to send to the API endpoint

for the put group greetings defaults operation.

Typically these are written to a http.Request.

func NewPutGroupGreetingsDefaultsParams

func NewPutGroupGreetingsDefaultsParams() *PutGroupGreetingsDefaultsParams

NewPutGroupGreetingsDefaultsParams creates a new PutGroupGreetingsDefaultsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewPutGroupGreetingsDefaultsParamsWithContext

func NewPutGroupGreetingsDefaultsParamsWithContext(ctx context.Context) *PutGroupGreetingsDefaultsParams

NewPutGroupGreetingsDefaultsParamsWithContext creates a new PutGroupGreetingsDefaultsParams object with the ability to set a context for a request.

func NewPutGroupGreetingsDefaultsParamsWithHTTPClient

func NewPutGroupGreetingsDefaultsParamsWithHTTPClient(client *http.Client) *PutGroupGreetingsDefaultsParams

NewPutGroupGreetingsDefaultsParamsWithHTTPClient creates a new PutGroupGreetingsDefaultsParams object with the ability to set a custom HTTPClient for a request.

func NewPutGroupGreetingsDefaultsParamsWithTimeout

func NewPutGroupGreetingsDefaultsParamsWithTimeout(timeout time.Duration) *PutGroupGreetingsDefaultsParams

NewPutGroupGreetingsDefaultsParamsWithTimeout creates a new PutGroupGreetingsDefaultsParams object with the ability to set a timeout on a request.

func (*PutGroupGreetingsDefaultsParams) SetBody

SetBody adds the body to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) SetContext

func (o *PutGroupGreetingsDefaultsParams) SetContext(ctx context.Context)

SetContext adds the context to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) SetDefaults

func (o *PutGroupGreetingsDefaultsParams) SetDefaults()

SetDefaults hydrates default values in the put group greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*PutGroupGreetingsDefaultsParams) SetGroupID

func (o *PutGroupGreetingsDefaultsParams) SetGroupID(groupID string)

SetGroupID adds the groupId to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) SetHTTPClient

func (o *PutGroupGreetingsDefaultsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) SetTimeout

func (o *PutGroupGreetingsDefaultsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) WithBody

WithBody adds the body to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) WithContext

WithContext adds the context to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) WithDefaults

WithDefaults hydrates default values in the put group greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*PutGroupGreetingsDefaultsParams) WithGroupID

WithGroupID adds the groupID to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) WithTimeout

WithTimeout adds the timeout to the put group greetings defaults params

func (*PutGroupGreetingsDefaultsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutGroupGreetingsDefaultsReader

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

PutGroupGreetingsDefaultsReader is a Reader for the PutGroupGreetingsDefaults structure.

func (*PutGroupGreetingsDefaultsReader) ReadResponse

func (o *PutGroupGreetingsDefaultsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PutGroupGreetingsDefaultsRequestEntityTooLarge

type PutGroupGreetingsDefaultsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPutGroupGreetingsDefaultsRequestEntityTooLarge

func NewPutGroupGreetingsDefaultsRequestEntityTooLarge() *PutGroupGreetingsDefaultsRequestEntityTooLarge

NewPutGroupGreetingsDefaultsRequestEntityTooLarge creates a PutGroupGreetingsDefaultsRequestEntityTooLarge with default headers values

func (*PutGroupGreetingsDefaultsRequestEntityTooLarge) Error

func (*PutGroupGreetingsDefaultsRequestEntityTooLarge) GetPayload

func (*PutGroupGreetingsDefaultsRequestEntityTooLarge) IsClientError

IsClientError returns true when this put group greetings defaults request entity too large response has a 4xx status code

func (*PutGroupGreetingsDefaultsRequestEntityTooLarge) IsCode

IsCode returns true when this put group greetings defaults request entity too large response a status code equal to that given

func (*PutGroupGreetingsDefaultsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this put group greetings defaults request entity too large response has a 3xx status code

func (*PutGroupGreetingsDefaultsRequestEntityTooLarge) IsServerError

IsServerError returns true when this put group greetings defaults request entity too large response has a 5xx status code

func (*PutGroupGreetingsDefaultsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this put group greetings defaults request entity too large response has a 2xx status code

func (*PutGroupGreetingsDefaultsRequestEntityTooLarge) String

type PutGroupGreetingsDefaultsRequestTimeout

type PutGroupGreetingsDefaultsRequestTimeout struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPutGroupGreetingsDefaultsRequestTimeout

func NewPutGroupGreetingsDefaultsRequestTimeout() *PutGroupGreetingsDefaultsRequestTimeout

NewPutGroupGreetingsDefaultsRequestTimeout creates a PutGroupGreetingsDefaultsRequestTimeout with default headers values

func (*PutGroupGreetingsDefaultsRequestTimeout) Error

func (*PutGroupGreetingsDefaultsRequestTimeout) GetPayload

func (*PutGroupGreetingsDefaultsRequestTimeout) IsClientError

func (o *PutGroupGreetingsDefaultsRequestTimeout) IsClientError() bool

IsClientError returns true when this put group greetings defaults request timeout response has a 4xx status code

func (*PutGroupGreetingsDefaultsRequestTimeout) IsCode

IsCode returns true when this put group greetings defaults request timeout response a status code equal to that given

func (*PutGroupGreetingsDefaultsRequestTimeout) IsRedirect

IsRedirect returns true when this put group greetings defaults request timeout response has a 3xx status code

func (*PutGroupGreetingsDefaultsRequestTimeout) IsServerError

func (o *PutGroupGreetingsDefaultsRequestTimeout) IsServerError() bool

IsServerError returns true when this put group greetings defaults request timeout response has a 5xx status code

func (*PutGroupGreetingsDefaultsRequestTimeout) IsSuccess

IsSuccess returns true when this put group greetings defaults request timeout response has a 2xx status code

func (*PutGroupGreetingsDefaultsRequestTimeout) String

type PutGroupGreetingsDefaultsServiceUnavailable

type PutGroupGreetingsDefaultsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPutGroupGreetingsDefaultsServiceUnavailable

func NewPutGroupGreetingsDefaultsServiceUnavailable() *PutGroupGreetingsDefaultsServiceUnavailable

NewPutGroupGreetingsDefaultsServiceUnavailable creates a PutGroupGreetingsDefaultsServiceUnavailable with default headers values

func (*PutGroupGreetingsDefaultsServiceUnavailable) Error

func (*PutGroupGreetingsDefaultsServiceUnavailable) GetPayload

func (*PutGroupGreetingsDefaultsServiceUnavailable) IsClientError

IsClientError returns true when this put group greetings defaults service unavailable response has a 4xx status code

func (*PutGroupGreetingsDefaultsServiceUnavailable) IsCode

IsCode returns true when this put group greetings defaults service unavailable response a status code equal to that given

func (*PutGroupGreetingsDefaultsServiceUnavailable) IsRedirect

IsRedirect returns true when this put group greetings defaults service unavailable response has a 3xx status code

func (*PutGroupGreetingsDefaultsServiceUnavailable) IsServerError

IsServerError returns true when this put group greetings defaults service unavailable response has a 5xx status code

func (*PutGroupGreetingsDefaultsServiceUnavailable) IsSuccess

IsSuccess returns true when this put group greetings defaults service unavailable response has a 2xx status code

func (*PutGroupGreetingsDefaultsServiceUnavailable) String

type PutGroupGreetingsDefaultsTooManyRequests

type PutGroupGreetingsDefaultsTooManyRequests struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPutGroupGreetingsDefaultsTooManyRequests

func NewPutGroupGreetingsDefaultsTooManyRequests() *PutGroupGreetingsDefaultsTooManyRequests

NewPutGroupGreetingsDefaultsTooManyRequests creates a PutGroupGreetingsDefaultsTooManyRequests with default headers values

func (*PutGroupGreetingsDefaultsTooManyRequests) Error

func (*PutGroupGreetingsDefaultsTooManyRequests) GetPayload

func (*PutGroupGreetingsDefaultsTooManyRequests) IsClientError

IsClientError returns true when this put group greetings defaults too many requests response has a 4xx status code

func (*PutGroupGreetingsDefaultsTooManyRequests) IsCode

IsCode returns true when this put group greetings defaults too many requests response a status code equal to that given

func (*PutGroupGreetingsDefaultsTooManyRequests) IsRedirect

IsRedirect returns true when this put group greetings defaults too many requests response has a 3xx status code

func (*PutGroupGreetingsDefaultsTooManyRequests) IsServerError

IsServerError returns true when this put group greetings defaults too many requests response has a 5xx status code

func (*PutGroupGreetingsDefaultsTooManyRequests) IsSuccess

IsSuccess returns true when this put group greetings defaults too many requests response has a 2xx status code

func (*PutGroupGreetingsDefaultsTooManyRequests) String

type PutGroupGreetingsDefaultsUnauthorized

type PutGroupGreetingsDefaultsUnauthorized struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewPutGroupGreetingsDefaultsUnauthorized

func NewPutGroupGreetingsDefaultsUnauthorized() *PutGroupGreetingsDefaultsUnauthorized

NewPutGroupGreetingsDefaultsUnauthorized creates a PutGroupGreetingsDefaultsUnauthorized with default headers values

func (*PutGroupGreetingsDefaultsUnauthorized) Error

func (*PutGroupGreetingsDefaultsUnauthorized) GetPayload

func (*PutGroupGreetingsDefaultsUnauthorized) IsClientError

func (o *PutGroupGreetingsDefaultsUnauthorized) IsClientError() bool

IsClientError returns true when this put group greetings defaults unauthorized response has a 4xx status code

func (*PutGroupGreetingsDefaultsUnauthorized) IsCode

IsCode returns true when this put group greetings defaults unauthorized response a status code equal to that given

func (*PutGroupGreetingsDefaultsUnauthorized) IsRedirect

IsRedirect returns true when this put group greetings defaults unauthorized response has a 3xx status code

func (*PutGroupGreetingsDefaultsUnauthorized) IsServerError

func (o *PutGroupGreetingsDefaultsUnauthorized) IsServerError() bool

IsServerError returns true when this put group greetings defaults unauthorized response has a 5xx status code

func (*PutGroupGreetingsDefaultsUnauthorized) IsSuccess

IsSuccess returns true when this put group greetings defaults unauthorized response has a 2xx status code

func (*PutGroupGreetingsDefaultsUnauthorized) String

type PutGroupGreetingsDefaultsUnsupportedMediaType

type PutGroupGreetingsDefaultsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PutGroupGreetingsDefaultsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPutGroupGreetingsDefaultsUnsupportedMediaType

func NewPutGroupGreetingsDefaultsUnsupportedMediaType() *PutGroupGreetingsDefaultsUnsupportedMediaType

NewPutGroupGreetingsDefaultsUnsupportedMediaType creates a PutGroupGreetingsDefaultsUnsupportedMediaType with default headers values

func (*PutGroupGreetingsDefaultsUnsupportedMediaType) Error

func (*PutGroupGreetingsDefaultsUnsupportedMediaType) GetPayload

func (*PutGroupGreetingsDefaultsUnsupportedMediaType) IsClientError

IsClientError returns true when this put group greetings defaults unsupported media type response has a 4xx status code

func (*PutGroupGreetingsDefaultsUnsupportedMediaType) IsCode

IsCode returns true when this put group greetings defaults unsupported media type response a status code equal to that given

func (*PutGroupGreetingsDefaultsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this put group greetings defaults unsupported media type response has a 3xx status code

func (*PutGroupGreetingsDefaultsUnsupportedMediaType) IsServerError

IsServerError returns true when this put group greetings defaults unsupported media type response has a 5xx status code

func (*PutGroupGreetingsDefaultsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this put group greetings defaults unsupported media type response has a 2xx status code

func (*PutGroupGreetingsDefaultsUnsupportedMediaType) String

type PutUserGreetingsDefaultsBadRequest

type PutUserGreetingsDefaultsBadRequest struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsBadRequest describes a response with status code 400, with default header values.

The request could not be understood by the server due to malformed syntax.

func NewPutUserGreetingsDefaultsBadRequest

func NewPutUserGreetingsDefaultsBadRequest() *PutUserGreetingsDefaultsBadRequest

NewPutUserGreetingsDefaultsBadRequest creates a PutUserGreetingsDefaultsBadRequest with default headers values

func (*PutUserGreetingsDefaultsBadRequest) Error

func (*PutUserGreetingsDefaultsBadRequest) GetPayload

func (*PutUserGreetingsDefaultsBadRequest) IsClientError

func (o *PutUserGreetingsDefaultsBadRequest) IsClientError() bool

IsClientError returns true when this put user greetings defaults bad request response has a 4xx status code

func (*PutUserGreetingsDefaultsBadRequest) IsCode

IsCode returns true when this put user greetings defaults bad request response a status code equal to that given

func (*PutUserGreetingsDefaultsBadRequest) IsRedirect

func (o *PutUserGreetingsDefaultsBadRequest) IsRedirect() bool

IsRedirect returns true when this put user greetings defaults bad request response has a 3xx status code

func (*PutUserGreetingsDefaultsBadRequest) IsServerError

func (o *PutUserGreetingsDefaultsBadRequest) IsServerError() bool

IsServerError returns true when this put user greetings defaults bad request response has a 5xx status code

func (*PutUserGreetingsDefaultsBadRequest) IsSuccess

IsSuccess returns true when this put user greetings defaults bad request response has a 2xx status code

func (*PutUserGreetingsDefaultsBadRequest) String

type PutUserGreetingsDefaultsForbidden

type PutUserGreetingsDefaultsForbidden struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsForbidden describes a response with status code 403, with default header values.

You are not authorized to perform the requested action.

func NewPutUserGreetingsDefaultsForbidden

func NewPutUserGreetingsDefaultsForbidden() *PutUserGreetingsDefaultsForbidden

NewPutUserGreetingsDefaultsForbidden creates a PutUserGreetingsDefaultsForbidden with default headers values

func (*PutUserGreetingsDefaultsForbidden) Error

func (*PutUserGreetingsDefaultsForbidden) GetPayload

func (*PutUserGreetingsDefaultsForbidden) IsClientError

func (o *PutUserGreetingsDefaultsForbidden) IsClientError() bool

IsClientError returns true when this put user greetings defaults forbidden response has a 4xx status code

func (*PutUserGreetingsDefaultsForbidden) IsCode

func (o *PutUserGreetingsDefaultsForbidden) IsCode(code int) bool

IsCode returns true when this put user greetings defaults forbidden response a status code equal to that given

func (*PutUserGreetingsDefaultsForbidden) IsRedirect

func (o *PutUserGreetingsDefaultsForbidden) IsRedirect() bool

IsRedirect returns true when this put user greetings defaults forbidden response has a 3xx status code

func (*PutUserGreetingsDefaultsForbidden) IsServerError

func (o *PutUserGreetingsDefaultsForbidden) IsServerError() bool

IsServerError returns true when this put user greetings defaults forbidden response has a 5xx status code

func (*PutUserGreetingsDefaultsForbidden) IsSuccess

func (o *PutUserGreetingsDefaultsForbidden) IsSuccess() bool

IsSuccess returns true when this put user greetings defaults forbidden response has a 2xx status code

func (*PutUserGreetingsDefaultsForbidden) String

type PutUserGreetingsDefaultsGatewayTimeout

type PutUserGreetingsDefaultsGatewayTimeout struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPutUserGreetingsDefaultsGatewayTimeout

func NewPutUserGreetingsDefaultsGatewayTimeout() *PutUserGreetingsDefaultsGatewayTimeout

NewPutUserGreetingsDefaultsGatewayTimeout creates a PutUserGreetingsDefaultsGatewayTimeout with default headers values

func (*PutUserGreetingsDefaultsGatewayTimeout) Error

func (*PutUserGreetingsDefaultsGatewayTimeout) GetPayload

func (*PutUserGreetingsDefaultsGatewayTimeout) IsClientError

func (o *PutUserGreetingsDefaultsGatewayTimeout) IsClientError() bool

IsClientError returns true when this put user greetings defaults gateway timeout response has a 4xx status code

func (*PutUserGreetingsDefaultsGatewayTimeout) IsCode

IsCode returns true when this put user greetings defaults gateway timeout response a status code equal to that given

func (*PutUserGreetingsDefaultsGatewayTimeout) IsRedirect

IsRedirect returns true when this put user greetings defaults gateway timeout response has a 3xx status code

func (*PutUserGreetingsDefaultsGatewayTimeout) IsServerError

func (o *PutUserGreetingsDefaultsGatewayTimeout) IsServerError() bool

IsServerError returns true when this put user greetings defaults gateway timeout response has a 5xx status code

func (*PutUserGreetingsDefaultsGatewayTimeout) IsSuccess

IsSuccess returns true when this put user greetings defaults gateway timeout response has a 2xx status code

func (*PutUserGreetingsDefaultsGatewayTimeout) String

type PutUserGreetingsDefaultsInternalServerError

type PutUserGreetingsDefaultsInternalServerError struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPutUserGreetingsDefaultsInternalServerError

func NewPutUserGreetingsDefaultsInternalServerError() *PutUserGreetingsDefaultsInternalServerError

NewPutUserGreetingsDefaultsInternalServerError creates a PutUserGreetingsDefaultsInternalServerError with default headers values

func (*PutUserGreetingsDefaultsInternalServerError) Error

func (*PutUserGreetingsDefaultsInternalServerError) GetPayload

func (*PutUserGreetingsDefaultsInternalServerError) IsClientError

IsClientError returns true when this put user greetings defaults internal server error response has a 4xx status code

func (*PutUserGreetingsDefaultsInternalServerError) IsCode

IsCode returns true when this put user greetings defaults internal server error response a status code equal to that given

func (*PutUserGreetingsDefaultsInternalServerError) IsRedirect

IsRedirect returns true when this put user greetings defaults internal server error response has a 3xx status code

func (*PutUserGreetingsDefaultsInternalServerError) IsServerError

IsServerError returns true when this put user greetings defaults internal server error response has a 5xx status code

func (*PutUserGreetingsDefaultsInternalServerError) IsSuccess

IsSuccess returns true when this put user greetings defaults internal server error response has a 2xx status code

func (*PutUserGreetingsDefaultsInternalServerError) String

type PutUserGreetingsDefaultsNotFound

type PutUserGreetingsDefaultsNotFound struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsNotFound describes a response with status code 404, with default header values.

The requested resource was not found.

func NewPutUserGreetingsDefaultsNotFound

func NewPutUserGreetingsDefaultsNotFound() *PutUserGreetingsDefaultsNotFound

NewPutUserGreetingsDefaultsNotFound creates a PutUserGreetingsDefaultsNotFound with default headers values

func (*PutUserGreetingsDefaultsNotFound) Error

func (*PutUserGreetingsDefaultsNotFound) GetPayload

func (*PutUserGreetingsDefaultsNotFound) IsClientError

func (o *PutUserGreetingsDefaultsNotFound) IsClientError() bool

IsClientError returns true when this put user greetings defaults not found response has a 4xx status code

func (*PutUserGreetingsDefaultsNotFound) IsCode

func (o *PutUserGreetingsDefaultsNotFound) IsCode(code int) bool

IsCode returns true when this put user greetings defaults not found response a status code equal to that given

func (*PutUserGreetingsDefaultsNotFound) IsRedirect

func (o *PutUserGreetingsDefaultsNotFound) IsRedirect() bool

IsRedirect returns true when this put user greetings defaults not found response has a 3xx status code

func (*PutUserGreetingsDefaultsNotFound) IsServerError

func (o *PutUserGreetingsDefaultsNotFound) IsServerError() bool

IsServerError returns true when this put user greetings defaults not found response has a 5xx status code

func (*PutUserGreetingsDefaultsNotFound) IsSuccess

func (o *PutUserGreetingsDefaultsNotFound) IsSuccess() bool

IsSuccess returns true when this put user greetings defaults not found response has a 2xx status code

func (*PutUserGreetingsDefaultsNotFound) String

type PutUserGreetingsDefaultsOK

type PutUserGreetingsDefaultsOK struct {
	Payload *models.DefaultGreetingList
}

PutUserGreetingsDefaultsOK describes a response with status code 200, with default header values.

successful operation

func NewPutUserGreetingsDefaultsOK

func NewPutUserGreetingsDefaultsOK() *PutUserGreetingsDefaultsOK

NewPutUserGreetingsDefaultsOK creates a PutUserGreetingsDefaultsOK with default headers values

func (*PutUserGreetingsDefaultsOK) Error

func (*PutUserGreetingsDefaultsOK) GetPayload

func (*PutUserGreetingsDefaultsOK) IsClientError

func (o *PutUserGreetingsDefaultsOK) IsClientError() bool

IsClientError returns true when this put user greetings defaults o k response has a 4xx status code

func (*PutUserGreetingsDefaultsOK) IsCode

func (o *PutUserGreetingsDefaultsOK) IsCode(code int) bool

IsCode returns true when this put user greetings defaults o k response a status code equal to that given

func (*PutUserGreetingsDefaultsOK) IsRedirect

func (o *PutUserGreetingsDefaultsOK) IsRedirect() bool

IsRedirect returns true when this put user greetings defaults o k response has a 3xx status code

func (*PutUserGreetingsDefaultsOK) IsServerError

func (o *PutUserGreetingsDefaultsOK) IsServerError() bool

IsServerError returns true when this put user greetings defaults o k response has a 5xx status code

func (*PutUserGreetingsDefaultsOK) IsSuccess

func (o *PutUserGreetingsDefaultsOK) IsSuccess() bool

IsSuccess returns true when this put user greetings defaults o k response has a 2xx status code

func (*PutUserGreetingsDefaultsOK) String

func (o *PutUserGreetingsDefaultsOK) String() string

type PutUserGreetingsDefaultsParams

type PutUserGreetingsDefaultsParams struct {

	/* Body.

	   The updated defaultGreetingList
	*/
	Body *models.DefaultGreetingList

	/* UserID.

	   User ID
	*/
	UserID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PutUserGreetingsDefaultsParams contains all the parameters to send to the API endpoint

for the put user greetings defaults operation.

Typically these are written to a http.Request.

func NewPutUserGreetingsDefaultsParams

func NewPutUserGreetingsDefaultsParams() *PutUserGreetingsDefaultsParams

NewPutUserGreetingsDefaultsParams creates a new PutUserGreetingsDefaultsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewPutUserGreetingsDefaultsParamsWithContext

func NewPutUserGreetingsDefaultsParamsWithContext(ctx context.Context) *PutUserGreetingsDefaultsParams

NewPutUserGreetingsDefaultsParamsWithContext creates a new PutUserGreetingsDefaultsParams object with the ability to set a context for a request.

func NewPutUserGreetingsDefaultsParamsWithHTTPClient

func NewPutUserGreetingsDefaultsParamsWithHTTPClient(client *http.Client) *PutUserGreetingsDefaultsParams

NewPutUserGreetingsDefaultsParamsWithHTTPClient creates a new PutUserGreetingsDefaultsParams object with the ability to set a custom HTTPClient for a request.

func NewPutUserGreetingsDefaultsParamsWithTimeout

func NewPutUserGreetingsDefaultsParamsWithTimeout(timeout time.Duration) *PutUserGreetingsDefaultsParams

NewPutUserGreetingsDefaultsParamsWithTimeout creates a new PutUserGreetingsDefaultsParams object with the ability to set a timeout on a request.

func (*PutUserGreetingsDefaultsParams) SetBody

SetBody adds the body to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) SetContext

func (o *PutUserGreetingsDefaultsParams) SetContext(ctx context.Context)

SetContext adds the context to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) SetDefaults

func (o *PutUserGreetingsDefaultsParams) SetDefaults()

SetDefaults hydrates default values in the put user greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*PutUserGreetingsDefaultsParams) SetHTTPClient

func (o *PutUserGreetingsDefaultsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) SetTimeout

func (o *PutUserGreetingsDefaultsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) SetUserID

func (o *PutUserGreetingsDefaultsParams) SetUserID(userID string)

SetUserID adds the userId to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) WithBody

WithBody adds the body to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) WithContext

WithContext adds the context to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) WithDefaults

WithDefaults hydrates default values in the put user greetings defaults params (not the query body).

All values with no default are reset to their zero value.

func (*PutUserGreetingsDefaultsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) WithTimeout

WithTimeout adds the timeout to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) WithUserID

WithUserID adds the userID to the put user greetings defaults params

func (*PutUserGreetingsDefaultsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutUserGreetingsDefaultsReader

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

PutUserGreetingsDefaultsReader is a Reader for the PutUserGreetingsDefaults structure.

func (*PutUserGreetingsDefaultsReader) ReadResponse

func (o *PutUserGreetingsDefaultsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PutUserGreetingsDefaultsRequestEntityTooLarge

type PutUserGreetingsDefaultsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPutUserGreetingsDefaultsRequestEntityTooLarge

func NewPutUserGreetingsDefaultsRequestEntityTooLarge() *PutUserGreetingsDefaultsRequestEntityTooLarge

NewPutUserGreetingsDefaultsRequestEntityTooLarge creates a PutUserGreetingsDefaultsRequestEntityTooLarge with default headers values

func (*PutUserGreetingsDefaultsRequestEntityTooLarge) Error

func (*PutUserGreetingsDefaultsRequestEntityTooLarge) GetPayload

func (*PutUserGreetingsDefaultsRequestEntityTooLarge) IsClientError

IsClientError returns true when this put user greetings defaults request entity too large response has a 4xx status code

func (*PutUserGreetingsDefaultsRequestEntityTooLarge) IsCode

IsCode returns true when this put user greetings defaults request entity too large response a status code equal to that given

func (*PutUserGreetingsDefaultsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this put user greetings defaults request entity too large response has a 3xx status code

func (*PutUserGreetingsDefaultsRequestEntityTooLarge) IsServerError

IsServerError returns true when this put user greetings defaults request entity too large response has a 5xx status code

func (*PutUserGreetingsDefaultsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this put user greetings defaults request entity too large response has a 2xx status code

func (*PutUserGreetingsDefaultsRequestEntityTooLarge) String

type PutUserGreetingsDefaultsRequestTimeout

type PutUserGreetingsDefaultsRequestTimeout struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPutUserGreetingsDefaultsRequestTimeout

func NewPutUserGreetingsDefaultsRequestTimeout() *PutUserGreetingsDefaultsRequestTimeout

NewPutUserGreetingsDefaultsRequestTimeout creates a PutUserGreetingsDefaultsRequestTimeout with default headers values

func (*PutUserGreetingsDefaultsRequestTimeout) Error

func (*PutUserGreetingsDefaultsRequestTimeout) GetPayload

func (*PutUserGreetingsDefaultsRequestTimeout) IsClientError

func (o *PutUserGreetingsDefaultsRequestTimeout) IsClientError() bool

IsClientError returns true when this put user greetings defaults request timeout response has a 4xx status code

func (*PutUserGreetingsDefaultsRequestTimeout) IsCode

IsCode returns true when this put user greetings defaults request timeout response a status code equal to that given

func (*PutUserGreetingsDefaultsRequestTimeout) IsRedirect

IsRedirect returns true when this put user greetings defaults request timeout response has a 3xx status code

func (*PutUserGreetingsDefaultsRequestTimeout) IsServerError

func (o *PutUserGreetingsDefaultsRequestTimeout) IsServerError() bool

IsServerError returns true when this put user greetings defaults request timeout response has a 5xx status code

func (*PutUserGreetingsDefaultsRequestTimeout) IsSuccess

IsSuccess returns true when this put user greetings defaults request timeout response has a 2xx status code

func (*PutUserGreetingsDefaultsRequestTimeout) String

type PutUserGreetingsDefaultsServiceUnavailable

type PutUserGreetingsDefaultsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPutUserGreetingsDefaultsServiceUnavailable

func NewPutUserGreetingsDefaultsServiceUnavailable() *PutUserGreetingsDefaultsServiceUnavailable

NewPutUserGreetingsDefaultsServiceUnavailable creates a PutUserGreetingsDefaultsServiceUnavailable with default headers values

func (*PutUserGreetingsDefaultsServiceUnavailable) Error

func (*PutUserGreetingsDefaultsServiceUnavailable) GetPayload

func (*PutUserGreetingsDefaultsServiceUnavailable) IsClientError

IsClientError returns true when this put user greetings defaults service unavailable response has a 4xx status code

func (*PutUserGreetingsDefaultsServiceUnavailable) IsCode

IsCode returns true when this put user greetings defaults service unavailable response a status code equal to that given

func (*PutUserGreetingsDefaultsServiceUnavailable) IsRedirect

IsRedirect returns true when this put user greetings defaults service unavailable response has a 3xx status code

func (*PutUserGreetingsDefaultsServiceUnavailable) IsServerError

IsServerError returns true when this put user greetings defaults service unavailable response has a 5xx status code

func (*PutUserGreetingsDefaultsServiceUnavailable) IsSuccess

IsSuccess returns true when this put user greetings defaults service unavailable response has a 2xx status code

func (*PutUserGreetingsDefaultsServiceUnavailable) String

type PutUserGreetingsDefaultsTooManyRequests

type PutUserGreetingsDefaultsTooManyRequests struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPutUserGreetingsDefaultsTooManyRequests

func NewPutUserGreetingsDefaultsTooManyRequests() *PutUserGreetingsDefaultsTooManyRequests

NewPutUserGreetingsDefaultsTooManyRequests creates a PutUserGreetingsDefaultsTooManyRequests with default headers values

func (*PutUserGreetingsDefaultsTooManyRequests) Error

func (*PutUserGreetingsDefaultsTooManyRequests) GetPayload

func (*PutUserGreetingsDefaultsTooManyRequests) IsClientError

func (o *PutUserGreetingsDefaultsTooManyRequests) IsClientError() bool

IsClientError returns true when this put user greetings defaults too many requests response has a 4xx status code

func (*PutUserGreetingsDefaultsTooManyRequests) IsCode

IsCode returns true when this put user greetings defaults too many requests response a status code equal to that given

func (*PutUserGreetingsDefaultsTooManyRequests) IsRedirect

IsRedirect returns true when this put user greetings defaults too many requests response has a 3xx status code

func (*PutUserGreetingsDefaultsTooManyRequests) IsServerError

func (o *PutUserGreetingsDefaultsTooManyRequests) IsServerError() bool

IsServerError returns true when this put user greetings defaults too many requests response has a 5xx status code

func (*PutUserGreetingsDefaultsTooManyRequests) IsSuccess

IsSuccess returns true when this put user greetings defaults too many requests response has a 2xx status code

func (*PutUserGreetingsDefaultsTooManyRequests) String

type PutUserGreetingsDefaultsUnauthorized

type PutUserGreetingsDefaultsUnauthorized struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsUnauthorized describes a response with status code 401, with default header values.

No authentication bearer token specified in authorization header.

func NewPutUserGreetingsDefaultsUnauthorized

func NewPutUserGreetingsDefaultsUnauthorized() *PutUserGreetingsDefaultsUnauthorized

NewPutUserGreetingsDefaultsUnauthorized creates a PutUserGreetingsDefaultsUnauthorized with default headers values

func (*PutUserGreetingsDefaultsUnauthorized) Error

func (*PutUserGreetingsDefaultsUnauthorized) GetPayload

func (*PutUserGreetingsDefaultsUnauthorized) IsClientError

func (o *PutUserGreetingsDefaultsUnauthorized) IsClientError() bool

IsClientError returns true when this put user greetings defaults unauthorized response has a 4xx status code

func (*PutUserGreetingsDefaultsUnauthorized) IsCode

IsCode returns true when this put user greetings defaults unauthorized response a status code equal to that given

func (*PutUserGreetingsDefaultsUnauthorized) IsRedirect

IsRedirect returns true when this put user greetings defaults unauthorized response has a 3xx status code

func (*PutUserGreetingsDefaultsUnauthorized) IsServerError

func (o *PutUserGreetingsDefaultsUnauthorized) IsServerError() bool

IsServerError returns true when this put user greetings defaults unauthorized response has a 5xx status code

func (*PutUserGreetingsDefaultsUnauthorized) IsSuccess

IsSuccess returns true when this put user greetings defaults unauthorized response has a 2xx status code

func (*PutUserGreetingsDefaultsUnauthorized) String

type PutUserGreetingsDefaultsUnsupportedMediaType

type PutUserGreetingsDefaultsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PutUserGreetingsDefaultsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPutUserGreetingsDefaultsUnsupportedMediaType

func NewPutUserGreetingsDefaultsUnsupportedMediaType() *PutUserGreetingsDefaultsUnsupportedMediaType

NewPutUserGreetingsDefaultsUnsupportedMediaType creates a PutUserGreetingsDefaultsUnsupportedMediaType with default headers values

func (*PutUserGreetingsDefaultsUnsupportedMediaType) Error

func (*PutUserGreetingsDefaultsUnsupportedMediaType) GetPayload

func (*PutUserGreetingsDefaultsUnsupportedMediaType) IsClientError

IsClientError returns true when this put user greetings defaults unsupported media type response has a 4xx status code

func (*PutUserGreetingsDefaultsUnsupportedMediaType) IsCode

IsCode returns true when this put user greetings defaults unsupported media type response a status code equal to that given

func (*PutUserGreetingsDefaultsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this put user greetings defaults unsupported media type response has a 3xx status code

func (*PutUserGreetingsDefaultsUnsupportedMediaType) IsServerError

IsServerError returns true when this put user greetings defaults unsupported media type response has a 5xx status code

func (*PutUserGreetingsDefaultsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this put user greetings defaults unsupported media type response has a 2xx status code

func (*PutUserGreetingsDefaultsUnsupportedMediaType) String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL