notifications

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 {
	/*
	   DeleteNotificationsChannelSubscriptions removes all subscriptions
	*/
	DeleteNotificationsChannelSubscriptions(ctx context.Context, params *DeleteNotificationsChannelSubscriptionsParams) error
	/*
	   GetNotificationsAvailabletopics gets available notification topics
	*/
	GetNotificationsAvailabletopics(ctx context.Context, params *GetNotificationsAvailabletopicsParams) (*GetNotificationsAvailabletopicsOK, error)
	/*
	   GetNotificationsChannelSubscriptions thes list of all subscriptions for this channel
	*/
	GetNotificationsChannelSubscriptions(ctx context.Context, params *GetNotificationsChannelSubscriptionsParams) (*GetNotificationsChannelSubscriptionsOK, error)
	/*
	   GetNotificationsChannels thes list of existing channels
	*/
	GetNotificationsChannels(ctx context.Context, params *GetNotificationsChannelsParams) (*GetNotificationsChannelsOK, error)
	/*
	   HeadNotificationsChannel verifies a channel still exists and is valid
	   Returns a 200 OK if channel exists, and a 404 Not Found if it doesn't
	*/
	HeadNotificationsChannel(ctx context.Context, params *HeadNotificationsChannelParams) error
	/*
	   PostNotificationsChannelSubscriptions adds a list of subscriptions to the existing list of subscriptions
	*/
	PostNotificationsChannelSubscriptions(ctx context.Context, params *PostNotificationsChannelSubscriptionsParams) (*PostNotificationsChannelSubscriptionsOK, error)
	/*
	   PostNotificationsChannels creates a new channel
	   There is a limit of 20 channels per user/app combination. Creating a 21st channel will remove the channel with oldest last used date. Channels without an active connection will be removed first.
	*/
	PostNotificationsChannels(ctx context.Context, params *PostNotificationsChannelsParams) (*PostNotificationsChannelsOK, error)
	/*
	   PutNotificationsChannelSubscriptions replaces the current list of subscriptions with a new list
	*/
	PutNotificationsChannelSubscriptions(ctx context.Context, params *PutNotificationsChannelSubscriptionsParams) (*PutNotificationsChannelSubscriptionsOK, error)
}

API is the interface of the notifications client

type Client

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

Client for notifications API

func New

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

New creates a new notifications API client.

func (*Client) DeleteNotificationsChannelSubscriptions

func (a *Client) DeleteNotificationsChannelSubscriptions(ctx context.Context, params *DeleteNotificationsChannelSubscriptionsParams) error

DeleteNotificationsChannelSubscriptions removes all subscriptions

func (*Client) GetNotificationsAvailabletopics

func (a *Client) GetNotificationsAvailabletopics(ctx context.Context, params *GetNotificationsAvailabletopicsParams) (*GetNotificationsAvailabletopicsOK, error)

GetNotificationsAvailabletopics gets available notification topics

func (*Client) GetNotificationsChannelSubscriptions

func (a *Client) GetNotificationsChannelSubscriptions(ctx context.Context, params *GetNotificationsChannelSubscriptionsParams) (*GetNotificationsChannelSubscriptionsOK, error)

GetNotificationsChannelSubscriptions thes list of all subscriptions for this channel

func (*Client) GetNotificationsChannels

func (a *Client) GetNotificationsChannels(ctx context.Context, params *GetNotificationsChannelsParams) (*GetNotificationsChannelsOK, error)

GetNotificationsChannels thes list of existing channels

func (*Client) HeadNotificationsChannel

func (a *Client) HeadNotificationsChannel(ctx context.Context, params *HeadNotificationsChannelParams) error

HeadNotificationsChannel verifies a channel still exists and is valid

Returns a 200 OK if channel exists, and a 404 Not Found if it doesn't

func (*Client) PostNotificationsChannelSubscriptions

func (a *Client) PostNotificationsChannelSubscriptions(ctx context.Context, params *PostNotificationsChannelSubscriptionsParams) (*PostNotificationsChannelSubscriptionsOK, error)

PostNotificationsChannelSubscriptions adds a list of subscriptions to the existing list of subscriptions

func (*Client) PostNotificationsChannels

func (a *Client) PostNotificationsChannels(ctx context.Context, params *PostNotificationsChannelsParams) (*PostNotificationsChannelsOK, error)

PostNotificationsChannels creates a new channel

There is a limit of 20 channels per user/app combination. Creating a 21st channel will remove the channel with oldest last used date. Channels without an active connection will be removed first.

func (*Client) PutNotificationsChannelSubscriptions

func (a *Client) PutNotificationsChannelSubscriptions(ctx context.Context, params *PutNotificationsChannelSubscriptionsParams) (*PutNotificationsChannelSubscriptionsOK, error)

PutNotificationsChannelSubscriptions replaces the current list of subscriptions with a new list

type DeleteNotificationsChannelSubscriptionsBadRequest

type DeleteNotificationsChannelSubscriptionsBadRequest struct {
	Payload *models.ErrorBody
}

DeleteNotificationsChannelSubscriptionsBadRequest 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 NewDeleteNotificationsChannelSubscriptionsBadRequest

func NewDeleteNotificationsChannelSubscriptionsBadRequest() *DeleteNotificationsChannelSubscriptionsBadRequest

NewDeleteNotificationsChannelSubscriptionsBadRequest creates a DeleteNotificationsChannelSubscriptionsBadRequest with default headers values

func (*DeleteNotificationsChannelSubscriptionsBadRequest) Error

func (*DeleteNotificationsChannelSubscriptionsBadRequest) GetPayload

func (*DeleteNotificationsChannelSubscriptionsBadRequest) IsClientError

IsClientError returns true when this delete notifications channel subscriptions bad request response has a 4xx status code

func (*DeleteNotificationsChannelSubscriptionsBadRequest) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsBadRequest) IsRedirect

IsRedirect returns true when this delete notifications channel subscriptions bad request response has a 3xx status code

func (*DeleteNotificationsChannelSubscriptionsBadRequest) IsServerError

IsServerError returns true when this delete notifications channel subscriptions bad request response has a 5xx status code

func (*DeleteNotificationsChannelSubscriptionsBadRequest) IsSuccess

IsSuccess returns true when this delete notifications channel subscriptions bad request response has a 2xx status code

func (*DeleteNotificationsChannelSubscriptionsBadRequest) String

type DeleteNotificationsChannelSubscriptionsDefault

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

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

successful operation

func NewDeleteNotificationsChannelSubscriptionsDefault

func NewDeleteNotificationsChannelSubscriptionsDefault(code int) *DeleteNotificationsChannelSubscriptionsDefault

NewDeleteNotificationsChannelSubscriptionsDefault creates a DeleteNotificationsChannelSubscriptionsDefault with default headers values

func (*DeleteNotificationsChannelSubscriptionsDefault) Code

Code gets the status code for the delete notifications channel subscriptions default response

func (*DeleteNotificationsChannelSubscriptionsDefault) Error

func (*DeleteNotificationsChannelSubscriptionsDefault) IsClientError

IsClientError returns true when this delete notifications channel subscriptions default response has a 4xx status code

func (*DeleteNotificationsChannelSubscriptionsDefault) IsCode

IsCode returns true when this delete notifications channel subscriptions default response a status code equal to that given

func (*DeleteNotificationsChannelSubscriptionsDefault) IsRedirect

IsRedirect returns true when this delete notifications channel subscriptions default response has a 3xx status code

func (*DeleteNotificationsChannelSubscriptionsDefault) IsServerError

IsServerError returns true when this delete notifications channel subscriptions default response has a 5xx status code

func (*DeleteNotificationsChannelSubscriptionsDefault) IsSuccess

IsSuccess returns true when this delete notifications channel subscriptions default response has a 2xx status code

func (*DeleteNotificationsChannelSubscriptionsDefault) String

type DeleteNotificationsChannelSubscriptionsForbidden

type DeleteNotificationsChannelSubscriptionsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewDeleteNotificationsChannelSubscriptionsForbidden

func NewDeleteNotificationsChannelSubscriptionsForbidden() *DeleteNotificationsChannelSubscriptionsForbidden

NewDeleteNotificationsChannelSubscriptionsForbidden creates a DeleteNotificationsChannelSubscriptionsForbidden with default headers values

func (*DeleteNotificationsChannelSubscriptionsForbidden) Error

func (*DeleteNotificationsChannelSubscriptionsForbidden) GetPayload

func (*DeleteNotificationsChannelSubscriptionsForbidden) IsClientError

IsClientError returns true when this delete notifications channel subscriptions forbidden response has a 4xx status code

func (*DeleteNotificationsChannelSubscriptionsForbidden) IsCode

IsCode returns true when this delete notifications channel subscriptions forbidden response a status code equal to that given

func (*DeleteNotificationsChannelSubscriptionsForbidden) IsRedirect

IsRedirect returns true when this delete notifications channel subscriptions forbidden response has a 3xx status code

func (*DeleteNotificationsChannelSubscriptionsForbidden) IsServerError

IsServerError returns true when this delete notifications channel subscriptions forbidden response has a 5xx status code

func (*DeleteNotificationsChannelSubscriptionsForbidden) IsSuccess

IsSuccess returns true when this delete notifications channel subscriptions forbidden response has a 2xx status code

func (*DeleteNotificationsChannelSubscriptionsForbidden) String

type DeleteNotificationsChannelSubscriptionsGatewayTimeout

type DeleteNotificationsChannelSubscriptionsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewDeleteNotificationsChannelSubscriptionsGatewayTimeout

func NewDeleteNotificationsChannelSubscriptionsGatewayTimeout() *DeleteNotificationsChannelSubscriptionsGatewayTimeout

NewDeleteNotificationsChannelSubscriptionsGatewayTimeout creates a DeleteNotificationsChannelSubscriptionsGatewayTimeout with default headers values

func (*DeleteNotificationsChannelSubscriptionsGatewayTimeout) Error

func (*DeleteNotificationsChannelSubscriptionsGatewayTimeout) GetPayload

func (*DeleteNotificationsChannelSubscriptionsGatewayTimeout) IsClientError

IsClientError returns true when this delete notifications channel subscriptions gateway timeout response has a 4xx status code

func (*DeleteNotificationsChannelSubscriptionsGatewayTimeout) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsGatewayTimeout) IsRedirect

IsRedirect returns true when this delete notifications channel subscriptions gateway timeout response has a 3xx status code

func (*DeleteNotificationsChannelSubscriptionsGatewayTimeout) IsServerError

IsServerError returns true when this delete notifications channel subscriptions gateway timeout response has a 5xx status code

func (*DeleteNotificationsChannelSubscriptionsGatewayTimeout) IsSuccess

IsSuccess returns true when this delete notifications channel subscriptions gateway timeout response has a 2xx status code

func (*DeleteNotificationsChannelSubscriptionsGatewayTimeout) String

type DeleteNotificationsChannelSubscriptionsInternalServerError

type DeleteNotificationsChannelSubscriptionsInternalServerError struct {
	Payload *models.ErrorBody
}

DeleteNotificationsChannelSubscriptionsInternalServerError 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 NewDeleteNotificationsChannelSubscriptionsInternalServerError

func NewDeleteNotificationsChannelSubscriptionsInternalServerError() *DeleteNotificationsChannelSubscriptionsInternalServerError

NewDeleteNotificationsChannelSubscriptionsInternalServerError creates a DeleteNotificationsChannelSubscriptionsInternalServerError with default headers values

func (*DeleteNotificationsChannelSubscriptionsInternalServerError) Error

func (*DeleteNotificationsChannelSubscriptionsInternalServerError) GetPayload

func (*DeleteNotificationsChannelSubscriptionsInternalServerError) IsClientError

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

func (*DeleteNotificationsChannelSubscriptionsInternalServerError) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsInternalServerError) IsRedirect

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

func (*DeleteNotificationsChannelSubscriptionsInternalServerError) IsServerError

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

func (*DeleteNotificationsChannelSubscriptionsInternalServerError) IsSuccess

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

func (*DeleteNotificationsChannelSubscriptionsInternalServerError) String

type DeleteNotificationsChannelSubscriptionsNotFound

type DeleteNotificationsChannelSubscriptionsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewDeleteNotificationsChannelSubscriptionsNotFound

func NewDeleteNotificationsChannelSubscriptionsNotFound() *DeleteNotificationsChannelSubscriptionsNotFound

NewDeleteNotificationsChannelSubscriptionsNotFound creates a DeleteNotificationsChannelSubscriptionsNotFound with default headers values

func (*DeleteNotificationsChannelSubscriptionsNotFound) Error

func (*DeleteNotificationsChannelSubscriptionsNotFound) GetPayload

func (*DeleteNotificationsChannelSubscriptionsNotFound) IsClientError

IsClientError returns true when this delete notifications channel subscriptions not found response has a 4xx status code

func (*DeleteNotificationsChannelSubscriptionsNotFound) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsNotFound) IsRedirect

IsRedirect returns true when this delete notifications channel subscriptions not found response has a 3xx status code

func (*DeleteNotificationsChannelSubscriptionsNotFound) IsServerError

IsServerError returns true when this delete notifications channel subscriptions not found response has a 5xx status code

func (*DeleteNotificationsChannelSubscriptionsNotFound) IsSuccess

IsSuccess returns true when this delete notifications channel subscriptions not found response has a 2xx status code

func (*DeleteNotificationsChannelSubscriptionsNotFound) String

type DeleteNotificationsChannelSubscriptionsParams

