account_routings

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 account routings API

func (*Client) DeleteAccountRoutingsID

func (a *Client) DeleteAccountRoutingsID(params *DeleteAccountRoutingsIDParams) (*DeleteAccountRoutingsIDNoContent, error)

DeleteAccountRoutingsID deletes account routing

func (*Client) GetAccountRoutings

func (a *Client) GetAccountRoutings(params *GetAccountRoutingsParams) (*GetAccountRoutingsOK, error)

GetAccountRoutings lists account routings

func (*Client) GetAccountRoutingsID

func (a *Client) GetAccountRoutingsID(params *GetAccountRoutingsIDParams) (*GetAccountRoutingsIDOK, error)

GetAccountRoutingsID fetches account routing

func (*Client) PostAccountRoutings

func (a *Client) PostAccountRoutings(params *PostAccountRoutingsParams) (*PostAccountRoutingsCreated, error)

PostAccountRoutings creates an account routing entry

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 {
	DeleteAccountRoutingsID(params *DeleteAccountRoutingsIDParams) (*DeleteAccountRoutingsIDNoContent, error)

	GetAccountRoutings(params *GetAccountRoutingsParams) (*GetAccountRoutingsOK, error)

	GetAccountRoutingsID(params *GetAccountRoutingsIDParams) (*GetAccountRoutingsIDOK, error)

	PostAccountRoutings(params *PostAccountRoutingsParams) (*PostAccountRoutingsCreated, 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 account routings API client.

type DeleteAccountRoutingsIDBadRequest added in v0.43.0

type DeleteAccountRoutingsIDBadRequest struct {
	Payload *models.APIError
}

DeleteAccountRoutingsIDBadRequest handles this case with default header values.

Bad Request

func NewDeleteAccountRoutingsIDBadRequest added in v0.43.0

func NewDeleteAccountRoutingsIDBadRequest() *DeleteAccountRoutingsIDBadRequest

NewDeleteAccountRoutingsIDBadRequest creates a DeleteAccountRoutingsIDBadRequest with default headers values

func (*DeleteAccountRoutingsIDBadRequest) Error added in v0.43.0

func (*DeleteAccountRoutingsIDBadRequest) GetPayload added in v0.43.0

type DeleteAccountRoutingsIDConflict added in v0.43.0

type DeleteAccountRoutingsIDConflict struct {
	Payload *models.APIError
}

DeleteAccountRoutingsIDConflict handles this case with default header values.

Conflict

func NewDeleteAccountRoutingsIDConflict added in v0.43.0

func NewDeleteAccountRoutingsIDConflict() *DeleteAccountRoutingsIDConflict

NewDeleteAccountRoutingsIDConflict creates a DeleteAccountRoutingsIDConflict with default headers values

func (*DeleteAccountRoutingsIDConflict) Error added in v0.43.0

func (*DeleteAccountRoutingsIDConflict) GetPayload added in v0.43.0

type DeleteAccountRoutingsIDForbidden added in v0.43.0

type DeleteAccountRoutingsIDForbidden struct {
	Payload *models.APIError
}

DeleteAccountRoutingsIDForbidden handles this case with default header values.

Forbidden

func NewDeleteAccountRoutingsIDForbidden added in v0.43.0

func NewDeleteAccountRoutingsIDForbidden() *DeleteAccountRoutingsIDForbidden

NewDeleteAccountRoutingsIDForbidden creates a DeleteAccountRoutingsIDForbidden with default headers values

func (*DeleteAccountRoutingsIDForbidden) Error added in v0.43.0

func (*DeleteAccountRoutingsIDForbidden) GetPayload added in v0.43.0

type DeleteAccountRoutingsIDInternalServerError added in v0.43.0

type DeleteAccountRoutingsIDInternalServerError struct {
	Payload *models.APIError
}

DeleteAccountRoutingsIDInternalServerError handles this case with default header values.

Internal Server Error

func NewDeleteAccountRoutingsIDInternalServerError added in v0.43.0

func NewDeleteAccountRoutingsIDInternalServerError() *DeleteAccountRoutingsIDInternalServerError

NewDeleteAccountRoutingsIDInternalServerError creates a DeleteAccountRoutingsIDInternalServerError with default headers values

func (*DeleteAccountRoutingsIDInternalServerError) Error added in v0.43.0

func (*DeleteAccountRoutingsIDInternalServerError) GetPayload added in v0.43.0

type DeleteAccountRoutingsIDNoContent

type DeleteAccountRoutingsIDNoContent struct {
}

DeleteAccountRoutingsIDNoContent handles this case with default header values.

Account Routing deleted

func NewDeleteAccountRoutingsIDNoContent

func NewDeleteAccountRoutingsIDNoContent() *DeleteAccountRoutingsIDNoContent

NewDeleteAccountRoutingsIDNoContent creates a DeleteAccountRoutingsIDNoContent with default headers values

func (*DeleteAccountRoutingsIDNoContent) Error

type DeleteAccountRoutingsIDNotFound added in v0.43.0

type DeleteAccountRoutingsIDNotFound struct {
	Payload *models.APIError
}

DeleteAccountRoutingsIDNotFound handles this case with default header values.

Record not found

func NewDeleteAccountRoutingsIDNotFound added in v0.43.0

func NewDeleteAccountRoutingsIDNotFound() *DeleteAccountRoutingsIDNotFound

NewDeleteAccountRoutingsIDNotFound creates a DeleteAccountRoutingsIDNotFound with default headers values

func (*DeleteAccountRoutingsIDNotFound) Error added in v0.43.0

func (*DeleteAccountRoutingsIDNotFound) GetPayload added in v0.43.0

type DeleteAccountRoutingsIDParams

type DeleteAccountRoutingsIDParams struct {

	/*ID
	  Account Routing Id

	*/
	ID strfmt.UUID
	/*Version
	  Version

	*/
	Version int64

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

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

func NewDeleteAccountRoutingsIDParams

func NewDeleteAccountRoutingsIDParams() *DeleteAccountRoutingsIDParams

NewDeleteAccountRoutingsIDParams creates a new DeleteAccountRoutingsIDParams object with the default values initialized.

func NewDeleteAccountRoutingsIDParamsWithContext

func NewDeleteAccountRoutingsIDParamsWithContext(ctx context.Context) *DeleteAccountRoutingsIDParams

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

func NewDeleteAccountRoutingsIDParamsWithHTTPClient

func NewDeleteAccountRoutingsIDParamsWithHTTPClient(client *http.Client) *DeleteAccountRoutingsIDParams

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

func NewDeleteAccountRoutingsIDParamsWithTimeout

func NewDeleteAccountRoutingsIDParamsWithTimeout(timeout time.Duration) *DeleteAccountRoutingsIDParams

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

func (*DeleteAccountRoutingsIDParams) SetContext

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

SetContext adds the context to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) SetID

SetID adds the id to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) SetTimeout

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

SetTimeout adds the timeout to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) SetVersion

