limits

package
v0.44.37 Latest Latest
Warning

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

Go to latest
Published: Jun 29, 2021 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for limits API

func (*Client) DeleteLimitsID

func (a *Client) DeleteLimitsID(params *DeleteLimitsIDParams) (*DeleteLimitsIDNoContent, error)

DeleteLimitsID deletes limit

func (*Client) GetLimits

func (a *Client) GetLimits(params *GetLimitsParams) (*GetLimitsOK, error)

GetLimits lists limits

func (*Client) GetLimitsID

func (a *Client) GetLimitsID(params *GetLimitsIDParams) (*GetLimitsIDOK, error)

GetLimitsID fetches limit

func (*Client) PatchLimitsID

func (a *Client) PatchLimitsID(params *PatchLimitsIDParams) (*PatchLimitsIDOK, error)

PatchLimitsID amends limit

func (*Client) PostLimits

func (a *Client) PostLimits(params *PostLimitsParams) (*PostLimitsCreated, error)

PostLimits creates a limit

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

type ClientService added in v0.43.0

type ClientService interface {
	DeleteLimitsID(params *DeleteLimitsIDParams) (*DeleteLimitsIDNoContent, error)

	GetLimits(params *GetLimitsParams) (*GetLimitsOK, error)

	GetLimitsID(params *GetLimitsIDParams) (*GetLimitsIDOK, error)

	PatchLimitsID(params *PatchLimitsIDParams) (*PatchLimitsIDOK, error)

	PostLimits(params *PostLimitsParams) (*PostLimitsCreated, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new limits API client.

type DeleteLimitsIDBadRequest added in v0.43.0

type DeleteLimitsIDBadRequest struct {
	Payload *models.APIError
}

DeleteLimitsIDBadRequest handles this case with default header values.

Bad Request

func NewDeleteLimitsIDBadRequest added in v0.43.0

func NewDeleteLimitsIDBadRequest() *DeleteLimitsIDBadRequest

NewDeleteLimitsIDBadRequest creates a DeleteLimitsIDBadRequest with default headers values

func (*DeleteLimitsIDBadRequest) Error added in v0.43.0

func (o *DeleteLimitsIDBadRequest) Error() string

func (*DeleteLimitsIDBadRequest) GetPayload added in v0.43.0

func (o *DeleteLimitsIDBadRequest) GetPayload() *models.APIError

type DeleteLimitsIDConflict added in v0.43.0

type DeleteLimitsIDConflict struct {
	Payload *models.APIError
}

DeleteLimitsIDConflict handles this case with default header values.

Conflict

func NewDeleteLimitsIDConflict added in v0.43.0

func NewDeleteLimitsIDConflict() *DeleteLimitsIDConflict

NewDeleteLimitsIDConflict creates a DeleteLimitsIDConflict with default headers values

func (*DeleteLimitsIDConflict) Error added in v0.43.0

func (o *DeleteLimitsIDConflict) Error() string

func (*DeleteLimitsIDConflict) GetPayload added in v0.43.0

func (o *DeleteLimitsIDConflict) GetPayload() *models.APIError

type DeleteLimitsIDForbidden added in v0.43.0

type DeleteLimitsIDForbidden struct {
	Payload *models.APIError
}

DeleteLimitsIDForbidden handles this case with default header values.

Forbidden

func NewDeleteLimitsIDForbidden added in v0.43.0

func NewDeleteLimitsIDForbidden() *DeleteLimitsIDForbidden

NewDeleteLimitsIDForbidden creates a DeleteLimitsIDForbidden with default headers values

func (*DeleteLimitsIDForbidden) Error added in v0.43.0

func (o *DeleteLimitsIDForbidden) Error() string

func (*DeleteLimitsIDForbidden) GetPayload added in v0.43.0

func (o *DeleteLimitsIDForbidden) GetPayload() *models.APIError

type DeleteLimitsIDInternalServerError added in v0.43.0

type DeleteLimitsIDInternalServerError struct {
	Payload *models.APIError
}

DeleteLimitsIDInternalServerError handles this case with default header values.

Internal Server Error

func NewDeleteLimitsIDInternalServerError added in v0.43.0

func NewDeleteLimitsIDInternalServerError() *DeleteLimitsIDInternalServerError

NewDeleteLimitsIDInternalServerError creates a DeleteLimitsIDInternalServerError with default headers values

func (*DeleteLimitsIDInternalServerError) Error added in v0.43.0

func (*DeleteLimitsIDInternalServerError) GetPayload added in v0.43.0

type DeleteLimitsIDNoContent

type DeleteLimitsIDNoContent struct {
}

DeleteLimitsIDNoContent handles this case with default header values.

Limit deleted

func NewDeleteLimitsIDNoContent

func NewDeleteLimitsIDNoContent() *DeleteLimitsIDNoContent

NewDeleteLimitsIDNoContent creates a DeleteLimitsIDNoContent with default headers values

func (*DeleteLimitsIDNoContent) Error

func (o *DeleteLimitsIDNoContent) Error() string

type DeleteLimitsIDNotFound added in v0.43.0

type DeleteLimitsIDNotFound struct {
	Payload *models.APIError
}

DeleteLimitsIDNotFound handles this case with default header values.

Record not found

func NewDeleteLimitsIDNotFound added in v0.43.0

func NewDeleteLimitsIDNotFound() *DeleteLimitsIDNotFound

NewDeleteLimitsIDNotFound creates a DeleteLimitsIDNotFound with default headers values

func (*DeleteLimitsIDNotFound) Error added in v0.43.0

func (o *DeleteLimitsIDNotFound) Error() string

func (*DeleteLimitsIDNotFound) GetPayload added in v0.43.0

func (o *DeleteLimitsIDNotFound) GetPayload() *models.APIError

type DeleteLimitsIDParams

type DeleteLimitsIDParams struct {

	/*ID
	  Limit Id

	*/
	ID strfmt.UUID
	/*Version
	  Version

	*/
	Version int64

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

DeleteLimitsIDParams contains all the parameters to send to the API endpoint for the delete limits ID operation typically these are written to a http.Request

func NewDeleteLimitsIDParams

func NewDeleteLimitsIDParams() *DeleteLimitsIDParams

NewDeleteLimitsIDParams creates a new DeleteLimitsIDParams object with the default values initialized.

func NewDeleteLimitsIDParamsWithContext

func NewDeleteLimitsIDParamsWithContext(ctx context.Context) *DeleteLimitsIDParams

NewDeleteLimitsIDParamsWithContext creates a new DeleteLimitsIDParams object with the default values initialized, and the ability to set a context for a request

func NewDeleteLimitsIDParamsWithHTTPClient

func NewDeleteLimitsIDParamsWithHTTPClient(client *http.Client) *DeleteLimitsIDParams

NewDeleteLimitsIDParamsWithHTTPClient creates a new DeleteLimitsIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDeleteLimitsIDParamsWithTimeout

func NewDeleteLimitsIDParamsWithTimeout(timeout time.Duration) *DeleteLimitsIDParams

NewDeleteLimitsIDParamsWithTimeout creates a new DeleteLimitsIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*DeleteLimitsIDParams) SetContext

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

SetContext adds the context to the delete limits ID params

func (*DeleteLimitsIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete limits ID params

func (*DeleteLimitsIDParams) SetID

func (o *DeleteLimitsIDParams) SetID(id strfmt.UUID)

SetID adds the id to the delete limits ID params

func (*DeleteLimitsIDParams) SetTimeout

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

SetTimeout adds the timeout to the delete limits ID params

func (*DeleteLimitsIDParams) SetVersion

func (o *DeleteLimitsIDParams) SetVersion(version int64)

SetVersion adds the version to the delete limits ID params

func (*DeleteLimitsIDParams) WithContext

WithContext adds the context to the delete limits ID params

func (*DeleteLimitsIDParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete limits ID params

func (*DeleteLimitsIDParams) WithID

WithID adds the id to the delete limits ID params

func (*DeleteLimitsIDParams) WithTimeout

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

WithTimeout adds the timeout to the delete limits ID params

func (*DeleteLimitsIDParams) WithVersion

func (o *DeleteLimitsIDParams) WithVersion(version int64) *DeleteLimitsIDParams

WithVersion adds the version to the delete limits ID params

func (*DeleteLimitsIDParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteLimitsIDReader

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

DeleteLimitsIDReader is a Reader for the DeleteLimitsID structure.

func (*DeleteLimitsIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteLimitsIDServiceUnavailable added in v0.43.0

type DeleteLimitsIDServiceUnavailable struct {
	Payload *models.APIError
}

DeleteLimitsIDServiceUnavailable handles this case with default header values.

The server is up, but overloaded with requests. Try again later.

func NewDeleteLimitsIDServiceUnavailable added in v0.43.0

func NewDeleteLimitsIDServiceUnavailable() *DeleteLimitsIDServiceUnavailable

NewDeleteLimitsIDServiceUnavailable creates a DeleteLimitsIDServiceUnavailable with default headers values

func (*DeleteLimitsIDServiceUnavailable) Error added in v0.43.0

func (*DeleteLimitsIDServiceUnavailable) GetPayload added in v0.43.0

type DeleteLimitsIDTooManyRequests added in v0.43.0

type DeleteLimitsIDTooManyRequests struct {
	Payload *models.APIError
}

DeleteLimitsIDTooManyRequests handles this case with default header values.

The request cannot be served due to the application’s rate limit

func NewDeleteLimitsIDTooManyRequests added in v0.43.0

func NewDeleteLimitsIDTooManyRequests() *DeleteLimitsIDTooManyRequests

NewDeleteLimitsIDTooManyRequests creates a DeleteLimitsIDTooManyRequests with default headers values

func (*DeleteLimitsIDTooManyRequests) Error added in v0.43.0

func (*DeleteLimitsIDTooManyRequests) GetPayload added in v0.43.0

type DeleteLimitsIDUnauthorized added in v0.43.0

type DeleteLimitsIDUnauthorized struct {
	Payload *models.APIError
}

DeleteLimitsIDUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewDeleteLimitsIDUnauthorized added in v0.43.0

func NewDeleteLimitsIDUnauthorized() *DeleteLimitsIDUnauthorized

NewDeleteLimitsIDUnauthorized creates a DeleteLimitsIDUnauthorized with default headers values

func (*DeleteLimitsIDUnauthorized) Error added in v0.43.0

func (*DeleteLimitsIDUnauthorized) GetPayload added in v0.43.0

func (o *DeleteLimitsIDUnauthorized) GetPayload() *models.APIError

type GetLimitsBadRequest added in v0.43.0

type GetLimitsBadRequest struct {
	Payload *models.APIError
}

GetLimitsBadRequest handles this case with default header values.

Bad Request

func NewGetLimitsBadRequest added in v0.43.0

func NewGetLimitsBadRequest() *GetLimitsBadRequest

NewGetLimitsBadRequest creates a GetLimitsBadRequest with default headers values

func (*GetLimitsBadRequest) Error added in v0.43.0

func (o *GetLimitsBadRequest) Error() string

func (*GetLimitsBadRequest) GetPayload added in v0.43.0

func (o *GetLimitsBadRequest) GetPayload() *models.APIError

type GetLimitsConflict added in v0.43.0

type GetLimitsConflict struct {
	Payload *models.APIError
}

GetLimitsConflict handles this case with default header values.

Conflict

func NewGetLimitsConflict added in v0.43.0

func NewGetLimitsConflict() *GetLimitsConflict

NewGetLimitsConflict creates a GetLimitsConflict with default headers values

func (*GetLimitsConflict) Error added in v0.43.0

func (o *GetLimitsConflict) Error() string

func (*GetLimitsConflict) GetPayload added in v0.43.0

func (o *GetLimitsConflict) GetPayload() *models.APIError

type GetLimitsForbidden added in v0.43.0

type GetLimitsForbidden struct {
	Payload *models.APIError
}

GetLimitsForbidden handles this case with default header values.

Forbidden

func NewGetLimitsForbidden added in v0.43.0

func NewGetLimitsForbidden() *GetLimitsForbidden

NewGetLimitsForbidden creates a GetLimitsForbidden with default headers values

func (*GetLimitsForbidden) Error added in v0.43.0

func (o *GetLimitsForbidden) Error() string

func (*GetLimitsForbidden) GetPayload added in v0.43.0

func (o *GetLimitsForbidden) GetPayload() *models.APIError

type GetLimitsIDBadRequest added in v0.43.0

type GetLimitsIDBadRequest struct {
	Payload *models.APIError
}

GetLimitsIDBadRequest handles this case with default header values.

Bad Request

func NewGetLimitsIDBadRequest added in v0.43.0

func NewGetLimitsIDBadRequest() *GetLimitsIDBadRequest

NewGetLimitsIDBadRequest creates a GetLimitsIDBadRequest with default headers values

func (*GetLimitsIDBadRequest) Error added in v0.43.0

func (o *GetLimitsIDBadRequest) Error() string

func (*GetLimitsIDBadRequest) GetPayload added in v0.43.0

func (o *GetLimitsIDBadRequest) GetPayload() *models.APIError

type GetLimitsIDConflict added in v0.43.0

type GetLimitsIDConflict struct {
	Payload *models.APIError
}

GetLimitsIDConflict handles this case with default header values.

Conflict

func NewGetLimitsIDConflict added in v0.43.0

func NewGetLimitsIDConflict() *GetLimitsIDConflict

NewGetLimitsIDConflict creates a GetLimitsIDConflict with default headers values

func (*GetLimitsIDConflict) Error added in v0.43.0

func (o *GetLimitsIDConflict) Error() string

func (*GetLimitsIDConflict) GetPayload added in v0.43.0

func (o *GetLimitsIDConflict) GetPayload() *models.APIError

type GetLimitsIDForbidden added in v0.43.0

type GetLimitsIDForbidden struct {
	Payload *models.APIError
}

GetLimitsIDForbidden handles this case with default header values.

Forbidden

func NewGetLimitsIDForbidden added in v0.43.0

func NewGetLimitsIDForbidden() *GetLimitsIDForbidden

NewGetLimitsIDForbidden creates a GetLimitsIDForbidden with default headers values

func (*GetLimitsIDForbidden) Error added in v0.43.0

func (o *GetLimitsIDForbidden) Error() string

func (*GetLimitsIDForbidden) GetPayload added in v0.43.0

func (o *GetLimitsIDForbidden) GetPayload() *models.APIError

type GetLimitsIDInternalServerError added in v0.43.0

type GetLimitsIDInternalServerError struct {
	Payload *models.APIError
}

GetLimitsIDInternalServerError handles this case with default header values.

Internal Server Error

func NewGetLimitsIDInternalServerError added in v0.43.0

func NewGetLimitsIDInternalServerError() *GetLimitsIDInternalServerError

NewGetLimitsIDInternalServerError creates a GetLimitsIDInternalServerError with default headers values

func (*GetLimitsIDInternalServerError) Error added in v0.43.0

func (*GetLimitsIDInternalServerError) GetPayload added in v0.43.0

type GetLimitsIDNotFound added in v0.43.0

type GetLimitsIDNotFound struct {
	Payload *models.APIError
}

GetLimitsIDNotFound handles this case with default header values.

Record not found

func NewGetLimitsIDNotFound added in v0.43.0

func NewGetLimitsIDNotFound() *GetLimitsIDNotFound

NewGetLimitsIDNotFound creates a GetLimitsIDNotFound with default headers values

func (*GetLimitsIDNotFound) Error added in v0.43.0

func (o *GetLimitsIDNotFound) Error() string

func (*GetLimitsIDNotFound) GetPayload added in v0.43.0

func (o *GetLimitsIDNotFound) GetPayload() *models.APIError

type GetLimitsIDOK

type GetLimitsIDOK struct {
	Payload *models.LimitDetailsResponse
}

GetLimitsIDOK handles this case with default header values.

Limit details

func NewGetLimitsIDOK

func NewGetLimitsIDOK() *GetLimitsIDOK

NewGetLimitsIDOK creates a GetLimitsIDOK with default headers values

func (*GetLimitsIDOK) Error

func (o *GetLimitsIDOK) Error() string

func (*GetLimitsIDOK) GetPayload added in v0.43.0

func (o *GetLimitsIDOK) GetPayload() *models.LimitDetailsResponse

type GetLimitsIDParams

type GetLimitsIDParams struct {

	/*ID
	  limit Id

	*/
	ID strfmt.UUID

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

GetLimitsIDParams contains all the parameters to send to the API endpoint for the get limits ID operation typically these are written to a http.Request

func NewGetLimitsIDParams

func NewGetLimitsIDParams() *GetLimitsIDParams

NewGetLimitsIDParams creates a new GetLimitsIDParams object with the default values initialized.

func NewGetLimitsIDParamsWithContext

func NewGetLimitsIDParamsWithContext(ctx context.Context) *GetLimitsIDParams

NewGetLimitsIDParamsWithContext creates a new GetLimitsIDParams object with the default values initialized, and the ability to set a context for a request

func NewGetLimitsIDParamsWithHTTPClient

func NewGetLimitsIDParamsWithHTTPClient(client *http.Client) *GetLimitsIDParams

NewGetLimitsIDParamsWithHTTPClient creates a new GetLimitsIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetLimitsIDParamsWithTimeout

func NewGetLimitsIDParamsWithTimeout(timeout time.Duration) *GetLimitsIDParams

NewGetLimitsIDParamsWithTimeout creates a new GetLimitsIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetLimitsIDParams) SetContext

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

SetContext adds the context to the get limits ID params

func (*GetLimitsIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get limits ID params

func (*GetLimitsIDParams) SetID

func (o *GetLimitsIDParams) SetID(id strfmt.UUID)

SetID adds the id to the get limits ID params

func (*GetLimitsIDParams) SetTimeout

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

SetTimeout adds the timeout to the get limits ID params

func (*GetLimitsIDParams) WithContext

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

WithContext adds the context to the get limits ID params

func (*GetLimitsIDParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get limits ID params

func (*GetLimitsIDParams) WithID

WithID adds the id to the get limits ID params

func (*GetLimitsIDParams) WithTimeout

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

WithTimeout adds the timeout to the get limits ID params

func (*GetLimitsIDParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetLimitsIDReader

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

GetLimitsIDReader is a Reader for the GetLimitsID structure.

func (*GetLimitsIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLimitsIDServiceUnavailable added in v0.43.0

type GetLimitsIDServiceUnavailable struct {
	Payload *models.APIError
}

GetLimitsIDServiceUnavailable handles this case with default header values.

The server is up, but overloaded with requests. Try again later.

func NewGetLimitsIDServiceUnavailable added in v0.43.0

func NewGetLimitsIDServiceUnavailable() *GetLimitsIDServiceUnavailable

NewGetLimitsIDServiceUnavailable creates a GetLimitsIDServiceUnavailable with default headers values

func (*GetLimitsIDServiceUnavailable) Error added in v0.43.0

func (*GetLimitsIDServiceUnavailable) GetPayload added in v0.43.0

type GetLimitsIDTooManyRequests added in v0.43.0

type GetLimitsIDTooManyRequests struct {
	Payload *models.APIError
}

GetLimitsIDTooManyRequests handles this case with default header values.

The request cannot be served due to the application’s rate limit

func NewGetLimitsIDTooManyRequests added in v0.43.0

func NewGetLimitsIDTooManyRequests() *GetLimitsIDTooManyRequests

NewGetLimitsIDTooManyRequests creates a GetLimitsIDTooManyRequests with default headers values

func (*GetLimitsIDTooManyRequests) Error added in v0.43.0

func (*GetLimitsIDTooManyRequests) GetPayload added in v0.43.0

func (o *GetLimitsIDTooManyRequests) GetPayload() *models.APIError

type GetLimitsIDUnauthorized added in v0.43.0

type GetLimitsIDUnauthorized struct {
	Payload *models.APIError
}

GetLimitsIDUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewGetLimitsIDUnauthorized added in v0.43.0

func NewGetLimitsIDUnauthorized() *GetLimitsIDUnauthorized

NewGetLimitsIDUnauthorized creates a GetLimitsIDUnauthorized with default headers values

func (*GetLimitsIDUnauthorized) Error added in v0.43.0

func (o *GetLimitsIDUnauthorized) Error() string

func (*GetLimitsIDUnauthorized) GetPayload added in v0.43.0

func (o *GetLimitsIDUnauthorized) GetPayload() *models.APIError

type GetLimitsInternalServerError added in v0.43.0

type GetLimitsInternalServerError struct {
	Payload *models.APIError
}

GetLimitsInternalServerError handles this case with default header values.

Internal Server Error

func NewGetLimitsInternalServerError added in v0.43.0

func NewGetLimitsInternalServerError() *GetLimitsInternalServerError

NewGetLimitsInternalServerError creates a GetLimitsInternalServerError with default headers values

func (*GetLimitsInternalServerError) Error added in v0.43.0

func (*GetLimitsInternalServerError) GetPayload added in v0.43.0

func (o *GetLimitsInternalServerError) GetPayload() *models.APIError

type GetLimitsNotFound added in v0.43.0

type GetLimitsNotFound struct {
	Payload *models.APIError
}

GetLimitsNotFound handles this case with default header values.

Record not found

func NewGetLimitsNotFound added in v0.43.0

func NewGetLimitsNotFound() *GetLimitsNotFound

NewGetLimitsNotFound creates a GetLimitsNotFound with default headers values

func (*GetLimitsNotFound) Error added in v0.43.0

func (o *GetLimitsNotFound) Error() string

func (*GetLimitsNotFound) GetPayload added in v0.43.0

func (o *GetLimitsNotFound) GetPayload() *models.APIError

type GetLimitsOK

type GetLimitsOK struct {
	Payload *models.LimitDetailsListResponse
}

GetLimitsOK handles this case with default header values.

List of limit details

func NewGetLimitsOK

func NewGetLimitsOK() *GetLimitsOK

NewGetLimitsOK creates a GetLimitsOK with default headers values

func (*GetLimitsOK) Error

func (o *GetLimitsOK) Error() string

func (*GetLimitsOK) GetPayload added in v0.43.0

func (o *GetLimitsOK) GetPayload() *models.LimitDetailsListResponse

type GetLimitsParams

type GetLimitsParams struct {

	/*FilterOrganisationID
	  Filter by organisation id

	*/
	FilterOrganisationID []strfmt.UUID
	/*PageNumber
	  Which page to select

	*/
	PageNumber *string
	/*PageSize
	  Number of items to select

	*/
	PageSize *int64

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

GetLimitsParams contains all the parameters to send to the API endpoint for the get limits operation typically these are written to a http.Request

func NewGetLimitsParams

func NewGetLimitsParams() *GetLimitsParams

NewGetLimitsParams creates a new GetLimitsParams object with the default values initialized.

func NewGetLimitsParamsWithContext

func NewGetLimitsParamsWithContext(ctx context.Context) *GetLimitsParams

NewGetLimitsParamsWithContext creates a new GetLimitsParams object with the default values initialized, and the ability to set a context for a request

func NewGetLimitsParamsWithHTTPClient

func NewGetLimitsParamsWithHTTPClient(client *http.Client) *GetLimitsParams

NewGetLimitsParamsWithHTTPClient creates a new GetLimitsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetLimitsParamsWithTimeout

func NewGetLimitsParamsWithTimeout(timeout time.Duration) *GetLimitsParams

NewGetLimitsParamsWithTimeout creates a new GetLimitsParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetLimitsParams) SetContext

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

SetContext adds the context to the get limits params

func (*GetLimitsParams) SetFilterOrganisationID

func (o *GetLimitsParams) SetFilterOrganisationID(filterOrganisationID []strfmt.UUID)

SetFilterOrganisationID adds the filterOrganisationId to the get limits params

func (*GetLimitsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get limits params

func (*GetLimitsParams) SetPageNumber

func (o *GetLimitsParams) SetPageNumber(pageNumber *string)

SetPageNumber adds the pageNumber to the get limits params

func (*GetLimitsParams) SetPageSize

func (o *GetLimitsParams) SetPageSize(pageSize *int64)

SetPageSize adds the pageSize to the get limits params

func (*GetLimitsParams) SetTimeout

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

SetTimeout adds the timeout to the get limits params

func (*GetLimitsParams) WithContext

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

WithContext adds the context to the get limits params

func (*GetLimitsParams) WithFilterOrganisationID

func (o *GetLimitsParams) WithFilterOrganisationID(filterOrganisationID []strfmt.UUID) *GetLimitsParams

WithFilterOrganisationID adds the filterOrganisationID to the get limits params

func (*GetLimitsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get limits params

func (*GetLimitsParams) WithPageNumber

func (o *GetLimitsParams) WithPageNumber(pageNumber *string) *GetLimitsParams

WithPageNumber adds the pageNumber to the get limits params

func (*GetLimitsParams) WithPageSize

func (o *GetLimitsParams) WithPageSize(pageSize *int64) *GetLimitsParams

WithPageSize adds the pageSize to the get limits params

func (*GetLimitsParams) WithTimeout

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

WithTimeout adds the timeout to the get limits params

func (*GetLimitsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetLimitsReader

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

GetLimitsReader is a Reader for the GetLimits structure.

func (*GetLimitsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLimitsServiceUnavailable added in v0.43.0

type GetLimitsServiceUnavailable struct {
	Payload *models.APIError
}

GetLimitsServiceUnavailable handles this case with default header values.

The server is up, but overloaded with requests. Try again later.

func NewGetLimitsServiceUnavailable added in v0.43.0

func NewGetLimitsServiceUnavailable() *GetLimitsServiceUnavailable

NewGetLimitsServiceUnavailable creates a GetLimitsServiceUnavailable with default headers values

func (*GetLimitsServiceUnavailable) Error added in v0.43.0

func (*GetLimitsServiceUnavailable) GetPayload added in v0.43.0

func (o *GetLimitsServiceUnavailable) GetPayload() *models.APIError

type GetLimitsTooManyRequests added in v0.43.0

type GetLimitsTooManyRequests struct {
	Payload *models.APIError
}

GetLimitsTooManyRequests handles this case with default header values.

The request cannot be served due to the application’s rate limit

func NewGetLimitsTooManyRequests added in v0.43.0

func NewGetLimitsTooManyRequests() *GetLimitsTooManyRequests

NewGetLimitsTooManyRequests creates a GetLimitsTooManyRequests with default headers values

func (*GetLimitsTooManyRequests) Error added in v0.43.0

func (o *GetLimitsTooManyRequests) Error() string

func (*GetLimitsTooManyRequests) GetPayload added in v0.43.0

func (o *GetLimitsTooManyRequests) GetPayload() *models.APIError

type GetLimitsUnauthorized added in v0.43.0

type GetLimitsUnauthorized struct {
	Payload *models.APIError
}

GetLimitsUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewGetLimitsUnauthorized added in v0.43.0

func NewGetLimitsUnauthorized() *GetLimitsUnauthorized

NewGetLimitsUnauthorized creates a GetLimitsUnauthorized with default headers values

func (*GetLimitsUnauthorized) Error added in v0.43.0

func (o *GetLimitsUnauthorized) Error() string

func (*GetLimitsUnauthorized) GetPayload added in v0.43.0

func (o *GetLimitsUnauthorized) GetPayload() *models.APIError

type PatchLimitsIDBadRequest added in v0.43.0

type PatchLimitsIDBadRequest struct {
	Payload *models.APIError
}

PatchLimitsIDBadRequest handles this case with default header values.

Bad Request

func NewPatchLimitsIDBadRequest added in v0.43.0

func NewPatchLimitsIDBadRequest() *PatchLimitsIDBadRequest

NewPatchLimitsIDBadRequest creates a PatchLimitsIDBadRequest with default headers values

func (*PatchLimitsIDBadRequest) Error added in v0.43.0

func (o *PatchLimitsIDBadRequest) Error() string

func (*PatchLimitsIDBadRequest) GetPayload added in v0.43.0

func (o *PatchLimitsIDBadRequest) GetPayload() *models.APIError

type PatchLimitsIDConflict added in v0.43.0

type PatchLimitsIDConflict struct {
	Payload *models.APIError
}

PatchLimitsIDConflict handles this case with default header values.

Conflict

func NewPatchLimitsIDConflict added in v0.43.0

func NewPatchLimitsIDConflict() *PatchLimitsIDConflict

NewPatchLimitsIDConflict creates a PatchLimitsIDConflict with default headers values

func (*PatchLimitsIDConflict) Error added in v0.43.0

func (o *PatchLimitsIDConflict) Error() string

func (*PatchLimitsIDConflict) GetPayload added in v0.43.0

func (o *PatchLimitsIDConflict) GetPayload() *models.APIError

type PatchLimitsIDForbidden added in v0.43.0

type PatchLimitsIDForbidden struct {
	Payload *models.APIError
}

PatchLimitsIDForbidden handles this case with default header values.

Forbidden

func NewPatchLimitsIDForbidden added in v0.43.0

func NewPatchLimitsIDForbidden() *PatchLimitsIDForbidden

NewPatchLimitsIDForbidden creates a PatchLimitsIDForbidden with default headers values

func (*PatchLimitsIDForbidden) Error added in v0.43.0

func (o *PatchLimitsIDForbidden) Error() string

func (*PatchLimitsIDForbidden) GetPayload added in v0.43.0

func (o *PatchLimitsIDForbidden) GetPayload() *models.APIError

type PatchLimitsIDInternalServerError added in v0.43.0

type PatchLimitsIDInternalServerError struct {
	Payload *models.APIError
}

PatchLimitsIDInternalServerError handles this case with default header values.

Internal Server Error

func NewPatchLimitsIDInternalServerError added in v0.43.0

func NewPatchLimitsIDInternalServerError() *PatchLimitsIDInternalServerError

NewPatchLimitsIDInternalServerError creates a PatchLimitsIDInternalServerError with default headers values

func (*PatchLimitsIDInternalServerError) Error added in v0.43.0

func (*PatchLimitsIDInternalServerError) GetPayload added in v0.43.0

type PatchLimitsIDNotFound added in v0.43.0

type PatchLimitsIDNotFound struct {
	Payload *models.APIError
}

PatchLimitsIDNotFound handles this case with default header values.

Record not found

func NewPatchLimitsIDNotFound added in v0.43.0

func NewPatchLimitsIDNotFound() *PatchLimitsIDNotFound

NewPatchLimitsIDNotFound creates a PatchLimitsIDNotFound with default headers values

func (*PatchLimitsIDNotFound) Error added in v0.43.0

func (o *PatchLimitsIDNotFound) Error() string

func (*PatchLimitsIDNotFound) GetPayload added in v0.43.0

func (o *PatchLimitsIDNotFound) GetPayload() *models.APIError

type PatchLimitsIDOK

type PatchLimitsIDOK struct {
	Payload *models.LimitDetailsResponse
}

PatchLimitsIDOK handles this case with default header values.

Limit updated

func NewPatchLimitsIDOK

func NewPatchLimitsIDOK() *PatchLimitsIDOK

NewPatchLimitsIDOK creates a PatchLimitsIDOK with default headers values

func (*PatchLimitsIDOK) Error

func (o *PatchLimitsIDOK) Error() string

func (*PatchLimitsIDOK) GetPayload added in v0.43.0

func (o *PatchLimitsIDOK) GetPayload() *models.LimitDetailsResponse

type PatchLimitsIDParams

type PatchLimitsIDParams struct {

	/*LimitAmendRequest*/
	LimitAmendRequest *models.LimitAmendment
	/*ID
	  Limit Id

	*/
	ID strfmt.UUID

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

PatchLimitsIDParams contains all the parameters to send to the API endpoint for the patch limits ID operation typically these are written to a http.Request

func NewPatchLimitsIDParams

func NewPatchLimitsIDParams() *PatchLimitsIDParams

NewPatchLimitsIDParams creates a new PatchLimitsIDParams object with the default values initialized.

func NewPatchLimitsIDParamsWithContext

func NewPatchLimitsIDParamsWithContext(ctx context.Context) *PatchLimitsIDParams

NewPatchLimitsIDParamsWithContext creates a new PatchLimitsIDParams object with the default values initialized, and the ability to set a context for a request

func NewPatchLimitsIDParamsWithHTTPClient

func NewPatchLimitsIDParamsWithHTTPClient(client *http.Client) *PatchLimitsIDParams

NewPatchLimitsIDParamsWithHTTPClient creates a new PatchLimitsIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPatchLimitsIDParamsWithTimeout

func NewPatchLimitsIDParamsWithTimeout(timeout time.Duration) *PatchLimitsIDParams

NewPatchLimitsIDParamsWithTimeout creates a new PatchLimitsIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*PatchLimitsIDParams) SetContext

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

SetContext adds the context to the patch limits ID params

func (*PatchLimitsIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch limits ID params

func (*PatchLimitsIDParams) SetID

func (o *PatchLimitsIDParams) SetID(id strfmt.UUID)

SetID adds the id to the patch limits ID params

func (*PatchLimitsIDParams) SetLimitAmendRequest

func (o *PatchLimitsIDParams) SetLimitAmendRequest(limitAmendRequest *models.LimitAmendment)

SetLimitAmendRequest adds the limitAmendRequest to the patch limits ID params

func (*PatchLimitsIDParams) SetTimeout

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

SetTimeout adds the timeout to the patch limits ID params

func (*PatchLimitsIDParams) WithContext

WithContext adds the context to the patch limits ID params

func (*PatchLimitsIDParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the patch limits ID params

func (*PatchLimitsIDParams) WithID

WithID adds the id to the patch limits ID params

func (*PatchLimitsIDParams) WithLimitAmendRequest

func (o *PatchLimitsIDParams) WithLimitAmendRequest(limitAmendRequest *models.LimitAmendment) *PatchLimitsIDParams

WithLimitAmendRequest adds the limitAmendRequest to the patch limits ID params

func (*PatchLimitsIDParams) WithTimeout

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

WithTimeout adds the timeout to the patch limits ID params

func (*PatchLimitsIDParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PatchLimitsIDReader

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

PatchLimitsIDReader is a Reader for the PatchLimitsID structure.

func (*PatchLimitsIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchLimitsIDServiceUnavailable added in v0.43.0

type PatchLimitsIDServiceUnavailable struct {
	Payload *models.APIError
}

PatchLimitsIDServiceUnavailable handles this case with default header values.

The server is up, but overloaded with requests. Try again later.

func NewPatchLimitsIDServiceUnavailable added in v0.43.0

func NewPatchLimitsIDServiceUnavailable() *PatchLimitsIDServiceUnavailable

NewPatchLimitsIDServiceUnavailable creates a PatchLimitsIDServiceUnavailable with default headers values

func (*PatchLimitsIDServiceUnavailable) Error added in v0.43.0

func (*PatchLimitsIDServiceUnavailable) GetPayload added in v0.43.0

type PatchLimitsIDTooManyRequests added in v0.43.0

type PatchLimitsIDTooManyRequests struct {
	Payload *models.APIError
}

PatchLimitsIDTooManyRequests handles this case with default header values.

The request cannot be served due to the application’s rate limit

func NewPatchLimitsIDTooManyRequests added in v0.43.0

func NewPatchLimitsIDTooManyRequests() *PatchLimitsIDTooManyRequests

NewPatchLimitsIDTooManyRequests creates a PatchLimitsIDTooManyRequests with default headers values

func (*PatchLimitsIDTooManyRequests) Error added in v0.43.0

func (*PatchLimitsIDTooManyRequests) GetPayload added in v0.43.0

func (o *PatchLimitsIDTooManyRequests) GetPayload() *models.APIError

type PatchLimitsIDUnauthorized added in v0.43.0

type PatchLimitsIDUnauthorized struct {
	Payload *models.APIError
}

PatchLimitsIDUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewPatchLimitsIDUnauthorized added in v0.43.0

func NewPatchLimitsIDUnauthorized() *PatchLimitsIDUnauthorized

NewPatchLimitsIDUnauthorized creates a PatchLimitsIDUnauthorized with default headers values

func (*PatchLimitsIDUnauthorized) Error added in v0.43.0

func (o *PatchLimitsIDUnauthorized) Error() string

func (*PatchLimitsIDUnauthorized) GetPayload added in v0.43.0

func (o *PatchLimitsIDUnauthorized) GetPayload() *models.APIError

type PostLimitsBadRequest

type PostLimitsBadRequest struct {
	Payload *models.APIError
}

PostLimitsBadRequest handles this case with default header values.

Bad Request

func NewPostLimitsBadRequest

func NewPostLimitsBadRequest() *PostLimitsBadRequest

NewPostLimitsBadRequest creates a PostLimitsBadRequest with default headers values

func (*PostLimitsBadRequest) Error

func (o *PostLimitsBadRequest) Error() string

func (*PostLimitsBadRequest) GetPayload added in v0.43.0

func (o *PostLimitsBadRequest) GetPayload() *models.APIError

type PostLimitsConflict added in v0.43.0

type PostLimitsConflict struct {
	Payload *models.APIError
}

PostLimitsConflict handles this case with default header values.

Conflict

func NewPostLimitsConflict added in v0.43.0

func NewPostLimitsConflict() *PostLimitsConflict

NewPostLimitsConflict creates a PostLimitsConflict with default headers values

func (*PostLimitsConflict) Error added in v0.43.0

func (o *PostLimitsConflict) Error() string

func (*PostLimitsConflict) GetPayload added in v0.43.0

func (o *PostLimitsConflict) GetPayload() *models.APIError

type PostLimitsCreated

type PostLimitsCreated struct {
	Payload *models.LimitCreationResponse
}

PostLimitsCreated handles this case with default header values.

Limit creation response

func NewPostLimitsCreated

func NewPostLimitsCreated() *PostLimitsCreated

NewPostLimitsCreated creates a PostLimitsCreated with default headers values

func (*PostLimitsCreated) Error

func (o *PostLimitsCreated) Error() string

func (*PostLimitsCreated) GetPayload added in v0.43.0

type PostLimitsForbidden added in v0.43.0

type PostLimitsForbidden struct {
	Payload *models.APIError
}

PostLimitsForbidden handles this case with default header values.

Forbidden

func NewPostLimitsForbidden added in v0.43.0

func NewPostLimitsForbidden() *PostLimitsForbidden

NewPostLimitsForbidden creates a PostLimitsForbidden with default headers values

func (*PostLimitsForbidden) Error added in v0.43.0

func (o *PostLimitsForbidden) Error() string

func (*PostLimitsForbidden) GetPayload added in v0.43.0

func (o *PostLimitsForbidden) GetPayload() *models.APIError

type PostLimitsInternalServerError added in v0.43.0

type PostLimitsInternalServerError struct {
	Payload *models.APIError
}

PostLimitsInternalServerError handles this case with default header values.

Internal Server Error

func NewPostLimitsInternalServerError added in v0.43.0

func NewPostLimitsInternalServerError() *PostLimitsInternalServerError

NewPostLimitsInternalServerError creates a PostLimitsInternalServerError with default headers values

func (*PostLimitsInternalServerError) Error added in v0.43.0

func (*PostLimitsInternalServerError) GetPayload added in v0.43.0

type PostLimitsNotFound added in v0.43.0

type PostLimitsNotFound struct {
	Payload *models.APIError
}

PostLimitsNotFound handles this case with default header values.

Record not found

func NewPostLimitsNotFound added in v0.43.0

func NewPostLimitsNotFound() *PostLimitsNotFound

NewPostLimitsNotFound creates a PostLimitsNotFound with default headers values

func (*PostLimitsNotFound) Error added in v0.43.0

func (o *PostLimitsNotFound) Error() string

func (*PostLimitsNotFound) GetPayload added in v0.43.0

func (o *PostLimitsNotFound) GetPayload() *models.APIError

type PostLimitsParams

type PostLimitsParams struct {

	/*LimitCreationRequest*/
	LimitCreationRequest *models.LimitCreation

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

PostLimitsParams contains all the parameters to send to the API endpoint for the post limits operation typically these are written to a http.Request

func NewPostLimitsParams

func NewPostLimitsParams() *PostLimitsParams

NewPostLimitsParams creates a new PostLimitsParams object with the default values initialized.

func NewPostLimitsParamsWithContext

func NewPostLimitsParamsWithContext(ctx context.Context) *PostLimitsParams

NewPostLimitsParamsWithContext creates a new PostLimitsParams object with the default values initialized, and the ability to set a context for a request

func NewPostLimitsParamsWithHTTPClient

func NewPostLimitsParamsWithHTTPClient(client *http.Client) *PostLimitsParams

NewPostLimitsParamsWithHTTPClient creates a new PostLimitsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostLimitsParamsWithTimeout

func NewPostLimitsParamsWithTimeout(timeout time.Duration) *PostLimitsParams

NewPostLimitsParamsWithTimeout creates a new PostLimitsParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostLimitsParams) SetContext

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

SetContext adds the context to the post limits params

func (*PostLimitsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post limits params

func (*PostLimitsParams) SetLimitCreationRequest

func (o *PostLimitsParams) SetLimitCreationRequest(limitCreationRequest *models.LimitCreation)

SetLimitCreationRequest adds the limitCreationRequest to the post limits params

func (*PostLimitsParams) SetTimeout

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

SetTimeout adds the timeout to the post limits params

func (*PostLimitsParams) WithContext

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

WithContext adds the context to the post limits params

func (*PostLimitsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post limits params

func (*PostLimitsParams) WithLimitCreationRequest

func (o *PostLimitsParams) WithLimitCreationRequest(limitCreationRequest *models.LimitCreation) *PostLimitsParams

WithLimitCreationRequest adds the limitCreationRequest to the post limits params

func (*PostLimitsParams) WithTimeout

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

WithTimeout adds the timeout to the post limits params

func (*PostLimitsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PostLimitsReader

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

PostLimitsReader is a Reader for the PostLimits structure.

func (*PostLimitsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostLimitsServiceUnavailable added in v0.43.0

type PostLimitsServiceUnavailable struct {
	Payload *models.APIError
}

PostLimitsServiceUnavailable handles this case with default header values.

The server is up, but overloaded with requests. Try again later.

func NewPostLimitsServiceUnavailable added in v0.43.0

func NewPostLimitsServiceUnavailable() *PostLimitsServiceUnavailable

NewPostLimitsServiceUnavailable creates a PostLimitsServiceUnavailable with default headers values

func (*PostLimitsServiceUnavailable) Error added in v0.43.0

func (*PostLimitsServiceUnavailable) GetPayload added in v0.43.0

func (o *PostLimitsServiceUnavailable) GetPayload() *models.APIError

type PostLimitsTooManyRequests added in v0.43.0

type PostLimitsTooManyRequests struct {
	Payload *models.APIError
}

PostLimitsTooManyRequests handles this case with default header values.

The request cannot be served due to the application’s rate limit

func NewPostLimitsTooManyRequests added in v0.43.0

func NewPostLimitsTooManyRequests() *PostLimitsTooManyRequests

NewPostLimitsTooManyRequests creates a PostLimitsTooManyRequests with default headers values

func (*PostLimitsTooManyRequests) Error added in v0.43.0

func (o *PostLimitsTooManyRequests) Error() string

func (*PostLimitsTooManyRequests) GetPayload added in v0.43.0

func (o *PostLimitsTooManyRequests) GetPayload() *models.APIError

type PostLimitsUnauthorized added in v0.43.0

type PostLimitsUnauthorized struct {
	Payload *models.APIError
}

PostLimitsUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewPostLimitsUnauthorized added in v0.43.0

func NewPostLimitsUnauthorized() *PostLimitsUnauthorized

NewPostLimitsUnauthorized creates a PostLimitsUnauthorized with default headers values

func (*PostLimitsUnauthorized) Error added in v0.43.0

func (o *PostLimitsUnauthorized) Error() string

func (*PostLimitsUnauthorized) GetPayload added in v0.43.0

func (o *PostLimitsUnauthorized) GetPayload() *models.APIError

Jump to

Keyboard shortcuts

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