type DeleteNotificationsChannelSubscriptionsParams struct {

	/* ChannelID.

	   Channel ID
	*/
	ChannelID string

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

DeleteNotificationsChannelSubscriptionsParams contains all the parameters to send to the API endpoint

for the delete notifications channel subscriptions operation.

Typically these are written to a http.Request.

func NewDeleteNotificationsChannelSubscriptionsParams

func NewDeleteNotificationsChannelSubscriptionsParams() *DeleteNotificationsChannelSubscriptionsParams

NewDeleteNotificationsChannelSubscriptionsParams creates a new DeleteNotificationsChannelSubscriptionsParams 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 NewDeleteNotificationsChannelSubscriptionsParamsWithContext

func NewDeleteNotificationsChannelSubscriptionsParamsWithContext(ctx context.Context) *DeleteNotificationsChannelSubscriptionsParams

NewDeleteNotificationsChannelSubscriptionsParamsWithContext creates a new DeleteNotificationsChannelSubscriptionsParams object with the ability to set a context for a request.

func NewDeleteNotificationsChannelSubscriptionsParamsWithHTTPClient

func NewDeleteNotificationsChannelSubscriptionsParamsWithHTTPClient(client *http.Client) *DeleteNotificationsChannelSubscriptionsParams

NewDeleteNotificationsChannelSubscriptionsParamsWithHTTPClient creates a new DeleteNotificationsChannelSubscriptionsParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteNotificationsChannelSubscriptionsParamsWithTimeout

func NewDeleteNotificationsChannelSubscriptionsParamsWithTimeout(timeout time.Duration) *DeleteNotificationsChannelSubscriptionsParams

NewDeleteNotificationsChannelSubscriptionsParamsWithTimeout creates a new DeleteNotificationsChannelSubscriptionsParams object with the ability to set a timeout on a request.

func (*DeleteNotificationsChannelSubscriptionsParams) SetChannelID

func (o *DeleteNotificationsChannelSubscriptionsParams) SetChannelID(channelID string)

SetChannelID adds the channelId to the delete notifications channel subscriptions params

func (*DeleteNotificationsChannelSubscriptionsParams) SetContext

SetContext adds the context to the delete notifications channel subscriptions params

func (*DeleteNotificationsChannelSubscriptionsParams) SetDefaults

SetDefaults hydrates default values in the delete notifications channel subscriptions params (not the query body).

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

func (*DeleteNotificationsChannelSubscriptionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete notifications channel subscriptions params

func (*DeleteNotificationsChannelSubscriptionsParams) SetTimeout

SetTimeout adds the timeout to the delete notifications channel subscriptions params

func (*DeleteNotificationsChannelSubscriptionsParams) WithChannelID

WithChannelID adds the channelID to the delete notifications channel subscriptions params

func (*DeleteNotificationsChannelSubscriptionsParams) WithContext

WithContext adds the context to the delete notifications channel subscriptions params

func (*DeleteNotificationsChannelSubscriptionsParams) WithDefaults

WithDefaults hydrates default values in the delete notifications channel subscriptions params (not the query body).

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

func (*DeleteNotificationsChannelSubscriptionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete notifications channel subscriptions params

func (*DeleteNotificationsChannelSubscriptionsParams) WithTimeout

WithTimeout adds the timeout to the delete notifications channel subscriptions params

func (*DeleteNotificationsChannelSubscriptionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteNotificationsChannelSubscriptionsReader

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

DeleteNotificationsChannelSubscriptionsReader is a Reader for the DeleteNotificationsChannelSubscriptions structure.

func (*DeleteNotificationsChannelSubscriptionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge

type DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteNotificationsChannelSubscriptionsRequestEntityTooLarge

func NewDeleteNotificationsChannelSubscriptionsRequestEntityTooLarge() *DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge

NewDeleteNotificationsChannelSubscriptionsRequestEntityTooLarge creates a DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge with default headers values

func (*DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge) Error

func (*DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge) GetPayload

func (*DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge) IsClientError

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

func (*DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge) IsRedirect

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

func (*DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge) IsServerError

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

func (*DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge) IsSuccess

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

func (*DeleteNotificationsChannelSubscriptionsRequestEntityTooLarge) String

type DeleteNotificationsChannelSubscriptionsRequestTimeout

type DeleteNotificationsChannelSubscriptionsRequestTimeout struct {
	Payload *models.ErrorBody
}

DeleteNotificationsChannelSubscriptionsRequestTimeout 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 NewDeleteNotificationsChannelSubscriptionsRequestTimeout

func NewDeleteNotificationsChannelSubscriptionsRequestTimeout() *DeleteNotificationsChannelSubscriptionsRequestTimeout

NewDeleteNotificationsChannelSubscriptionsRequestTimeout creates a DeleteNotificationsChannelSubscriptionsRequestTimeout with default headers values

func (*DeleteNotificationsChannelSubscriptionsRequestTimeout) Error

func (*DeleteNotificationsChannelSubscriptionsRequestTimeout) GetPayload

func (*DeleteNotificationsChannelSubscriptionsRequestTimeout) IsClientError

IsClientError returns true when this delete notifications channel subscriptions request timeout response has a 4xx status code

func (*DeleteNotificationsChannelSubscriptionsRequestTimeout) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsRequestTimeout) IsRedirect

IsRedirect returns true when this delete notifications channel subscriptions request timeout response has a 3xx status code

func (*DeleteNotificationsChannelSubscriptionsRequestTimeout) IsServerError

IsServerError returns true when this delete notifications channel subscriptions request timeout response has a 5xx status code

func (*DeleteNotificationsChannelSubscriptionsRequestTimeout) IsSuccess

IsSuccess returns true when this delete notifications channel subscriptions request timeout response has a 2xx status code

func (*DeleteNotificationsChannelSubscriptionsRequestTimeout) String

type DeleteNotificationsChannelSubscriptionsServiceUnavailable

type DeleteNotificationsChannelSubscriptionsServiceUnavailable struct {
	Payload *models.ErrorBody
}

DeleteNotificationsChannelSubscriptionsServiceUnavailable 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 NewDeleteNotificationsChannelSubscriptionsServiceUnavailable

func NewDeleteNotificationsChannelSubscriptionsServiceUnavailable() *DeleteNotificationsChannelSubscriptionsServiceUnavailable

NewDeleteNotificationsChannelSubscriptionsServiceUnavailable creates a DeleteNotificationsChannelSubscriptionsServiceUnavailable with default headers values

func (*DeleteNotificationsChannelSubscriptionsServiceUnavailable) Error

func (*DeleteNotificationsChannelSubscriptionsServiceUnavailable) GetPayload

func (*DeleteNotificationsChannelSubscriptionsServiceUnavailable) IsClientError

IsClientError returns true when this delete notifications channel subscriptions service unavailable response has a 4xx status code

func (*DeleteNotificationsChannelSubscriptionsServiceUnavailable) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsServiceUnavailable) IsRedirect

IsRedirect returns true when this delete notifications channel subscriptions service unavailable response has a 3xx status code

func (*DeleteNotificationsChannelSubscriptionsServiceUnavailable) IsServerError

IsServerError returns true when this delete notifications channel subscriptions service unavailable response has a 5xx status code

func (*DeleteNotificationsChannelSubscriptionsServiceUnavailable) IsSuccess

IsSuccess returns true when this delete notifications channel subscriptions service unavailable response has a 2xx status code

func (*DeleteNotificationsChannelSubscriptionsServiceUnavailable) String

type DeleteNotificationsChannelSubscriptionsTooManyRequests

type DeleteNotificationsChannelSubscriptionsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteNotificationsChannelSubscriptionsTooManyRequests

func NewDeleteNotificationsChannelSubscriptionsTooManyRequests() *DeleteNotificationsChannelSubscriptionsTooManyRequests

NewDeleteNotificationsChannelSubscriptionsTooManyRequests creates a DeleteNotificationsChannelSubscriptionsTooManyRequests with default headers values

func (*DeleteNotificationsChannelSubscriptionsTooManyRequests) Error

func (*DeleteNotificationsChannelSubscriptionsTooManyRequests) GetPayload

func (*DeleteNotificationsChannelSubscriptionsTooManyRequests) IsClientError

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

func (*DeleteNotificationsChannelSubscriptionsTooManyRequests) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsTooManyRequests) IsRedirect

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

func (*DeleteNotificationsChannelSubscriptionsTooManyRequests) IsServerError

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

func (*DeleteNotificationsChannelSubscriptionsTooManyRequests) IsSuccess

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

func (*DeleteNotificationsChannelSubscriptionsTooManyRequests) String

type DeleteNotificationsChannelSubscriptionsUnauthorized

type DeleteNotificationsChannelSubscriptionsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewDeleteNotificationsChannelSubscriptionsUnauthorized

func NewDeleteNotificationsChannelSubscriptionsUnauthorized() *DeleteNotificationsChannelSubscriptionsUnauthorized

NewDeleteNotificationsChannelSubscriptionsUnauthorized creates a DeleteNotificationsChannelSubscriptionsUnauthorized with default headers values

func (*DeleteNotificationsChannelSubscriptionsUnauthorized) Error

func (*DeleteNotificationsChannelSubscriptionsUnauthorized) GetPayload

func (*DeleteNotificationsChannelSubscriptionsUnauthorized) IsClientError

IsClientError returns true when this delete notifications channel subscriptions unauthorized response has a 4xx status code

func (*DeleteNotificationsChannelSubscriptionsUnauthorized) IsCode

IsCode returns true when this delete notifications channel subscriptions unauthorized response a status code equal to that given

func (*DeleteNotificationsChannelSubscriptionsUnauthorized) IsRedirect

IsRedirect returns true when this delete notifications channel subscriptions unauthorized response has a 3xx status code

func (*DeleteNotificationsChannelSubscriptionsUnauthorized) IsServerError

IsServerError returns true when this delete notifications channel subscriptions unauthorized response has a 5xx status code

func (*DeleteNotificationsChannelSubscriptionsUnauthorized) IsSuccess

IsSuccess returns true when this delete notifications channel subscriptions unauthorized response has a 2xx status code

func (*DeleteNotificationsChannelSubscriptionsUnauthorized) String

type DeleteNotificationsChannelSubscriptionsUnsupportedMediaType

type DeleteNotificationsChannelSubscriptionsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

DeleteNotificationsChannelSubscriptionsUnsupportedMediaType 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 NewDeleteNotificationsChannelSubscriptionsUnsupportedMediaType

func NewDeleteNotificationsChannelSubscriptionsUnsupportedMediaType() *DeleteNotificationsChannelSubscriptionsUnsupportedMediaType

NewDeleteNotificationsChannelSubscriptionsUnsupportedMediaType creates a DeleteNotificationsChannelSubscriptionsUnsupportedMediaType with default headers values

func (*DeleteNotificationsChannelSubscriptionsUnsupportedMediaType) Error

func (*DeleteNotificationsChannelSubscriptionsUnsupportedMediaType) GetPayload

func (*DeleteNotificationsChannelSubscriptionsUnsupportedMediaType) IsClientError

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

func (*DeleteNotificationsChannelSubscriptionsUnsupportedMediaType) IsCode

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

func (*DeleteNotificationsChannelSubscriptionsUnsupportedMediaType) IsRedirect

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

func (*DeleteNotificationsChannelSubscriptionsUnsupportedMediaType) IsServerError

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

func (*DeleteNotificationsChannelSubscriptionsUnsupportedMediaType) IsSuccess

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

func (*DeleteNotificationsChannelSubscriptionsUnsupportedMediaType) String

type GetNotificationsAvailabletopicsBadRequest

type GetNotificationsAvailabletopicsBadRequest struct {
	Payload *models.ErrorBody
}

GetNotificationsAvailabletopicsBadRequest 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 NewGetNotificationsAvailabletopicsBadRequest

func NewGetNotificationsAvailabletopicsBadRequest() *GetNotificationsAvailabletopicsBadRequest

NewGetNotificationsAvailabletopicsBadRequest creates a GetNotificationsAvailabletopicsBadRequest with default headers values

func (*GetNotificationsAvailabletopicsBadRequest) Error

func (*GetNotificationsAvailabletopicsBadRequest) GetPayload

func (*GetNotificationsAvailabletopicsBadRequest) IsClientError

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

func (*GetNotificationsAvailabletopicsBadRequest) IsCode

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

func (*GetNotificationsAvailabletopicsBadRequest) IsRedirect

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

func (*GetNotificationsAvailabletopicsBadRequest) IsServerError

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

func (*GetNotificationsAvailabletopicsBadRequest) IsSuccess

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

func (*GetNotificationsAvailabletopicsBadRequest) String

type GetNotificationsAvailabletopicsForbidden

type GetNotificationsAvailabletopicsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetNotificationsAvailabletopicsForbidden

func NewGetNotificationsAvailabletopicsForbidden() *GetNotificationsAvailabletopicsForbidden

NewGetNotificationsAvailabletopicsForbidden creates a GetNotificationsAvailabletopicsForbidden with default headers values

func (*GetNotificationsAvailabletopicsForbidden) Error

func (*GetNotificationsAvailabletopicsForbidden) GetPayload

func (*GetNotificationsAvailabletopicsForbidden) IsClientError

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

func (*GetNotificationsAvailabletopicsForbidden) IsCode

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

func (*GetNotificationsAvailabletopicsForbidden) IsRedirect

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

func (*GetNotificationsAvailabletopicsForbidden) IsServerError

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

func (*GetNotificationsAvailabletopicsForbidden) IsSuccess

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

func (*GetNotificationsAvailabletopicsForbidden) String

type GetNotificationsAvailabletopicsGatewayTimeout

type GetNotificationsAvailabletopicsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetNotificationsAvailabletopicsGatewayTimeout

func NewGetNotificationsAvailabletopicsGatewayTimeout() *GetNotificationsAvailabletopicsGatewayTimeout

NewGetNotificationsAvailabletopicsGatewayTimeout creates a GetNotificationsAvailabletopicsGatewayTimeout with default headers values

func (*GetNotificationsAvailabletopicsGatewayTimeout) Error

func (*GetNotificationsAvailabletopicsGatewayTimeout) GetPayload

func (*GetNotificationsAvailabletopicsGatewayTimeout) IsClientError

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

func (*GetNotificationsAvailabletopicsGatewayTimeout) IsCode

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

func (*GetNotificationsAvailabletopicsGatewayTimeout) IsRedirect

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

func (*GetNotificationsAvailabletopicsGatewayTimeout) IsServerError

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

func (*GetNotificationsAvailabletopicsGatewayTimeout) IsSuccess

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

func (*GetNotificationsAvailabletopicsGatewayTimeout) String

type GetNotificationsAvailabletopicsInternalServerError

type GetNotificationsAvailabletopicsInternalServerError struct {
	Payload *models.ErrorBody
}

GetNotificationsAvailabletopicsInternalServerError 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 NewGetNotificationsAvailabletopicsInternalServerError

func NewGetNotificationsAvailabletopicsInternalServerError() *GetNotificationsAvailabletopicsInternalServerError

NewGetNotificationsAvailabletopicsInternalServerError creates a GetNotificationsAvailabletopicsInternalServerError with default headers values

func (*GetNotificationsAvailabletopicsInternalServerError) Error

func (*GetNotificationsAvailabletopicsInternalServerError) GetPayload

func (*GetNotificationsAvailabletopicsInternalServerError) IsClientError

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

func (*GetNotificationsAvailabletopicsInternalServerError) IsCode

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

func (*GetNotificationsAvailabletopicsInternalServerError) IsRedirect

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

func (*GetNotificationsAvailabletopicsInternalServerError) IsServerError

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

func (*GetNotificationsAvailabletopicsInternalServerError) IsSuccess

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

func (*GetNotificationsAvailabletopicsInternalServerError) String

type GetNotificationsAvailabletopicsNotFound

type GetNotificationsAvailabletopicsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetNotificationsAvailabletopicsNotFound

func NewGetNotificationsAvailabletopicsNotFound() *GetNotificationsAvailabletopicsNotFound

NewGetNotificationsAvailabletopicsNotFound creates a GetNotificationsAvailabletopicsNotFound with default headers values

func (*GetNotificationsAvailabletopicsNotFound) Error

func (*GetNotificationsAvailabletopicsNotFound) GetPayload

func (*GetNotificationsAvailabletopicsNotFound) IsClientError

func (o *GetNotificationsAvailabletopicsNotFound) IsClientError() bool

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

func (*GetNotificationsAvailabletopicsNotFound) IsCode

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

func (*GetNotificationsAvailabletopicsNotFound) IsRedirect

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

func (*GetNotificationsAvailabletopicsNotFound) IsServerError

func (o *GetNotificationsAvailabletopicsNotFound) IsServerError() bool

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

func (*GetNotificationsAvailabletopicsNotFound) IsSuccess

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

func (*GetNotificationsAvailabletopicsNotFound) String

type GetNotificationsAvailabletopicsOK

type GetNotificationsAvailabletopicsOK struct {
	Payload *models.AvailableTopicEntityListing
}

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

successful operation

func NewGetNotificationsAvailabletopicsOK

func NewGetNotificationsAvailabletopicsOK() *GetNotificationsAvailabletopicsOK

NewGetNotificationsAvailabletopicsOK creates a GetNotificationsAvailabletopicsOK with default headers values

func (*GetNotificationsAvailabletopicsOK) Error

func (*GetNotificationsAvailabletopicsOK) GetPayload

func (*GetNotificationsAvailabletopicsOK) IsClientError

func (o *GetNotificationsAvailabletopicsOK) IsClientError() bool

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

func (*GetNotificationsAvailabletopicsOK) IsCode

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

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

func (*GetNotificationsAvailabletopicsOK) IsRedirect

func (o *GetNotificationsAvailabletopicsOK) IsRedirect() bool

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

func (*GetNotificationsAvailabletopicsOK) IsServerError

func (o *GetNotificationsAvailabletopicsOK) IsServerError() bool

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

func (*GetNotificationsAvailabletopicsOK) IsSuccess

func (o *GetNotificationsAvailabletopicsOK) IsSuccess() bool

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

func (*GetNotificationsAvailabletopicsOK) String

type GetNotificationsAvailabletopicsParams

type GetNotificationsAvailabletopicsParams struct {

	/* Expand.

	   Which fields, if any, to expand
	*/
	Expand []string

	/* IncludePreview.

	   Whether or not to include Preview topics

	   Default: true
	*/
	IncludePreview *bool

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

GetNotificationsAvailabletopicsParams contains all the parameters to send to the API endpoint

for the get notifications availabletopics operation.

Typically these are written to a http.Request.

func NewGetNotificationsAvailabletopicsParams

func NewGetNotificationsAvailabletopicsParams() *GetNotificationsAvailabletopicsParams

NewGetNotificationsAvailabletopicsParams creates a new GetNotificationsAvailabletopicsParams 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 NewGetNotificationsAvailabletopicsParamsWithContext

func NewGetNotificationsAvailabletopicsParamsWithContext(ctx context.Context) *GetNotificationsAvailabletopicsParams

NewGetNotificationsAvailabletopicsParamsWithContext creates a new GetNotificationsAvailabletopicsParams object with the ability to set a context for a request.

func NewGetNotificationsAvailabletopicsParamsWithHTTPClient

func NewGetNotificationsAvailabletopicsParamsWithHTTPClient(client *http.Client) *GetNotificationsAvailabletopicsParams

NewGetNotificationsAvailabletopicsParamsWithHTTPClient creates a new GetNotificationsAvailabletopicsParams object with the ability to set a custom HTTPClient for a request.

func NewGetNotificationsAvailabletopicsParamsWithTimeout

func NewGetNotificationsAvailabletopicsParamsWithTimeout(timeout time.Duration) *GetNotificationsAvailabletopicsParams

NewGetNotificationsAvailabletopicsParamsWithTimeout creates a new GetNotificationsAvailabletopicsParams object with the ability to set a timeout on a request.

func (*GetNotificationsAvailabletopicsParams) SetContext

SetContext adds the context to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) SetDefaults

func (o *GetNotificationsAvailabletopicsParams) SetDefaults()

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

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

func (*GetNotificationsAvailabletopicsParams) SetExpand

func (o *GetNotificationsAvailabletopicsParams) SetExpand(expand []string)

SetExpand adds the expand to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) SetIncludePreview

func (o *GetNotificationsAvailabletopicsParams) SetIncludePreview(includePreview *bool)

SetIncludePreview adds the includePreview to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) SetTimeout

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

SetTimeout adds the timeout to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) WithContext

WithContext adds the context to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) WithDefaults

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

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

func (*GetNotificationsAvailabletopicsParams) WithExpand

WithExpand adds the expand to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) WithIncludePreview

WithIncludePreview adds the includePreview to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) WithTimeout

WithTimeout adds the timeout to the get notifications availabletopics params

func (*GetNotificationsAvailabletopicsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetNotificationsAvailabletopicsReader

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

GetNotificationsAvailabletopicsReader is a Reader for the GetNotificationsAvailabletopics structure.

func (*GetNotificationsAvailabletopicsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNotificationsAvailabletopicsRequestEntityTooLarge

type GetNotificationsAvailabletopicsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetNotificationsAvailabletopicsRequestEntityTooLarge

func NewGetNotificationsAvailabletopicsRequestEntityTooLarge() *GetNotificationsAvailabletopicsRequestEntityTooLarge

NewGetNotificationsAvailabletopicsRequestEntityTooLarge creates a GetNotificationsAvailabletopicsRequestEntityTooLarge with default headers values

func (*GetNotificationsAvailabletopicsRequestEntityTooLarge) Error

func (*GetNotificationsAvailabletopicsRequestEntityTooLarge) GetPayload

func (*GetNotificationsAvailabletopicsRequestEntityTooLarge) IsClientError

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

func (*GetNotificationsAvailabletopicsRequestEntityTooLarge) IsCode

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

func (*GetNotificationsAvailabletopicsRequestEntityTooLarge) IsRedirect

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

func (*GetNotificationsAvailabletopicsRequestEntityTooLarge) IsServerError

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

func (*GetNotificationsAvailabletopicsRequestEntityTooLarge) IsSuccess

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

func (*GetNotificationsAvailabletopicsRequestEntityTooLarge) String

type GetNotificationsAvailabletopicsRequestTimeout

type GetNotificationsAvailabletopicsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetNotificationsAvailabletopicsRequestTimeout 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 NewGetNotificationsAvailabletopicsRequestTimeout

func NewGetNotificationsAvailabletopicsRequestTimeout() *GetNotificationsAvailabletopicsRequestTimeout

NewGetNotificationsAvailabletopicsRequestTimeout creates a GetNotificationsAvailabletopicsRequestTimeout with default headers values

func (*GetNotificationsAvailabletopicsRequestTimeout) Error

func (*GetNotificationsAvailabletopicsRequestTimeout) GetPayload

func (*GetNotificationsAvailabletopicsRequestTimeout) IsClientError

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

func (*GetNotificationsAvailabletopicsRequestTimeout) IsCode

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

func (*GetNotificationsAvailabletopicsRequestTimeout) IsRedirect

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

func (*GetNotificationsAvailabletopicsRequestTimeout) IsServerError

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

func (*GetNotificationsAvailabletopicsRequestTimeout) IsSuccess

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

func (*GetNotificationsAvailabletopicsRequestTimeout) String

type GetNotificationsAvailabletopicsServiceUnavailable

type GetNotificationsAvailabletopicsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetNotificationsAvailabletopicsServiceUnavailable 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 NewGetNotificationsAvailabletopicsServiceUnavailable

func NewGetNotificationsAvailabletopicsServiceUnavailable() *GetNotificationsAvailabletopicsServiceUnavailable

NewGetNotificationsAvailabletopicsServiceUnavailable creates a GetNotificationsAvailabletopicsServiceUnavailable with default headers values

func (*GetNotificationsAvailabletopicsServiceUnavailable) Error

func (*GetNotificationsAvailabletopicsServiceUnavailable) GetPayload

func (*GetNotificationsAvailabletopicsServiceUnavailable) IsClientError

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

func (*GetNotificationsAvailabletopicsServiceUnavailable) IsCode

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

func (*GetNotificationsAvailabletopicsServiceUnavailable) IsRedirect

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

func (*GetNotificationsAvailabletopicsServiceUnavailable) IsServerError

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

func (*GetNotificationsAvailabletopicsServiceUnavailable) IsSuccess

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

func (*GetNotificationsAvailabletopicsServiceUnavailable) String

type GetNotificationsAvailabletopicsTooManyRequests

type GetNotificationsAvailabletopicsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetNotificationsAvailabletopicsTooManyRequests

func NewGetNotificationsAvailabletopicsTooManyRequests() *GetNotificationsAvailabletopicsTooManyRequests

NewGetNotificationsAvailabletopicsTooManyRequests creates a GetNotificationsAvailabletopicsTooManyRequests with default headers values

func (*GetNotificationsAvailabletopicsTooManyRequests) Error

func (*GetNotificationsAvailabletopicsTooManyRequests) GetPayload

func (*GetNotificationsAvailabletopicsTooManyRequests) IsClientError

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

func (*GetNotificationsAvailabletopicsTooManyRequests) IsCode

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

func (*GetNotificationsAvailabletopicsTooManyRequests) IsRedirect

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

func (*GetNotificationsAvailabletopicsTooManyRequests) IsServerError

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

func (*GetNotificationsAvailabletopicsTooManyRequests) IsSuccess

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

func (*GetNotificationsAvailabletopicsTooManyRequests) String

type GetNotificationsAvailabletopicsUnauthorized

type GetNotificationsAvailabletopicsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetNotificationsAvailabletopicsUnauthorized

func NewGetNotificationsAvailabletopicsUnauthorized() *GetNotificationsAvailabletopicsUnauthorized

NewGetNotificationsAvailabletopicsUnauthorized creates a GetNotificationsAvailabletopicsUnauthorized with default headers values

func (*GetNotificationsAvailabletopicsUnauthorized) Error

func (*GetNotificationsAvailabletopicsUnauthorized) GetPayload

func (*GetNotificationsAvailabletopicsUnauthorized) IsClientError

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

func (*GetNotificationsAvailabletopicsUnauthorized) IsCode

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

func (*GetNotificationsAvailabletopicsUnauthorized) IsRedirect

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

func (*GetNotificationsAvailabletopicsUnauthorized) IsServerError

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

func (*GetNotificationsAvailabletopicsUnauthorized) IsSuccess

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

func (*GetNotificationsAvailabletopicsUnauthorized) String

type GetNotificationsAvailabletopicsUnsupportedMediaType

type GetNotificationsAvailabletopicsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetNotificationsAvailabletopicsUnsupportedMediaType 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 NewGetNotificationsAvailabletopicsUnsupportedMediaType

func NewGetNotificationsAvailabletopicsUnsupportedMediaType() *GetNotificationsAvailabletopicsUnsupportedMediaType

NewGetNotificationsAvailabletopicsUnsupportedMediaType creates a GetNotificationsAvailabletopicsUnsupportedMediaType with default headers values

func (*GetNotificationsAvailabletopicsUnsupportedMediaType) Error

func (*GetNotificationsAvailabletopicsUnsupportedMediaType) GetPayload

func (*GetNotificationsAvailabletopicsUnsupportedMediaType) IsClientError

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

func (*GetNotificationsAvailabletopicsUnsupportedMediaType) IsCode

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

func (*GetNotificationsAvailabletopicsUnsupportedMediaType) IsRedirect

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

func (*GetNotificationsAvailabletopicsUnsupportedMediaType) IsServerError

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

func (*GetNotificationsAvailabletopicsUnsupportedMediaType) IsSuccess

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

func (*GetNotificationsAvailabletopicsUnsupportedMediaType) String

type GetNotificationsChannelSubscriptionsBadRequest

type GetNotificationsChannelSubscriptionsBadRequest struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelSubscriptionsBadRequest 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 NewGetNotificationsChannelSubscriptionsBadRequest

func NewGetNotificationsChannelSubscriptionsBadRequest() *GetNotificationsChannelSubscriptionsBadRequest

NewGetNotificationsChannelSubscriptionsBadRequest creates a GetNotificationsChannelSubscriptionsBadRequest with default headers values

func (*GetNotificationsChannelSubscriptionsBadRequest) Error

func (*GetNotificationsChannelSubscriptionsBadRequest) GetPayload

func (*GetNotificationsChannelSubscriptionsBadRequest) IsClientError

IsClientError returns true when this get notifications channel subscriptions bad request response has a 4xx status code

func (*GetNotificationsChannelSubscriptionsBadRequest) IsCode

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

func (*GetNotificationsChannelSubscriptionsBadRequest) IsRedirect

IsRedirect returns true when this get notifications channel subscriptions bad request response has a 3xx status code

func (*GetNotificationsChannelSubscriptionsBadRequest) IsServerError

IsServerError returns true when this get notifications channel subscriptions bad request response has a 5xx status code

func (*GetNotificationsChannelSubscriptionsBadRequest) IsSuccess

IsSuccess returns true when this get notifications channel subscriptions bad request response has a 2xx status code

func (*GetNotificationsChannelSubscriptionsBadRequest) String

type GetNotificationsChannelSubscriptionsForbidden

type GetNotificationsChannelSubscriptionsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetNotificationsChannelSubscriptionsForbidden

func NewGetNotificationsChannelSubscriptionsForbidden() *GetNotificationsChannelSubscriptionsForbidden

NewGetNotificationsChannelSubscriptionsForbidden creates a GetNotificationsChannelSubscriptionsForbidden with default headers values

func (*GetNotificationsChannelSubscriptionsForbidden) Error

func (*GetNotificationsChannelSubscriptionsForbidden) GetPayload

func (*GetNotificationsChannelSubscriptionsForbidden) IsClientError

IsClientError returns true when this get notifications channel subscriptions forbidden response has a 4xx status code

func (*GetNotificationsChannelSubscriptionsForbidden) IsCode

IsCode returns true when this get notifications channel subscriptions forbidden response a status code equal to that given

func (*GetNotificationsChannelSubscriptionsForbidden) IsRedirect

IsRedirect returns true when this get notifications channel subscriptions forbidden response has a 3xx status code

func (*GetNotificationsChannelSubscriptionsForbidden) IsServerError

IsServerError returns true when this get notifications channel subscriptions forbidden response has a 5xx status code

func (*GetNotificationsChannelSubscriptionsForbidden) IsSuccess

IsSuccess returns true when this get notifications channel subscriptions forbidden response has a 2xx status code

func (*GetNotificationsChannelSubscriptionsForbidden) String

type GetNotificationsChannelSubscriptionsGatewayTimeout

type GetNotificationsChannelSubscriptionsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetNotificationsChannelSubscriptionsGatewayTimeout

func NewGetNotificationsChannelSubscriptionsGatewayTimeout() *GetNotificationsChannelSubscriptionsGatewayTimeout

NewGetNotificationsChannelSubscriptionsGatewayTimeout creates a GetNotificationsChannelSubscriptionsGatewayTimeout with default headers values

func (*GetNotificationsChannelSubscriptionsGatewayTimeout) Error

func (*GetNotificationsChannelSubscriptionsGatewayTimeout) GetPayload

func (*GetNotificationsChannelSubscriptionsGatewayTimeout) IsClientError

IsClientError returns true when this get notifications channel subscriptions gateway timeout response has a 4xx status code

func (*GetNotificationsChannelSubscriptionsGatewayTimeout) IsCode

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

func (*GetNotificationsChannelSubscriptionsGatewayTimeout) IsRedirect

IsRedirect returns true when this get notifications channel subscriptions gateway timeout response has a 3xx status code

func (*GetNotificationsChannelSubscriptionsGatewayTimeout) IsServerError

IsServerError returns true when this get notifications channel subscriptions gateway timeout response has a 5xx status code

func (*GetNotificationsChannelSubscriptionsGatewayTimeout) IsSuccess

IsSuccess returns true when this get notifications channel subscriptions gateway timeout response has a 2xx status code

func (*GetNotificationsChannelSubscriptionsGatewayTimeout) String

type GetNotificationsChannelSubscriptionsInternalServerError

type GetNotificationsChannelSubscriptionsInternalServerError struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelSubscriptionsInternalServerError 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 NewGetNotificationsChannelSubscriptionsInternalServerError

func NewGetNotificationsChannelSubscriptionsInternalServerError() *GetNotificationsChannelSubscriptionsInternalServerError

NewGetNotificationsChannelSubscriptionsInternalServerError creates a GetNotificationsChannelSubscriptionsInternalServerError with default headers values

func (*GetNotificationsChannelSubscriptionsInternalServerError) Error

func (*GetNotificationsChannelSubscriptionsInternalServerError) GetPayload

func (*GetNotificationsChannelSubscriptionsInternalServerError) IsClientError

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

func (*GetNotificationsChannelSubscriptionsInternalServerError) IsCode

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

func (*GetNotificationsChannelSubscriptionsInternalServerError) IsRedirect

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

func (*GetNotificationsChannelSubscriptionsInternalServerError) IsServerError

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

func (*GetNotificationsChannelSubscriptionsInternalServerError) IsSuccess

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

func (*GetNotificationsChannelSubscriptionsInternalServerError) String

type GetNotificationsChannelSubscriptionsNotFound

type GetNotificationsChannelSubscriptionsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetNotificationsChannelSubscriptionsNotFound

func NewGetNotificationsChannelSubscriptionsNotFound() *GetNotificationsChannelSubscriptionsNotFound

NewGetNotificationsChannelSubscriptionsNotFound creates a GetNotificationsChannelSubscriptionsNotFound with default headers values

func (*GetNotificationsChannelSubscriptionsNotFound) Error

func (*GetNotificationsChannelSubscriptionsNotFound) GetPayload

func (*GetNotificationsChannelSubscriptionsNotFound) IsClientError

IsClientError returns true when this get notifications channel subscriptions not found response has a 4xx status code

func (*GetNotificationsChannelSubscriptionsNotFound) IsCode

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

func (*GetNotificationsChannelSubscriptionsNotFound) IsRedirect

IsRedirect returns true when this get notifications channel subscriptions not found response has a 3xx status code

func (*GetNotificationsChannelSubscriptionsNotFound) IsServerError

IsServerError returns true when this get notifications channel subscriptions not found response has a 5xx status code

func (*GetNotificationsChannelSubscriptionsNotFound) IsSuccess

IsSuccess returns true when this get notifications channel subscriptions not found response has a 2xx status code

func (*GetNotificationsChannelSubscriptionsNotFound) String

type GetNotificationsChannelSubscriptionsOK

type GetNotificationsChannelSubscriptionsOK struct {
	Payload *models.ChannelTopicEntityListing
}

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

successful operation

func NewGetNotificationsChannelSubscriptionsOK

func NewGetNotificationsChannelSubscriptionsOK() *GetNotificationsChannelSubscriptionsOK

NewGetNotificationsChannelSubscriptionsOK creates a GetNotificationsChannelSubscriptionsOK with default headers values

func (*GetNotificationsChannelSubscriptionsOK) Error

func (*GetNotificationsChannelSubscriptionsOK) GetPayload

func (*GetNotificationsChannelSubscriptionsOK) IsClientError

func (o *GetNotificationsChannelSubscriptionsOK) IsClientError() bool

IsClientError returns true when this get notifications channel subscriptions o k response has a 4xx status code

func (*GetNotificationsChannelSubscriptionsOK) IsCode

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

func (*GetNotificationsChannelSubscriptionsOK) IsRedirect

IsRedirect returns true when this get notifications channel subscriptions o k response has a 3xx status code

func (*GetNotificationsChannelSubscriptionsOK) IsServerError

func (o *GetNotificationsChannelSubscriptionsOK) IsServerError() bool

IsServerError returns true when this get notifications channel subscriptions o k response has a 5xx status code

func (*GetNotificationsChannelSubscriptionsOK) IsSuccess

IsSuccess returns true when this get notifications channel subscriptions o k response has a 2xx status code

func (*GetNotificationsChannelSubscriptionsOK) String

type GetNotificationsChannelSubscriptionsParams

type GetNotificationsChannelSubscriptionsParams struct {

	/* ChannelID.

	   Channel ID
	*/
	ChannelID string

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

GetNotificationsChannelSubscriptionsParams contains all the parameters to send to the API endpoint

for the get notifications channel subscriptions operation.

Typically these are written to a http.Request.

func NewGetNotificationsChannelSubscriptionsParams

func NewGetNotificationsChannelSubscriptionsParams() *GetNotificationsChannelSubscriptionsParams

NewGetNotificationsChannelSubscriptionsParams creates a new GetNotificationsChannelSubscriptionsParams 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 NewGetNotificationsChannelSubscriptionsParamsWithContext

func NewGetNotificationsChannelSubscriptionsParamsWithContext(ctx context.Context) *GetNotificationsChannelSubscriptionsParams

NewGetNotificationsChannelSubscriptionsParamsWithContext creates a new GetNotificationsChannelSubscriptionsParams object with the ability to set a context for a request.

func NewGetNotificationsChannelSubscriptionsParamsWithHTTPClient

func NewGetNotificationsChannelSubscriptionsParamsWithHTTPClient(client *http.Client) *GetNotificationsChannelSubscriptionsParams

NewGetNotificationsChannelSubscriptionsParamsWithHTTPClient creates a new GetNotificationsChannelSubscriptionsParams object with the ability to set a custom HTTPClient for a request.

func NewGetNotificationsChannelSubscriptionsParamsWithTimeout

func NewGetNotificationsChannelSubscriptionsParamsWithTimeout(timeout time.Duration) *GetNotificationsChannelSubscriptionsParams

NewGetNotificationsChannelSubscriptionsParamsWithTimeout creates a new GetNotificationsChannelSubscriptionsParams object with the ability to set a timeout on a request.

func (*GetNotificationsChannelSubscriptionsParams) SetChannelID

func (o *GetNotificationsChannelSubscriptionsParams) SetChannelID(channelID string)

SetChannelID adds the channelId to the get notifications channel subscriptions params

func (*GetNotificationsChannelSubscriptionsParams) SetContext

SetContext adds the context to the get notifications channel subscriptions params

func (*GetNotificationsChannelSubscriptionsParams) SetDefaults

SetDefaults hydrates default values in the get notifications channel subscriptions params (not the query body).

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

func (*GetNotificationsChannelSubscriptionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get notifications channel subscriptions params

func (*GetNotificationsChannelSubscriptionsParams) SetTimeout

SetTimeout adds the timeout to the get notifications channel subscriptions params

func (*GetNotificationsChannelSubscriptionsParams) WithChannelID

WithChannelID adds the channelID to the get notifications channel subscriptions params

func (*GetNotificationsChannelSubscriptionsParams) WithContext

WithContext adds the context to the get notifications channel subscriptions params

func (*GetNotificationsChannelSubscriptionsParams) WithDefaults

WithDefaults hydrates default values in the get notifications channel subscriptions params (not the query body).

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

func (*GetNotificationsChannelSubscriptionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get notifications channel subscriptions params

func (*GetNotificationsChannelSubscriptionsParams) WithTimeout

WithTimeout adds the timeout to the get notifications channel subscriptions params

func (*GetNotificationsChannelSubscriptionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetNotificationsChannelSubscriptionsReader

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

GetNotificationsChannelSubscriptionsReader is a Reader for the GetNotificationsChannelSubscriptions structure.

func (*GetNotificationsChannelSubscriptionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNotificationsChannelSubscriptionsRequestEntityTooLarge

type GetNotificationsChannelSubscriptionsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetNotificationsChannelSubscriptionsRequestEntityTooLarge

func NewGetNotificationsChannelSubscriptionsRequestEntityTooLarge() *GetNotificationsChannelSubscriptionsRequestEntityTooLarge

NewGetNotificationsChannelSubscriptionsRequestEntityTooLarge creates a GetNotificationsChannelSubscriptionsRequestEntityTooLarge with default headers values

func (*GetNotificationsChannelSubscriptionsRequestEntityTooLarge) Error

func (*GetNotificationsChannelSubscriptionsRequestEntityTooLarge) GetPayload

func (*GetNotificationsChannelSubscriptionsRequestEntityTooLarge) IsClientError

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

func (*GetNotificationsChannelSubscriptionsRequestEntityTooLarge) IsCode

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

func (*GetNotificationsChannelSubscriptionsRequestEntityTooLarge) IsRedirect

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

func (*GetNotificationsChannelSubscriptionsRequestEntityTooLarge) IsServerError

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

func (*GetNotificationsChannelSubscriptionsRequestEntityTooLarge) IsSuccess

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

func (*GetNotificationsChannelSubscriptionsRequestEntityTooLarge) String

type GetNotificationsChannelSubscriptionsRequestTimeout

type GetNotificationsChannelSubscriptionsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelSubscriptionsRequestTimeout 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 NewGetNotificationsChannelSubscriptionsRequestTimeout

func NewGetNotificationsChannelSubscriptionsRequestTimeout() *GetNotificationsChannelSubscriptionsRequestTimeout

NewGetNotificationsChannelSubscriptionsRequestTimeout creates a GetNotificationsChannelSubscriptionsRequestTimeout with default headers values

func (*GetNotificationsChannelSubscriptionsRequestTimeout) Error

func (*GetNotificationsChannelSubscriptionsRequestTimeout) GetPayload

func (*GetNotificationsChannelSubscriptionsRequestTimeout) IsClientError

IsClientError returns true when this get notifications channel subscriptions request timeout response has a 4xx status code

func (*GetNotificationsChannelSubscriptionsRequestTimeout) IsCode

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

func (*GetNotificationsChannelSubscriptionsRequestTimeout) IsRedirect

IsRedirect returns true when this get notifications channel subscriptions request timeout response has a 3xx status code

func (*GetNotificationsChannelSubscriptionsRequestTimeout) IsServerError

IsServerError returns true when this get notifications channel subscriptions request timeout response has a 5xx status code

func (*GetNotificationsChannelSubscriptionsRequestTimeout) IsSuccess

IsSuccess returns true when this get notifications channel subscriptions request timeout response has a 2xx status code

func (*GetNotificationsChannelSubscriptionsRequestTimeout) String

type GetNotificationsChannelSubscriptionsServiceUnavailable

type GetNotificationsChannelSubscriptionsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelSubscriptionsServiceUnavailable 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 NewGetNotificationsChannelSubscriptionsServiceUnavailable

func NewGetNotificationsChannelSubscriptionsServiceUnavailable() *GetNotificationsChannelSubscriptionsServiceUnavailable

NewGetNotificationsChannelSubscriptionsServiceUnavailable creates a GetNotificationsChannelSubscriptionsServiceUnavailable with default headers values

func (*GetNotificationsChannelSubscriptionsServiceUnavailable) Error

func (*GetNotificationsChannelSubscriptionsServiceUnavailable) GetPayload

func (*GetNotificationsChannelSubscriptionsServiceUnavailable) IsClientError

IsClientError returns true when this get notifications channel subscriptions service unavailable response has a 4xx status code

func (*GetNotificationsChannelSubscriptionsServiceUnavailable) IsCode

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

func (*GetNotificationsChannelSubscriptionsServiceUnavailable) IsRedirect

IsRedirect returns true when this get notifications channel subscriptions service unavailable response has a 3xx status code

func (*GetNotificationsChannelSubscriptionsServiceUnavailable) IsServerError

IsServerError returns true when this get notifications channel subscriptions service unavailable response has a 5xx status code

func (*GetNotificationsChannelSubscriptionsServiceUnavailable) IsSuccess

IsSuccess returns true when this get notifications channel subscriptions service unavailable response has a 2xx status code

func (*GetNotificationsChannelSubscriptionsServiceUnavailable) String

type GetNotificationsChannelSubscriptionsTooManyRequests

type GetNotificationsChannelSubscriptionsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetNotificationsChannelSubscriptionsTooManyRequests

func NewGetNotificationsChannelSubscriptionsTooManyRequests() *GetNotificationsChannelSubscriptionsTooManyRequests

NewGetNotificationsChannelSubscriptionsTooManyRequests creates a GetNotificationsChannelSubscriptionsTooManyRequests with default headers values

func (*GetNotificationsChannelSubscriptionsTooManyRequests) Error

func (*GetNotificationsChannelSubscriptionsTooManyRequests) GetPayload

func (*GetNotificationsChannelSubscriptionsTooManyRequests) IsClientError

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

func (*GetNotificationsChannelSubscriptionsTooManyRequests) IsCode

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

func (*GetNotificationsChannelSubscriptionsTooManyRequests) IsRedirect

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

func (*GetNotificationsChannelSubscriptionsTooManyRequests) IsServerError

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

func (*GetNotificationsChannelSubscriptionsTooManyRequests) IsSuccess

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

func (*GetNotificationsChannelSubscriptionsTooManyRequests) String

type GetNotificationsChannelSubscriptionsUnauthorized

type GetNotificationsChannelSubscriptionsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetNotificationsChannelSubscriptionsUnauthorized

func NewGetNotificationsChannelSubscriptionsUnauthorized() *GetNotificationsChannelSubscriptionsUnauthorized

NewGetNotificationsChannelSubscriptionsUnauthorized creates a GetNotificationsChannelSubscriptionsUnauthorized with default headers values

func (*GetNotificationsChannelSubscriptionsUnauthorized) Error

func (*GetNotificationsChannelSubscriptionsUnauthorized) GetPayload

func (*GetNotificationsChannelSubscriptionsUnauthorized) IsClientError

IsClientError returns true when this get notifications channel subscriptions unauthorized response has a 4xx status code

func (*GetNotificationsChannelSubscriptionsUnauthorized) IsCode

IsCode returns true when this get notifications channel subscriptions unauthorized response a status code equal to that given

func (*GetNotificationsChannelSubscriptionsUnauthorized) IsRedirect

IsRedirect returns true when this get notifications channel subscriptions unauthorized response has a 3xx status code

func (*GetNotificationsChannelSubscriptionsUnauthorized) IsServerError

IsServerError returns true when this get notifications channel subscriptions unauthorized response has a 5xx status code

func (*GetNotificationsChannelSubscriptionsUnauthorized) IsSuccess

IsSuccess returns true when this get notifications channel subscriptions unauthorized response has a 2xx status code

func (*GetNotificationsChannelSubscriptionsUnauthorized) String

type GetNotificationsChannelSubscriptionsUnsupportedMediaType

type GetNotificationsChannelSubscriptionsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelSubscriptionsUnsupportedMediaType 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 NewGetNotificationsChannelSubscriptionsUnsupportedMediaType

func NewGetNotificationsChannelSubscriptionsUnsupportedMediaType() *GetNotificationsChannelSubscriptionsUnsupportedMediaType

NewGetNotificationsChannelSubscriptionsUnsupportedMediaType creates a GetNotificationsChannelSubscriptionsUnsupportedMediaType with default headers values

func (*GetNotificationsChannelSubscriptionsUnsupportedMediaType) Error

func (*GetNotificationsChannelSubscriptionsUnsupportedMediaType) GetPayload

func (*GetNotificationsChannelSubscriptionsUnsupportedMediaType) IsClientError

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

func (*GetNotificationsChannelSubscriptionsUnsupportedMediaType) IsCode

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

func (*GetNotificationsChannelSubscriptionsUnsupportedMediaType) IsRedirect

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

func (*GetNotificationsChannelSubscriptionsUnsupportedMediaType) IsServerError

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

func (*GetNotificationsChannelSubscriptionsUnsupportedMediaType) IsSuccess

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

func (*GetNotificationsChannelSubscriptionsUnsupportedMediaType) String

type GetNotificationsChannelsBadRequest

type GetNotificationsChannelsBadRequest struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelsBadRequest 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 NewGetNotificationsChannelsBadRequest

func NewGetNotificationsChannelsBadRequest() *GetNotificationsChannelsBadRequest

NewGetNotificationsChannelsBadRequest creates a GetNotificationsChannelsBadRequest with default headers values

func (*GetNotificationsChannelsBadRequest) Error

func (*GetNotificationsChannelsBadRequest) GetPayload

func (*GetNotificationsChannelsBadRequest) IsClientError

func (o *GetNotificationsChannelsBadRequest) IsClientError() bool

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

func (*GetNotificationsChannelsBadRequest) IsCode

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

func (*GetNotificationsChannelsBadRequest) IsRedirect

func (o *GetNotificationsChannelsBadRequest) IsRedirect() bool

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

func (*GetNotificationsChannelsBadRequest) IsServerError

func (o *GetNotificationsChannelsBadRequest) IsServerError() bool

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

func (*GetNotificationsChannelsBadRequest) IsSuccess

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

func (*GetNotificationsChannelsBadRequest) String

type GetNotificationsChannelsForbidden

type GetNotificationsChannelsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetNotificationsChannelsForbidden

func NewGetNotificationsChannelsForbidden() *GetNotificationsChannelsForbidden

NewGetNotificationsChannelsForbidden creates a GetNotificationsChannelsForbidden with default headers values

func (*GetNotificationsChannelsForbidden) Error

func (*GetNotificationsChannelsForbidden) GetPayload

func (*GetNotificationsChannelsForbidden) IsClientError

func (o *GetNotificationsChannelsForbidden) IsClientError() bool

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

func (*GetNotificationsChannelsForbidden) IsCode

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

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

func (*GetNotificationsChannelsForbidden) IsRedirect

func (o *GetNotificationsChannelsForbidden) IsRedirect() bool

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

func (*GetNotificationsChannelsForbidden) IsServerError

func (o *GetNotificationsChannelsForbidden) IsServerError() bool

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

func (*GetNotificationsChannelsForbidden) IsSuccess

func (o *GetNotificationsChannelsForbidden) IsSuccess() bool

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

func (*GetNotificationsChannelsForbidden) String

type GetNotificationsChannelsGatewayTimeout

type GetNotificationsChannelsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetNotificationsChannelsGatewayTimeout

func NewGetNotificationsChannelsGatewayTimeout() *GetNotificationsChannelsGatewayTimeout

NewGetNotificationsChannelsGatewayTimeout creates a GetNotificationsChannelsGatewayTimeout with default headers values

func (*GetNotificationsChannelsGatewayTimeout) Error

func (*GetNotificationsChannelsGatewayTimeout) GetPayload

func (*GetNotificationsChannelsGatewayTimeout) IsClientError

func (o *GetNotificationsChannelsGatewayTimeout) IsClientError() bool

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

func (*GetNotificationsChannelsGatewayTimeout) IsCode

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

func (*GetNotificationsChannelsGatewayTimeout) IsRedirect

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

func (*GetNotificationsChannelsGatewayTimeout) IsServerError

func (o *GetNotificationsChannelsGatewayTimeout) IsServerError() bool

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

func (*GetNotificationsChannelsGatewayTimeout) IsSuccess

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

func (*GetNotificationsChannelsGatewayTimeout) String

type GetNotificationsChannelsInternalServerError

type GetNotificationsChannelsInternalServerError struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelsInternalServerError 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 NewGetNotificationsChannelsInternalServerError

func NewGetNotificationsChannelsInternalServerError() *GetNotificationsChannelsInternalServerError

NewGetNotificationsChannelsInternalServerError creates a GetNotificationsChannelsInternalServerError with default headers values

func (*GetNotificationsChannelsInternalServerError) Error

func (*GetNotificationsChannelsInternalServerError) GetPayload

func (*GetNotificationsChannelsInternalServerError) IsClientError

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

func (*GetNotificationsChannelsInternalServerError) IsCode

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

func (*GetNotificationsChannelsInternalServerError) IsRedirect

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

func (*GetNotificationsChannelsInternalServerError) IsServerError

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

func (*GetNotificationsChannelsInternalServerError) IsSuccess

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

func (*GetNotificationsChannelsInternalServerError) String

type GetNotificationsChannelsNotFound

type GetNotificationsChannelsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetNotificationsChannelsNotFound

func NewGetNotificationsChannelsNotFound() *GetNotificationsChannelsNotFound

NewGetNotificationsChannelsNotFound creates a GetNotificationsChannelsNotFound with default headers values

func (*GetNotificationsChannelsNotFound) Error

func (*GetNotificationsChannelsNotFound) GetPayload

func (*GetNotificationsChannelsNotFound) IsClientError

func (o *GetNotificationsChannelsNotFound) IsClientError() bool

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

func (*GetNotificationsChannelsNotFound) IsCode

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

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

func (*GetNotificationsChannelsNotFound) IsRedirect

func (o *GetNotificationsChannelsNotFound) IsRedirect() bool

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

func (*GetNotificationsChannelsNotFound) IsServerError

func (o *GetNotificationsChannelsNotFound) IsServerError() bool

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

func (*GetNotificationsChannelsNotFound) IsSuccess

func (o *GetNotificationsChannelsNotFound) IsSuccess() bool

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

func (*GetNotificationsChannelsNotFound) String

type GetNotificationsChannelsOK

type GetNotificationsChannelsOK struct {
	Payload *models.ChannelEntityListing
}

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

successful operation

func NewGetNotificationsChannelsOK

func NewGetNotificationsChannelsOK() *GetNotificationsChannelsOK

NewGetNotificationsChannelsOK creates a GetNotificationsChannelsOK with default headers values

func (*GetNotificationsChannelsOK) Error

func (*GetNotificationsChannelsOK) GetPayload

func (*GetNotificationsChannelsOK) IsClientError

func (o *GetNotificationsChannelsOK) IsClientError() bool

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

func (*GetNotificationsChannelsOK) IsCode

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

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

func (*GetNotificationsChannelsOK) IsRedirect

func (o *GetNotificationsChannelsOK) IsRedirect() bool

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

func (*GetNotificationsChannelsOK) IsServerError

func (o *GetNotificationsChannelsOK) IsServerError() bool

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

func (*GetNotificationsChannelsOK) IsSuccess

func (o *GetNotificationsChannelsOK) IsSuccess() bool

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

func (*GetNotificationsChannelsOK) String

func (o *GetNotificationsChannelsOK) String() string

type GetNotificationsChannelsParams

type GetNotificationsChannelsParams struct {

	/* Includechannels.

	   Show user's channels for this specific token or across all tokens for this user and app.  Channel Ids for other access tokens will not be shown, but will be presented to show their existence.

	   Default: "token"
	*/
	Includechannels *string

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

GetNotificationsChannelsParams contains all the parameters to send to the API endpoint

for the get notifications channels operation.

Typically these are written to a http.Request.

func NewGetNotificationsChannelsParams

func NewGetNotificationsChannelsParams() *GetNotificationsChannelsParams

NewGetNotificationsChannelsParams creates a new GetNotificationsChannelsParams 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 NewGetNotificationsChannelsParamsWithContext

func NewGetNotificationsChannelsParamsWithContext(ctx context.Context) *GetNotificationsChannelsParams

NewGetNotificationsChannelsParamsWithContext creates a new GetNotificationsChannelsParams object with the ability to set a context for a request.

func NewGetNotificationsChannelsParamsWithHTTPClient

func NewGetNotificationsChannelsParamsWithHTTPClient(client *http.Client) *GetNotificationsChannelsParams

NewGetNotificationsChannelsParamsWithHTTPClient creates a new GetNotificationsChannelsParams object with the ability to set a custom HTTPClient for a request.

func NewGetNotificationsChannelsParamsWithTimeout

func NewGetNotificationsChannelsParamsWithTimeout(timeout time.Duration) *GetNotificationsChannelsParams

NewGetNotificationsChannelsParamsWithTimeout creates a new GetNotificationsChannelsParams object with the ability to set a timeout on a request.

func (*GetNotificationsChannelsParams) SetContext

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

SetContext adds the context to the get notifications channels params

func (*GetNotificationsChannelsParams) SetDefaults

func (o *GetNotificationsChannelsParams) SetDefaults()

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

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

func (*GetNotificationsChannelsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get notifications channels params

func (*GetNotificationsChannelsParams) SetIncludechannels

func (o *GetNotificationsChannelsParams) SetIncludechannels(includechannels *string)

SetIncludechannels adds the includechannels to the get notifications channels params

func (*GetNotificationsChannelsParams) SetTimeout

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

SetTimeout adds the timeout to the get notifications channels params

func (*GetNotificationsChannelsParams) WithContext

WithContext adds the context to the get notifications channels params

func (*GetNotificationsChannelsParams) WithDefaults

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

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

func (*GetNotificationsChannelsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get notifications channels params

func (*GetNotificationsChannelsParams) WithIncludechannels

func (o *GetNotificationsChannelsParams) WithIncludechannels(includechannels *string) *GetNotificationsChannelsParams

WithIncludechannels adds the includechannels to the get notifications channels params

func (*GetNotificationsChannelsParams) WithTimeout

WithTimeout adds the timeout to the get notifications channels params

func (*GetNotificationsChannelsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetNotificationsChannelsReader

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

GetNotificationsChannelsReader is a Reader for the GetNotificationsChannels structure.

func (*GetNotificationsChannelsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNotificationsChannelsRequestEntityTooLarge

type GetNotificationsChannelsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetNotificationsChannelsRequestEntityTooLarge

func NewGetNotificationsChannelsRequestEntityTooLarge() *GetNotificationsChannelsRequestEntityTooLarge

NewGetNotificationsChannelsRequestEntityTooLarge creates a GetNotificationsChannelsRequestEntityTooLarge with default headers values

func (*GetNotificationsChannelsRequestEntityTooLarge) Error

func (*GetNotificationsChannelsRequestEntityTooLarge) GetPayload

func (*GetNotificationsChannelsRequestEntityTooLarge) IsClientError

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

func (*GetNotificationsChannelsRequestEntityTooLarge) IsCode

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

func (*GetNotificationsChannelsRequestEntityTooLarge) IsRedirect

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

func (*GetNotificationsChannelsRequestEntityTooLarge) IsServerError

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

func (*GetNotificationsChannelsRequestEntityTooLarge) IsSuccess

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

func (*GetNotificationsChannelsRequestEntityTooLarge) String

type GetNotificationsChannelsRequestTimeout

type GetNotificationsChannelsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelsRequestTimeout 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 NewGetNotificationsChannelsRequestTimeout

func NewGetNotificationsChannelsRequestTimeout() *GetNotificationsChannelsRequestTimeout

NewGetNotificationsChannelsRequestTimeout creates a GetNotificationsChannelsRequestTimeout with default headers values

func (*GetNotificationsChannelsRequestTimeout) Error

func (*GetNotificationsChannelsRequestTimeout) GetPayload

func (*GetNotificationsChannelsRequestTimeout) IsClientError

func (o *GetNotificationsChannelsRequestTimeout) IsClientError() bool

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

func (*GetNotificationsChannelsRequestTimeout) IsCode

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

func (*GetNotificationsChannelsRequestTimeout) IsRedirect

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

func (*GetNotificationsChannelsRequestTimeout) IsServerError

func (o *GetNotificationsChannelsRequestTimeout) IsServerError() bool

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

func (*GetNotificationsChannelsRequestTimeout) IsSuccess

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

func (*GetNotificationsChannelsRequestTimeout) String

type GetNotificationsChannelsServiceUnavailable

type GetNotificationsChannelsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelsServiceUnavailable 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 NewGetNotificationsChannelsServiceUnavailable

func NewGetNotificationsChannelsServiceUnavailable() *GetNotificationsChannelsServiceUnavailable

NewGetNotificationsChannelsServiceUnavailable creates a GetNotificationsChannelsServiceUnavailable with default headers values

func (*GetNotificationsChannelsServiceUnavailable) Error

func (*GetNotificationsChannelsServiceUnavailable) GetPayload

func (*GetNotificationsChannelsServiceUnavailable) IsClientError

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

func (*GetNotificationsChannelsServiceUnavailable) IsCode

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

func (*GetNotificationsChannelsServiceUnavailable) IsRedirect

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

func (*GetNotificationsChannelsServiceUnavailable) IsServerError

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

func (*GetNotificationsChannelsServiceUnavailable) IsSuccess

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

func (*GetNotificationsChannelsServiceUnavailable) String

type GetNotificationsChannelsTooManyRequests

type GetNotificationsChannelsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetNotificationsChannelsTooManyRequests

func NewGetNotificationsChannelsTooManyRequests() *GetNotificationsChannelsTooManyRequests

NewGetNotificationsChannelsTooManyRequests creates a GetNotificationsChannelsTooManyRequests with default headers values

func (*GetNotificationsChannelsTooManyRequests) Error

func (*GetNotificationsChannelsTooManyRequests) GetPayload

func (*GetNotificationsChannelsTooManyRequests) IsClientError

func (o *GetNotificationsChannelsTooManyRequests) IsClientError() bool

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

func (*GetNotificationsChannelsTooManyRequests) IsCode

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

func (*GetNotificationsChannelsTooManyRequests) IsRedirect

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

func (*GetNotificationsChannelsTooManyRequests) IsServerError

func (o *GetNotificationsChannelsTooManyRequests) IsServerError() bool

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

func (*GetNotificationsChannelsTooManyRequests) IsSuccess

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

func (*GetNotificationsChannelsTooManyRequests) String

type GetNotificationsChannelsUnauthorized

type GetNotificationsChannelsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetNotificationsChannelsUnauthorized

func NewGetNotificationsChannelsUnauthorized() *GetNotificationsChannelsUnauthorized

NewGetNotificationsChannelsUnauthorized creates a GetNotificationsChannelsUnauthorized with default headers values

func (*GetNotificationsChannelsUnauthorized) Error

func (*GetNotificationsChannelsUnauthorized) GetPayload

func (*GetNotificationsChannelsUnauthorized) IsClientError

func (o *GetNotificationsChannelsUnauthorized) IsClientError() bool

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

func (*GetNotificationsChannelsUnauthorized) IsCode

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

func (*GetNotificationsChannelsUnauthorized) IsRedirect

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

func (*GetNotificationsChannelsUnauthorized) IsServerError

func (o *GetNotificationsChannelsUnauthorized) IsServerError() bool

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

func (*GetNotificationsChannelsUnauthorized) IsSuccess

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

func (*GetNotificationsChannelsUnauthorized) String

type GetNotificationsChannelsUnsupportedMediaType

type GetNotificationsChannelsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetNotificationsChannelsUnsupportedMediaType 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 NewGetNotificationsChannelsUnsupportedMediaType

func NewGetNotificationsChannelsUnsupportedMediaType() *GetNotificationsChannelsUnsupportedMediaType

NewGetNotificationsChannelsUnsupportedMediaType creates a GetNotificationsChannelsUnsupportedMediaType with default headers values

func (*GetNotificationsChannelsUnsupportedMediaType) Error

func (*GetNotificationsChannelsUnsupportedMediaType) GetPayload

func (*GetNotificationsChannelsUnsupportedMediaType) IsClientError

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

func (*GetNotificationsChannelsUnsupportedMediaType) IsCode

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

func (*GetNotificationsChannelsUnsupportedMediaType) IsRedirect

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

func (*GetNotificationsChannelsUnsupportedMediaType) IsServerError

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

func (*GetNotificationsChannelsUnsupportedMediaType) IsSuccess

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

func (*GetNotificationsChannelsUnsupportedMediaType) String

type HeadNotificationsChannelBadRequest

type HeadNotificationsChannelBadRequest struct {
	Payload *models.ErrorBody
}

HeadNotificationsChannelBadRequest 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 NewHeadNotificationsChannelBadRequest

func NewHeadNotificationsChannelBadRequest() *HeadNotificationsChannelBadRequest

NewHeadNotificationsChannelBadRequest creates a HeadNotificationsChannelBadRequest with default headers values

func (*HeadNotificationsChannelBadRequest) Error

func (*HeadNotificationsChannelBadRequest) GetPayload

func (*HeadNotificationsChannelBadRequest) IsClientError

func (o *HeadNotificationsChannelBadRequest) IsClientError() bool

IsClientError returns true when this head notifications channel bad request response has a 4xx status code

func (*HeadNotificationsChannelBadRequest) IsCode

IsCode returns true when this head notifications channel bad request response a status code equal to that given

func (*HeadNotificationsChannelBadRequest) IsRedirect

func (o *HeadNotificationsChannelBadRequest) IsRedirect() bool

IsRedirect returns true when this head notifications channel bad request response has a 3xx status code

func (*HeadNotificationsChannelBadRequest) IsServerError

func (o *HeadNotificationsChannelBadRequest) IsServerError() bool

IsServerError returns true when this head notifications channel bad request response has a 5xx status code

func (*HeadNotificationsChannelBadRequest) IsSuccess

IsSuccess returns true when this head notifications channel bad request response has a 2xx status code

func (*HeadNotificationsChannelBadRequest) String

type HeadNotificationsChannelDefault

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

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

successful operation

func NewHeadNotificationsChannelDefault

func NewHeadNotificationsChannelDefault(code int) *HeadNotificationsChannelDefault

NewHeadNotificationsChannelDefault creates a HeadNotificationsChannelDefault with default headers values

func (*HeadNotificationsChannelDefault) Code

Code gets the status code for the head notifications channel default response

func (*HeadNotificationsChannelDefault) Error

func (*HeadNotificationsChannelDefault) IsClientError

func (o *HeadNotificationsChannelDefault) IsClientError() bool

IsClientError returns true when this head notifications channel default response has a 4xx status code

func (*HeadNotificationsChannelDefault) IsCode

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

IsCode returns true when this head notifications channel default response a status code equal to that given

func (*HeadNotificationsChannelDefault) IsRedirect

func (o *HeadNotificationsChannelDefault) IsRedirect() bool

IsRedirect returns true when this head notifications channel default response has a 3xx status code

func (*HeadNotificationsChannelDefault) IsServerError

func (o *HeadNotificationsChannelDefault) IsServerError() bool

IsServerError returns true when this head notifications channel default response has a 5xx status code

func (*HeadNotificationsChannelDefault) IsSuccess

func (o *HeadNotificationsChannelDefault) IsSuccess() bool

IsSuccess returns true when this head notifications channel default response has a 2xx status code

func (*HeadNotificationsChannelDefault) String

type HeadNotificationsChannelForbidden

type HeadNotificationsChannelForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewHeadNotificationsChannelForbidden

func NewHeadNotificationsChannelForbidden() *HeadNotificationsChannelForbidden

NewHeadNotificationsChannelForbidden creates a HeadNotificationsChannelForbidden with default headers values

func (*HeadNotificationsChannelForbidden) Error

func (*HeadNotificationsChannelForbidden) GetPayload

func (*HeadNotificationsChannelForbidden) IsClientError

func (o *HeadNotificationsChannelForbidden) IsClientError() bool

IsClientError returns true when this head notifications channel forbidden response has a 4xx status code

func (*HeadNotificationsChannelForbidden) IsCode

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

IsCode returns true when this head notifications channel forbidden response a status code equal to that given

func (*HeadNotificationsChannelForbidden) IsRedirect

func (o *HeadNotificationsChannelForbidden) IsRedirect() bool

IsRedirect returns true when this head notifications channel forbidden response has a 3xx status code

func (*HeadNotificationsChannelForbidden) IsServerError

func (o *HeadNotificationsChannelForbidden) IsServerError() bool

IsServerError returns true when this head notifications channel forbidden response has a 5xx status code

func (*HeadNotificationsChannelForbidden) IsSuccess

func (o *HeadNotificationsChannelForbidden) IsSuccess() bool

IsSuccess returns true when this head notifications channel forbidden response has a 2xx status code

func (*HeadNotificationsChannelForbidden) String

type HeadNotificationsChannelGatewayTimeout

type HeadNotificationsChannelGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewHeadNotificationsChannelGatewayTimeout

func NewHeadNotificationsChannelGatewayTimeout() *HeadNotificationsChannelGatewayTimeout

NewHeadNotificationsChannelGatewayTimeout creates a HeadNotificationsChannelGatewayTimeout with default headers values

func (*HeadNotificationsChannelGatewayTimeout) Error

func (*HeadNotificationsChannelGatewayTimeout) GetPayload

func (*HeadNotificationsChannelGatewayTimeout) IsClientError

func (o *HeadNotificationsChannelGatewayTimeout) IsClientError() bool

IsClientError returns true when this head notifications channel gateway timeout response has a 4xx status code

func (*HeadNotificationsChannelGatewayTimeout) IsCode

IsCode returns true when this head notifications channel gateway timeout response a status code equal to that given

func (*HeadNotificationsChannelGatewayTimeout) IsRedirect

IsRedirect returns true when this head notifications channel gateway timeout response has a 3xx status code

func (*HeadNotificationsChannelGatewayTimeout) IsServerError

func (o *HeadNotificationsChannelGatewayTimeout) IsServerError() bool

IsServerError returns true when this head notifications channel gateway timeout response has a 5xx status code

func (*HeadNotificationsChannelGatewayTimeout) IsSuccess

IsSuccess returns true when this head notifications channel gateway timeout response has a 2xx status code

func (*HeadNotificationsChannelGatewayTimeout) String

type HeadNotificationsChannelInternalServerError

type HeadNotificationsChannelInternalServerError struct {
	Payload *models.ErrorBody
}

HeadNotificationsChannelInternalServerError 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 NewHeadNotificationsChannelInternalServerError

func NewHeadNotificationsChannelInternalServerError() *HeadNotificationsChannelInternalServerError

NewHeadNotificationsChannelInternalServerError creates a HeadNotificationsChannelInternalServerError with default headers values

func (*HeadNotificationsChannelInternalServerError) Error

func (*HeadNotificationsChannelInternalServerError) GetPayload

func (*HeadNotificationsChannelInternalServerError) IsClientError

IsClientError returns true when this head notifications channel internal server error response has a 4xx status code

func (*HeadNotificationsChannelInternalServerError) IsCode

IsCode returns true when this head notifications channel internal server error response a status code equal to that given

func (*HeadNotificationsChannelInternalServerError) IsRedirect

IsRedirect returns true when this head notifications channel internal server error response has a 3xx status code

func (*HeadNotificationsChannelInternalServerError) IsServerError

IsServerError returns true when this head notifications channel internal server error response has a 5xx status code

func (*HeadNotificationsChannelInternalServerError) IsSuccess

IsSuccess returns true when this head notifications channel internal server error response has a 2xx status code

func (*HeadNotificationsChannelInternalServerError) String

type HeadNotificationsChannelNotFound

type HeadNotificationsChannelNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewHeadNotificationsChannelNotFound

func NewHeadNotificationsChannelNotFound() *HeadNotificationsChannelNotFound

NewHeadNotificationsChannelNotFound creates a HeadNotificationsChannelNotFound with default headers values

func (*HeadNotificationsChannelNotFound) Error

func (*HeadNotificationsChannelNotFound) GetPayload

func (*HeadNotificationsChannelNotFound) IsClientError

func (o *HeadNotificationsChannelNotFound) IsClientError() bool

IsClientError returns true when this head notifications channel not found response has a 4xx status code

func (*HeadNotificationsChannelNotFound) IsCode

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

IsCode returns true when this head notifications channel not found response a status code equal to that given

func (*HeadNotificationsChannelNotFound) IsRedirect

func (o *HeadNotificationsChannelNotFound) IsRedirect() bool

IsRedirect returns true when this head notifications channel not found response has a 3xx status code

func (*HeadNotificationsChannelNotFound) IsServerError

func (o *HeadNotificationsChannelNotFound) IsServerError() bool

IsServerError returns true when this head notifications channel not found response has a 5xx status code

func (*HeadNotificationsChannelNotFound) IsSuccess

func (o *HeadNotificationsChannelNotFound) IsSuccess() bool

IsSuccess returns true when this head notifications channel not found response has a 2xx status code

func (*HeadNotificationsChannelNotFound) String

type HeadNotificationsChannelParams

type HeadNotificationsChannelParams struct {

	/* ChannelID.

	   Channel ID
	*/
	ChannelID string

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

HeadNotificationsChannelParams contains all the parameters to send to the API endpoint

for the head notifications channel operation.

Typically these are written to a http.Request.

func NewHeadNotificationsChannelParams

func NewHeadNotificationsChannelParams() *HeadNotificationsChannelParams

NewHeadNotificationsChannelParams creates a new HeadNotificationsChannelParams 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 NewHeadNotificationsChannelParamsWithContext

func NewHeadNotificationsChannelParamsWithContext(ctx context.Context) *HeadNotificationsChannelParams

NewHeadNotificationsChannelParamsWithContext creates a new HeadNotificationsChannelParams object with the ability to set a context for a request.

func NewHeadNotificationsChannelParamsWithHTTPClient

func NewHeadNotificationsChannelParamsWithHTTPClient(client *http.Client) *HeadNotificationsChannelParams

NewHeadNotificationsChannelParamsWithHTTPClient creates a new HeadNotificationsChannelParams object with the ability to set a custom HTTPClient for a request.

func NewHeadNotificationsChannelParamsWithTimeout

func NewHeadNotificationsChannelParamsWithTimeout(timeout time.Duration) *HeadNotificationsChannelParams

NewHeadNotificationsChannelParamsWithTimeout creates a new HeadNotificationsChannelParams object with the ability to set a timeout on a request.

func (*HeadNotificationsChannelParams) SetChannelID

func (o *HeadNotificationsChannelParams) SetChannelID(channelID string)

SetChannelID adds the channelId to the head notifications channel params

func (*HeadNotificationsChannelParams) SetContext

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

SetContext adds the context to the head notifications channel params

func (*HeadNotificationsChannelParams) SetDefaults

func (o *HeadNotificationsChannelParams) SetDefaults()

SetDefaults hydrates default values in the head notifications channel params (not the query body).

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

func (*HeadNotificationsChannelParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the head notifications channel params

func (*HeadNotificationsChannelParams) SetTimeout

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

SetTimeout adds the timeout to the head notifications channel params

func (*HeadNotificationsChannelParams) WithChannelID

WithChannelID adds the channelID to the head notifications channel params

func (*HeadNotificationsChannelParams) WithContext

WithContext adds the context to the head notifications channel params

func (*HeadNotificationsChannelParams) WithDefaults

WithDefaults hydrates default values in the head notifications channel params (not the query body).

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

func (*HeadNotificationsChannelParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the head notifications channel params

func (*HeadNotificationsChannelParams) WithTimeout

WithTimeout adds the timeout to the head notifications channel params

func (*HeadNotificationsChannelParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type HeadNotificationsChannelReader

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

HeadNotificationsChannelReader is a Reader for the HeadNotificationsChannel structure.

func (*HeadNotificationsChannelReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type HeadNotificationsChannelRequestEntityTooLarge

type HeadNotificationsChannelRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewHeadNotificationsChannelRequestEntityTooLarge

func NewHeadNotificationsChannelRequestEntityTooLarge() *HeadNotificationsChannelRequestEntityTooLarge

NewHeadNotificationsChannelRequestEntityTooLarge creates a HeadNotificationsChannelRequestEntityTooLarge with default headers values

func (*HeadNotificationsChannelRequestEntityTooLarge) Error

func (*HeadNotificationsChannelRequestEntityTooLarge) GetPayload

func (*HeadNotificationsChannelRequestEntityTooLarge) IsClientError

IsClientError returns true when this head notifications channel request entity too large response has a 4xx status code

func (*HeadNotificationsChannelRequestEntityTooLarge) IsCode

IsCode returns true when this head notifications channel request entity too large response a status code equal to that given

func (*HeadNotificationsChannelRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this head notifications channel request entity too large response has a 3xx status code

func (*HeadNotificationsChannelRequestEntityTooLarge) IsServerError

IsServerError returns true when this head notifications channel request entity too large response has a 5xx status code

func (*HeadNotificationsChannelRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this head notifications channel request entity too large response has a 2xx status code

func (*HeadNotificationsChannelRequestEntityTooLarge) String

type HeadNotificationsChannelRequestTimeout

type HeadNotificationsChannelRequestTimeout struct {
	Payload *models.ErrorBody
}

HeadNotificationsChannelRequestTimeout 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 NewHeadNotificationsChannelRequestTimeout

func NewHeadNotificationsChannelRequestTimeout() *HeadNotificationsChannelRequestTimeout

NewHeadNotificationsChannelRequestTimeout creates a HeadNotificationsChannelRequestTimeout with default headers values

func (*HeadNotificationsChannelRequestTimeout) Error

func (*HeadNotificationsChannelRequestTimeout) GetPayload

func (*HeadNotificationsChannelRequestTimeout) IsClientError

func (o *HeadNotificationsChannelRequestTimeout) IsClientError() bool

IsClientError returns true when this head notifications channel request timeout response has a 4xx status code

func (*HeadNotificationsChannelRequestTimeout) IsCode

IsCode returns true when this head notifications channel request timeout response a status code equal to that given

func (*HeadNotificationsChannelRequestTimeout) IsRedirect

IsRedirect returns true when this head notifications channel request timeout response has a 3xx status code

func (*HeadNotificationsChannelRequestTimeout) IsServerError

func (o *HeadNotificationsChannelRequestTimeout) IsServerError() bool

IsServerError returns true when this head notifications channel request timeout response has a 5xx status code

func (*HeadNotificationsChannelRequestTimeout) IsSuccess

IsSuccess returns true when this head notifications channel request timeout response has a 2xx status code

func (*HeadNotificationsChannelRequestTimeout) String

type HeadNotificationsChannelServiceUnavailable

type HeadNotificationsChannelServiceUnavailable struct {
	Payload *models.ErrorBody
}

HeadNotificationsChannelServiceUnavailable 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 NewHeadNotificationsChannelServiceUnavailable

func NewHeadNotificationsChannelServiceUnavailable() *HeadNotificationsChannelServiceUnavailable

NewHeadNotificationsChannelServiceUnavailable creates a HeadNotificationsChannelServiceUnavailable with default headers values

func (*HeadNotificationsChannelServiceUnavailable) Error

func (*HeadNotificationsChannelServiceUnavailable) GetPayload

func (*HeadNotificationsChannelServiceUnavailable) IsClientError

IsClientError returns true when this head notifications channel service unavailable response has a 4xx status code

func (*HeadNotificationsChannelServiceUnavailable) IsCode

IsCode returns true when this head notifications channel service unavailable response a status code equal to that given

func (*HeadNotificationsChannelServiceUnavailable) IsRedirect

IsRedirect returns true when this head notifications channel service unavailable response has a 3xx status code

func (*HeadNotificationsChannelServiceUnavailable) IsServerError

IsServerError returns true when this head notifications channel service unavailable response has a 5xx status code

func (*HeadNotificationsChannelServiceUnavailable) IsSuccess

IsSuccess returns true when this head notifications channel service unavailable response has a 2xx status code

func (*HeadNotificationsChannelServiceUnavailable) String

type HeadNotificationsChannelTooManyRequests

type HeadNotificationsChannelTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewHeadNotificationsChannelTooManyRequests

func NewHeadNotificationsChannelTooManyRequests() *HeadNotificationsChannelTooManyRequests

NewHeadNotificationsChannelTooManyRequests creates a HeadNotificationsChannelTooManyRequests with default headers values

func (*HeadNotificationsChannelTooManyRequests) Error

func (*HeadNotificationsChannelTooManyRequests) GetPayload

func (*HeadNotificationsChannelTooManyRequests) IsClientError

func (o *HeadNotificationsChannelTooManyRequests) IsClientError() bool

IsClientError returns true when this head notifications channel too many requests response has a 4xx status code

func (*HeadNotificationsChannelTooManyRequests) IsCode

IsCode returns true when this head notifications channel too many requests response a status code equal to that given

func (*HeadNotificationsChannelTooManyRequests) IsRedirect

IsRedirect returns true when this head notifications channel too many requests response has a 3xx status code

func (*HeadNotificationsChannelTooManyRequests) IsServerError

func (o *HeadNotificationsChannelTooManyRequests) IsServerError() bool

IsServerError returns true when this head notifications channel too many requests response has a 5xx status code

func (*HeadNotificationsChannelTooManyRequests) IsSuccess

IsSuccess returns true when this head notifications channel too many requests response has a 2xx status code

func (*HeadNotificationsChannelTooManyRequests) String

type HeadNotificationsChannelUnauthorized

type HeadNotificationsChannelUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewHeadNotificationsChannelUnauthorized

func NewHeadNotificationsChannelUnauthorized() *HeadNotificationsChannelUnauthorized

NewHeadNotificationsChannelUnauthorized creates a HeadNotificationsChannelUnauthorized with default headers values

func (*HeadNotificationsChannelUnauthorized) Error

func (*HeadNotificationsChannelUnauthorized) GetPayload

func (*HeadNotificationsChannelUnauthorized) IsClientError

func (o *HeadNotificationsChannelUnauthorized) IsClientError() bool

IsClientError returns true when this head notifications channel unauthorized response has a 4xx status code

func (*HeadNotificationsChannelUnauthorized) IsCode

IsCode returns true when this head notifications channel unauthorized response a status code equal to that given

func (*HeadNotificationsChannelUnauthorized) IsRedirect

IsRedirect returns true when this head notifications channel unauthorized response has a 3xx status code

func (*HeadNotificationsChannelUnauthorized) IsServerError

func (o *HeadNotificationsChannelUnauthorized) IsServerError() bool

IsServerError returns true when this head notifications channel unauthorized response has a 5xx status code

func (*HeadNotificationsChannelUnauthorized) IsSuccess

IsSuccess returns true when this head notifications channel unauthorized response has a 2xx status code

func (*HeadNotificationsChannelUnauthorized) String

type HeadNotificationsChannelUnsupportedMediaType

type HeadNotificationsChannelUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

HeadNotificationsChannelUnsupportedMediaType 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 NewHeadNotificationsChannelUnsupportedMediaType

func NewHeadNotificationsChannelUnsupportedMediaType() *HeadNotificationsChannelUnsupportedMediaType

NewHeadNotificationsChannelUnsupportedMediaType creates a HeadNotificationsChannelUnsupportedMediaType with default headers values

func (*HeadNotificationsChannelUnsupportedMediaType) Error

func (*HeadNotificationsChannelUnsupportedMediaType) GetPayload

func (*HeadNotificationsChannelUnsupportedMediaType) IsClientError

IsClientError returns true when this head notifications channel unsupported media type response has a 4xx status code

func (*HeadNotificationsChannelUnsupportedMediaType) IsCode

IsCode returns true when this head notifications channel unsupported media type response a status code equal to that given

func (*HeadNotificationsChannelUnsupportedMediaType) IsRedirect

IsRedirect returns true when this head notifications channel unsupported media type response has a 3xx status code

func (*HeadNotificationsChannelUnsupportedMediaType) IsServerError

IsServerError returns true when this head notifications channel unsupported media type response has a 5xx status code

func (*HeadNotificationsChannelUnsupportedMediaType) IsSuccess

IsSuccess returns true when this head notifications channel unsupported media type response has a 2xx status code

func (*HeadNotificationsChannelUnsupportedMediaType) String

type PostNotificationsChannelSubscriptionsBadRequest

type PostNotificationsChannelSubscriptionsBadRequest struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelSubscriptionsBadRequest 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 NewPostNotificationsChannelSubscriptionsBadRequest

func NewPostNotificationsChannelSubscriptionsBadRequest() *PostNotificationsChannelSubscriptionsBadRequest

NewPostNotificationsChannelSubscriptionsBadRequest creates a PostNotificationsChannelSubscriptionsBadRequest with default headers values

func (*PostNotificationsChannelSubscriptionsBadRequest) Error

func (*PostNotificationsChannelSubscriptionsBadRequest) GetPayload

func (*PostNotificationsChannelSubscriptionsBadRequest) IsClientError

IsClientError returns true when this post notifications channel subscriptions bad request response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsBadRequest) IsCode

IsCode returns true when this post notifications channel subscriptions bad request response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsBadRequest) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions bad request response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsBadRequest) IsServerError

IsServerError returns true when this post notifications channel subscriptions bad request response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsBadRequest) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions bad request response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsBadRequest) String

type PostNotificationsChannelSubscriptionsForbidden

type PostNotificationsChannelSubscriptionsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostNotificationsChannelSubscriptionsForbidden

func NewPostNotificationsChannelSubscriptionsForbidden() *PostNotificationsChannelSubscriptionsForbidden

NewPostNotificationsChannelSubscriptionsForbidden creates a PostNotificationsChannelSubscriptionsForbidden with default headers values

func (*PostNotificationsChannelSubscriptionsForbidden) Error

func (*PostNotificationsChannelSubscriptionsForbidden) GetPayload

func (*PostNotificationsChannelSubscriptionsForbidden) IsClientError

IsClientError returns true when this post notifications channel subscriptions forbidden response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsForbidden) IsCode

IsCode returns true when this post notifications channel subscriptions forbidden response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsForbidden) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions forbidden response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsForbidden) IsServerError

IsServerError returns true when this post notifications channel subscriptions forbidden response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsForbidden) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions forbidden response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsForbidden) String

type PostNotificationsChannelSubscriptionsGatewayTimeout

type PostNotificationsChannelSubscriptionsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostNotificationsChannelSubscriptionsGatewayTimeout

func NewPostNotificationsChannelSubscriptionsGatewayTimeout() *PostNotificationsChannelSubscriptionsGatewayTimeout

NewPostNotificationsChannelSubscriptionsGatewayTimeout creates a PostNotificationsChannelSubscriptionsGatewayTimeout with default headers values

func (*PostNotificationsChannelSubscriptionsGatewayTimeout) Error

func (*PostNotificationsChannelSubscriptionsGatewayTimeout) GetPayload

func (*PostNotificationsChannelSubscriptionsGatewayTimeout) IsClientError

IsClientError returns true when this post notifications channel subscriptions gateway timeout response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsGatewayTimeout) IsCode

IsCode returns true when this post notifications channel subscriptions gateway timeout response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsGatewayTimeout) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions gateway timeout response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsGatewayTimeout) IsServerError

IsServerError returns true when this post notifications channel subscriptions gateway timeout response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsGatewayTimeout) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions gateway timeout response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsGatewayTimeout) String

type PostNotificationsChannelSubscriptionsInternalServerError

type PostNotificationsChannelSubscriptionsInternalServerError struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelSubscriptionsInternalServerError 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 NewPostNotificationsChannelSubscriptionsInternalServerError

func NewPostNotificationsChannelSubscriptionsInternalServerError() *PostNotificationsChannelSubscriptionsInternalServerError

NewPostNotificationsChannelSubscriptionsInternalServerError creates a PostNotificationsChannelSubscriptionsInternalServerError with default headers values

func (*PostNotificationsChannelSubscriptionsInternalServerError) Error

func (*PostNotificationsChannelSubscriptionsInternalServerError) GetPayload

func (*PostNotificationsChannelSubscriptionsInternalServerError) IsClientError

IsClientError returns true when this post notifications channel subscriptions internal server error response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsInternalServerError) IsCode

IsCode returns true when this post notifications channel subscriptions internal server error response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsInternalServerError) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions internal server error response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsInternalServerError) IsServerError

IsServerError returns true when this post notifications channel subscriptions internal server error response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsInternalServerError) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions internal server error response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsInternalServerError) String

