public

package
v0.0.1-alpha.8 Latest Latest
Warning

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

Go to latest
Published: Jan 29, 2020 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 public API

func New

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

New creates a new public API client.

func (*Client) CompleteProfileManagementFlow

func (a *Client) CompleteProfileManagementFlow(params *CompleteProfileManagementFlowParams) error

CompleteProfileManagementFlow completes profile management flow

This endpoint returns a login request's context with, for example, error details and other information.

For an in-depth look at ORY Krato's profile management flow, head over to: https://www.ory.sh/docs/kratos/selfservice/profile

func (*Client) GetLoginRequest

func (a *Client) GetLoginRequest(params *GetLoginRequestParams) (*GetLoginRequestOK, error)

GetLoginRequest gets login request

This endpoint returns a login request's context with, for example, error details and other information.

For an in-depth look at ORY Krato's login flow, head over to: https://www.ory.sh/docs/kratos/selfservice/login

func (*Client) GetProfileManagementRequest

func (a *Client) GetProfileManagementRequest(params *GetProfileManagementRequestParams) (*GetProfileManagementRequestOK, error)

GetProfileManagementRequest gets profile management request via cookie

This endpoint returns a profile management request's context with, for example, error details and other information.

It can be used from a Single Page Application or other applications running on a client device. The request must be made with valid authentication cookies or it will fail!

If you wish to access this endpoint without the valid cookies (e.g. as part of a server) please call this path at the admin port.

For an in-depth look at ORY Krato's profile management flow, head over to: https://www.ory.sh/docs/kratos/selfservice/profile

func (*Client) GetRegistrationRequest

func (a *Client) GetRegistrationRequest(params *GetRegistrationRequestParams) (*GetRegistrationRequestOK, error)

GetRegistrationRequest gets registration request

This endpoint returns a registration request's context with, for example, error details and other information.

For an in-depth look at ORY Krato's registration flow, head over to: https://www.ory.sh/docs/kratos/selfservice/registration

func (*Client) InitializeLoginFlow

func (a *Client) InitializeLoginFlow(params *InitializeLoginFlowParams) error

InitializeLoginFlow initializes a login flow

This endpoint initializes a login flow. This endpoint **should not be called from a programatic API** but instead for the, for example, browser. It will redirect the user agent (e.g. browser) to the configured login UI, appending the login challenge.

If the user-agent already has a valid authentication session, the server will respond with a 302 code redirecting to the config value of `urls.default_return_to`.

For an in-depth look at ORY Krato's login flow, head over to: https://www.ory.sh/docs/kratos/selfservice/login

func (*Client) InitializeProfileManagementFlow

func (a *Client) InitializeProfileManagementFlow(params *InitializeProfileManagementFlowParams) error

InitializeProfileManagementFlow initializes profile management flow

This endpoint initializes a profile update flow. This endpoint **should not be called from a programatic API** but instead for the, for example, browser. It will redirect the user agent (e.g. browser) to the configured login UI, appending the login challenge.

If the user-agent does not have a valid authentication session, a 302 code will be returned which redirects to the initializeLoginFlow endpoint, appending this page as the return_to value.

For an in-depth look at ORY Krato's profile management flow, head over to: https://www.ory.sh/docs/kratos/selfservice/profile

func (*Client) InitializeRegistrationFlow

func (a *Client) InitializeRegistrationFlow(params *InitializeRegistrationFlowParams) error

InitializeRegistrationFlow initializes a registration flow

This endpoint initializes a registration flow. This endpoint **should not be called from a programatic API** but instead for the, for example, browser. It will redirect the user agent (e.g. browser) to the configured registration UI, appending the registration challenge.

For an in-depth look at ORY Krato's registration flow, head over to: https://www.ory.sh/docs/kratos/selfservice/registration

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type CompleteProfileManagementFlowFound

type CompleteProfileManagementFlowFound struct {
}

CompleteProfileManagementFlowFound handles this case with default header values.

Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201.

func NewCompleteProfileManagementFlowFound

func NewCompleteProfileManagementFlowFound() *CompleteProfileManagementFlowFound

NewCompleteProfileManagementFlowFound creates a CompleteProfileManagementFlowFound with default headers values

func (*CompleteProfileManagementFlowFound) Error

type CompleteProfileManagementFlowInternalServerError

