authorization_details

package
v0.0.0-...-7b99a6d Latest Latest
Warning

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

Go to latest
Published: Jan 29, 2024 License: Apache-2.0 Imports: 10 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 authorization details API

func (*Client) CreateAuthorizationDetail

func (a *Client) CreateAuthorizationDetail(params *CreateAuthorizationDetailParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateAuthorizationDetailCreated, error)

CreateAuthorizationDetail creates authorization detail

Creates a new Authorization Detail object.

func (*Client) DeleteAuthorizationDetail

DeleteAuthorizationDetail deletes authorization detail

Deletes the authorization detail.

func (*Client) GetAuthorizationDetail

func (a *Client) GetAuthorizationDetail(params *GetAuthorizationDetailParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAuthorizationDetailOK, error)

GetAuthorizationDetail gets authorization detail

Returns an Authorization Detail.

func (*Client) ListAuthorizationDetails

func (a *Client) ListAuthorizationDetails(params *ListAuthorizationDetailsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListAuthorizationDetailsOK, error)

ListAuthorizationDetails lists authorization details

List authorization details.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateAuthorizationDetail

func (a *Client) UpdateAuthorizationDetail(params *UpdateAuthorizationDetailParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateAuthorizationDetailOK, error)

UpdateAuthorizationDetail updates authorization detail

Updates the authorization detail

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateAuthorizationDetail(params *CreateAuthorizationDetailParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateAuthorizationDetailCreated, error)

	DeleteAuthorizationDetail(params *DeleteAuthorizationDetailParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteAuthorizationDetailNoContent, error)

	GetAuthorizationDetail(params *GetAuthorizationDetailParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAuthorizationDetailOK, error)

	ListAuthorizationDetails(params *ListAuthorizationDetailsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListAuthorizationDetailsOK, error)

	UpdateAuthorizationDetail(params *UpdateAuthorizationDetailParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateAuthorizationDetailOK, 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 authorization details API client.

type CreateAuthorizationDetailBadRequest

type CreateAuthorizationDetailBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewCreateAuthorizationDetailBadRequest

func NewCreateAuthorizationDetailBadRequest() *CreateAuthorizationDetailBadRequest

NewCreateAuthorizationDetailBadRequest creates a CreateAuthorizationDetailBadRequest with default headers values

func (*CreateAuthorizationDetailBadRequest) Code

Code gets the status code for the create authorization detail bad request response

func (*CreateAuthorizationDetailBadRequest) Error

func (*CreateAuthorizationDetailBadRequest) GetPayload

func (*CreateAuthorizationDetailBadRequest) IsClientError

func (o *CreateAuthorizationDetailBadRequest) IsClientError() bool

IsClientError returns true when this create authorization detail bad request response has a 4xx status code

func (*CreateAuthorizationDetailBadRequest) IsCode

IsCode returns true when this create authorization detail bad request response a status code equal to that given

func (*CreateAuthorizationDetailBadRequest) IsRedirect

func (o *CreateAuthorizationDetailBadRequest) IsRedirect() bool

IsRedirect returns true when this create authorization detail bad request response has a 3xx status code

func (*CreateAuthorizationDetailBadRequest) IsServerError

func (o *CreateAuthorizationDetailBadRequest) IsServerError() bool

IsServerError returns true when this create authorization detail bad request response has a 5xx status code

func (*CreateAuthorizationDetailBadRequest) IsSuccess

IsSuccess returns true when this create authorization detail bad request response has a 2xx status code

func (*CreateAuthorizationDetailBadRequest) String

type CreateAuthorizationDetailConflict

type CreateAuthorizationDetailConflict struct {
	Payload *models.Error
}

CreateAuthorizationDetailConflict describes a response with status code 409, with default header values.

Unprocessable entity

func NewCreateAuthorizationDetailConflict

func NewCreateAuthorizationDetailConflict() *CreateAuthorizationDetailConflict

NewCreateAuthorizationDetailConflict creates a CreateAuthorizationDetailConflict with default headers values

func (*CreateAuthorizationDetailConflict) Code

Code gets the status code for the create authorization detail conflict response

func (*CreateAuthorizationDetailConflict) Error

func (*CreateAuthorizationDetailConflict) GetPayload

func (*CreateAuthorizationDetailConflict) IsClientError

func (o *CreateAuthorizationDetailConflict) IsClientError() bool

IsClientError returns true when this create authorization detail conflict response has a 4xx status code

func (*CreateAuthorizationDetailConflict) IsCode

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

IsCode returns true when this create authorization detail conflict response a status code equal to that given

func (*CreateAuthorizationDetailConflict) IsRedirect

func (o *CreateAuthorizationDetailConflict) IsRedirect() bool

IsRedirect returns true when this create authorization detail conflict response has a 3xx status code

func (*CreateAuthorizationDetailConflict) IsServerError

func (o *CreateAuthorizationDetailConflict) IsServerError() bool

IsServerError returns true when this create authorization detail conflict response has a 5xx status code

func (*CreateAuthorizationDetailConflict) IsSuccess

func (o *CreateAuthorizationDetailConflict) IsSuccess() bool

IsSuccess returns true when this create authorization detail conflict response has a 2xx status code

func (*CreateAuthorizationDetailConflict) String

type CreateAuthorizationDetailCreated

type CreateAuthorizationDetailCreated struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.AuthorizationDetailWithServiceID
}

CreateAuthorizationDetailCreated describes a response with status code 201, with default header values.

AuthorizationDetail

func NewCreateAuthorizationDetailCreated

func NewCreateAuthorizationDetailCreated() *CreateAuthorizationDetailCreated

NewCreateAuthorizationDetailCreated creates a CreateAuthorizationDetailCreated with default headers values

func (*CreateAuthorizationDetailCreated) Code

Code gets the status code for the create authorization detail created response

func (*CreateAuthorizationDetailCreated) Error

func (*CreateAuthorizationDetailCreated) GetPayload

func (*CreateAuthorizationDetailCreated) IsClientError

func (o *CreateAuthorizationDetailCreated) IsClientError() bool

IsClientError returns true when this create authorization detail created response has a 4xx status code

func (*CreateAuthorizationDetailCreated) IsCode

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

IsCode returns true when this create authorization detail created response a status code equal to that given

func (*CreateAuthorizationDetailCreated) IsRedirect

func (o *CreateAuthorizationDetailCreated) IsRedirect() bool

IsRedirect returns true when this create authorization detail created response has a 3xx status code

func (*CreateAuthorizationDetailCreated) IsServerError

func (o *CreateAuthorizationDetailCreated) IsServerError() bool

IsServerError returns true when this create authorization detail created response has a 5xx status code

func (*CreateAuthorizationDetailCreated) IsSuccess

func (o *CreateAuthorizationDetailCreated) IsSuccess() bool

IsSuccess returns true when this create authorization detail created response has a 2xx status code

func (*CreateAuthorizationDetailCreated) String

type CreateAuthorizationDetailForbidden

type CreateAuthorizationDetailForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewCreateAuthorizationDetailForbidden

func NewCreateAuthorizationDetailForbidden() *CreateAuthorizationDetailForbidden

NewCreateAuthorizationDetailForbidden creates a CreateAuthorizationDetailForbidden with default headers values

func (*CreateAuthorizationDetailForbidden) Code

Code gets the status code for the create authorization detail forbidden response

func (*CreateAuthorizationDetailForbidden) Error

func (*CreateAuthorizationDetailForbidden) GetPayload

func (*CreateAuthorizationDetailForbidden) IsClientError

func (o *CreateAuthorizationDetailForbidden) IsClientError() bool

IsClientError returns true when this create authorization detail forbidden response has a 4xx status code

func (*CreateAuthorizationDetailForbidden) IsCode

IsCode returns true when this create authorization detail forbidden response a status code equal to that given

func (*CreateAuthorizationDetailForbidden) IsRedirect

func (o *CreateAuthorizationDetailForbidden) IsRedirect() bool

IsRedirect returns true when this create authorization detail forbidden response has a 3xx status code

func (*CreateAuthorizationDetailForbidden) IsServerError