type PostNotificationsChannelSubscriptionsNotFound

type PostNotificationsChannelSubscriptionsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostNotificationsChannelSubscriptionsNotFound

func NewPostNotificationsChannelSubscriptionsNotFound() *PostNotificationsChannelSubscriptionsNotFound

NewPostNotificationsChannelSubscriptionsNotFound creates a PostNotificationsChannelSubscriptionsNotFound with default headers values

func (*PostNotificationsChannelSubscriptionsNotFound) Error

func (*PostNotificationsChannelSubscriptionsNotFound) GetPayload

func (*PostNotificationsChannelSubscriptionsNotFound) IsClientError

IsClientError returns true when this post notifications channel subscriptions not found response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsNotFound) IsCode

IsCode returns true when this post notifications channel subscriptions not found response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsNotFound) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions not found response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsNotFound) IsServerError

IsServerError returns true when this post notifications channel subscriptions not found response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsNotFound) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions not found response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsNotFound) String

type PostNotificationsChannelSubscriptionsOK

type PostNotificationsChannelSubscriptionsOK struct {
	Payload *models.ChannelTopicEntityListing
}

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

successful operation

func NewPostNotificationsChannelSubscriptionsOK

func NewPostNotificationsChannelSubscriptionsOK() *PostNotificationsChannelSubscriptionsOK