type CompleteProfileManagementFlowInternalServerError struct {
	Payload *models.GenericError
}

CompleteProfileManagementFlowInternalServerError handles this case with default header values.

genericError

func NewCompleteProfileManagementFlowInternalServerError

func NewCompleteProfileManagementFlowInternalServerError() *CompleteProfileManagementFlowInternalServerError

NewCompleteProfileManagementFlowInternalServerError creates a CompleteProfileManagementFlowInternalServerError with default headers values

func (*CompleteProfileManagementFlowInternalServerError) Error

func (*CompleteProfileManagementFlowInternalServerError) GetPayload

type CompleteProfileManagementFlowParams

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

CompleteProfileManagementFlowParams contains all the parameters to send to the API endpoint for the complete profile management flow operation typically these are written to a http.Request

func NewCompleteProfileManagementFlowParams

func NewCompleteProfileManagementFlowParams() *CompleteProfileManagementFlowParams

NewCompleteProfileManagementFlowParams creates a new CompleteProfileManagementFlowParams object with the default values initialized.

func NewCompleteProfileManagementFlowParamsWithContext

func NewCompleteProfileManagementFlowParamsWithContext(ctx context.Context) *CompleteProfileManagementFlowParams

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

func NewCompleteProfileManagementFlowParamsWithHTTPClient

func NewCompleteProfileManagementFlowParamsWithHTTPClient(client *http.Client) *CompleteProfileManagementFlowParams

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

func NewCompleteProfileManagementFlowParamsWithTimeout

func NewCompleteProfileManagementFlowParamsWithTimeout(timeout time.Duration) *CompleteProfileManagementFlowParams

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

func (*CompleteProfileManagementFlowParams) SetContext

SetContext adds the context to the complete profile management flow params

func (*CompleteProfileManagementFlowParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the complete profile management flow params

func (*CompleteProfileManagementFlowParams) SetTimeout

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

SetTimeout adds the timeout to the complete profile management flow params

func (*CompleteProfileManagementFlowParams) WithContext

WithContext adds the context to the complete profile management flow params

func (*CompleteProfileManagementFlowParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the complete profile management flow params

func (*CompleteProfileManagementFlowParams) WithTimeout

WithTimeout adds the timeout to the complete profile management flow params

func (*CompleteProfileManagementFlowParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CompleteProfileManagementFlowReader

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

CompleteProfileManagementFlowReader is a Reader for the CompleteProfileManagementFlow structure.

func (*CompleteProfileManagementFlowReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLoginRequestFound

type GetLoginRequestFound struct {
}

GetLoginRequestFound handles this case with default header values.

Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201.

func NewGetLoginRequestFound

func NewGetLoginRequestFound() *GetLoginRequestFound

NewGetLoginRequestFound creates a GetLoginRequestFound with default headers values

func (*GetLoginRequestFound) Error

func (o *GetLoginRequestFound) Error() string

type GetLoginRequestInternalServerError

type GetLoginRequestInternalServerError struct {
	Payload *models.GenericError
}

GetLoginRequestInternalServerError handles this case with default header values.

genericError

func NewGetLoginRequestInternalServerError

func NewGetLoginRequestInternalServerError() *GetLoginRequestInternalServerError

NewGetLoginRequestInternalServerError creates a GetLoginRequestInternalServerError with default headers values

func (*GetLoginRequestInternalServerError) Error

func (*GetLoginRequestInternalServerError) GetPayload

type GetLoginRequestOK

type GetLoginRequestOK struct {
	Payload *models.LoginRequest
}

GetLoginRequestOK handles this case with default header values.

loginRequest

func NewGetLoginRequestOK

func NewGetLoginRequestOK() *GetLoginRequestOK

NewGetLoginRequestOK creates a GetLoginRequestOK with default headers values

func (*GetLoginRequestOK) Error

func (o *GetLoginRequestOK) Error() string

func (*GetLoginRequestOK) GetPayload

func (o *GetLoginRequestOK) GetPayload() *models.LoginRequest

type GetLoginRequestParams

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

GetLoginRequestParams contains all the parameters to send to the API endpoint for the get login request operation typically these are written to a http.Request

func NewGetLoginRequestParams

func NewGetLoginRequestParams() *GetLoginRequestParams

NewGetLoginRequestParams creates a new GetLoginRequestParams object with the default values initialized.

func NewGetLoginRequestParamsWithContext

func NewGetLoginRequestParamsWithContext(ctx context.Context) *GetLoginRequestParams

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

func NewGetLoginRequestParamsWithHTTPClient

func NewGetLoginRequestParamsWithHTTPClient(client *http.Client) *GetLoginRequestParams

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

func NewGetLoginRequestParamsWithTimeout

func NewGetLoginRequestParamsWithTimeout(timeout time.Duration) *GetLoginRequestParams

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

func (*GetLoginRequestParams) SetContext

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

SetContext adds the context to the get login request params

func (*GetLoginRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get login request params

func (*GetLoginRequestParams) SetTimeout

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

SetTimeout adds the timeout to the get login request params

func (*GetLoginRequestParams) WithContext

WithContext adds the context to the get login request params

func (*GetLoginRequestParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get login request params

func (*GetLoginRequestParams) WithTimeout

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

WithTimeout adds the timeout to the get login request params

func (*GetLoginRequestParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetLoginRequestReader

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

GetLoginRequestReader is a Reader for the GetLoginRequest structure.

func (*GetLoginRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetProfileManagementRequestFound

type GetProfileManagementRequestFound struct {
}

GetProfileManagementRequestFound handles this case with default header values.

Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201.

func NewGetProfileManagementRequestFound

func NewGetProfileManagementRequestFound() *GetProfileManagementRequestFound

NewGetProfileManagementRequestFound creates a GetProfileManagementRequestFound with default headers values

func (*GetProfileManagementRequestFound) Error

type GetProfileManagementRequestInternalServerError

type GetProfileManagementRequestInternalServerError struct {
	Payload *models.GenericError
}

GetProfileManagementRequestInternalServerError handles this case with default header values.

genericError

func NewGetProfileManagementRequestInternalServerError

func NewGetProfileManagementRequestInternalServerError() *GetProfileManagementRequestInternalServerError

NewGetProfileManagementRequestInternalServerError creates a GetProfileManagementRequestInternalServerError with default headers values

func (*GetProfileManagementRequestInternalServerError) Error

func (*GetProfileManagementRequestInternalServerError) GetPayload

type GetProfileManagementRequestOK

type GetProfileManagementRequestOK struct {
	Payload *models.ProfileManagementRequest
}

GetProfileManagementRequestOK handles this case with default header values.

profileManagementRequest

func NewGetProfileManagementRequestOK

func NewGetProfileManagementRequestOK() *GetProfileManagementRequestOK

NewGetProfileManagementRequestOK creates a GetProfileManagementRequestOK with default headers values

func (*GetProfileManagementRequestOK) Error

func (*GetProfileManagementRequestOK) GetPayload

type GetProfileManagementRequestParams

type GetProfileManagementRequestParams struct {

	/*Request
	  Request should be set to the value of the `request` query parameter
	by the profile management UI.

	*/
	Request string

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

GetProfileManagementRequestParams contains all the parameters to send to the API endpoint for the get profile management request operation typically these are written to a http.Request

func NewGetProfileManagementRequestParams

func NewGetProfileManagementRequestParams() *GetProfileManagementRequestParams

NewGetProfileManagementRequestParams creates a new GetProfileManagementRequestParams object with the default values initialized.

func NewGetProfileManagementRequestParamsWithContext

func NewGetProfileManagementRequestParamsWithContext(ctx context.Context) *GetProfileManagementRequestParams

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

func NewGetProfileManagementRequestParamsWithHTTPClient

func NewGetProfileManagementRequestParamsWithHTTPClient(client *http.Client) *GetProfileManagementRequestParams

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

func NewGetProfileManagementRequestParamsWithTimeout

func NewGetProfileManagementRequestParamsWithTimeout(timeout time.Duration) *GetProfileManagementRequestParams

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

func (*GetProfileManagementRequestParams) SetContext

SetContext adds the context to the get profile management request params

func (*GetProfileManagementRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get profile management request params

func (*GetProfileManagementRequestParams) SetRequest

func (o *GetProfileManagementRequestParams) SetRequest(request string)

SetRequest adds the request to the get profile management request params

func (*GetProfileManagementRequestParams) SetTimeout

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

SetTimeout adds the timeout to the get profile management request params

func (*GetProfileManagementRequestParams) WithContext

WithContext adds the context to the get profile management request params

func (*GetProfileManagementRequestParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get profile management request params

func (*GetProfileManagementRequestParams) WithRequest

WithRequest adds the request to the get profile management request params

func (*GetProfileManagementRequestParams) WithTimeout

WithTimeout adds the timeout to the get profile management request params

func (*GetProfileManagementRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetProfileManagementRequestReader

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

GetProfileManagementRequestReader is a Reader for the GetProfileManagementRequest structure.

func (*GetProfileManagementRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetRegistrationRequestInternalServerError

type GetRegistrationRequestInternalServerError struct {
	Payload *models.GenericError
}

GetRegistrationRequestInternalServerError handles this case with default header values.

genericError

func NewGetRegistrationRequestInternalServerError

func NewGetRegistrationRequestInternalServerError() *GetRegistrationRequestInternalServerError

NewGetRegistrationRequestInternalServerError creates a GetRegistrationRequestInternalServerError with default headers values

func (*GetRegistrationRequestInternalServerError) Error

func (*GetRegistrationRequestInternalServerError) GetPayload

type GetRegistrationRequestNotFound

type GetRegistrationRequestNotFound struct {
	Payload *models.GenericError
}

GetRegistrationRequestNotFound handles this case with default header values.

genericError

func NewGetRegistrationRequestNotFound

func NewGetRegistrationRequestNotFound() *GetRegistrationRequestNotFound

NewGetRegistrationRequestNotFound creates a GetRegistrationRequestNotFound with default headers values

func (*GetRegistrationRequestNotFound) Error

func (*GetRegistrationRequestNotFound) GetPayload

type GetRegistrationRequestOK

type GetRegistrationRequestOK struct {
	Payload *models.RegistrationRequest
}

GetRegistrationRequestOK handles this case with default header values.

registrationRequest

func NewGetRegistrationRequestOK

func NewGetRegistrationRequestOK() *GetRegistrationRequestOK

NewGetRegistrationRequestOK creates a GetRegistrationRequestOK with default headers values

func (*GetRegistrationRequestOK) Error

func (o *GetRegistrationRequestOK) Error() string

func (*GetRegistrationRequestOK) GetPayload

type GetRegistrationRequestParams

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

GetRegistrationRequestParams contains all the parameters to send to the API endpoint for the get registration request operation typically these are written to a http.Request

func NewGetRegistrationRequestParams

func NewGetRegistrationRequestParams() *GetRegistrationRequestParams

NewGetRegistrationRequestParams creates a new GetRegistrationRequestParams object with the default values initialized.

func NewGetRegistrationRequestParamsWithContext

func NewGetRegistrationRequestParamsWithContext(ctx context.Context) *GetRegistrationRequestParams

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

func NewGetRegistrationRequestParamsWithHTTPClient

func NewGetRegistrationRequestParamsWithHTTPClient(client *http.Client) *GetRegistrationRequestParams

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

func NewGetRegistrationRequestParamsWithTimeout

func NewGetRegistrationRequestParamsWithTimeout(timeout time.Duration) *GetRegistrationRequestParams

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

func (*GetRegistrationRequestParams) SetContext

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

SetContext adds the context to the get registration request params

func (*GetRegistrationRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get registration request params

func (*GetRegistrationRequestParams) SetTimeout

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

SetTimeout adds the timeout to the get registration request params

func (*GetRegistrationRequestParams) WithContext

WithContext adds the context to the get registration request params

func (*GetRegistrationRequestParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get registration request params

func (*GetRegistrationRequestParams) WithTimeout

WithTimeout adds the timeout to the get registration request params

func (*GetRegistrationRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRegistrationRequestReader

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

GetRegistrationRequestReader is a Reader for the GetRegistrationRequest structure.

func (*GetRegistrationRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type InitializeLoginFlowFound

type InitializeLoginFlowFound struct {
}

InitializeLoginFlowFound handles this case with default header values.

Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201.

func NewInitializeLoginFlowFound

func NewInitializeLoginFlowFound() *InitializeLoginFlowFound

NewInitializeLoginFlowFound creates a InitializeLoginFlowFound with default headers values

func (*InitializeLoginFlowFound) Error

func (o *InitializeLoginFlowFound) Error() string

type InitializeLoginFlowInternalServerError

type InitializeLoginFlowInternalServerError struct {
	Payload *models.GenericError
}

InitializeLoginFlowInternalServerError handles this case with default header values.

genericError

func NewInitializeLoginFlowInternalServerError

func NewInitializeLoginFlowInternalServerError() *InitializeLoginFlowInternalServerError

NewInitializeLoginFlowInternalServerError creates a InitializeLoginFlowInternalServerError with default headers values

func (*InitializeLoginFlowInternalServerError) Error

func (*InitializeLoginFlowInternalServerError) GetPayload

type InitializeLoginFlowParams

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

InitializeLoginFlowParams contains all the parameters to send to the API endpoint for the initialize login flow operation typically these are written to a http.Request

func NewInitializeLoginFlowParams

func NewInitializeLoginFlowParams() *InitializeLoginFlowParams

NewInitializeLoginFlowParams creates a new InitializeLoginFlowParams object with the default values initialized.

func NewInitializeLoginFlowParamsWithContext

func NewInitializeLoginFlowParamsWithContext(ctx context.Context) *InitializeLoginFlowParams

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

func NewInitializeLoginFlowParamsWithHTTPClient

func NewInitializeLoginFlowParamsWithHTTPClient(client *http.Client) *InitializeLoginFlowParams

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

func NewInitializeLoginFlowParamsWithTimeout

func NewInitializeLoginFlowParamsWithTimeout(timeout time.Duration) *InitializeLoginFlowParams

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

func (*InitializeLoginFlowParams) SetContext

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

SetContext adds the context to the initialize login flow params

func (*InitializeLoginFlowParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the initialize login flow params

func (*InitializeLoginFlowParams) SetTimeout

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

SetTimeout adds the timeout to the initialize login flow params

func (*InitializeLoginFlowParams) WithContext

WithContext adds the context to the initialize login flow params

func (*InitializeLoginFlowParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the initialize login flow params

func (*InitializeLoginFlowParams) WithTimeout

WithTimeout adds the timeout to the initialize login flow params

func (*InitializeLoginFlowParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type InitializeLoginFlowReader

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

InitializeLoginFlowReader is a Reader for the InitializeLoginFlow structure.

func (*InitializeLoginFlowReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type InitializeProfileManagementFlowFound

type InitializeProfileManagementFlowFound struct {
}

InitializeProfileManagementFlowFound handles this case with default header values.

Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201.

func NewInitializeProfileManagementFlowFound

func NewInitializeProfileManagementFlowFound() *InitializeProfileManagementFlowFound

NewInitializeProfileManagementFlowFound creates a InitializeProfileManagementFlowFound with default headers values

func (*InitializeProfileManagementFlowFound) Error

type InitializeProfileManagementFlowInternalServerError

type InitializeProfileManagementFlowInternalServerError struct {
	Payload *models.GenericError
}

InitializeProfileManagementFlowInternalServerError handles this case with default header values.

genericError

func NewInitializeProfileManagementFlowInternalServerError

func NewInitializeProfileManagementFlowInternalServerError() *InitializeProfileManagementFlowInternalServerError

NewInitializeProfileManagementFlowInternalServerError creates a InitializeProfileManagementFlowInternalServerError with default headers values

func (*InitializeProfileManagementFlowInternalServerError) Error

func (*InitializeProfileManagementFlowInternalServerError) GetPayload

type InitializeProfileManagementFlowParams

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

InitializeProfileManagementFlowParams contains all the parameters to send to the API endpoint for the initialize profile management flow operation typically these are written to a http.Request

func NewInitializeProfileManagementFlowParams

func NewInitializeProfileManagementFlowParams() *InitializeProfileManagementFlowParams

NewInitializeProfileManagementFlowParams creates a new InitializeProfileManagementFlowParams object with the default values initialized.

func NewInitializeProfileManagementFlowParamsWithContext

func NewInitializeProfileManagementFlowParamsWithContext(ctx context.Context) *InitializeProfileManagementFlowParams

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

func NewInitializeProfileManagementFlowParamsWithHTTPClient

func NewInitializeProfileManagementFlowParamsWithHTTPClient(client *http.Client) *InitializeProfileManagementFlowParams

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

func NewInitializeProfileManagementFlowParamsWithTimeout

func NewInitializeProfileManagementFlowParamsWithTimeout(timeout time.Duration) *InitializeProfileManagementFlowParams

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

func (*InitializeProfileManagementFlowParams) SetContext

SetContext adds the context to the initialize profile management flow params

func (*InitializeProfileManagementFlowParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the initialize profile management flow params

func (*InitializeProfileManagementFlowParams) SetTimeout

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

SetTimeout adds the timeout to the initialize profile management flow params

func (*InitializeProfileManagementFlowParams) WithContext

WithContext adds the context to the initialize profile management flow params

func (*InitializeProfileManagementFlowParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the initialize profile management flow params

func (*InitializeProfileManagementFlowParams) WithTimeout

WithTimeout adds the timeout to the initialize profile management flow params

func (*InitializeProfileManagementFlowParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type InitializeProfileManagementFlowReader

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

InitializeProfileManagementFlowReader is a Reader for the InitializeProfileManagementFlow structure.

func (*InitializeProfileManagementFlowReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type InitializeRegistrationFlowFound

type InitializeRegistrationFlowFound struct {
}

InitializeRegistrationFlowFound handles this case with default header values.

Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201.

func NewInitializeRegistrationFlowFound

func NewInitializeRegistrationFlowFound() *InitializeRegistrationFlowFound

NewInitializeRegistrationFlowFound creates a InitializeRegistrationFlowFound with default headers values

func (*InitializeRegistrationFlowFound) Error

type InitializeRegistrationFlowInternalServerError

type InitializeRegistrationFlowInternalServerError struct {
	Payload *models.GenericError
}

InitializeRegistrationFlowInternalServerError handles this case with default header values.

genericError

func NewInitializeRegistrationFlowInternalServerError

func NewInitializeRegistrationFlowInternalServerError() *InitializeRegistrationFlowInternalServerError

NewInitializeRegistrationFlowInternalServerError creates a InitializeRegistrationFlowInternalServerError with default headers values

func (*InitializeRegistrationFlowInternalServerError) Error

func (*InitializeRegistrationFlowInternalServerError) GetPayload

type InitializeRegistrationFlowNotFound

type InitializeRegistrationFlowNotFound struct {
	Payload *models.GenericError
}

InitializeRegistrationFlowNotFound handles this case with default header values.

genericError

func NewInitializeRegistrationFlowNotFound

func NewInitializeRegistrationFlowNotFound() *InitializeRegistrationFlowNotFound

NewInitializeRegistrationFlowNotFound creates a InitializeRegistrationFlowNotFound with default headers values

func (*InitializeRegistrationFlowNotFound) Error

func (*InitializeRegistrationFlowNotFound) GetPayload

type InitializeRegistrationFlowParams

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

InitializeRegistrationFlowParams contains all the parameters to send to the API endpoint for the initialize registration flow operation typically these are written to a http.Request

func NewInitializeRegistrationFlowParams

func NewInitializeRegistrationFlowParams() *InitializeRegistrationFlowParams

NewInitializeRegistrationFlowParams creates a new InitializeRegistrationFlowParams object with the default values initialized.

func NewInitializeRegistrationFlowParamsWithContext

func NewInitializeRegistrationFlowParamsWithContext(ctx context.Context) *InitializeRegistrationFlowParams

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

func NewInitializeRegistrationFlowParamsWithHTTPClient

func NewInitializeRegistrationFlowParamsWithHTTPClient(client *http.Client) *InitializeRegistrationFlowParams

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

func NewInitializeRegistrationFlowParamsWithTimeout

func NewInitializeRegistrationFlowParamsWithTimeout(timeout time.Duration) *InitializeRegistrationFlowParams

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

func (*InitializeRegistrationFlowParams) SetContext

SetContext adds the context to the initialize registration flow params

func (*InitializeRegistrationFlowParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the initialize registration flow params

func (*InitializeRegistrationFlowParams) SetTimeout

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

SetTimeout adds the timeout to the initialize registration flow params

func (*InitializeRegistrationFlowParams) WithContext

WithContext adds the context to the initialize registration flow params

func (*InitializeRegistrationFlowParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the initialize registration flow params

func (*InitializeRegistrationFlowParams) WithTimeout

WithTimeout adds the timeout to the initialize registration flow params

func (*InitializeRegistrationFlowParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type InitializeRegistrationFlowReader

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

InitializeRegistrationFlowReader is a Reader for the InitializeRegistrationFlow structure.

func (*InitializeRegistrationFlowReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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