func (o *CreateAuthorizationDetailForbidden) IsServerError() bool

IsServerError returns true when this create authorization detail forbidden response has a 5xx status code

func (*CreateAuthorizationDetailForbidden) IsSuccess

IsSuccess returns true when this create authorization detail forbidden response has a 2xx status code

func (*CreateAuthorizationDetailForbidden) String

type CreateAuthorizationDetailNotFound

type CreateAuthorizationDetailNotFound struct {
	Payload *models.Error
}

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

Not found

func NewCreateAuthorizationDetailNotFound

func NewCreateAuthorizationDetailNotFound() *CreateAuthorizationDetailNotFound

NewCreateAuthorizationDetailNotFound creates a CreateAuthorizationDetailNotFound with default headers values

func (*CreateAuthorizationDetailNotFound) Code

Code gets the status code for the create authorization detail not found response

func (*CreateAuthorizationDetailNotFound) Error

func (*CreateAuthorizationDetailNotFound) GetPayload

func (*CreateAuthorizationDetailNotFound) IsClientError

func (o *CreateAuthorizationDetailNotFound) IsClientError() bool

IsClientError returns true when this create authorization detail not found response has a 4xx status code

func (*CreateAuthorizationDetailNotFound) IsCode

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

IsCode returns true when this create authorization detail not found response a status code equal to that given

func (*CreateAuthorizationDetailNotFound) IsRedirect

func (o *CreateAuthorizationDetailNotFound) IsRedirect() bool

IsRedirect returns true when this create authorization detail not found response has a 3xx status code

func (*CreateAuthorizationDetailNotFound) IsServerError

func (o *CreateAuthorizationDetailNotFound) IsServerError() bool

IsServerError returns true when this create authorization detail not found response has a 5xx status code

func (*CreateAuthorizationDetailNotFound) IsSuccess

func (o *CreateAuthorizationDetailNotFound) IsSuccess() bool

IsSuccess returns true when this create authorization detail not found response has a 2xx status code

func (*CreateAuthorizationDetailNotFound) String

type CreateAuthorizationDetailParams