NewPostNotificationsChannelSubscriptionsOK creates a PostNotificationsChannelSubscriptionsOK with default headers values

func (*PostNotificationsChannelSubscriptionsOK) Error

func (*PostNotificationsChannelSubscriptionsOK) GetPayload

func (*PostNotificationsChannelSubscriptionsOK) IsClientError

func (o *PostNotificationsChannelSubscriptionsOK) IsClientError() bool

IsClientError returns true when this post notifications channel subscriptions o k response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsOK) IsCode

IsCode returns true when this post notifications channel subscriptions o k response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsOK) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions o k response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsOK) IsServerError

func (o *PostNotificationsChannelSubscriptionsOK) IsServerError() bool

IsServerError returns true when this post notifications channel subscriptions o k response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsOK) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions o k response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsOK) String

type PostNotificationsChannelSubscriptionsParams

type PostNotificationsChannelSubscriptionsParams struct {

	/* Body.

	   Body
	*/
	Body []*models.ChannelTopic

	/* ChannelID.

	   Channel ID
	*/
	ChannelID string

	/* IgnoreErrors.

	   Optionally prevent throwing of errors for failed permissions checks.
	*/
	IgnoreErrors *bool

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

PostNotificationsChannelSubscriptionsParams contains all the parameters to send to the API endpoint

for the post notifications channel subscriptions operation.

Typically these are written to a http.Request.

func NewPostNotificationsChannelSubscriptionsParams

func NewPostNotificationsChannelSubscriptionsParams() *PostNotificationsChannelSubscriptionsParams

NewPostNotificationsChannelSubscriptionsParams creates a new PostNotificationsChannelSubscriptionsParams 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 NewPostNotificationsChannelSubscriptionsParamsWithContext

func NewPostNotificationsChannelSubscriptionsParamsWithContext(ctx context.Context) *PostNotificationsChannelSubscriptionsParams

NewPostNotificationsChannelSubscriptionsParamsWithContext creates a new PostNotificationsChannelSubscriptionsParams object with the ability to set a context for a request.

func NewPostNotificationsChannelSubscriptionsParamsWithHTTPClient

func NewPostNotificationsChannelSubscriptionsParamsWithHTTPClient(client *http.Client) *PostNotificationsChannelSubscriptionsParams

NewPostNotificationsChannelSubscriptionsParamsWithHTTPClient creates a new PostNotificationsChannelSubscriptionsParams object with the ability to set a custom HTTPClient for a request.

func NewPostNotificationsChannelSubscriptionsParamsWithTimeout

func NewPostNotificationsChannelSubscriptionsParamsWithTimeout(timeout time.Duration) *PostNotificationsChannelSubscriptionsParams

NewPostNotificationsChannelSubscriptionsParamsWithTimeout creates a new PostNotificationsChannelSubscriptionsParams object with the ability to set a timeout on a request.

func (*PostNotificationsChannelSubscriptionsParams) SetBody

SetBody adds the body to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) SetChannelID