func (o *DeleteAccountRoutingsIDParams) SetVersion(version int64)

SetVersion adds the version to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) WithContext

WithContext adds the context to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) WithID

WithID adds the id to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) WithTimeout

WithTimeout adds the timeout to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) WithVersion

WithVersion adds the version to the delete account routings ID params

func (*DeleteAccountRoutingsIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAccountRoutingsIDReader

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

DeleteAccountRoutingsIDReader is a Reader for the DeleteAccountRoutingsID structure.

func (*DeleteAccountRoutingsIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAccountRoutingsIDServiceUnavailable added in v0.43.0

type DeleteAccountRoutingsIDServiceUnavailable struct {
	Payload *models.APIError
}

DeleteAccountRoutingsIDServiceUnavailable handles this case with default header values.

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

func NewDeleteAccountRoutingsIDServiceUnavailable added in v0.43.0

func NewDeleteAccountRoutingsIDServiceUnavailable() *DeleteAccountRoutingsIDServiceUnavailable

NewDeleteAccountRoutingsIDServiceUnavailable creates a DeleteAccountRoutingsIDServiceUnavailable with default headers values

func (*DeleteAccountRoutingsIDServiceUnavailable) Error added in v0.43.0

func (*DeleteAccountRoutingsIDServiceUnavailable) GetPayload added in v0.43.0

type DeleteAccountRoutingsIDTooManyRequests added in v0.43.0

type DeleteAccountRoutingsIDTooManyRequests struct {
	Payload *models.APIError
}

DeleteAccountRoutingsIDTooManyRequests handles this case with default header values.

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

func NewDeleteAccountRoutingsIDTooManyRequests added in v0.43.0

func NewDeleteAccountRoutingsIDTooManyRequests() *DeleteAccountRoutingsIDTooManyRequests

NewDeleteAccountRoutingsIDTooManyRequests creates a DeleteAccountRoutingsIDTooManyRequests with default headers values

func (*DeleteAccountRoutingsIDTooManyRequests) Error added in v0.43.0

func (*DeleteAccountRoutingsIDTooManyRequests) GetPayload added in v0.43.0

type DeleteAccountRoutingsIDUnauthorized added in v0.43.0

type DeleteAccountRoutingsIDUnauthorized struct {
	Payload *models.APIError
}

DeleteAccountRoutingsIDUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewDeleteAccountRoutingsIDUnauthorized added in v0.43.0

func NewDeleteAccountRoutingsIDUnauthorized() *DeleteAccountRoutingsIDUnauthorized

NewDeleteAccountRoutingsIDUnauthorized creates a DeleteAccountRoutingsIDUnauthorized with default headers values

func (*DeleteAccountRoutingsIDUnauthorized) Error added in v0.43.0

func (*DeleteAccountRoutingsIDUnauthorized) GetPayload added in v0.43.0

type GetAccountRoutingsBadRequest added in v0.43.0

type GetAccountRoutingsBadRequest struct {
	Payload *models.APIError
}

GetAccountRoutingsBadRequest handles this case with default header values.

Bad Request

func NewGetAccountRoutingsBadRequest added in v0.43.0

func NewGetAccountRoutingsBadRequest() *GetAccountRoutingsBadRequest

NewGetAccountRoutingsBadRequest creates a GetAccountRoutingsBadRequest with default headers values

func (*GetAccountRoutingsBadRequest) Error added in v0.43.0

func (*GetAccountRoutingsBadRequest) GetPayload added in v0.43.0

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

type GetAccountRoutingsConflict added in v0.43.0

type GetAccountRoutingsConflict struct {
	Payload *models.APIError
}

GetAccountRoutingsConflict handles this case with default header values.

Conflict

func NewGetAccountRoutingsConflict added in v0.43.0

func NewGetAccountRoutingsConflict() *GetAccountRoutingsConflict

NewGetAccountRoutingsConflict creates a GetAccountRoutingsConflict with default headers values

func (*GetAccountRoutingsConflict) Error added in v0.43.0

func (*GetAccountRoutingsConflict) GetPayload added in v0.43.0

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

type GetAccountRoutingsForbidden added in v0.43.0

type GetAccountRoutingsForbidden struct {
	Payload *models.APIError
}

GetAccountRoutingsForbidden handles this case with default header values.

Forbidden

func NewGetAccountRoutingsForbidden added in v0.43.0

func NewGetAccountRoutingsForbidden() *GetAccountRoutingsForbidden

NewGetAccountRoutingsForbidden creates a GetAccountRoutingsForbidden with default headers values

func (*GetAccountRoutingsForbidden) Error added in v0.43.0

func (*GetAccountRoutingsForbidden) GetPayload added in v0.43.0

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

type GetAccountRoutingsIDBadRequest added in v0.43.0

type GetAccountRoutingsIDBadRequest struct {
	Payload *models.APIError
}

GetAccountRoutingsIDBadRequest handles this case with default header values.

Bad Request

func NewGetAccountRoutingsIDBadRequest added in v0.43.0

func NewGetAccountRoutingsIDBadRequest() *GetAccountRoutingsIDBadRequest

NewGetAccountRoutingsIDBadRequest creates a GetAccountRoutingsIDBadRequest with default headers values

func (*GetAccountRoutingsIDBadRequest) Error added in v0.43.0

func (*GetAccountRoutingsIDBadRequest) GetPayload added in v0.43.0

type GetAccountRoutingsIDConflict added in v0.43.0

type GetAccountRoutingsIDConflict struct {
	Payload *models.APIError
}

GetAccountRoutingsIDConflict handles this case with default header values.

Conflict

func NewGetAccountRoutingsIDConflict added in v0.43.0

func NewGetAccountRoutingsIDConflict() *GetAccountRoutingsIDConflict

NewGetAccountRoutingsIDConflict creates a GetAccountRoutingsIDConflict with default headers values

func (*GetAccountRoutingsIDConflict) Error added in v0.43.0

func (*GetAccountRoutingsIDConflict) GetPayload added in v0.43.0

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

type GetAccountRoutingsIDForbidden added in v0.43.0

type GetAccountRoutingsIDForbidden struct {
	Payload *models.APIError
}

GetAccountRoutingsIDForbidden handles this case with default header values.

Forbidden

func NewGetAccountRoutingsIDForbidden added in v0.43.0

func NewGetAccountRoutingsIDForbidden() *GetAccountRoutingsIDForbidden

NewGetAccountRoutingsIDForbidden creates a GetAccountRoutingsIDForbidden with default headers values

func (*GetAccountRoutingsIDForbidden) Error added in v0.43.0

func (*GetAccountRoutingsIDForbidden) GetPayload added in v0.43.0

type GetAccountRoutingsIDInternalServerError added in v0.43.0

type GetAccountRoutingsIDInternalServerError struct {
	Payload *models.APIError
}

GetAccountRoutingsIDInternalServerError handles this case with default header values.

Internal Server Error

func NewGetAccountRoutingsIDInternalServerError added in v0.43.0

func NewGetAccountRoutingsIDInternalServerError() *GetAccountRoutingsIDInternalServerError

NewGetAccountRoutingsIDInternalServerError creates a GetAccountRoutingsIDInternalServerError with default headers values

func (*GetAccountRoutingsIDInternalServerError) Error added in v0.43.0

func (*GetAccountRoutingsIDInternalServerError) GetPayload added in v0.43.0

type GetAccountRoutingsIDNotFound added in v0.43.0

type GetAccountRoutingsIDNotFound struct {
	Payload *models.APIError
}

GetAccountRoutingsIDNotFound handles this case with default header values.

Record not found

func NewGetAccountRoutingsIDNotFound added in v0.43.0

func NewGetAccountRoutingsIDNotFound() *GetAccountRoutingsIDNotFound

NewGetAccountRoutingsIDNotFound creates a GetAccountRoutingsIDNotFound with default headers values

func (*GetAccountRoutingsIDNotFound) Error added in v0.43.0

func (*GetAccountRoutingsIDNotFound) GetPayload added in v0.43.0

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

type GetAccountRoutingsIDOK

type GetAccountRoutingsIDOK struct {
	Payload *models.AccountRoutingDetailsResponse
}

GetAccountRoutingsIDOK handles this case with default header values.

Account Routing details

func NewGetAccountRoutingsIDOK

func NewGetAccountRoutingsIDOK() *GetAccountRoutingsIDOK

NewGetAccountRoutingsIDOK creates a GetAccountRoutingsIDOK with default headers values

func (*GetAccountRoutingsIDOK) Error

func (o *GetAccountRoutingsIDOK) Error() string

func (*GetAccountRoutingsIDOK) GetPayload added in v0.43.0

type GetAccountRoutingsIDParams

type GetAccountRoutingsIDParams struct {

	/*ID
	  Account Routing Id

	*/
	ID strfmt.UUID

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

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

func NewGetAccountRoutingsIDParams

func NewGetAccountRoutingsIDParams() *GetAccountRoutingsIDParams

NewGetAccountRoutingsIDParams creates a new GetAccountRoutingsIDParams object with the default values initialized.

func NewGetAccountRoutingsIDParamsWithContext

func NewGetAccountRoutingsIDParamsWithContext(ctx context.Context) *GetAccountRoutingsIDParams

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

func NewGetAccountRoutingsIDParamsWithHTTPClient

func NewGetAccountRoutingsIDParamsWithHTTPClient(client *http.Client) *GetAccountRoutingsIDParams

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

func NewGetAccountRoutingsIDParamsWithTimeout

func NewGetAccountRoutingsIDParamsWithTimeout(timeout time.Duration) *GetAccountRoutingsIDParams

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

func (*GetAccountRoutingsIDParams) SetContext

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

SetContext adds the context to the get account routings ID params

func (*GetAccountRoutingsIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get account routings ID params

func (*GetAccountRoutingsIDParams) SetID

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

SetID adds the id to the get account routings ID params

func (*GetAccountRoutingsIDParams) SetTimeout

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

SetTimeout adds the timeout to the get account routings ID params

func (*GetAccountRoutingsIDParams) WithContext

WithContext adds the context to the get account routings ID params

func (*GetAccountRoutingsIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get account routings ID params

func (*GetAccountRoutingsIDParams) WithID

WithID adds the id to the get account routings ID params

func (*GetAccountRoutingsIDParams) WithTimeout

WithTimeout adds the timeout to the get account routings ID params

func (*GetAccountRoutingsIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAccountRoutingsIDReader

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

GetAccountRoutingsIDReader is a Reader for the GetAccountRoutingsID structure.

func (*GetAccountRoutingsIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAccountRoutingsIDServiceUnavailable added in v0.43.0

type GetAccountRoutingsIDServiceUnavailable struct {
	Payload *models.APIError
}

GetAccountRoutingsIDServiceUnavailable handles this case with default header values.

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

func NewGetAccountRoutingsIDServiceUnavailable added in v0.43.0

func NewGetAccountRoutingsIDServiceUnavailable() *GetAccountRoutingsIDServiceUnavailable

NewGetAccountRoutingsIDServiceUnavailable creates a GetAccountRoutingsIDServiceUnavailable with default headers values

func (*GetAccountRoutingsIDServiceUnavailable) Error added in v0.43.0

func (*GetAccountRoutingsIDServiceUnavailable) GetPayload added in v0.43.0

type GetAccountRoutingsIDTooManyRequests added in v0.43.0

type GetAccountRoutingsIDTooManyRequests struct {
	Payload *models.APIError
}

GetAccountRoutingsIDTooManyRequests handles this case with default header values.

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

func NewGetAccountRoutingsIDTooManyRequests added in v0.43.0

func NewGetAccountRoutingsIDTooManyRequests() *GetAccountRoutingsIDTooManyRequests

NewGetAccountRoutingsIDTooManyRequests creates a GetAccountRoutingsIDTooManyRequests with default headers values

func (*GetAccountRoutingsIDTooManyRequests) Error added in v0.43.0

func (*GetAccountRoutingsIDTooManyRequests) GetPayload added in v0.43.0

type GetAccountRoutingsIDUnauthorized added in v0.43.0

type GetAccountRoutingsIDUnauthorized struct {
	Payload *models.APIError
}

GetAccountRoutingsIDUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewGetAccountRoutingsIDUnauthorized added in v0.43.0

func NewGetAccountRoutingsIDUnauthorized() *GetAccountRoutingsIDUnauthorized

NewGetAccountRoutingsIDUnauthorized creates a GetAccountRoutingsIDUnauthorized with default headers values

func (*GetAccountRoutingsIDUnauthorized) Error added in v0.43.0

func (*GetAccountRoutingsIDUnauthorized) GetPayload added in v0.43.0

type GetAccountRoutingsInternalServerError added in v0.43.0

type GetAccountRoutingsInternalServerError struct {
	Payload *models.APIError
}

GetAccountRoutingsInternalServerError handles this case with default header values.

Internal Server Error

func NewGetAccountRoutingsInternalServerError added in v0.43.0

func NewGetAccountRoutingsInternalServerError() *GetAccountRoutingsInternalServerError

NewGetAccountRoutingsInternalServerError creates a GetAccountRoutingsInternalServerError with default headers values

func (*GetAccountRoutingsInternalServerError) Error added in v0.43.0

func (*GetAccountRoutingsInternalServerError) GetPayload added in v0.43.0

type GetAccountRoutingsNotFound added in v0.43.0

type GetAccountRoutingsNotFound struct {
	Payload *models.APIError
}

GetAccountRoutingsNotFound handles this case with default header values.

Record not found

func NewGetAccountRoutingsNotFound added in v0.43.0

func NewGetAccountRoutingsNotFound() *GetAccountRoutingsNotFound

NewGetAccountRoutingsNotFound creates a GetAccountRoutingsNotFound with default headers values

func (*GetAccountRoutingsNotFound) Error added in v0.43.0

func (*GetAccountRoutingsNotFound) GetPayload added in v0.43.0

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

type GetAccountRoutingsOK

type GetAccountRoutingsOK struct {
	Payload *models.AccountRoutingDetailsListResponse
}

GetAccountRoutingsOK handles this case with default header values.

List of account routing details

func NewGetAccountRoutingsOK

func NewGetAccountRoutingsOK() *GetAccountRoutingsOK

NewGetAccountRoutingsOK creates a GetAccountRoutingsOK with default headers values

func (*GetAccountRoutingsOK) Error

func (o *GetAccountRoutingsOK) Error() string

func (*GetAccountRoutingsOK) GetPayload added in v0.43.0

type GetAccountRoutingsParams

type GetAccountRoutingsParams 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
}

GetAccountRoutingsParams contains all the parameters to send to the API endpoint for the get account routings operation typically these are written to a http.Request

func NewGetAccountRoutingsParams

func NewGetAccountRoutingsParams() *GetAccountRoutingsParams

NewGetAccountRoutingsParams creates a new GetAccountRoutingsParams object with the default values initialized.

func NewGetAccountRoutingsParamsWithContext

func NewGetAccountRoutingsParamsWithContext(ctx context.Context) *GetAccountRoutingsParams

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

func NewGetAccountRoutingsParamsWithHTTPClient

func NewGetAccountRoutingsParamsWithHTTPClient(client *http.Client) *GetAccountRoutingsParams

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

func NewGetAccountRoutingsParamsWithTimeout

func NewGetAccountRoutingsParamsWithTimeout(timeout time.Duration) *GetAccountRoutingsParams

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

func (*GetAccountRoutingsParams) SetContext

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

SetContext adds the context to the get account routings params

func (*GetAccountRoutingsParams) SetFilterOrganisationID

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

SetFilterOrganisationID adds the filterOrganisationId to the get account routings params

func (*GetAccountRoutingsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get account routings params

func (*GetAccountRoutingsParams) SetPageNumber

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

SetPageNumber adds the pageNumber to the get account routings params

func (*GetAccountRoutingsParams) SetPageSize

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

SetPageSize adds the pageSize to the get account routings params

func (*GetAccountRoutingsParams) SetTimeout

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

SetTimeout adds the timeout to the get account routings params

func (*GetAccountRoutingsParams) WithContext

WithContext adds the context to the get account routings params

func (*GetAccountRoutingsParams) WithFilterOrganisationID

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

WithFilterOrganisationID adds the filterOrganisationID to the get account routings params

func (*GetAccountRoutingsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get account routings params

func (*GetAccountRoutingsParams) WithPageNumber

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

WithPageNumber adds the pageNumber to the get account routings params

func (*GetAccountRoutingsParams) WithPageSize

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

WithPageSize adds the pageSize to the get account routings params

func (*GetAccountRoutingsParams) WithTimeout

WithTimeout adds the timeout to the get account routings params

func (*GetAccountRoutingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAccountRoutingsReader

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

GetAccountRoutingsReader is a Reader for the GetAccountRoutings structure.

func (*GetAccountRoutingsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAccountRoutingsServiceUnavailable added in v0.43.0

type GetAccountRoutingsServiceUnavailable struct {
	Payload *models.APIError
}

GetAccountRoutingsServiceUnavailable handles this case with default header values.

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

func NewGetAccountRoutingsServiceUnavailable added in v0.43.0

func NewGetAccountRoutingsServiceUnavailable() *GetAccountRoutingsServiceUnavailable

NewGetAccountRoutingsServiceUnavailable creates a GetAccountRoutingsServiceUnavailable with default headers values

func (*GetAccountRoutingsServiceUnavailable) Error added in v0.43.0

func (*GetAccountRoutingsServiceUnavailable) GetPayload added in v0.43.0

type GetAccountRoutingsTooManyRequests added in v0.43.0

type GetAccountRoutingsTooManyRequests struct {
	Payload *models.APIError
}

GetAccountRoutingsTooManyRequests handles this case with default header values.

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

func NewGetAccountRoutingsTooManyRequests added in v0.43.0

func NewGetAccountRoutingsTooManyRequests() *GetAccountRoutingsTooManyRequests

NewGetAccountRoutingsTooManyRequests creates a GetAccountRoutingsTooManyRequests with default headers values

func (*GetAccountRoutingsTooManyRequests) Error added in v0.43.0

func (*GetAccountRoutingsTooManyRequests) GetPayload added in v0.43.0

type GetAccountRoutingsUnauthorized added in v0.43.0

type GetAccountRoutingsUnauthorized struct {
	Payload *models.APIError
}

GetAccountRoutingsUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewGetAccountRoutingsUnauthorized added in v0.43.0

func NewGetAccountRoutingsUnauthorized() *GetAccountRoutingsUnauthorized

NewGetAccountRoutingsUnauthorized creates a GetAccountRoutingsUnauthorized with default headers values

func (*GetAccountRoutingsUnauthorized) Error added in v0.43.0

func (*GetAccountRoutingsUnauthorized) GetPayload added in v0.43.0

type PostAccountRoutingsBadRequest added in v0.43.0

type PostAccountRoutingsBadRequest struct {
	Payload *models.APIError
}

PostAccountRoutingsBadRequest handles this case with default header values.

Bad Request

func NewPostAccountRoutingsBadRequest added in v0.43.0

func NewPostAccountRoutingsBadRequest() *PostAccountRoutingsBadRequest

NewPostAccountRoutingsBadRequest creates a PostAccountRoutingsBadRequest with default headers values

func (*PostAccountRoutingsBadRequest) Error added in v0.43.0

func (*PostAccountRoutingsBadRequest) GetPayload added in v0.43.0

type PostAccountRoutingsConflict

type PostAccountRoutingsConflict struct {
	Payload *models.APIError
}

PostAccountRoutingsConflict handles this case with default header values.

Conflict

func NewPostAccountRoutingsConflict

func NewPostAccountRoutingsConflict() *PostAccountRoutingsConflict

NewPostAccountRoutingsConflict creates a PostAccountRoutingsConflict with default headers values

func (*PostAccountRoutingsConflict) Error

func (*PostAccountRoutingsConflict) GetPayload added in v0.43.0

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

type PostAccountRoutingsCreated

type PostAccountRoutingsCreated struct {
	Payload *models.AccountRoutingCreationResponse
}

PostAccountRoutingsCreated handles this case with default header values.

Account routing creation response success

func NewPostAccountRoutingsCreated

func NewPostAccountRoutingsCreated() *PostAccountRoutingsCreated

NewPostAccountRoutingsCreated creates a PostAccountRoutingsCreated with default headers values

func (*PostAccountRoutingsCreated) Error

func (*PostAccountRoutingsCreated) GetPayload added in v0.43.0

type PostAccountRoutingsForbidden added in v0.43.0

type PostAccountRoutingsForbidden struct {
	Payload *models.APIError
}

PostAccountRoutingsForbidden handles this case with default header values.

Forbidden

func NewPostAccountRoutingsForbidden added in v0.43.0

func NewPostAccountRoutingsForbidden() *PostAccountRoutingsForbidden

NewPostAccountRoutingsForbidden creates a PostAccountRoutingsForbidden with default headers values

func (*PostAccountRoutingsForbidden) Error added in v0.43.0

func (*PostAccountRoutingsForbidden) GetPayload added in v0.43.0

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

type PostAccountRoutingsInternalServerError added in v0.43.0

type PostAccountRoutingsInternalServerError struct {
	Payload *models.APIError
}

PostAccountRoutingsInternalServerError handles this case with default header values.

Internal Server Error

func NewPostAccountRoutingsInternalServerError added in v0.43.0

func NewPostAccountRoutingsInternalServerError() *PostAccountRoutingsInternalServerError

NewPostAccountRoutingsInternalServerError creates a PostAccountRoutingsInternalServerError with default headers values

func (*PostAccountRoutingsInternalServerError) Error added in v0.43.0

func (*PostAccountRoutingsInternalServerError) GetPayload added in v0.43.0

type PostAccountRoutingsNotFound added in v0.43.0

type PostAccountRoutingsNotFound struct {
	Payload *models.APIError
}

PostAccountRoutingsNotFound handles this case with default header values.

Record not found

func NewPostAccountRoutingsNotFound added in v0.43.0

func NewPostAccountRoutingsNotFound() *PostAccountRoutingsNotFound

NewPostAccountRoutingsNotFound creates a PostAccountRoutingsNotFound with default headers values

func (*PostAccountRoutingsNotFound) Error added in v0.43.0

func (*PostAccountRoutingsNotFound) GetPayload added in v0.43.0

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

type PostAccountRoutingsParams

type PostAccountRoutingsParams struct {

	/*AccountRoutingCreationRequest*/
	AccountRoutingCreationRequest *models.AccountRoutingCreation

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

PostAccountRoutingsParams contains all the parameters to send to the API endpoint for the post account routings operation typically these are written to a http.Request

func NewPostAccountRoutingsParams

func NewPostAccountRoutingsParams() *PostAccountRoutingsParams

NewPostAccountRoutingsParams creates a new PostAccountRoutingsParams object with the default values initialized.

func NewPostAccountRoutingsParamsWithContext

func NewPostAccountRoutingsParamsWithContext(ctx context.Context) *PostAccountRoutingsParams

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

func NewPostAccountRoutingsParamsWithHTTPClient

func NewPostAccountRoutingsParamsWithHTTPClient(client *http.Client) *PostAccountRoutingsParams

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

func NewPostAccountRoutingsParamsWithTimeout

func NewPostAccountRoutingsParamsWithTimeout(timeout time.Duration) *PostAccountRoutingsParams

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

func (*PostAccountRoutingsParams) SetAccountRoutingCreationRequest

func (o *PostAccountRoutingsParams) SetAccountRoutingCreationRequest(accountRoutingCreationRequest *models.AccountRoutingCreation)

SetAccountRoutingCreationRequest adds the accountRoutingCreationRequest to the post account routings params

func (*PostAccountRoutingsParams) SetContext

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

SetContext adds the context to the post account routings params

func (*PostAccountRoutingsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post account routings params

func (*PostAccountRoutingsParams) SetTimeout

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

SetTimeout adds the timeout to the post account routings params

func (*PostAccountRoutingsParams) WithAccountRoutingCreationRequest

func (o *PostAccountRoutingsParams) WithAccountRoutingCreationRequest(accountRoutingCreationRequest *models.AccountRoutingCreation) *PostAccountRoutingsParams

WithAccountRoutingCreationRequest adds the accountRoutingCreationRequest to the post account routings params

func (*PostAccountRoutingsParams) WithContext

WithContext adds the context to the post account routings params

func (*PostAccountRoutingsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post account routings params

func (*PostAccountRoutingsParams) WithTimeout

WithTimeout adds the timeout to the post account routings params

func (*PostAccountRoutingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostAccountRoutingsReader

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

PostAccountRoutingsReader is a Reader for the PostAccountRoutings structure.

func (*PostAccountRoutingsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostAccountRoutingsServiceUnavailable added in v0.43.0

type PostAccountRoutingsServiceUnavailable struct {
	Payload *models.APIError
}

PostAccountRoutingsServiceUnavailable handles this case with default header values.

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

func NewPostAccountRoutingsServiceUnavailable added in v0.43.0

func NewPostAccountRoutingsServiceUnavailable() *PostAccountRoutingsServiceUnavailable

NewPostAccountRoutingsServiceUnavailable creates a PostAccountRoutingsServiceUnavailable with default headers values

func (*PostAccountRoutingsServiceUnavailable) Error added in v0.43.0

func (*PostAccountRoutingsServiceUnavailable) GetPayload added in v0.43.0

type PostAccountRoutingsTooManyRequests added in v0.43.0

type PostAccountRoutingsTooManyRequests struct {
	Payload *models.APIError
}

PostAccountRoutingsTooManyRequests handles this case with default header values.

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

func NewPostAccountRoutingsTooManyRequests added in v0.43.0

func NewPostAccountRoutingsTooManyRequests() *PostAccountRoutingsTooManyRequests

NewPostAccountRoutingsTooManyRequests creates a PostAccountRoutingsTooManyRequests with default headers values

func (*PostAccountRoutingsTooManyRequests) Error added in v0.43.0

func (*PostAccountRoutingsTooManyRequests) GetPayload added in v0.43.0

type PostAccountRoutingsUnauthorized added in v0.43.0

type PostAccountRoutingsUnauthorized struct {
	Payload *models.APIError
}

PostAccountRoutingsUnauthorized handles this case with default header values.

Authentication credentials were missing or incorrect

func NewPostAccountRoutingsUnauthorized added in v0.43.0

func NewPostAccountRoutingsUnauthorized() *PostAccountRoutingsUnauthorized

NewPostAccountRoutingsUnauthorized creates a PostAccountRoutingsUnauthorized with default headers values

func (*PostAccountRoutingsUnauthorized) Error added in v0.43.0

func (*PostAccountRoutingsUnauthorized) GetPayload added in v0.43.0

Jump to

Keyboard shortcuts

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