type CreateAuthorizationDetailParams struct {

	// AuthorizationDetailWithService.
	AuthorizationDetailWithService *models.AuthorizationDetailWithServiceID

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

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

CreateAuthorizationDetailParams contains all the parameters to send to the API endpoint

for the create authorization detail operation.

Typically these are written to a http.Request.

func NewCreateAuthorizationDetailParams

func NewCreateAuthorizationDetailParams() *CreateAuthorizationDetailParams

NewCreateAuthorizationDetailParams creates a new CreateAuthorizationDetailParams 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 NewCreateAuthorizationDetailParamsWithContext

func NewCreateAuthorizationDetailParamsWithContext(ctx context.Context) *CreateAuthorizationDetailParams

NewCreateAuthorizationDetailParamsWithContext creates a new CreateAuthorizationDetailParams object with the ability to set a context for a request.

func NewCreateAuthorizationDetailParamsWithHTTPClient

func NewCreateAuthorizationDetailParamsWithHTTPClient(client *http.Client) *CreateAuthorizationDetailParams

NewCreateAuthorizationDetailParamsWithHTTPClient creates a new CreateAuthorizationDetailParams object with the ability to set a custom HTTPClient for a request.

func NewCreateAuthorizationDetailParamsWithTimeout

func NewCreateAuthorizationDetailParamsWithTimeout(timeout time.Duration) *CreateAuthorizationDetailParams

NewCreateAuthorizationDetailParamsWithTimeout creates a new CreateAuthorizationDetailParams object with the ability to set a timeout on a request.

func (*CreateAuthorizationDetailParams) SetAuthorizationDetailWithService

func (o *CreateAuthorizationDetailParams) SetAuthorizationDetailWithService(authorizationDetailWithService *models.AuthorizationDetailWithServiceID)

SetAuthorizationDetailWithService adds the authorizationDetailWithService to the create authorization detail params

func (*CreateAuthorizationDetailParams) SetContext

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

SetContext adds the context to the create authorization detail params

func (*CreateAuthorizationDetailParams) SetDefaults

func (o *CreateAuthorizationDetailParams) SetDefaults()

SetDefaults hydrates default values in the create authorization detail params (not the query body).

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

func (*CreateAuthorizationDetailParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create authorization detail params

func (*CreateAuthorizationDetailParams) SetIfMatch

func (o *CreateAuthorizationDetailParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the create authorization detail params

func (*CreateAuthorizationDetailParams) SetTimeout

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

SetTimeout adds the timeout to the create authorization detail params

func (*CreateAuthorizationDetailParams) WithAuthorizationDetailWithService

func (o *CreateAuthorizationDetailParams) WithAuthorizationDetailWithService(authorizationDetailWithService *models.AuthorizationDetailWithServiceID) *CreateAuthorizationDetailParams

WithAuthorizationDetailWithService adds the authorizationDetailWithService to the create authorization detail params

func (*CreateAuthorizationDetailParams) WithContext

WithContext adds the context to the create authorization detail params

func (*CreateAuthorizationDetailParams) WithDefaults

WithDefaults hydrates default values in the create authorization detail params (not the query body).

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

func (*CreateAuthorizationDetailParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create authorization detail params

func (*CreateAuthorizationDetailParams) WithIfMatch

WithIfMatch adds the ifMatch to the create authorization detail params

func (*CreateAuthorizationDetailParams) WithTimeout

WithTimeout adds the timeout to the create authorization detail params

func (*CreateAuthorizationDetailParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateAuthorizationDetailReader

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

CreateAuthorizationDetailReader is a Reader for the CreateAuthorizationDetail structure.

func (*CreateAuthorizationDetailReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateAuthorizationDetailTooManyRequests

type CreateAuthorizationDetailTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewCreateAuthorizationDetailTooManyRequests

func NewCreateAuthorizationDetailTooManyRequests() *CreateAuthorizationDetailTooManyRequests

NewCreateAuthorizationDetailTooManyRequests creates a CreateAuthorizationDetailTooManyRequests with default headers values

func (*CreateAuthorizationDetailTooManyRequests) Code

Code gets the status code for the create authorization detail too many requests response

func (*CreateAuthorizationDetailTooManyRequests) Error

func (*CreateAuthorizationDetailTooManyRequests) GetPayload

func (*CreateAuthorizationDetailTooManyRequests) IsClientError

IsClientError returns true when this create authorization detail too many requests response has a 4xx status code

func (*CreateAuthorizationDetailTooManyRequests) IsCode

IsCode returns true when this create authorization detail too many requests response a status code equal to that given

func (*CreateAuthorizationDetailTooManyRequests) IsRedirect

IsRedirect returns true when this create authorization detail too many requests response has a 3xx status code

func (*CreateAuthorizationDetailTooManyRequests) IsServerError

IsServerError returns true when this create authorization detail too many requests response has a 5xx status code

func (*CreateAuthorizationDetailTooManyRequests) IsSuccess

IsSuccess returns true when this create authorization detail too many requests response has a 2xx status code

func (*CreateAuthorizationDetailTooManyRequests) String

type CreateAuthorizationDetailUnauthorized

type CreateAuthorizationDetailUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewCreateAuthorizationDetailUnauthorized

func NewCreateAuthorizationDetailUnauthorized() *CreateAuthorizationDetailUnauthorized

NewCreateAuthorizationDetailUnauthorized creates a CreateAuthorizationDetailUnauthorized with default headers values

func (*CreateAuthorizationDetailUnauthorized) Code

Code gets the status code for the create authorization detail unauthorized response

func (*CreateAuthorizationDetailUnauthorized) Error

func (*CreateAuthorizationDetailUnauthorized) GetPayload

func (*CreateAuthorizationDetailUnauthorized) IsClientError

func (o *CreateAuthorizationDetailUnauthorized) IsClientError() bool

IsClientError returns true when this create authorization detail unauthorized response has a 4xx status code

func (*CreateAuthorizationDetailUnauthorized) IsCode

IsCode returns true when this create authorization detail unauthorized response a status code equal to that given

func (*CreateAuthorizationDetailUnauthorized) IsRedirect

IsRedirect returns true when this create authorization detail unauthorized response has a 3xx status code

func (*CreateAuthorizationDetailUnauthorized) IsServerError

func (o *CreateAuthorizationDetailUnauthorized) IsServerError() bool

IsServerError returns true when this create authorization detail unauthorized response has a 5xx status code

func (*CreateAuthorizationDetailUnauthorized) IsSuccess

IsSuccess returns true when this create authorization detail unauthorized response has a 2xx status code

func (*CreateAuthorizationDetailUnauthorized) String

type CreateAuthorizationDetailUnprocessableEntity

type CreateAuthorizationDetailUnprocessableEntity struct {
	Payload *models.Error
}

CreateAuthorizationDetailUnprocessableEntity describes a response with status code 422, with default header values.

Unprocessable entity

func NewCreateAuthorizationDetailUnprocessableEntity

func NewCreateAuthorizationDetailUnprocessableEntity() *CreateAuthorizationDetailUnprocessableEntity

NewCreateAuthorizationDetailUnprocessableEntity creates a CreateAuthorizationDetailUnprocessableEntity with default headers values

func (*CreateAuthorizationDetailUnprocessableEntity) Code

Code gets the status code for the create authorization detail unprocessable entity response

func (*CreateAuthorizationDetailUnprocessableEntity) Error

func (*CreateAuthorizationDetailUnprocessableEntity) GetPayload

func (*CreateAuthorizationDetailUnprocessableEntity) IsClientError

IsClientError returns true when this create authorization detail unprocessable entity response has a 4xx status code

func (*CreateAuthorizationDetailUnprocessableEntity) IsCode

IsCode returns true when this create authorization detail unprocessable entity response a status code equal to that given

func (*CreateAuthorizationDetailUnprocessableEntity) IsRedirect

IsRedirect returns true when this create authorization detail unprocessable entity response has a 3xx status code

func (*CreateAuthorizationDetailUnprocessableEntity) IsServerError

IsServerError returns true when this create authorization detail unprocessable entity response has a 5xx status code

func (*CreateAuthorizationDetailUnprocessableEntity) IsSuccess

IsSuccess returns true when this create authorization detail unprocessable entity response has a 2xx status code

func (*CreateAuthorizationDetailUnprocessableEntity) String

type DeleteAuthorizationDetailForbidden

type DeleteAuthorizationDetailForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewDeleteAuthorizationDetailForbidden

func NewDeleteAuthorizationDetailForbidden() *DeleteAuthorizationDetailForbidden

NewDeleteAuthorizationDetailForbidden creates a DeleteAuthorizationDetailForbidden with default headers values

func (*DeleteAuthorizationDetailForbidden) Code

Code gets the status code for the delete authorization detail forbidden response

func (*DeleteAuthorizationDetailForbidden) Error

func (*DeleteAuthorizationDetailForbidden) GetPayload

func (*DeleteAuthorizationDetailForbidden) IsClientError

func (o *DeleteAuthorizationDetailForbidden) IsClientError() bool

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

func (*DeleteAuthorizationDetailForbidden) IsCode

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

func (*DeleteAuthorizationDetailForbidden) IsRedirect

func (o *DeleteAuthorizationDetailForbidden) IsRedirect() bool

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

func (*DeleteAuthorizationDetailForbidden) IsServerError

func (o *DeleteAuthorizationDetailForbidden) IsServerError() bool

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

func (*DeleteAuthorizationDetailForbidden) IsSuccess

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

func (*DeleteAuthorizationDetailForbidden) String

type DeleteAuthorizationDetailNoContent

type DeleteAuthorizationDetailNoContent struct {
}

DeleteAuthorizationDetailNoContent describes a response with status code 204, with default header values.

Authorization Detail has been deleted

func NewDeleteAuthorizationDetailNoContent

func NewDeleteAuthorizationDetailNoContent() *DeleteAuthorizationDetailNoContent

NewDeleteAuthorizationDetailNoContent creates a DeleteAuthorizationDetailNoContent with default headers values

func (*DeleteAuthorizationDetailNoContent) Code

Code gets the status code for the delete authorization detail no content response

func (*DeleteAuthorizationDetailNoContent) Error

func (*DeleteAuthorizationDetailNoContent) IsClientError

func (o *DeleteAuthorizationDetailNoContent) IsClientError() bool

IsClientError returns true when this delete authorization detail no content response has a 4xx status code

func (*DeleteAuthorizationDetailNoContent) IsCode

IsCode returns true when this delete authorization detail no content response a status code equal to that given

func (*DeleteAuthorizationDetailNoContent) IsRedirect

func (o *DeleteAuthorizationDetailNoContent) IsRedirect() bool

IsRedirect returns true when this delete authorization detail no content response has a 3xx status code

func (*DeleteAuthorizationDetailNoContent) IsServerError

func (o *DeleteAuthorizationDetailNoContent) IsServerError() bool

IsServerError returns true when this delete authorization detail no content response has a 5xx status code

func (*DeleteAuthorizationDetailNoContent) IsSuccess

IsSuccess returns true when this delete authorization detail no content response has a 2xx status code

func (*DeleteAuthorizationDetailNoContent) String

type DeleteAuthorizationDetailNotFound

type DeleteAuthorizationDetailNotFound struct {
	Payload *models.Error
}

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

Not found

func NewDeleteAuthorizationDetailNotFound

func NewDeleteAuthorizationDetailNotFound() *DeleteAuthorizationDetailNotFound

NewDeleteAuthorizationDetailNotFound creates a DeleteAuthorizationDetailNotFound with default headers values

func (*DeleteAuthorizationDetailNotFound) Code

Code gets the status code for the delete authorization detail not found response

func (*DeleteAuthorizationDetailNotFound) Error

func (*DeleteAuthorizationDetailNotFound) GetPayload

func (*DeleteAuthorizationDetailNotFound) IsClientError

func (o *DeleteAuthorizationDetailNotFound) IsClientError() bool

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

func (*DeleteAuthorizationDetailNotFound) IsCode

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

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

func (*DeleteAuthorizationDetailNotFound) IsRedirect

func (o *DeleteAuthorizationDetailNotFound) IsRedirect() bool

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

func (*DeleteAuthorizationDetailNotFound) IsServerError

func (o *DeleteAuthorizationDetailNotFound) IsServerError() bool

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

func (*DeleteAuthorizationDetailNotFound) IsSuccess

func (o *DeleteAuthorizationDetailNotFound) IsSuccess() bool

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

func (*DeleteAuthorizationDetailNotFound) String

type DeleteAuthorizationDetailParams

type DeleteAuthorizationDetailParams struct {

	/* AuthorizationDetailID.

	   AuthorizationDetail ID
	*/
	AuthorizationDetailID string

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

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

DeleteAuthorizationDetailParams contains all the parameters to send to the API endpoint

for the delete authorization detail operation.

Typically these are written to a http.Request.

func NewDeleteAuthorizationDetailParams

func NewDeleteAuthorizationDetailParams() *DeleteAuthorizationDetailParams

NewDeleteAuthorizationDetailParams creates a new DeleteAuthorizationDetailParams 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 NewDeleteAuthorizationDetailParamsWithContext

func NewDeleteAuthorizationDetailParamsWithContext(ctx context.Context) *DeleteAuthorizationDetailParams

NewDeleteAuthorizationDetailParamsWithContext creates a new DeleteAuthorizationDetailParams object with the ability to set a context for a request.

func NewDeleteAuthorizationDetailParamsWithHTTPClient

func NewDeleteAuthorizationDetailParamsWithHTTPClient(client *http.Client) *DeleteAuthorizationDetailParams

NewDeleteAuthorizationDetailParamsWithHTTPClient creates a new DeleteAuthorizationDetailParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteAuthorizationDetailParamsWithTimeout

func NewDeleteAuthorizationDetailParamsWithTimeout(timeout time.Duration) *DeleteAuthorizationDetailParams

NewDeleteAuthorizationDetailParamsWithTimeout creates a new DeleteAuthorizationDetailParams object with the ability to set a timeout on a request.

func (*DeleteAuthorizationDetailParams) SetAuthorizationDetailID

func (o *DeleteAuthorizationDetailParams) SetAuthorizationDetailID(authorizationDetailID string)

SetAuthorizationDetailID adds the authorizationDetailId to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) SetContext

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

SetContext adds the context to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) SetDefaults

func (o *DeleteAuthorizationDetailParams) SetDefaults()

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

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

func (*DeleteAuthorizationDetailParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) SetIfMatch

func (o *DeleteAuthorizationDetailParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) SetTimeout

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

SetTimeout adds the timeout to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) WithAuthorizationDetailID

func (o *DeleteAuthorizationDetailParams) WithAuthorizationDetailID(authorizationDetailID string) *DeleteAuthorizationDetailParams

WithAuthorizationDetailID adds the authorizationDetailID to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) WithContext

WithContext adds the context to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) WithDefaults

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

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

func (*DeleteAuthorizationDetailParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) WithIfMatch

WithIfMatch adds the ifMatch to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) WithTimeout

WithTimeout adds the timeout to the delete authorization detail params

func (*DeleteAuthorizationDetailParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAuthorizationDetailReader

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

DeleteAuthorizationDetailReader is a Reader for the DeleteAuthorizationDetail structure.

func (*DeleteAuthorizationDetailReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAuthorizationDetailTooManyRequests

type DeleteAuthorizationDetailTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewDeleteAuthorizationDetailTooManyRequests

func NewDeleteAuthorizationDetailTooManyRequests() *DeleteAuthorizationDetailTooManyRequests

NewDeleteAuthorizationDetailTooManyRequests creates a DeleteAuthorizationDetailTooManyRequests with default headers values

func (*DeleteAuthorizationDetailTooManyRequests) Code

Code gets the status code for the delete authorization detail too many requests response

func (*DeleteAuthorizationDetailTooManyRequests) Error

func (*DeleteAuthorizationDetailTooManyRequests) GetPayload

func (*DeleteAuthorizationDetailTooManyRequests) IsClientError

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

func (*DeleteAuthorizationDetailTooManyRequests) IsCode

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

func (*DeleteAuthorizationDetailTooManyRequests) IsRedirect

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

func (*DeleteAuthorizationDetailTooManyRequests) IsServerError

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

func (*DeleteAuthorizationDetailTooManyRequests) IsSuccess

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

func (*DeleteAuthorizationDetailTooManyRequests) String

type DeleteAuthorizationDetailUnauthorized

type DeleteAuthorizationDetailUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewDeleteAuthorizationDetailUnauthorized

func NewDeleteAuthorizationDetailUnauthorized() *DeleteAuthorizationDetailUnauthorized

NewDeleteAuthorizationDetailUnauthorized creates a DeleteAuthorizationDetailUnauthorized with default headers values

func (*DeleteAuthorizationDetailUnauthorized) Code

Code gets the status code for the delete authorization detail unauthorized response

func (*DeleteAuthorizationDetailUnauthorized) Error

func (*DeleteAuthorizationDetailUnauthorized) GetPayload

func (*DeleteAuthorizationDetailUnauthorized) IsClientError

func (o *DeleteAuthorizationDetailUnauthorized) IsClientError() bool

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

func (*DeleteAuthorizationDetailUnauthorized) IsCode

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

func (*DeleteAuthorizationDetailUnauthorized) IsRedirect

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

func (*DeleteAuthorizationDetailUnauthorized) IsServerError

func (o *DeleteAuthorizationDetailUnauthorized) IsServerError() bool

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

func (*DeleteAuthorizationDetailUnauthorized) IsSuccess

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

func (*DeleteAuthorizationDetailUnauthorized) String

type GetAuthorizationDetailForbidden

type GetAuthorizationDetailForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewGetAuthorizationDetailForbidden

func NewGetAuthorizationDetailForbidden() *GetAuthorizationDetailForbidden

NewGetAuthorizationDetailForbidden creates a GetAuthorizationDetailForbidden with default headers values

func (*GetAuthorizationDetailForbidden) Code

Code gets the status code for the get authorization detail forbidden response

func (*GetAuthorizationDetailForbidden) Error

func (*GetAuthorizationDetailForbidden) GetPayload

func (o *GetAuthorizationDetailForbidden) GetPayload() *models.Error

func (*GetAuthorizationDetailForbidden) IsClientError

func (o *GetAuthorizationDetailForbidden) IsClientError() bool

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

func (*GetAuthorizationDetailForbidden) IsCode

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

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

func (*GetAuthorizationDetailForbidden) IsRedirect

func (o *GetAuthorizationDetailForbidden) IsRedirect() bool

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

func (*GetAuthorizationDetailForbidden) IsServerError

func (o *GetAuthorizationDetailForbidden) IsServerError() bool

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

func (*GetAuthorizationDetailForbidden) IsSuccess

func (o *GetAuthorizationDetailForbidden) IsSuccess() bool

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

func (*GetAuthorizationDetailForbidden) String

type GetAuthorizationDetailNotFound

type GetAuthorizationDetailNotFound struct {
	Payload *models.Error
}

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

Not found

func NewGetAuthorizationDetailNotFound

func NewGetAuthorizationDetailNotFound() *GetAuthorizationDetailNotFound

NewGetAuthorizationDetailNotFound creates a GetAuthorizationDetailNotFound with default headers values

func (*GetAuthorizationDetailNotFound) Code

Code gets the status code for the get authorization detail not found response

func (*GetAuthorizationDetailNotFound) Error

func (*GetAuthorizationDetailNotFound) GetPayload

func (o *GetAuthorizationDetailNotFound) GetPayload() *models.Error

func (*GetAuthorizationDetailNotFound) IsClientError

func (o *GetAuthorizationDetailNotFound) IsClientError() bool

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

func (*GetAuthorizationDetailNotFound) IsCode

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

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

func (*GetAuthorizationDetailNotFound) IsRedirect

func (o *GetAuthorizationDetailNotFound) IsRedirect() bool

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

func (*GetAuthorizationDetailNotFound) IsServerError

func (o *GetAuthorizationDetailNotFound) IsServerError() bool

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

func (*GetAuthorizationDetailNotFound) IsSuccess

func (o *GetAuthorizationDetailNotFound) IsSuccess() bool

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

func (*GetAuthorizationDetailNotFound) String

type GetAuthorizationDetailOK

type GetAuthorizationDetailOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.AuthorizationDetailWithService
}

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

AuthorizationDetailWithService

func NewGetAuthorizationDetailOK

func NewGetAuthorizationDetailOK() *GetAuthorizationDetailOK

NewGetAuthorizationDetailOK creates a GetAuthorizationDetailOK with default headers values

func (*GetAuthorizationDetailOK) Code

func (o *GetAuthorizationDetailOK) Code() int

Code gets the status code for the get authorization detail o k response

func (*GetAuthorizationDetailOK) Error

func (o *GetAuthorizationDetailOK) Error() string

func (*GetAuthorizationDetailOK) GetPayload

func (*GetAuthorizationDetailOK) IsClientError

func (o *GetAuthorizationDetailOK) IsClientError() bool

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

func (*GetAuthorizationDetailOK) IsCode

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

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

func (*GetAuthorizationDetailOK) IsRedirect

func (o *GetAuthorizationDetailOK) IsRedirect() bool

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

func (*GetAuthorizationDetailOK) IsServerError

func (o *GetAuthorizationDetailOK) IsServerError() bool

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

func (*GetAuthorizationDetailOK) IsSuccess

func (o *GetAuthorizationDetailOK) IsSuccess() bool

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

func (*GetAuthorizationDetailOK) String

func (o *GetAuthorizationDetailOK) String() string

type GetAuthorizationDetailParams

type GetAuthorizationDetailParams struct {

	/* AuthorizationDetailID.

	   AuthorizationDetail ID
	*/
	AuthorizationDetailID string

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

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

GetAuthorizationDetailParams contains all the parameters to send to the API endpoint

for the get authorization detail operation.

Typically these are written to a http.Request.

func NewGetAuthorizationDetailParams

func NewGetAuthorizationDetailParams() *GetAuthorizationDetailParams

NewGetAuthorizationDetailParams creates a new GetAuthorizationDetailParams 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 NewGetAuthorizationDetailParamsWithContext

func NewGetAuthorizationDetailParamsWithContext(ctx context.Context) *GetAuthorizationDetailParams

NewGetAuthorizationDetailParamsWithContext creates a new GetAuthorizationDetailParams object with the ability to set a context for a request.

func NewGetAuthorizationDetailParamsWithHTTPClient

func NewGetAuthorizationDetailParamsWithHTTPClient(client *http.Client) *GetAuthorizationDetailParams

NewGetAuthorizationDetailParamsWithHTTPClient creates a new GetAuthorizationDetailParams object with the ability to set a custom HTTPClient for a request.

func NewGetAuthorizationDetailParamsWithTimeout

func NewGetAuthorizationDetailParamsWithTimeout(timeout time.Duration) *GetAuthorizationDetailParams

NewGetAuthorizationDetailParamsWithTimeout creates a new GetAuthorizationDetailParams object with the ability to set a timeout on a request.

func (*GetAuthorizationDetailParams) SetAuthorizationDetailID

func (o *GetAuthorizationDetailParams) SetAuthorizationDetailID(authorizationDetailID string)

SetAuthorizationDetailID adds the authorizationDetailId to the get authorization detail params

func (*GetAuthorizationDetailParams) SetContext

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

SetContext adds the context to the get authorization detail params

func (*GetAuthorizationDetailParams) SetDefaults

func (o *GetAuthorizationDetailParams) SetDefaults()

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

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

func (*GetAuthorizationDetailParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get authorization detail params

func (*GetAuthorizationDetailParams) SetIfMatch

func (o *GetAuthorizationDetailParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the get authorization detail params

func (*GetAuthorizationDetailParams) SetTimeout

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

SetTimeout adds the timeout to the get authorization detail params

func (*GetAuthorizationDetailParams) WithAuthorizationDetailID

func (o *GetAuthorizationDetailParams) WithAuthorizationDetailID(authorizationDetailID string) *GetAuthorizationDetailParams

WithAuthorizationDetailID adds the authorizationDetailID to the get authorization detail params

func (*GetAuthorizationDetailParams) WithContext

WithContext adds the context to the get authorization detail params

func (*GetAuthorizationDetailParams) WithDefaults

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

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

func (*GetAuthorizationDetailParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get authorization detail params

func (*GetAuthorizationDetailParams) WithIfMatch

WithIfMatch adds the ifMatch to the get authorization detail params

func (*GetAuthorizationDetailParams) WithTimeout

WithTimeout adds the timeout to the get authorization detail params

func (*GetAuthorizationDetailParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAuthorizationDetailReader

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

GetAuthorizationDetailReader is a Reader for the GetAuthorizationDetail structure.

func (*GetAuthorizationDetailReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAuthorizationDetailTooManyRequests

type GetAuthorizationDetailTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewGetAuthorizationDetailTooManyRequests

func NewGetAuthorizationDetailTooManyRequests() *GetAuthorizationDetailTooManyRequests

NewGetAuthorizationDetailTooManyRequests creates a GetAuthorizationDetailTooManyRequests with default headers values

func (*GetAuthorizationDetailTooManyRequests) Code

Code gets the status code for the get authorization detail too many requests response

func (*GetAuthorizationDetailTooManyRequests) Error

func (*GetAuthorizationDetailTooManyRequests) GetPayload

func (*GetAuthorizationDetailTooManyRequests) IsClientError

func (o *GetAuthorizationDetailTooManyRequests) IsClientError() bool

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

func (*GetAuthorizationDetailTooManyRequests) IsCode

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

func (*GetAuthorizationDetailTooManyRequests) IsRedirect

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

func (*GetAuthorizationDetailTooManyRequests) IsServerError

func (o *GetAuthorizationDetailTooManyRequests) IsServerError() bool

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

func (*GetAuthorizationDetailTooManyRequests) IsSuccess

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

func (*GetAuthorizationDetailTooManyRequests) String

type GetAuthorizationDetailUnauthorized

type GetAuthorizationDetailUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewGetAuthorizationDetailUnauthorized

func NewGetAuthorizationDetailUnauthorized() *GetAuthorizationDetailUnauthorized

NewGetAuthorizationDetailUnauthorized creates a GetAuthorizationDetailUnauthorized with default headers values

func (*GetAuthorizationDetailUnauthorized) Code

Code gets the status code for the get authorization detail unauthorized response

func (*GetAuthorizationDetailUnauthorized) Error

func (*GetAuthorizationDetailUnauthorized) GetPayload

func (*GetAuthorizationDetailUnauthorized) IsClientError

func (o *GetAuthorizationDetailUnauthorized) IsClientError() bool

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

func (*GetAuthorizationDetailUnauthorized) IsCode

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

func (*GetAuthorizationDetailUnauthorized) IsRedirect

func (o *GetAuthorizationDetailUnauthorized) IsRedirect() bool

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

func (*GetAuthorizationDetailUnauthorized) IsServerError

func (o *GetAuthorizationDetailUnauthorized) IsServerError() bool

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

func (*GetAuthorizationDetailUnauthorized) IsSuccess

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

func (*GetAuthorizationDetailUnauthorized) String

type ListAuthorizationDetailsForbidden

type ListAuthorizationDetailsForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewListAuthorizationDetailsForbidden

func NewListAuthorizationDetailsForbidden() *ListAuthorizationDetailsForbidden

NewListAuthorizationDetailsForbidden creates a ListAuthorizationDetailsForbidden with default headers values

func (*ListAuthorizationDetailsForbidden) Code

Code gets the status code for the list authorization details forbidden response

func (*ListAuthorizationDetailsForbidden) Error

func (*ListAuthorizationDetailsForbidden) GetPayload

func (*ListAuthorizationDetailsForbidden) IsClientError

func (o *ListAuthorizationDetailsForbidden) IsClientError() bool

IsClientError returns true when this list authorization details forbidden response has a 4xx status code

func (*ListAuthorizationDetailsForbidden) IsCode

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

IsCode returns true when this list authorization details forbidden response a status code equal to that given

func (*ListAuthorizationDetailsForbidden) IsRedirect

func (o *ListAuthorizationDetailsForbidden) IsRedirect() bool

IsRedirect returns true when this list authorization details forbidden response has a 3xx status code

func (*ListAuthorizationDetailsForbidden) IsServerError

func (o *ListAuthorizationDetailsForbidden) IsServerError() bool

IsServerError returns true when this list authorization details forbidden response has a 5xx status code

func (*ListAuthorizationDetailsForbidden) IsSuccess

func (o *ListAuthorizationDetailsForbidden) IsSuccess() bool

IsSuccess returns true when this list authorization details forbidden response has a 2xx status code

func (*ListAuthorizationDetailsForbidden) String

type ListAuthorizationDetailsOK

type ListAuthorizationDetailsOK struct {
	Payload *models.AuthorizationDetailsWithServices
}

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

AuthorizationDetailsWithServices

func NewListAuthorizationDetailsOK

func NewListAuthorizationDetailsOK() *ListAuthorizationDetailsOK

NewListAuthorizationDetailsOK creates a ListAuthorizationDetailsOK with default headers values

func (*ListAuthorizationDetailsOK) Code

func (o *ListAuthorizationDetailsOK) Code() int

Code gets the status code for the list authorization details o k response

func (*ListAuthorizationDetailsOK) Error

func (*ListAuthorizationDetailsOK) GetPayload

func (*ListAuthorizationDetailsOK) IsClientError

func (o *ListAuthorizationDetailsOK) IsClientError() bool

IsClientError returns true when this list authorization details o k response has a 4xx status code

func (*ListAuthorizationDetailsOK) IsCode

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

IsCode returns true when this list authorization details o k response a status code equal to that given

func (*ListAuthorizationDetailsOK) IsRedirect

func (o *ListAuthorizationDetailsOK) IsRedirect() bool

IsRedirect returns true when this list authorization details o k response has a 3xx status code

func (*ListAuthorizationDetailsOK) IsServerError

func (o *ListAuthorizationDetailsOK) IsServerError() bool

IsServerError returns true when this list authorization details o k response has a 5xx status code

func (*ListAuthorizationDetailsOK) IsSuccess

func (o *ListAuthorizationDetailsOK) IsSuccess() bool

IsSuccess returns true when this list authorization details o k response has a 2xx status code

func (*ListAuthorizationDetailsOK) String

func (o *ListAuthorizationDetailsOK) String() string

type ListAuthorizationDetailsParams

type ListAuthorizationDetailsParams struct {

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id

	   Default: "default"
	*/
	Wid string

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

ListAuthorizationDetailsParams contains all the parameters to send to the API endpoint

for the list authorization details operation.

Typically these are written to a http.Request.

func NewListAuthorizationDetailsParams

func NewListAuthorizationDetailsParams() *ListAuthorizationDetailsParams

NewListAuthorizationDetailsParams creates a new ListAuthorizationDetailsParams 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 NewListAuthorizationDetailsParamsWithContext

func NewListAuthorizationDetailsParamsWithContext(ctx context.Context) *ListAuthorizationDetailsParams

NewListAuthorizationDetailsParamsWithContext creates a new ListAuthorizationDetailsParams object with the ability to set a context for a request.

func NewListAuthorizationDetailsParamsWithHTTPClient

func NewListAuthorizationDetailsParamsWithHTTPClient(client *http.Client) *ListAuthorizationDetailsParams

NewListAuthorizationDetailsParamsWithHTTPClient creates a new ListAuthorizationDetailsParams object with the ability to set a custom HTTPClient for a request.

func NewListAuthorizationDetailsParamsWithTimeout

func NewListAuthorizationDetailsParamsWithTimeout(timeout time.Duration) *ListAuthorizationDetailsParams

NewListAuthorizationDetailsParamsWithTimeout creates a new ListAuthorizationDetailsParams object with the ability to set a timeout on a request.

func (*ListAuthorizationDetailsParams) SetContext

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

SetContext adds the context to the list authorization details params

func (*ListAuthorizationDetailsParams) SetDefaults

func (o *ListAuthorizationDetailsParams) SetDefaults()

SetDefaults hydrates default values in the list authorization details params (not the query body).

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

func (*ListAuthorizationDetailsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list authorization details params

func (*ListAuthorizationDetailsParams) SetIfMatch

func (o *ListAuthorizationDetailsParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the list authorization details params

func (*ListAuthorizationDetailsParams) SetTimeout

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

SetTimeout adds the timeout to the list authorization details params

func (*ListAuthorizationDetailsParams) SetWid

func (o *ListAuthorizationDetailsParams) SetWid(wid string)

SetWid adds the wid to the list authorization details params

func (*ListAuthorizationDetailsParams) WithContext

WithContext adds the context to the list authorization details params

func (*ListAuthorizationDetailsParams) WithDefaults

WithDefaults hydrates default values in the list authorization details params (not the query body).

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

func (*ListAuthorizationDetailsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list authorization details params

func (*ListAuthorizationDetailsParams) WithIfMatch

WithIfMatch adds the ifMatch to the list authorization details params

func (*ListAuthorizationDetailsParams) WithTimeout

WithTimeout adds the timeout to the list authorization details params

func (*ListAuthorizationDetailsParams) WithWid

WithWid adds the wid to the list authorization details params

func (*ListAuthorizationDetailsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListAuthorizationDetailsReader

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

ListAuthorizationDetailsReader is a Reader for the ListAuthorizationDetails structure.

func (*ListAuthorizationDetailsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListAuthorizationDetailsTooManyRequests

type ListAuthorizationDetailsTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewListAuthorizationDetailsTooManyRequests

func NewListAuthorizationDetailsTooManyRequests() *ListAuthorizationDetailsTooManyRequests

NewListAuthorizationDetailsTooManyRequests creates a ListAuthorizationDetailsTooManyRequests with default headers values

func (*ListAuthorizationDetailsTooManyRequests) Code

Code gets the status code for the list authorization details too many requests response

func (*ListAuthorizationDetailsTooManyRequests) Error

func (*ListAuthorizationDetailsTooManyRequests) GetPayload

func (*ListAuthorizationDetailsTooManyRequests) IsClientError

func (o *ListAuthorizationDetailsTooManyRequests) IsClientError() bool

IsClientError returns true when this list authorization details too many requests response has a 4xx status code

func (*ListAuthorizationDetailsTooManyRequests) IsCode

IsCode returns true when this list authorization details too many requests response a status code equal to that given

func (*ListAuthorizationDetailsTooManyRequests) IsRedirect

IsRedirect returns true when this list authorization details too many requests response has a 3xx status code

func (*ListAuthorizationDetailsTooManyRequests) IsServerError

func (o *ListAuthorizationDetailsTooManyRequests) IsServerError() bool

IsServerError returns true when this list authorization details too many requests response has a 5xx status code

func (*ListAuthorizationDetailsTooManyRequests) IsSuccess

IsSuccess returns true when this list authorization details too many requests response has a 2xx status code

func (*ListAuthorizationDetailsTooManyRequests) String

type ListAuthorizationDetailsUnauthorized

type ListAuthorizationDetailsUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewListAuthorizationDetailsUnauthorized

func NewListAuthorizationDetailsUnauthorized() *ListAuthorizationDetailsUnauthorized

NewListAuthorizationDetailsUnauthorized creates a ListAuthorizationDetailsUnauthorized with default headers values

func (*ListAuthorizationDetailsUnauthorized) Code

Code gets the status code for the list authorization details unauthorized response

func (*ListAuthorizationDetailsUnauthorized) Error

func (*ListAuthorizationDetailsUnauthorized) GetPayload

func (*ListAuthorizationDetailsUnauthorized) IsClientError

func (o *ListAuthorizationDetailsUnauthorized) IsClientError() bool

IsClientError returns true when this list authorization details unauthorized response has a 4xx status code

func (*ListAuthorizationDetailsUnauthorized) IsCode

IsCode returns true when this list authorization details unauthorized response a status code equal to that given

func (*ListAuthorizationDetailsUnauthorized) IsRedirect

IsRedirect returns true when this list authorization details unauthorized response has a 3xx status code

func (*ListAuthorizationDetailsUnauthorized) IsServerError

func (o *ListAuthorizationDetailsUnauthorized) IsServerError() bool

IsServerError returns true when this list authorization details unauthorized response has a 5xx status code

func (*ListAuthorizationDetailsUnauthorized) IsSuccess

IsSuccess returns true when this list authorization details unauthorized response has a 2xx status code

func (*ListAuthorizationDetailsUnauthorized) String

type UpdateAuthorizationDetailBadRequest

type UpdateAuthorizationDetailBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewUpdateAuthorizationDetailBadRequest

func NewUpdateAuthorizationDetailBadRequest() *UpdateAuthorizationDetailBadRequest

NewUpdateAuthorizationDetailBadRequest creates a UpdateAuthorizationDetailBadRequest with default headers values

func (*UpdateAuthorizationDetailBadRequest) Code

Code gets the status code for the update authorization detail bad request response

func (*UpdateAuthorizationDetailBadRequest) Error

func (*UpdateAuthorizationDetailBadRequest) GetPayload

func (*UpdateAuthorizationDetailBadRequest) IsClientError

func (o *UpdateAuthorizationDetailBadRequest) IsClientError() bool

IsClientError returns true when this update authorization detail bad request response has a 4xx status code

func (*UpdateAuthorizationDetailBadRequest) IsCode

IsCode returns true when this update authorization detail bad request response a status code equal to that given

func (*UpdateAuthorizationDetailBadRequest) IsRedirect

func (o *UpdateAuthorizationDetailBadRequest) IsRedirect() bool

IsRedirect returns true when this update authorization detail bad request response has a 3xx status code

func (*UpdateAuthorizationDetailBadRequest) IsServerError

func (o *UpdateAuthorizationDetailBadRequest) IsServerError() bool

IsServerError returns true when this update authorization detail bad request response has a 5xx status code

func (*UpdateAuthorizationDetailBadRequest) IsSuccess

IsSuccess returns true when this update authorization detail bad request response has a 2xx status code

func (*UpdateAuthorizationDetailBadRequest) String

type UpdateAuthorizationDetailConflict

type UpdateAuthorizationDetailConflict struct {
	Payload *models.Error
}

UpdateAuthorizationDetailConflict describes a response with status code 409, with default header values.

Unprocessable entity

func NewUpdateAuthorizationDetailConflict

func NewUpdateAuthorizationDetailConflict() *UpdateAuthorizationDetailConflict

NewUpdateAuthorizationDetailConflict creates a UpdateAuthorizationDetailConflict with default headers values

func (*UpdateAuthorizationDetailConflict) Code

Code gets the status code for the update authorization detail conflict response

func (*UpdateAuthorizationDetailConflict) Error

func (*UpdateAuthorizationDetailConflict) GetPayload

func (*UpdateAuthorizationDetailConflict) IsClientError

func (o *UpdateAuthorizationDetailConflict) IsClientError() bool

IsClientError returns true when this update authorization detail conflict response has a 4xx status code

func (*UpdateAuthorizationDetailConflict) IsCode

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

IsCode returns true when this update authorization detail conflict response a status code equal to that given

func (*UpdateAuthorizationDetailConflict) IsRedirect

func (o *UpdateAuthorizationDetailConflict) IsRedirect() bool

IsRedirect returns true when this update authorization detail conflict response has a 3xx status code

func (*UpdateAuthorizationDetailConflict) IsServerError

func (o *UpdateAuthorizationDetailConflict) IsServerError() bool

IsServerError returns true when this update authorization detail conflict response has a 5xx status code

func (*UpdateAuthorizationDetailConflict) IsSuccess

func (o *UpdateAuthorizationDetailConflict) IsSuccess() bool

IsSuccess returns true when this update authorization detail conflict response has a 2xx status code

func (*UpdateAuthorizationDetailConflict) String

type UpdateAuthorizationDetailForbidden

type UpdateAuthorizationDetailForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewUpdateAuthorizationDetailForbidden

func NewUpdateAuthorizationDetailForbidden() *UpdateAuthorizationDetailForbidden

NewUpdateAuthorizationDetailForbidden creates a UpdateAuthorizationDetailForbidden with default headers values

func (*UpdateAuthorizationDetailForbidden) Code

Code gets the status code for the update authorization detail forbidden response

func (*UpdateAuthorizationDetailForbidden) Error

func (*UpdateAuthorizationDetailForbidden) GetPayload

func (*UpdateAuthorizationDetailForbidden) IsClientError

func (o *UpdateAuthorizationDetailForbidden) IsClientError() bool

IsClientError returns true when this update authorization detail forbidden response has a 4xx status code

func (*UpdateAuthorizationDetailForbidden) IsCode

IsCode returns true when this update authorization detail forbidden response a status code equal to that given

func (*UpdateAuthorizationDetailForbidden) IsRedirect

func (o *UpdateAuthorizationDetailForbidden) IsRedirect() bool

IsRedirect returns true when this update authorization detail forbidden response has a 3xx status code

func (*UpdateAuthorizationDetailForbidden) IsServerError

func (o *UpdateAuthorizationDetailForbidden) IsServerError() bool

IsServerError returns true when this update authorization detail forbidden response has a 5xx status code

func (*UpdateAuthorizationDetailForbidden) IsSuccess

IsSuccess returns true when this update authorization detail forbidden response has a 2xx status code

func (*UpdateAuthorizationDetailForbidden) String

type UpdateAuthorizationDetailNotFound

type UpdateAuthorizationDetailNotFound struct {
	Payload *models.Error
}

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

Not found

func NewUpdateAuthorizationDetailNotFound

func NewUpdateAuthorizationDetailNotFound() *UpdateAuthorizationDetailNotFound

NewUpdateAuthorizationDetailNotFound creates a UpdateAuthorizationDetailNotFound with default headers values

func (*UpdateAuthorizationDetailNotFound) Code

Code gets the status code for the update authorization detail not found response

func (*UpdateAuthorizationDetailNotFound) Error

func (*UpdateAuthorizationDetailNotFound) GetPayload

func (*UpdateAuthorizationDetailNotFound) IsClientError

func (o *UpdateAuthorizationDetailNotFound) IsClientError() bool

IsClientError returns true when this update authorization detail not found response has a 4xx status code

func (*UpdateAuthorizationDetailNotFound) IsCode

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

IsCode returns true when this update authorization detail not found response a status code equal to that given

func (*UpdateAuthorizationDetailNotFound) IsRedirect

func (o *UpdateAuthorizationDetailNotFound) IsRedirect() bool

IsRedirect returns true when this update authorization detail not found response has a 3xx status code

func (*UpdateAuthorizationDetailNotFound) IsServerError

func (o *UpdateAuthorizationDetailNotFound) IsServerError() bool

IsServerError returns true when this update authorization detail not found response has a 5xx status code

func (*UpdateAuthorizationDetailNotFound) IsSuccess

func (o *UpdateAuthorizationDetailNotFound) IsSuccess() bool

IsSuccess returns true when this update authorization detail not found response has a 2xx status code

func (*UpdateAuthorizationDetailNotFound) String

type UpdateAuthorizationDetailOK

type UpdateAuthorizationDetailOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.AuthorizationDetailWithServiceID
}

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

AuthorizationDetail

func NewUpdateAuthorizationDetailOK

func NewUpdateAuthorizationDetailOK() *UpdateAuthorizationDetailOK

NewUpdateAuthorizationDetailOK creates a UpdateAuthorizationDetailOK with default headers values

func (*UpdateAuthorizationDetailOK) Code

func (o *UpdateAuthorizationDetailOK) Code() int

Code gets the status code for the update authorization detail o k response

func (*UpdateAuthorizationDetailOK) Error

func (*UpdateAuthorizationDetailOK) GetPayload

func (*UpdateAuthorizationDetailOK) IsClientError

func (o *UpdateAuthorizationDetailOK) IsClientError() bool

IsClientError returns true when this update authorization detail o k response has a 4xx status code

func (*UpdateAuthorizationDetailOK) IsCode

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

IsCode returns true when this update authorization detail o k response a status code equal to that given

func (*UpdateAuthorizationDetailOK) IsRedirect

func (o *UpdateAuthorizationDetailOK) IsRedirect() bool

IsRedirect returns true when this update authorization detail o k response has a 3xx status code

func (*UpdateAuthorizationDetailOK) IsServerError

func (o *UpdateAuthorizationDetailOK) IsServerError() bool

IsServerError returns true when this update authorization detail o k response has a 5xx status code

func (*UpdateAuthorizationDetailOK) IsSuccess

func (o *UpdateAuthorizationDetailOK) IsSuccess() bool

IsSuccess returns true when this update authorization detail o k response has a 2xx status code

func (*UpdateAuthorizationDetailOK) String

func (o *UpdateAuthorizationDetailOK) String() string

type UpdateAuthorizationDetailParams

type UpdateAuthorizationDetailParams struct {

	// AuthorizationDetail.
	AuthorizationDetail *models.AuthorizationDetail

	/* AuthorizationDetailID.

	   AuthorizationDetail ID
	*/
	AuthorizationDetailID string

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

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

UpdateAuthorizationDetailParams contains all the parameters to send to the API endpoint

for the update authorization detail operation.

Typically these are written to a http.Request.

func NewUpdateAuthorizationDetailParams

func NewUpdateAuthorizationDetailParams() *UpdateAuthorizationDetailParams

NewUpdateAuthorizationDetailParams creates a new UpdateAuthorizationDetailParams 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 NewUpdateAuthorizationDetailParamsWithContext

func NewUpdateAuthorizationDetailParamsWithContext(ctx context.Context) *UpdateAuthorizationDetailParams

NewUpdateAuthorizationDetailParamsWithContext creates a new UpdateAuthorizationDetailParams object with the ability to set a context for a request.

func NewUpdateAuthorizationDetailParamsWithHTTPClient

func NewUpdateAuthorizationDetailParamsWithHTTPClient(client *http.Client) *UpdateAuthorizationDetailParams

NewUpdateAuthorizationDetailParamsWithHTTPClient creates a new UpdateAuthorizationDetailParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateAuthorizationDetailParamsWithTimeout

func NewUpdateAuthorizationDetailParamsWithTimeout(timeout time.Duration) *UpdateAuthorizationDetailParams

NewUpdateAuthorizationDetailParamsWithTimeout creates a new UpdateAuthorizationDetailParams object with the ability to set a timeout on a request.

func (*UpdateAuthorizationDetailParams) SetAuthorizationDetail

func (o *UpdateAuthorizationDetailParams) SetAuthorizationDetail(authorizationDetail *models.AuthorizationDetail)

SetAuthorizationDetail adds the authorizationDetail to the update authorization detail params

func (*UpdateAuthorizationDetailParams) SetAuthorizationDetailID

func (o *UpdateAuthorizationDetailParams) SetAuthorizationDetailID(authorizationDetailID string)

SetAuthorizationDetailID adds the authorizationDetailId to the update authorization detail params

func (*UpdateAuthorizationDetailParams) SetContext

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

SetContext adds the context to the update authorization detail params

func (*UpdateAuthorizationDetailParams) SetDefaults

func (o *UpdateAuthorizationDetailParams) SetDefaults()

SetDefaults hydrates default values in the update authorization detail params (not the query body).

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

func (*UpdateAuthorizationDetailParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update authorization detail params

func (*UpdateAuthorizationDetailParams) SetIfMatch

func (o *UpdateAuthorizationDetailParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the update authorization detail params

func (*UpdateAuthorizationDetailParams) SetTimeout

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

SetTimeout adds the timeout to the update authorization detail params

func (*UpdateAuthorizationDetailParams) WithAuthorizationDetail

func (o *UpdateAuthorizationDetailParams) WithAuthorizationDetail(authorizationDetail *models.AuthorizationDetail) *UpdateAuthorizationDetailParams

WithAuthorizationDetail adds the authorizationDetail to the update authorization detail params

func (*UpdateAuthorizationDetailParams) WithAuthorizationDetailID

func (o *UpdateAuthorizationDetailParams) WithAuthorizationDetailID(authorizationDetailID string) *UpdateAuthorizationDetailParams

WithAuthorizationDetailID adds the authorizationDetailID to the update authorization detail params

func (*UpdateAuthorizationDetailParams) WithContext

WithContext adds the context to the update authorization detail params

func (*UpdateAuthorizationDetailParams) WithDefaults

WithDefaults hydrates default values in the update authorization detail params (not the query body).

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

func (*UpdateAuthorizationDetailParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update authorization detail params

func (*UpdateAuthorizationDetailParams) WithIfMatch

WithIfMatch adds the ifMatch to the update authorization detail params

func (*UpdateAuthorizationDetailParams) WithTimeout

WithTimeout adds the timeout to the update authorization detail params

func (*UpdateAuthorizationDetailParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateAuthorizationDetailReader

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

UpdateAuthorizationDetailReader is a Reader for the UpdateAuthorizationDetail structure.

func (*UpdateAuthorizationDetailReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateAuthorizationDetailTooManyRequests

type UpdateAuthorizationDetailTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewUpdateAuthorizationDetailTooManyRequests

func NewUpdateAuthorizationDetailTooManyRequests() *UpdateAuthorizationDetailTooManyRequests

NewUpdateAuthorizationDetailTooManyRequests creates a UpdateAuthorizationDetailTooManyRequests with default headers values

func (*UpdateAuthorizationDetailTooManyRequests) Code

Code gets the status code for the update authorization detail too many requests response

func (*UpdateAuthorizationDetailTooManyRequests) Error

func (*UpdateAuthorizationDetailTooManyRequests) GetPayload

func (*UpdateAuthorizationDetailTooManyRequests) IsClientError

IsClientError returns true when this update authorization detail too many requests response has a 4xx status code

func (*UpdateAuthorizationDetailTooManyRequests) IsCode

IsCode returns true when this update authorization detail too many requests response a status code equal to that given

func (*UpdateAuthorizationDetailTooManyRequests) IsRedirect

IsRedirect returns true when this update authorization detail too many requests response has a 3xx status code

func (*UpdateAuthorizationDetailTooManyRequests) IsServerError

IsServerError returns true when this update authorization detail too many requests response has a 5xx status code

func (*UpdateAuthorizationDetailTooManyRequests) IsSuccess

IsSuccess returns true when this update authorization detail too many requests response has a 2xx status code

func (*UpdateAuthorizationDetailTooManyRequests) String

type UpdateAuthorizationDetailUnauthorized

type UpdateAuthorizationDetailUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewUpdateAuthorizationDetailUnauthorized

func NewUpdateAuthorizationDetailUnauthorized() *UpdateAuthorizationDetailUnauthorized

NewUpdateAuthorizationDetailUnauthorized creates a UpdateAuthorizationDetailUnauthorized with default headers values

func (*UpdateAuthorizationDetailUnauthorized) Code

Code gets the status code for the update authorization detail unauthorized response

func (*UpdateAuthorizationDetailUnauthorized) Error

func (*UpdateAuthorizationDetailUnauthorized) GetPayload

func (*UpdateAuthorizationDetailUnauthorized) IsClientError

func (o *UpdateAuthorizationDetailUnauthorized) IsClientError() bool

IsClientError returns true when this update authorization detail unauthorized response has a 4xx status code

func (*UpdateAuthorizationDetailUnauthorized) IsCode

IsCode returns true when this update authorization detail unauthorized response a status code equal to that given

func (*UpdateAuthorizationDetailUnauthorized) IsRedirect

IsRedirect returns true when this update authorization detail unauthorized response has a 3xx status code

func (*UpdateAuthorizationDetailUnauthorized) IsServerError

func (o *UpdateAuthorizationDetailUnauthorized) IsServerError() bool

IsServerError returns true when this update authorization detail unauthorized response has a 5xx status code

func (*UpdateAuthorizationDetailUnauthorized) IsSuccess

IsSuccess returns true when this update authorization detail unauthorized response has a 2xx status code

func (*UpdateAuthorizationDetailUnauthorized) String

type UpdateAuthorizationDetailUnprocessableEntity

type UpdateAuthorizationDetailUnprocessableEntity struct {
	Payload *models.Error
}

UpdateAuthorizationDetailUnprocessableEntity describes a response with status code 422, with default header values.

Unprocessable entity

func NewUpdateAuthorizationDetailUnprocessableEntity

func NewUpdateAuthorizationDetailUnprocessableEntity() *UpdateAuthorizationDetailUnprocessableEntity

NewUpdateAuthorizationDetailUnprocessableEntity creates a UpdateAuthorizationDetailUnprocessableEntity with default headers values

func (*UpdateAuthorizationDetailUnprocessableEntity) Code

Code gets the status code for the update authorization detail unprocessable entity response

func (*UpdateAuthorizationDetailUnprocessableEntity) Error

func (*UpdateAuthorizationDetailUnprocessableEntity) GetPayload

func (*UpdateAuthorizationDetailUnprocessableEntity) IsClientError

IsClientError returns true when this update authorization detail unprocessable entity response has a 4xx status code

func (*UpdateAuthorizationDetailUnprocessableEntity) IsCode

IsCode returns true when this update authorization detail unprocessable entity response a status code equal to that given

func (*UpdateAuthorizationDetailUnprocessableEntity) IsRedirect

IsRedirect returns true when this update authorization detail unprocessable entity response has a 3xx status code

func (*UpdateAuthorizationDetailUnprocessableEntity) IsServerError

IsServerError returns true when this update authorization detail unprocessable entity response has a 5xx status code

func (*UpdateAuthorizationDetailUnprocessableEntity) IsSuccess

IsSuccess returns true when this update authorization detail unprocessable entity response has a 2xx status code

func (*UpdateAuthorizationDetailUnprocessableEntity) String

Jump to

Keyboard shortcuts

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