func (o *PostNotificationsChannelSubscriptionsParams) SetChannelID(channelID string)

SetChannelID adds the channelId to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) SetContext

SetContext adds the context to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) SetDefaults

SetDefaults hydrates default values in the post notifications channel subscriptions params (not the query body).

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

func (*PostNotificationsChannelSubscriptionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) SetIgnoreErrors

func (o *PostNotificationsChannelSubscriptionsParams) SetIgnoreErrors(ignoreErrors *bool)

SetIgnoreErrors adds the ignoreErrors to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) SetTimeout

SetTimeout adds the timeout to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) WithBody

WithBody adds the body to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) WithChannelID

WithChannelID adds the channelID to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) WithContext

WithContext adds the context to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) WithDefaults

WithDefaults hydrates default values in the post notifications channel subscriptions params (not the query body).

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

func (*PostNotificationsChannelSubscriptionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) WithIgnoreErrors

WithIgnoreErrors adds the ignoreErrors to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) WithTimeout

WithTimeout adds the timeout to the post notifications channel subscriptions params

func (*PostNotificationsChannelSubscriptionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostNotificationsChannelSubscriptionsReader

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

PostNotificationsChannelSubscriptionsReader is a Reader for the PostNotificationsChannelSubscriptions structure.

func (*PostNotificationsChannelSubscriptionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostNotificationsChannelSubscriptionsRequestEntityTooLarge

type PostNotificationsChannelSubscriptionsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPostNotificationsChannelSubscriptionsRequestEntityTooLarge

func NewPostNotificationsChannelSubscriptionsRequestEntityTooLarge() *PostNotificationsChannelSubscriptionsRequestEntityTooLarge

NewPostNotificationsChannelSubscriptionsRequestEntityTooLarge creates a PostNotificationsChannelSubscriptionsRequestEntityTooLarge with default headers values

func (*PostNotificationsChannelSubscriptionsRequestEntityTooLarge) Error

func (*PostNotificationsChannelSubscriptionsRequestEntityTooLarge) GetPayload

func (*PostNotificationsChannelSubscriptionsRequestEntityTooLarge) IsClientError

IsClientError returns true when this post notifications channel subscriptions request entity too large response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsRequestEntityTooLarge) IsCode

IsCode returns true when this post notifications channel subscriptions request entity too large response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions request entity too large response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsRequestEntityTooLarge) IsServerError

IsServerError returns true when this post notifications channel subscriptions request entity too large response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions request entity too large response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsRequestEntityTooLarge) String

type PostNotificationsChannelSubscriptionsRequestTimeout

type PostNotificationsChannelSubscriptionsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelSubscriptionsRequestTimeout 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 NewPostNotificationsChannelSubscriptionsRequestTimeout

func NewPostNotificationsChannelSubscriptionsRequestTimeout() *PostNotificationsChannelSubscriptionsRequestTimeout

NewPostNotificationsChannelSubscriptionsRequestTimeout creates a PostNotificationsChannelSubscriptionsRequestTimeout with default headers values

func (*PostNotificationsChannelSubscriptionsRequestTimeout) Error

func (*PostNotificationsChannelSubscriptionsRequestTimeout) GetPayload

func (*PostNotificationsChannelSubscriptionsRequestTimeout) IsClientError

IsClientError returns true when this post notifications channel subscriptions request timeout response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsRequestTimeout) IsCode

IsCode returns true when this post notifications channel subscriptions request timeout response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsRequestTimeout) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions request timeout response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsRequestTimeout) IsServerError

IsServerError returns true when this post notifications channel subscriptions request timeout response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsRequestTimeout) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions request timeout response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsRequestTimeout) String

type PostNotificationsChannelSubscriptionsServiceUnavailable

type PostNotificationsChannelSubscriptionsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelSubscriptionsServiceUnavailable 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 NewPostNotificationsChannelSubscriptionsServiceUnavailable

func NewPostNotificationsChannelSubscriptionsServiceUnavailable() *PostNotificationsChannelSubscriptionsServiceUnavailable

NewPostNotificationsChannelSubscriptionsServiceUnavailable creates a PostNotificationsChannelSubscriptionsServiceUnavailable with default headers values

func (*PostNotificationsChannelSubscriptionsServiceUnavailable) Error

func (*PostNotificationsChannelSubscriptionsServiceUnavailable) GetPayload

func (*PostNotificationsChannelSubscriptionsServiceUnavailable) IsClientError

IsClientError returns true when this post notifications channel subscriptions service unavailable response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsServiceUnavailable) IsCode

IsCode returns true when this post notifications channel subscriptions service unavailable response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsServiceUnavailable) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions service unavailable response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsServiceUnavailable) IsServerError

IsServerError returns true when this post notifications channel subscriptions service unavailable response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsServiceUnavailable) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions service unavailable response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsServiceUnavailable) String

type PostNotificationsChannelSubscriptionsTooManyRequests

type PostNotificationsChannelSubscriptionsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPostNotificationsChannelSubscriptionsTooManyRequests

func NewPostNotificationsChannelSubscriptionsTooManyRequests() *PostNotificationsChannelSubscriptionsTooManyRequests

NewPostNotificationsChannelSubscriptionsTooManyRequests creates a PostNotificationsChannelSubscriptionsTooManyRequests with default headers values

func (*PostNotificationsChannelSubscriptionsTooManyRequests) Error

func (*PostNotificationsChannelSubscriptionsTooManyRequests) GetPayload

func (*PostNotificationsChannelSubscriptionsTooManyRequests) IsClientError

IsClientError returns true when this post notifications channel subscriptions too many requests response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsTooManyRequests) IsCode

IsCode returns true when this post notifications channel subscriptions too many requests response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsTooManyRequests) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions too many requests response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsTooManyRequests) IsServerError

IsServerError returns true when this post notifications channel subscriptions too many requests response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsTooManyRequests) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions too many requests response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsTooManyRequests) String

type PostNotificationsChannelSubscriptionsUnauthorized

type PostNotificationsChannelSubscriptionsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostNotificationsChannelSubscriptionsUnauthorized

func NewPostNotificationsChannelSubscriptionsUnauthorized() *PostNotificationsChannelSubscriptionsUnauthorized

NewPostNotificationsChannelSubscriptionsUnauthorized creates a PostNotificationsChannelSubscriptionsUnauthorized with default headers values

func (*PostNotificationsChannelSubscriptionsUnauthorized) Error

func (*PostNotificationsChannelSubscriptionsUnauthorized) GetPayload

func (*PostNotificationsChannelSubscriptionsUnauthorized) IsClientError

IsClientError returns true when this post notifications channel subscriptions unauthorized response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsUnauthorized) IsCode

IsCode returns true when this post notifications channel subscriptions unauthorized response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsUnauthorized) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions unauthorized response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsUnauthorized) IsServerError

IsServerError returns true when this post notifications channel subscriptions unauthorized response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsUnauthorized) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions unauthorized response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsUnauthorized) String

type PostNotificationsChannelSubscriptionsUnsupportedMediaType

type PostNotificationsChannelSubscriptionsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelSubscriptionsUnsupportedMediaType 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 NewPostNotificationsChannelSubscriptionsUnsupportedMediaType

func NewPostNotificationsChannelSubscriptionsUnsupportedMediaType() *PostNotificationsChannelSubscriptionsUnsupportedMediaType

NewPostNotificationsChannelSubscriptionsUnsupportedMediaType creates a PostNotificationsChannelSubscriptionsUnsupportedMediaType with default headers values

func (*PostNotificationsChannelSubscriptionsUnsupportedMediaType) Error

func (*PostNotificationsChannelSubscriptionsUnsupportedMediaType) GetPayload

func (*PostNotificationsChannelSubscriptionsUnsupportedMediaType) IsClientError

IsClientError returns true when this post notifications channel subscriptions unsupported media type response has a 4xx status code

func (*PostNotificationsChannelSubscriptionsUnsupportedMediaType) IsCode

IsCode returns true when this post notifications channel subscriptions unsupported media type response a status code equal to that given

func (*PostNotificationsChannelSubscriptionsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post notifications channel subscriptions unsupported media type response has a 3xx status code

func (*PostNotificationsChannelSubscriptionsUnsupportedMediaType) IsServerError

IsServerError returns true when this post notifications channel subscriptions unsupported media type response has a 5xx status code

func (*PostNotificationsChannelSubscriptionsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post notifications channel subscriptions unsupported media type response has a 2xx status code

func (*PostNotificationsChannelSubscriptionsUnsupportedMediaType) String

type PostNotificationsChannelsBadRequest

type PostNotificationsChannelsBadRequest struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelsBadRequest 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 NewPostNotificationsChannelsBadRequest

func NewPostNotificationsChannelsBadRequest() *PostNotificationsChannelsBadRequest

NewPostNotificationsChannelsBadRequest creates a PostNotificationsChannelsBadRequest with default headers values

func (*PostNotificationsChannelsBadRequest) Error

func (*PostNotificationsChannelsBadRequest) GetPayload

func (*PostNotificationsChannelsBadRequest) IsClientError

func (o *PostNotificationsChannelsBadRequest) IsClientError() bool

IsClientError returns true when this post notifications channels bad request response has a 4xx status code

func (*PostNotificationsChannelsBadRequest) IsCode

IsCode returns true when this post notifications channels bad request response a status code equal to that given

func (*PostNotificationsChannelsBadRequest) IsRedirect

func (o *PostNotificationsChannelsBadRequest) IsRedirect() bool

IsRedirect returns true when this post notifications channels bad request response has a 3xx status code

func (*PostNotificationsChannelsBadRequest) IsServerError

func (o *PostNotificationsChannelsBadRequest) IsServerError() bool

IsServerError returns true when this post notifications channels bad request response has a 5xx status code

func (*PostNotificationsChannelsBadRequest) IsSuccess

IsSuccess returns true when this post notifications channels bad request response has a 2xx status code

func (*PostNotificationsChannelsBadRequest) String

type PostNotificationsChannelsForbidden

type PostNotificationsChannelsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostNotificationsChannelsForbidden

func NewPostNotificationsChannelsForbidden() *PostNotificationsChannelsForbidden

NewPostNotificationsChannelsForbidden creates a PostNotificationsChannelsForbidden with default headers values

func (*PostNotificationsChannelsForbidden) Error

func (*PostNotificationsChannelsForbidden) GetPayload

func (*PostNotificationsChannelsForbidden) IsClientError

func (o *PostNotificationsChannelsForbidden) IsClientError() bool

IsClientError returns true when this post notifications channels forbidden response has a 4xx status code

func (*PostNotificationsChannelsForbidden) IsCode

IsCode returns true when this post notifications channels forbidden response a status code equal to that given

func (*PostNotificationsChannelsForbidden) IsRedirect

func (o *PostNotificationsChannelsForbidden) IsRedirect() bool

IsRedirect returns true when this post notifications channels forbidden response has a 3xx status code

func (*PostNotificationsChannelsForbidden) IsServerError

func (o *PostNotificationsChannelsForbidden) IsServerError() bool

IsServerError returns true when this post notifications channels forbidden response has a 5xx status code

func (*PostNotificationsChannelsForbidden) IsSuccess

IsSuccess returns true when this post notifications channels forbidden response has a 2xx status code

func (*PostNotificationsChannelsForbidden) String

type PostNotificationsChannelsGatewayTimeout

type PostNotificationsChannelsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostNotificationsChannelsGatewayTimeout

func NewPostNotificationsChannelsGatewayTimeout() *PostNotificationsChannelsGatewayTimeout

NewPostNotificationsChannelsGatewayTimeout creates a PostNotificationsChannelsGatewayTimeout with default headers values

func (*PostNotificationsChannelsGatewayTimeout) Error

func (*PostNotificationsChannelsGatewayTimeout) GetPayload

func (*PostNotificationsChannelsGatewayTimeout) IsClientError

func (o *PostNotificationsChannelsGatewayTimeout) IsClientError() bool

IsClientError returns true when this post notifications channels gateway timeout response has a 4xx status code

func (*PostNotificationsChannelsGatewayTimeout) IsCode

IsCode returns true when this post notifications channels gateway timeout response a status code equal to that given

func (*PostNotificationsChannelsGatewayTimeout) IsRedirect

IsRedirect returns true when this post notifications channels gateway timeout response has a 3xx status code

func (*PostNotificationsChannelsGatewayTimeout) IsServerError

func (o *PostNotificationsChannelsGatewayTimeout) IsServerError() bool

IsServerError returns true when this post notifications channels gateway timeout response has a 5xx status code

func (*PostNotificationsChannelsGatewayTimeout) IsSuccess

IsSuccess returns true when this post notifications channels gateway timeout response has a 2xx status code

func (*PostNotificationsChannelsGatewayTimeout) String

type PostNotificationsChannelsInternalServerError

type PostNotificationsChannelsInternalServerError struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelsInternalServerError 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 NewPostNotificationsChannelsInternalServerError

func NewPostNotificationsChannelsInternalServerError() *PostNotificationsChannelsInternalServerError

NewPostNotificationsChannelsInternalServerError creates a PostNotificationsChannelsInternalServerError with default headers values

func (*PostNotificationsChannelsInternalServerError) Error

func (*PostNotificationsChannelsInternalServerError) GetPayload

func (*PostNotificationsChannelsInternalServerError) IsClientError

IsClientError returns true when this post notifications channels internal server error response has a 4xx status code

func (*PostNotificationsChannelsInternalServerError) IsCode

IsCode returns true when this post notifications channels internal server error response a status code equal to that given

func (*PostNotificationsChannelsInternalServerError) IsRedirect

IsRedirect returns true when this post notifications channels internal server error response has a 3xx status code

func (*PostNotificationsChannelsInternalServerError) IsServerError

IsServerError returns true when this post notifications channels internal server error response has a 5xx status code

func (*PostNotificationsChannelsInternalServerError) IsSuccess

IsSuccess returns true when this post notifications channels internal server error response has a 2xx status code

func (*PostNotificationsChannelsInternalServerError) String

type PostNotificationsChannelsNotFound

type PostNotificationsChannelsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostNotificationsChannelsNotFound

func NewPostNotificationsChannelsNotFound() *PostNotificationsChannelsNotFound

NewPostNotificationsChannelsNotFound creates a PostNotificationsChannelsNotFound with default headers values

func (*PostNotificationsChannelsNotFound) Error

func (*PostNotificationsChannelsNotFound) GetPayload

func (*PostNotificationsChannelsNotFound) IsClientError

func (o *PostNotificationsChannelsNotFound) IsClientError() bool

IsClientError returns true when this post notifications channels not found response has a 4xx status code

func (*PostNotificationsChannelsNotFound) IsCode

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

IsCode returns true when this post notifications channels not found response a status code equal to that given

func (*PostNotificationsChannelsNotFound) IsRedirect

func (o *PostNotificationsChannelsNotFound) IsRedirect() bool

IsRedirect returns true when this post notifications channels not found response has a 3xx status code

func (*PostNotificationsChannelsNotFound) IsServerError

func (o *PostNotificationsChannelsNotFound) IsServerError() bool

IsServerError returns true when this post notifications channels not found response has a 5xx status code

func (*PostNotificationsChannelsNotFound) IsSuccess

func (o *PostNotificationsChannelsNotFound) IsSuccess() bool

IsSuccess returns true when this post notifications channels not found response has a 2xx status code

func (*PostNotificationsChannelsNotFound) String

type PostNotificationsChannelsOK

type PostNotificationsChannelsOK struct {
	Payload *models.Channel
}

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

successful operation

func NewPostNotificationsChannelsOK

func NewPostNotificationsChannelsOK() *PostNotificationsChannelsOK

NewPostNotificationsChannelsOK creates a PostNotificationsChannelsOK with default headers values

func (*PostNotificationsChannelsOK) Error

func (*PostNotificationsChannelsOK) GetPayload

func (o *PostNotificationsChannelsOK) GetPayload() *models.Channel

func (*PostNotificationsChannelsOK) IsClientError

func (o *PostNotificationsChannelsOK) IsClientError() bool

IsClientError returns true when this post notifications channels o k response has a 4xx status code

func (*PostNotificationsChannelsOK) IsCode

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

IsCode returns true when this post notifications channels o k response a status code equal to that given

func (*PostNotificationsChannelsOK) IsRedirect

func (o *PostNotificationsChannelsOK) IsRedirect() bool

IsRedirect returns true when this post notifications channels o k response has a 3xx status code

func (*PostNotificationsChannelsOK) IsServerError

func (o *PostNotificationsChannelsOK) IsServerError() bool

IsServerError returns true when this post notifications channels o k response has a 5xx status code

func (*PostNotificationsChannelsOK) IsSuccess

func (o *PostNotificationsChannelsOK) IsSuccess() bool

IsSuccess returns true when this post notifications channels o k response has a 2xx status code

func (*PostNotificationsChannelsOK) String

func (o *PostNotificationsChannelsOK) String() string

type PostNotificationsChannelsParams

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

PostNotificationsChannelsParams contains all the parameters to send to the API endpoint

for the post notifications channels operation.

Typically these are written to a http.Request.

func NewPostNotificationsChannelsParams

func NewPostNotificationsChannelsParams() *PostNotificationsChannelsParams

NewPostNotificationsChannelsParams creates a new PostNotificationsChannelsParams 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 NewPostNotificationsChannelsParamsWithContext

func NewPostNotificationsChannelsParamsWithContext(ctx context.Context) *PostNotificationsChannelsParams

NewPostNotificationsChannelsParamsWithContext creates a new PostNotificationsChannelsParams object with the ability to set a context for a request.

func NewPostNotificationsChannelsParamsWithHTTPClient

func NewPostNotificationsChannelsParamsWithHTTPClient(client *http.Client) *PostNotificationsChannelsParams

NewPostNotificationsChannelsParamsWithHTTPClient creates a new PostNotificationsChannelsParams object with the ability to set a custom HTTPClient for a request.

func NewPostNotificationsChannelsParamsWithTimeout

func NewPostNotificationsChannelsParamsWithTimeout(timeout time.Duration) *PostNotificationsChannelsParams

NewPostNotificationsChannelsParamsWithTimeout creates a new PostNotificationsChannelsParams object with the ability to set a timeout on a request.

func (*PostNotificationsChannelsParams) SetContext

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

SetContext adds the context to the post notifications channels params

func (*PostNotificationsChannelsParams) SetDefaults

func (o *PostNotificationsChannelsParams) SetDefaults()

SetDefaults hydrates default values in the post notifications channels params (not the query body).

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

func (*PostNotificationsChannelsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post notifications channels params

func (*PostNotificationsChannelsParams) SetTimeout

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

SetTimeout adds the timeout to the post notifications channels params

func (*PostNotificationsChannelsParams) WithContext

WithContext adds the context to the post notifications channels params

func (*PostNotificationsChannelsParams) WithDefaults

WithDefaults hydrates default values in the post notifications channels params (not the query body).

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

func (*PostNotificationsChannelsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post notifications channels params

func (*PostNotificationsChannelsParams) WithTimeout

WithTimeout adds the timeout to the post notifications channels params

func (*PostNotificationsChannelsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostNotificationsChannelsReader

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

PostNotificationsChannelsReader is a Reader for the PostNotificationsChannels structure.

func (*PostNotificationsChannelsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostNotificationsChannelsRequestEntityTooLarge

type PostNotificationsChannelsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPostNotificationsChannelsRequestEntityTooLarge

func NewPostNotificationsChannelsRequestEntityTooLarge() *PostNotificationsChannelsRequestEntityTooLarge

NewPostNotificationsChannelsRequestEntityTooLarge creates a PostNotificationsChannelsRequestEntityTooLarge with default headers values

func (*PostNotificationsChannelsRequestEntityTooLarge) Error

func (*PostNotificationsChannelsRequestEntityTooLarge) GetPayload

func (*PostNotificationsChannelsRequestEntityTooLarge) IsClientError

IsClientError returns true when this post notifications channels request entity too large response has a 4xx status code

func (*PostNotificationsChannelsRequestEntityTooLarge) IsCode

IsCode returns true when this post notifications channels request entity too large response a status code equal to that given

func (*PostNotificationsChannelsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post notifications channels request entity too large response has a 3xx status code

func (*PostNotificationsChannelsRequestEntityTooLarge) IsServerError

IsServerError returns true when this post notifications channels request entity too large response has a 5xx status code

func (*PostNotificationsChannelsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post notifications channels request entity too large response has a 2xx status code

func (*PostNotificationsChannelsRequestEntityTooLarge) String

type PostNotificationsChannelsRequestTimeout

type PostNotificationsChannelsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelsRequestTimeout 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 NewPostNotificationsChannelsRequestTimeout

func NewPostNotificationsChannelsRequestTimeout() *PostNotificationsChannelsRequestTimeout

NewPostNotificationsChannelsRequestTimeout creates a PostNotificationsChannelsRequestTimeout with default headers values

func (*PostNotificationsChannelsRequestTimeout) Error

func (*PostNotificationsChannelsRequestTimeout) GetPayload

func (*PostNotificationsChannelsRequestTimeout) IsClientError

func (o *PostNotificationsChannelsRequestTimeout) IsClientError() bool

IsClientError returns true when this post notifications channels request timeout response has a 4xx status code

func (*PostNotificationsChannelsRequestTimeout) IsCode

IsCode returns true when this post notifications channels request timeout response a status code equal to that given

func (*PostNotificationsChannelsRequestTimeout) IsRedirect

IsRedirect returns true when this post notifications channels request timeout response has a 3xx status code

func (*PostNotificationsChannelsRequestTimeout) IsServerError

func (o *PostNotificationsChannelsRequestTimeout) IsServerError() bool

IsServerError returns true when this post notifications channels request timeout response has a 5xx status code

func (*PostNotificationsChannelsRequestTimeout) IsSuccess

IsSuccess returns true when this post notifications channels request timeout response has a 2xx status code

func (*PostNotificationsChannelsRequestTimeout) String

type PostNotificationsChannelsServiceUnavailable

type PostNotificationsChannelsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelsServiceUnavailable 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 NewPostNotificationsChannelsServiceUnavailable

func NewPostNotificationsChannelsServiceUnavailable() *PostNotificationsChannelsServiceUnavailable

NewPostNotificationsChannelsServiceUnavailable creates a PostNotificationsChannelsServiceUnavailable with default headers values

func (*PostNotificationsChannelsServiceUnavailable) Error

func (*PostNotificationsChannelsServiceUnavailable) GetPayload

func (*PostNotificationsChannelsServiceUnavailable) IsClientError

IsClientError returns true when this post notifications channels service unavailable response has a 4xx status code

func (*PostNotificationsChannelsServiceUnavailable) IsCode

IsCode returns true when this post notifications channels service unavailable response a status code equal to that given

func (*PostNotificationsChannelsServiceUnavailable) IsRedirect

IsRedirect returns true when this post notifications channels service unavailable response has a 3xx status code

func (*PostNotificationsChannelsServiceUnavailable) IsServerError

IsServerError returns true when this post notifications channels service unavailable response has a 5xx status code

func (*PostNotificationsChannelsServiceUnavailable) IsSuccess

IsSuccess returns true when this post notifications channels service unavailable response has a 2xx status code

func (*PostNotificationsChannelsServiceUnavailable) String

type PostNotificationsChannelsTooManyRequests

type PostNotificationsChannelsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPostNotificationsChannelsTooManyRequests

func NewPostNotificationsChannelsTooManyRequests() *PostNotificationsChannelsTooManyRequests

NewPostNotificationsChannelsTooManyRequests creates a PostNotificationsChannelsTooManyRequests with default headers values

func (*PostNotificationsChannelsTooManyRequests) Error

func (*PostNotificationsChannelsTooManyRequests) GetPayload

func (*PostNotificationsChannelsTooManyRequests) IsClientError

IsClientError returns true when this post notifications channels too many requests response has a 4xx status code

func (*PostNotificationsChannelsTooManyRequests) IsCode

IsCode returns true when this post notifications channels too many requests response a status code equal to that given

func (*PostNotificationsChannelsTooManyRequests) IsRedirect

IsRedirect returns true when this post notifications channels too many requests response has a 3xx status code

func (*PostNotificationsChannelsTooManyRequests) IsServerError

IsServerError returns true when this post notifications channels too many requests response has a 5xx status code

func (*PostNotificationsChannelsTooManyRequests) IsSuccess

IsSuccess returns true when this post notifications channels too many requests response has a 2xx status code

func (*PostNotificationsChannelsTooManyRequests) String

type PostNotificationsChannelsUnauthorized

type PostNotificationsChannelsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostNotificationsChannelsUnauthorized

func NewPostNotificationsChannelsUnauthorized() *PostNotificationsChannelsUnauthorized

NewPostNotificationsChannelsUnauthorized creates a PostNotificationsChannelsUnauthorized with default headers values

func (*PostNotificationsChannelsUnauthorized) Error

func (*PostNotificationsChannelsUnauthorized) GetPayload

func (*PostNotificationsChannelsUnauthorized) IsClientError

func (o *PostNotificationsChannelsUnauthorized) IsClientError() bool

IsClientError returns true when this post notifications channels unauthorized response has a 4xx status code

func (*PostNotificationsChannelsUnauthorized) IsCode

IsCode returns true when this post notifications channels unauthorized response a status code equal to that given

func (*PostNotificationsChannelsUnauthorized) IsRedirect

IsRedirect returns true when this post notifications channels unauthorized response has a 3xx status code

func (*PostNotificationsChannelsUnauthorized) IsServerError

func (o *PostNotificationsChannelsUnauthorized) IsServerError() bool

IsServerError returns true when this post notifications channels unauthorized response has a 5xx status code

func (*PostNotificationsChannelsUnauthorized) IsSuccess

IsSuccess returns true when this post notifications channels unauthorized response has a 2xx status code

func (*PostNotificationsChannelsUnauthorized) String

type PostNotificationsChannelsUnsupportedMediaType

type PostNotificationsChannelsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostNotificationsChannelsUnsupportedMediaType 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 NewPostNotificationsChannelsUnsupportedMediaType

func NewPostNotificationsChannelsUnsupportedMediaType() *PostNotificationsChannelsUnsupportedMediaType

NewPostNotificationsChannelsUnsupportedMediaType creates a PostNotificationsChannelsUnsupportedMediaType with default headers values

func (*PostNotificationsChannelsUnsupportedMediaType) Error

func (*PostNotificationsChannelsUnsupportedMediaType) GetPayload

func (*PostNotificationsChannelsUnsupportedMediaType) IsClientError

IsClientError returns true when this post notifications channels unsupported media type response has a 4xx status code

func (*PostNotificationsChannelsUnsupportedMediaType) IsCode

IsCode returns true when this post notifications channels unsupported media type response a status code equal to that given

func (*PostNotificationsChannelsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post notifications channels unsupported media type response has a 3xx status code

func (*PostNotificationsChannelsUnsupportedMediaType) IsServerError

IsServerError returns true when this post notifications channels unsupported media type response has a 5xx status code

func (*PostNotificationsChannelsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post notifications channels unsupported media type response has a 2xx status code

func (*PostNotificationsChannelsUnsupportedMediaType) String

type PutNotificationsChannelSubscriptionsBadRequest

type PutNotificationsChannelSubscriptionsBadRequest struct {
	Payload *models.ErrorBody
}

PutNotificationsChannelSubscriptionsBadRequest 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 NewPutNotificationsChannelSubscriptionsBadRequest

func NewPutNotificationsChannelSubscriptionsBadRequest() *PutNotificationsChannelSubscriptionsBadRequest

NewPutNotificationsChannelSubscriptionsBadRequest creates a PutNotificationsChannelSubscriptionsBadRequest with default headers values

func (*PutNotificationsChannelSubscriptionsBadRequest) Error

func (*PutNotificationsChannelSubscriptionsBadRequest) GetPayload

func (*PutNotificationsChannelSubscriptionsBadRequest) IsClientError

IsClientError returns true when this put notifications channel subscriptions bad request response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsBadRequest) IsCode

IsCode returns true when this put notifications channel subscriptions bad request response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsBadRequest) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions bad request response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsBadRequest) IsServerError

IsServerError returns true when this put notifications channel subscriptions bad request response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsBadRequest) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions bad request response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsBadRequest) String

type PutNotificationsChannelSubscriptionsForbidden

type PutNotificationsChannelSubscriptionsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPutNotificationsChannelSubscriptionsForbidden

func NewPutNotificationsChannelSubscriptionsForbidden() *PutNotificationsChannelSubscriptionsForbidden

NewPutNotificationsChannelSubscriptionsForbidden creates a PutNotificationsChannelSubscriptionsForbidden with default headers values

func (*PutNotificationsChannelSubscriptionsForbidden) Error

func (*PutNotificationsChannelSubscriptionsForbidden) GetPayload

func (*PutNotificationsChannelSubscriptionsForbidden) IsClientError

IsClientError returns true when this put notifications channel subscriptions forbidden response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsForbidden) IsCode

IsCode returns true when this put notifications channel subscriptions forbidden response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsForbidden) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions forbidden response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsForbidden) IsServerError

IsServerError returns true when this put notifications channel subscriptions forbidden response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsForbidden) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions forbidden response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsForbidden) String

type PutNotificationsChannelSubscriptionsGatewayTimeout

type PutNotificationsChannelSubscriptionsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPutNotificationsChannelSubscriptionsGatewayTimeout

func NewPutNotificationsChannelSubscriptionsGatewayTimeout() *PutNotificationsChannelSubscriptionsGatewayTimeout

NewPutNotificationsChannelSubscriptionsGatewayTimeout creates a PutNotificationsChannelSubscriptionsGatewayTimeout with default headers values

func (*PutNotificationsChannelSubscriptionsGatewayTimeout) Error

func (*PutNotificationsChannelSubscriptionsGatewayTimeout) GetPayload

func (*PutNotificationsChannelSubscriptionsGatewayTimeout) IsClientError

IsClientError returns true when this put notifications channel subscriptions gateway timeout response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsGatewayTimeout) IsCode

IsCode returns true when this put notifications channel subscriptions gateway timeout response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsGatewayTimeout) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions gateway timeout response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsGatewayTimeout) IsServerError

IsServerError returns true when this put notifications channel subscriptions gateway timeout response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsGatewayTimeout) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions gateway timeout response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsGatewayTimeout) String

type PutNotificationsChannelSubscriptionsInternalServerError

type PutNotificationsChannelSubscriptionsInternalServerError struct {
	Payload *models.ErrorBody
}

PutNotificationsChannelSubscriptionsInternalServerError 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 NewPutNotificationsChannelSubscriptionsInternalServerError

func NewPutNotificationsChannelSubscriptionsInternalServerError() *PutNotificationsChannelSubscriptionsInternalServerError

NewPutNotificationsChannelSubscriptionsInternalServerError creates a PutNotificationsChannelSubscriptionsInternalServerError with default headers values

func (*PutNotificationsChannelSubscriptionsInternalServerError) Error

func (*PutNotificationsChannelSubscriptionsInternalServerError) GetPayload

func (*PutNotificationsChannelSubscriptionsInternalServerError) IsClientError

IsClientError returns true when this put notifications channel subscriptions internal server error response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsInternalServerError) IsCode

IsCode returns true when this put notifications channel subscriptions internal server error response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsInternalServerError) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions internal server error response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsInternalServerError) IsServerError

IsServerError returns true when this put notifications channel subscriptions internal server error response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsInternalServerError) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions internal server error response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsInternalServerError) String

type PutNotificationsChannelSubscriptionsNotFound

type PutNotificationsChannelSubscriptionsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPutNotificationsChannelSubscriptionsNotFound

func NewPutNotificationsChannelSubscriptionsNotFound() *PutNotificationsChannelSubscriptionsNotFound

NewPutNotificationsChannelSubscriptionsNotFound creates a PutNotificationsChannelSubscriptionsNotFound with default headers values

func (*PutNotificationsChannelSubscriptionsNotFound) Error

func (*PutNotificationsChannelSubscriptionsNotFound) GetPayload

func (*PutNotificationsChannelSubscriptionsNotFound) IsClientError

IsClientError returns true when this put notifications channel subscriptions not found response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsNotFound) IsCode

IsCode returns true when this put notifications channel subscriptions not found response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsNotFound) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions not found response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsNotFound) IsServerError

IsServerError returns true when this put notifications channel subscriptions not found response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsNotFound) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions not found response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsNotFound) String

type PutNotificationsChannelSubscriptionsOK

type PutNotificationsChannelSubscriptionsOK struct {
	Payload *models.ChannelTopicEntityListing
}

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

successful operation

func NewPutNotificationsChannelSubscriptionsOK

func NewPutNotificationsChannelSubscriptionsOK() *PutNotificationsChannelSubscriptionsOK

NewPutNotificationsChannelSubscriptionsOK creates a PutNotificationsChannelSubscriptionsOK with default headers values

func (*PutNotificationsChannelSubscriptionsOK) Error

func (*PutNotificationsChannelSubscriptionsOK) GetPayload

func (*PutNotificationsChannelSubscriptionsOK) IsClientError

func (o *PutNotificationsChannelSubscriptionsOK) IsClientError() bool

IsClientError returns true when this put notifications channel subscriptions o k response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsOK) IsCode

IsCode returns true when this put notifications channel subscriptions o k response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsOK) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions o k response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsOK) IsServerError

func (o *PutNotificationsChannelSubscriptionsOK) IsServerError() bool

IsServerError returns true when this put notifications channel subscriptions o k response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsOK) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions o k response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsOK) String

type PutNotificationsChannelSubscriptionsParams

type PutNotificationsChannelSubscriptionsParams struct {

	/* Body.

	   Body
	*/
	Body []*models.ChannelTopic

	/* ChannelID.

	   Channel ID
	*/
	ChannelID string

	/* IgnoreErrors.

	   Optionally prevent throwing of errors for failed permissions checks.
	*/
	IgnoreErrors *bool

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

PutNotificationsChannelSubscriptionsParams contains all the parameters to send to the API endpoint

for the put notifications channel subscriptions operation.

Typically these are written to a http.Request.

func NewPutNotificationsChannelSubscriptionsParams

func NewPutNotificationsChannelSubscriptionsParams() *PutNotificationsChannelSubscriptionsParams

NewPutNotificationsChannelSubscriptionsParams creates a new PutNotificationsChannelSubscriptionsParams 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 NewPutNotificationsChannelSubscriptionsParamsWithContext

func NewPutNotificationsChannelSubscriptionsParamsWithContext(ctx context.Context) *PutNotificationsChannelSubscriptionsParams

NewPutNotificationsChannelSubscriptionsParamsWithContext creates a new PutNotificationsChannelSubscriptionsParams object with the ability to set a context for a request.

func NewPutNotificationsChannelSubscriptionsParamsWithHTTPClient

func NewPutNotificationsChannelSubscriptionsParamsWithHTTPClient(client *http.Client) *PutNotificationsChannelSubscriptionsParams

NewPutNotificationsChannelSubscriptionsParamsWithHTTPClient creates a new PutNotificationsChannelSubscriptionsParams object with the ability to set a custom HTTPClient for a request.

func NewPutNotificationsChannelSubscriptionsParamsWithTimeout

func NewPutNotificationsChannelSubscriptionsParamsWithTimeout(timeout time.Duration) *PutNotificationsChannelSubscriptionsParams

NewPutNotificationsChannelSubscriptionsParamsWithTimeout creates a new PutNotificationsChannelSubscriptionsParams object with the ability to set a timeout on a request.

func (*PutNotificationsChannelSubscriptionsParams) SetBody

SetBody adds the body to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) SetChannelID

func (o *PutNotificationsChannelSubscriptionsParams) SetChannelID(channelID string)

SetChannelID adds the channelId to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) SetContext

SetContext adds the context to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) SetDefaults

SetDefaults hydrates default values in the put notifications channel subscriptions params (not the query body).

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

func (*PutNotificationsChannelSubscriptionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) SetIgnoreErrors

func (o *PutNotificationsChannelSubscriptionsParams) SetIgnoreErrors(ignoreErrors *bool)

SetIgnoreErrors adds the ignoreErrors to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) SetTimeout

SetTimeout adds the timeout to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) WithBody

WithBody adds the body to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) WithChannelID

WithChannelID adds the channelID to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) WithContext

WithContext adds the context to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) WithDefaults

WithDefaults hydrates default values in the put notifications channel subscriptions params (not the query body).

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

func (*PutNotificationsChannelSubscriptionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) WithIgnoreErrors

WithIgnoreErrors adds the ignoreErrors to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) WithTimeout

WithTimeout adds the timeout to the put notifications channel subscriptions params

func (*PutNotificationsChannelSubscriptionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutNotificationsChannelSubscriptionsReader

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

PutNotificationsChannelSubscriptionsReader is a Reader for the PutNotificationsChannelSubscriptions structure.

func (*PutNotificationsChannelSubscriptionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutNotificationsChannelSubscriptionsRequestEntityTooLarge

type PutNotificationsChannelSubscriptionsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPutNotificationsChannelSubscriptionsRequestEntityTooLarge

func NewPutNotificationsChannelSubscriptionsRequestEntityTooLarge() *PutNotificationsChannelSubscriptionsRequestEntityTooLarge

NewPutNotificationsChannelSubscriptionsRequestEntityTooLarge creates a PutNotificationsChannelSubscriptionsRequestEntityTooLarge with default headers values

func (*PutNotificationsChannelSubscriptionsRequestEntityTooLarge) Error

func (*PutNotificationsChannelSubscriptionsRequestEntityTooLarge) GetPayload

func (*PutNotificationsChannelSubscriptionsRequestEntityTooLarge) IsClientError

IsClientError returns true when this put notifications channel subscriptions request entity too large response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsRequestEntityTooLarge) IsCode

IsCode returns true when this put notifications channel subscriptions request entity too large response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions request entity too large response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsRequestEntityTooLarge) IsServerError

IsServerError returns true when this put notifications channel subscriptions request entity too large response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions request entity too large response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsRequestEntityTooLarge) String

type PutNotificationsChannelSubscriptionsRequestTimeout

type PutNotificationsChannelSubscriptionsRequestTimeout struct {
	Payload *models.ErrorBody
}

PutNotificationsChannelSubscriptionsRequestTimeout 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 NewPutNotificationsChannelSubscriptionsRequestTimeout

func NewPutNotificationsChannelSubscriptionsRequestTimeout() *PutNotificationsChannelSubscriptionsRequestTimeout

NewPutNotificationsChannelSubscriptionsRequestTimeout creates a PutNotificationsChannelSubscriptionsRequestTimeout with default headers values

func (*PutNotificationsChannelSubscriptionsRequestTimeout) Error

func (*PutNotificationsChannelSubscriptionsRequestTimeout) GetPayload

func (*PutNotificationsChannelSubscriptionsRequestTimeout) IsClientError

IsClientError returns true when this put notifications channel subscriptions request timeout response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsRequestTimeout) IsCode

IsCode returns true when this put notifications channel subscriptions request timeout response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsRequestTimeout) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions request timeout response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsRequestTimeout) IsServerError

IsServerError returns true when this put notifications channel subscriptions request timeout response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsRequestTimeout) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions request timeout response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsRequestTimeout) String

type PutNotificationsChannelSubscriptionsServiceUnavailable

type PutNotificationsChannelSubscriptionsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PutNotificationsChannelSubscriptionsServiceUnavailable 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 NewPutNotificationsChannelSubscriptionsServiceUnavailable

func NewPutNotificationsChannelSubscriptionsServiceUnavailable() *PutNotificationsChannelSubscriptionsServiceUnavailable

NewPutNotificationsChannelSubscriptionsServiceUnavailable creates a PutNotificationsChannelSubscriptionsServiceUnavailable with default headers values

func (*PutNotificationsChannelSubscriptionsServiceUnavailable) Error

func (*PutNotificationsChannelSubscriptionsServiceUnavailable) GetPayload

func (*PutNotificationsChannelSubscriptionsServiceUnavailable) IsClientError

IsClientError returns true when this put notifications channel subscriptions service unavailable response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsServiceUnavailable) IsCode

IsCode returns true when this put notifications channel subscriptions service unavailable response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsServiceUnavailable) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions service unavailable response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsServiceUnavailable) IsServerError

IsServerError returns true when this put notifications channel subscriptions service unavailable response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsServiceUnavailable) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions service unavailable response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsServiceUnavailable) String

type PutNotificationsChannelSubscriptionsTooManyRequests

type PutNotificationsChannelSubscriptionsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPutNotificationsChannelSubscriptionsTooManyRequests

func NewPutNotificationsChannelSubscriptionsTooManyRequests() *PutNotificationsChannelSubscriptionsTooManyRequests

NewPutNotificationsChannelSubscriptionsTooManyRequests creates a PutNotificationsChannelSubscriptionsTooManyRequests with default headers values

func (*PutNotificationsChannelSubscriptionsTooManyRequests) Error

func (*PutNotificationsChannelSubscriptionsTooManyRequests) GetPayload

func (*PutNotificationsChannelSubscriptionsTooManyRequests) IsClientError

IsClientError returns true when this put notifications channel subscriptions too many requests response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsTooManyRequests) IsCode

IsCode returns true when this put notifications channel subscriptions too many requests response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsTooManyRequests) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions too many requests response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsTooManyRequests) IsServerError

IsServerError returns true when this put notifications channel subscriptions too many requests response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsTooManyRequests) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions too many requests response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsTooManyRequests) String

type PutNotificationsChannelSubscriptionsUnauthorized

type PutNotificationsChannelSubscriptionsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPutNotificationsChannelSubscriptionsUnauthorized

func NewPutNotificationsChannelSubscriptionsUnauthorized() *PutNotificationsChannelSubscriptionsUnauthorized

NewPutNotificationsChannelSubscriptionsUnauthorized creates a PutNotificationsChannelSubscriptionsUnauthorized with default headers values

func (*PutNotificationsChannelSubscriptionsUnauthorized) Error

func (*PutNotificationsChannelSubscriptionsUnauthorized) GetPayload

func (*PutNotificationsChannelSubscriptionsUnauthorized) IsClientError

IsClientError returns true when this put notifications channel subscriptions unauthorized response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsUnauthorized) IsCode

IsCode returns true when this put notifications channel subscriptions unauthorized response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsUnauthorized) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions unauthorized response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsUnauthorized) IsServerError

IsServerError returns true when this put notifications channel subscriptions unauthorized response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsUnauthorized) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions unauthorized response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsUnauthorized) String

type PutNotificationsChannelSubscriptionsUnsupportedMediaType

type PutNotificationsChannelSubscriptionsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PutNotificationsChannelSubscriptionsUnsupportedMediaType 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 NewPutNotificationsChannelSubscriptionsUnsupportedMediaType

func NewPutNotificationsChannelSubscriptionsUnsupportedMediaType() *PutNotificationsChannelSubscriptionsUnsupportedMediaType

NewPutNotificationsChannelSubscriptionsUnsupportedMediaType creates a PutNotificationsChannelSubscriptionsUnsupportedMediaType with default headers values

func (*PutNotificationsChannelSubscriptionsUnsupportedMediaType) Error

func (*PutNotificationsChannelSubscriptionsUnsupportedMediaType) GetPayload

func (*PutNotificationsChannelSubscriptionsUnsupportedMediaType) IsClientError

IsClientError returns true when this put notifications channel subscriptions unsupported media type response has a 4xx status code

func (*PutNotificationsChannelSubscriptionsUnsupportedMediaType) IsCode

IsCode returns true when this put notifications channel subscriptions unsupported media type response a status code equal to that given

func (*PutNotificationsChannelSubscriptionsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this put notifications channel subscriptions unsupported media type response has a 3xx status code

func (*PutNotificationsChannelSubscriptionsUnsupportedMediaType) IsServerError

IsServerError returns true when this put notifications channel subscriptions unsupported media type response has a 5xx status code

func (*PutNotificationsChannelSubscriptionsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this put notifications channel subscriptions unsupported media type response has a 2xx status code

func (*PutNotificationsChannelSubscriptionsUnsupportedMediaType) String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL