g_ui

package
v0.0.2-beta Latest Latest
Warning

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

Go to latest
Published: Oct 30, 2023 License: MIT Imports: 9 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 g ui API

func (*Client) CreateToken

func (a *Client) CreateToken(params *CreateTokenParams, opts ...ClientOption) error

CreateToken erzeugts einen neuen API token für den nutzer

func (*Client) DeleteNutzer

func (a *Client) DeleteNutzer(params *DeleteNutzerParams, opts ...ClientOption) error

DeleteNutzer gibts die metadaten des nutzers zurück

func (*Client) GetNutzer

func (a *Client) GetNutzer(params *GetNutzerParams, opts ...ClientOption) error

GetNutzer gibts die metadaten des nutzers zurück

func (*Client) GetNutzerMetadaten

func (a *Client) GetNutzerMetadaten(params *GetNutzerMetadatenParams, opts ...ClientOption) error

GetNutzerMetadaten gibts die metadaten des nutzers zurück

func (*Client) RevokeToken

func (a *Client) RevokeToken(params *RevokeTokenParams, opts ...ClientOption) error

RevokeToken invalidierts einen API token für den nutzer

func (*Client) Search

func (a *Client) Search(params *SearchParams, opts ...ClientOption) error

Search suches filter definiert über ein JSON suchobjekt

func (*Client) Search1

func (a *Client) Search1(params *Search1Params, opts ...ClientOption) error

Search1 suches filter definiert über ein JSON suchobjekt

func (*Client) SearchGET

func (a *Client) SearchGET(params *SearchGETParams, opts ...ClientOption) error

SearchGET suches filter definiert über eine URL mit parametern

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) TransferOwner

func (a *Client) TransferOwner(params *TransferOwnerParams, opts ...ClientOption) error

TransferOwner überträgts die eigentümerschaft an inhalten an einen neuen nutzer

func (*Client) UpdateNutzer

func (a *Client) UpdateNutzer(params *UpdateNutzerParams, opts ...ClientOption) error

UpdateNutzer aktualisierts die metadaten des nutzers zurück

func (*Client) UpdatePassword

func (a *Client) UpdatePassword(params *UpdatePasswordParams, opts ...ClientOption) error

UpdatePassword setzts ein neues passwort für den nutzer

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateToken(params *CreateTokenParams, opts ...ClientOption) error

	DeleteNutzer(params *DeleteNutzerParams, opts ...ClientOption) error

	GetNutzer(params *GetNutzerParams, opts ...ClientOption) error

	GetNutzerMetadaten(params *GetNutzerMetadatenParams, opts ...ClientOption) error

	RevokeToken(params *RevokeTokenParams, opts ...ClientOption) error

	Search(params *SearchParams, opts ...ClientOption) error

	SearchGET(params *SearchGETParams, opts ...ClientOption) error

	Search1(params *Search1Params, opts ...ClientOption) error

	TransferOwner(params *TransferOwnerParams, opts ...ClientOption) error

	UpdateNutzer(params *UpdateNutzerParams, opts ...ClientOption) error

	UpdatePassword(params *UpdatePasswordParams, opts ...ClientOption) 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 g ui API client.

type CreateTokenDefault

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

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

successful operation

func NewCreateTokenDefault

func NewCreateTokenDefault(code int) *CreateTokenDefault

NewCreateTokenDefault creates a CreateTokenDefault with default headers values

func (*CreateTokenDefault) Code

func (o *CreateTokenDefault) Code() int

Code gets the status code for the create token default response

func (*CreateTokenDefault) Error

func (o *CreateTokenDefault) Error() string

func (*CreateTokenDefault) IsClientError

func (o *CreateTokenDefault) IsClientError() bool

IsClientError returns true when this create token default response has a 4xx status code

func (*CreateTokenDefault) IsCode

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

IsCode returns true when this create token default response a status code equal to that given

func (*CreateTokenDefault) IsRedirect

func (o *CreateTokenDefault) IsRedirect() bool

IsRedirect returns true when this create token default response has a 3xx status code

func (*CreateTokenDefault) IsServerError

func (o *CreateTokenDefault) IsServerError() bool

IsServerError returns true when this create token default response has a 5xx status code

func (*CreateTokenDefault) IsSuccess

func (o *CreateTokenDefault) IsSuccess() bool

IsSuccess returns true when this create token default response has a 2xx status code

func (*CreateTokenDefault) String

func (o *CreateTokenDefault) String() string

type CreateTokenParams

type CreateTokenParams struct {

	// Kennung.
	Kennung string

	// Name.
	Name string

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

CreateTokenParams contains all the parameters to send to the API endpoint

for the create token operation.

Typically these are written to a http.Request.

func NewCreateTokenParams

func NewCreateTokenParams() *CreateTokenParams

NewCreateTokenParams creates a new CreateTokenParams 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 NewCreateTokenParamsWithContext

func NewCreateTokenParamsWithContext(ctx context.Context) *CreateTokenParams

NewCreateTokenParamsWithContext creates a new CreateTokenParams object with the ability to set a context for a request.

func NewCreateTokenParamsWithHTTPClient

func NewCreateTokenParamsWithHTTPClient(client *http.Client) *CreateTokenParams

NewCreateTokenParamsWithHTTPClient creates a new CreateTokenParams object with the ability to set a custom HTTPClient for a request.

func NewCreateTokenParamsWithTimeout

func NewCreateTokenParamsWithTimeout(timeout time.Duration) *CreateTokenParams

NewCreateTokenParamsWithTimeout creates a new CreateTokenParams object with the ability to set a timeout on a request.

func (*CreateTokenParams) SetContext

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

SetContext adds the context to the create token params

func (*CreateTokenParams) SetDefaults

func (o *CreateTokenParams) SetDefaults()

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

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

func (*CreateTokenParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create token params

func (*CreateTokenParams) SetKennung

func (o *CreateTokenParams) SetKennung(kennung string)

SetKennung adds the kennung to the create token params

func (*CreateTokenParams) SetName

func (o *CreateTokenParams) SetName(name string)

SetName adds the name to the create token params

func (*CreateTokenParams) SetTimeout

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

SetTimeout adds the timeout to the create token params

func (*CreateTokenParams) WithContext

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

WithContext adds the context to the create token params

func (*CreateTokenParams) WithDefaults

func (o *CreateTokenParams) WithDefaults() *CreateTokenParams

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

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

func (*CreateTokenParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create token params

func (*CreateTokenParams) WithKennung

func (o *CreateTokenParams) WithKennung(kennung string) *CreateTokenParams

WithKennung adds the kennung to the create token params

func (*CreateTokenParams) WithName

func (o *CreateTokenParams) WithName(name string) *CreateTokenParams

WithName adds the name to the create token params

func (*CreateTokenParams) WithTimeout

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

WithTimeout adds the timeout to the create token params

func (*CreateTokenParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateTokenReader

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

CreateTokenReader is a Reader for the CreateToken structure.

func (*CreateTokenReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteNutzerDefault

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

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

successful operation

func NewDeleteNutzerDefault

func NewDeleteNutzerDefault(code int) *DeleteNutzerDefault

NewDeleteNutzerDefault creates a DeleteNutzerDefault with default headers values

func (*DeleteNutzerDefault) Code

func (o *DeleteNutzerDefault) Code() int

Code gets the status code for the delete nutzer default response

func (*DeleteNutzerDefault) Error

func (o *DeleteNutzerDefault) Error() string

func (*DeleteNutzerDefault) IsClientError

func (o *DeleteNutzerDefault) IsClientError() bool

IsClientError returns true when this delete nutzer default response has a 4xx status code

func (*DeleteNutzerDefault) IsCode

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

IsCode returns true when this delete nutzer default response a status code equal to that given

func (*DeleteNutzerDefault) IsRedirect

func (o *DeleteNutzerDefault) IsRedirect() bool

IsRedirect returns true when this delete nutzer default response has a 3xx status code

func (*DeleteNutzerDefault) IsServerError

func (o *DeleteNutzerDefault) IsServerError() bool

IsServerError returns true when this delete nutzer default response has a 5xx status code

func (*DeleteNutzerDefault) IsSuccess

func (o *DeleteNutzerDefault) IsSuccess() bool

IsSuccess returns true when this delete nutzer default response has a 2xx status code

func (*DeleteNutzerDefault) String

func (o *DeleteNutzerDefault) String() string

type DeleteNutzerParams

type DeleteNutzerParams struct {

	// Kennung.
	Kennung string

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

DeleteNutzerParams contains all the parameters to send to the API endpoint

for the delete nutzer operation.

Typically these are written to a http.Request.

func NewDeleteNutzerParams

func NewDeleteNutzerParams() *DeleteNutzerParams

NewDeleteNutzerParams creates a new DeleteNutzerParams 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 NewDeleteNutzerParamsWithContext

func NewDeleteNutzerParamsWithContext(ctx context.Context) *DeleteNutzerParams

NewDeleteNutzerParamsWithContext creates a new DeleteNutzerParams object with the ability to set a context for a request.

func NewDeleteNutzerParamsWithHTTPClient

func NewDeleteNutzerParamsWithHTTPClient(client *http.Client) *DeleteNutzerParams

NewDeleteNutzerParamsWithHTTPClient creates a new DeleteNutzerParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteNutzerParamsWithTimeout

func NewDeleteNutzerParamsWithTimeout(timeout time.Duration) *DeleteNutzerParams

NewDeleteNutzerParamsWithTimeout creates a new DeleteNutzerParams object with the ability to set a timeout on a request.

func (*DeleteNutzerParams) SetContext

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

SetContext adds the context to the delete nutzer params

func (*DeleteNutzerParams) SetDefaults

func (o *DeleteNutzerParams) SetDefaults()

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

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

func (*DeleteNutzerParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete nutzer params

func (*DeleteNutzerParams) SetKennung

func (o *DeleteNutzerParams) SetKennung(kennung string)

SetKennung adds the kennung to the delete nutzer params

func (*DeleteNutzerParams) SetTimeout

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

SetTimeout adds the timeout to the delete nutzer params

func (*DeleteNutzerParams) WithContext

WithContext adds the context to the delete nutzer params

func (*DeleteNutzerParams) WithDefaults

func (o *DeleteNutzerParams) WithDefaults() *DeleteNutzerParams

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

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

func (*DeleteNutzerParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete nutzer params

func (*DeleteNutzerParams) WithKennung

func (o *DeleteNutzerParams) WithKennung(kennung string) *DeleteNutzerParams

WithKennung adds the kennung to the delete nutzer params

func (*DeleteNutzerParams) WithTimeout

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

WithTimeout adds the timeout to the delete nutzer params

func (*DeleteNutzerParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteNutzerReader

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

DeleteNutzerReader is a Reader for the DeleteNutzer structure.

func (*DeleteNutzerReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNutzerDefault

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

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

successful operation

func NewGetNutzerDefault

func NewGetNutzerDefault(code int) *GetNutzerDefault

NewGetNutzerDefault creates a GetNutzerDefault with default headers values

func (*GetNutzerDefault) Code

func (o *GetNutzerDefault) Code() int

Code gets the status code for the get nutzer default response

func (*GetNutzerDefault) Error

func (o *GetNutzerDefault) Error() string

func (*GetNutzerDefault) IsClientError

func (o *GetNutzerDefault) IsClientError() bool

IsClientError returns true when this get nutzer default response has a 4xx status code

func (*GetNutzerDefault) IsCode

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

IsCode returns true when this get nutzer default response a status code equal to that given

func (*GetNutzerDefault) IsRedirect

func (o *GetNutzerDefault) IsRedirect() bool

IsRedirect returns true when this get nutzer default response has a 3xx status code

func (*GetNutzerDefault) IsServerError

func (o *GetNutzerDefault) IsServerError() bool

IsServerError returns true when this get nutzer default response has a 5xx status code

func (*GetNutzerDefault) IsSuccess

func (o *GetNutzerDefault) IsSuccess() bool

IsSuccess returns true when this get nutzer default response has a 2xx status code

func (*GetNutzerDefault) String

func (o *GetNutzerDefault) String() string

type GetNutzerMetadatenDefault

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

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

successful operation

func NewGetNutzerMetadatenDefault

func NewGetNutzerMetadatenDefault(code int) *GetNutzerMetadatenDefault

NewGetNutzerMetadatenDefault creates a GetNutzerMetadatenDefault with default headers values

func (*GetNutzerMetadatenDefault) Code

func (o *GetNutzerMetadatenDefault) Code() int

Code gets the status code for the get nutzer metadaten default response

func (*GetNutzerMetadatenDefault) Error

func (o *GetNutzerMetadatenDefault) Error() string

func (*GetNutzerMetadatenDefault) IsClientError

func (o *GetNutzerMetadatenDefault) IsClientError() bool

IsClientError returns true when this get nutzer metadaten default response has a 4xx status code

func (*GetNutzerMetadatenDefault) IsCode

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

IsCode returns true when this get nutzer metadaten default response a status code equal to that given

func (*GetNutzerMetadatenDefault) IsRedirect

func (o *GetNutzerMetadatenDefault) IsRedirect() bool

IsRedirect returns true when this get nutzer metadaten default response has a 3xx status code

func (*GetNutzerMetadatenDefault) IsServerError

func (o *GetNutzerMetadatenDefault) IsServerError() bool

IsServerError returns true when this get nutzer metadaten default response has a 5xx status code

func (*GetNutzerMetadatenDefault) IsSuccess

func (o *GetNutzerMetadatenDefault) IsSuccess() bool

IsSuccess returns true when this get nutzer metadaten default response has a 2xx status code

func (*GetNutzerMetadatenDefault) String

func (o *GetNutzerMetadatenDefault) String() string

type GetNutzerMetadatenParams

type GetNutzerMetadatenParams struct {

	// Kennung.
	Kennung string

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

GetNutzerMetadatenParams contains all the parameters to send to the API endpoint

for the get nutzer metadaten operation.

Typically these are written to a http.Request.

func NewGetNutzerMetadatenParams

func NewGetNutzerMetadatenParams() *GetNutzerMetadatenParams

NewGetNutzerMetadatenParams creates a new GetNutzerMetadatenParams 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 NewGetNutzerMetadatenParamsWithContext

func NewGetNutzerMetadatenParamsWithContext(ctx context.Context) *GetNutzerMetadatenParams

NewGetNutzerMetadatenParamsWithContext creates a new GetNutzerMetadatenParams object with the ability to set a context for a request.

func NewGetNutzerMetadatenParamsWithHTTPClient

func NewGetNutzerMetadatenParamsWithHTTPClient(client *http.Client) *GetNutzerMetadatenParams

NewGetNutzerMetadatenParamsWithHTTPClient creates a new GetNutzerMetadatenParams object with the ability to set a custom HTTPClient for a request.

func NewGetNutzerMetadatenParamsWithTimeout

func NewGetNutzerMetadatenParamsWithTimeout(timeout time.Duration) *GetNutzerMetadatenParams

NewGetNutzerMetadatenParamsWithTimeout creates a new GetNutzerMetadatenParams object with the ability to set a timeout on a request.

func (*GetNutzerMetadatenParams) SetContext

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

SetContext adds the context to the get nutzer metadaten params

func (*GetNutzerMetadatenParams) SetDefaults

func (o *GetNutzerMetadatenParams) SetDefaults()

SetDefaults hydrates default values in the get nutzer metadaten params (not the query body).

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

func (*GetNutzerMetadatenParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get nutzer metadaten params

func (*GetNutzerMetadatenParams) SetKennung

func (o *GetNutzerMetadatenParams) SetKennung(kennung string)

SetKennung adds the kennung to the get nutzer metadaten params

func (*GetNutzerMetadatenParams) SetTimeout

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

SetTimeout adds the timeout to the get nutzer metadaten params

func (*GetNutzerMetadatenParams) WithContext

WithContext adds the context to the get nutzer metadaten params

func (*GetNutzerMetadatenParams) WithDefaults

WithDefaults hydrates default values in the get nutzer metadaten params (not the query body).

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

func (*GetNutzerMetadatenParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get nutzer metadaten params

func (*GetNutzerMetadatenParams) WithKennung

func (o *GetNutzerMetadatenParams) WithKennung(kennung string) *GetNutzerMetadatenParams

WithKennung adds the kennung to the get nutzer metadaten params

func (*GetNutzerMetadatenParams) WithTimeout

WithTimeout adds the timeout to the get nutzer metadaten params

func (*GetNutzerMetadatenParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetNutzerMetadatenReader

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

GetNutzerMetadatenReader is a Reader for the GetNutzerMetadaten structure.

func (*GetNutzerMetadatenReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNutzerParams

type GetNutzerParams struct {

	// Kennung.
	Kennung string

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

GetNutzerParams contains all the parameters to send to the API endpoint

for the get nutzer operation.

Typically these are written to a http.Request.

func NewGetNutzerParams

func NewGetNutzerParams() *GetNutzerParams

NewGetNutzerParams creates a new GetNutzerParams 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 NewGetNutzerParamsWithContext

func NewGetNutzerParamsWithContext(ctx context.Context) *GetNutzerParams

NewGetNutzerParamsWithContext creates a new GetNutzerParams object with the ability to set a context for a request.

func NewGetNutzerParamsWithHTTPClient

func NewGetNutzerParamsWithHTTPClient(client *http.Client) *GetNutzerParams

NewGetNutzerParamsWithHTTPClient creates a new GetNutzerParams object with the ability to set a custom HTTPClient for a request.

func NewGetNutzerParamsWithTimeout

func NewGetNutzerParamsWithTimeout(timeout time.Duration) *GetNutzerParams

NewGetNutzerParamsWithTimeout creates a new GetNutzerParams object with the ability to set a timeout on a request.

func (*GetNutzerParams) SetContext

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

SetContext adds the context to the get nutzer params

func (*GetNutzerParams) SetDefaults

func (o *GetNutzerParams) SetDefaults()

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

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

func (*GetNutzerParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get nutzer params

func (*GetNutzerParams) SetKennung

func (o *GetNutzerParams) SetKennung(kennung string)

SetKennung adds the kennung to the get nutzer params

func (*GetNutzerParams) SetTimeout

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

SetTimeout adds the timeout to the get nutzer params

func (*GetNutzerParams) WithContext

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

WithContext adds the context to the get nutzer params

func (*GetNutzerParams) WithDefaults

func (o *GetNutzerParams) WithDefaults() *GetNutzerParams

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

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

func (*GetNutzerParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get nutzer params

func (*GetNutzerParams) WithKennung

func (o *GetNutzerParams) WithKennung(kennung string) *GetNutzerParams

WithKennung adds the kennung to the get nutzer params

func (*GetNutzerParams) WithTimeout

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

WithTimeout adds the timeout to the get nutzer params

func (*GetNutzerParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetNutzerReader

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

GetNutzerReader is a Reader for the GetNutzer structure.

func (*GetNutzerReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RevokeTokenDefault

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

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

successful operation

func NewRevokeTokenDefault

func NewRevokeTokenDefault(code int) *RevokeTokenDefault

NewRevokeTokenDefault creates a RevokeTokenDefault with default headers values

func (*RevokeTokenDefault) Code

func (o *RevokeTokenDefault) Code() int

Code gets the status code for the revoke token default response

func (*RevokeTokenDefault) Error

func (o *RevokeTokenDefault) Error() string

func (*RevokeTokenDefault) IsClientError

func (o *RevokeTokenDefault) IsClientError() bool

IsClientError returns true when this revoke token default response has a 4xx status code

func (*RevokeTokenDefault) IsCode

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

IsCode returns true when this revoke token default response a status code equal to that given

func (*RevokeTokenDefault) IsRedirect

func (o *RevokeTokenDefault) IsRedirect() bool

IsRedirect returns true when this revoke token default response has a 3xx status code

func (*RevokeTokenDefault) IsServerError

func (o *RevokeTokenDefault) IsServerError() bool

IsServerError returns true when this revoke token default response has a 5xx status code

func (*RevokeTokenDefault) IsSuccess

func (o *RevokeTokenDefault) IsSuccess() bool

IsSuccess returns true when this revoke token default response has a 2xx status code

func (*RevokeTokenDefault) String

func (o *RevokeTokenDefault) String() string

type RevokeTokenParams

type RevokeTokenParams struct {

	// Kennung.
	Kennung string

	// Name.
	Name string

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

RevokeTokenParams contains all the parameters to send to the API endpoint

for the revoke token operation.

Typically these are written to a http.Request.

func NewRevokeTokenParams

func NewRevokeTokenParams() *RevokeTokenParams

NewRevokeTokenParams creates a new RevokeTokenParams 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 NewRevokeTokenParamsWithContext

func NewRevokeTokenParamsWithContext(ctx context.Context) *RevokeTokenParams

NewRevokeTokenParamsWithContext creates a new RevokeTokenParams object with the ability to set a context for a request.

func NewRevokeTokenParamsWithHTTPClient

func NewRevokeTokenParamsWithHTTPClient(client *http.Client) *RevokeTokenParams

NewRevokeTokenParamsWithHTTPClient creates a new RevokeTokenParams object with the ability to set a custom HTTPClient for a request.

func NewRevokeTokenParamsWithTimeout

func NewRevokeTokenParamsWithTimeout(timeout time.Duration) *RevokeTokenParams

NewRevokeTokenParamsWithTimeout creates a new RevokeTokenParams object with the ability to set a timeout on a request.

func (*RevokeTokenParams) SetContext

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

SetContext adds the context to the revoke token params

func (*RevokeTokenParams) SetDefaults

func (o *RevokeTokenParams) SetDefaults()

SetDefaults hydrates default values in the revoke token params (not the query body).

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

func (*RevokeTokenParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the revoke token params

func (*RevokeTokenParams) SetKennung

func (o *RevokeTokenParams) SetKennung(kennung string)

SetKennung adds the kennung to the revoke token params

func (*RevokeTokenParams) SetName

func (o *RevokeTokenParams) SetName(name string)

SetName adds the name to the revoke token params

func (*RevokeTokenParams) SetTimeout

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

SetTimeout adds the timeout to the revoke token params

func (*RevokeTokenParams) WithContext

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

WithContext adds the context to the revoke token params

func (*RevokeTokenParams) WithDefaults

func (o *RevokeTokenParams) WithDefaults() *RevokeTokenParams

WithDefaults hydrates default values in the revoke token params (not the query body).

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

func (*RevokeTokenParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the revoke token params

func (*RevokeTokenParams) WithKennung

func (o *RevokeTokenParams) WithKennung(kennung string) *RevokeTokenParams

WithKennung adds the kennung to the revoke token params

func (*RevokeTokenParams) WithName

func (o *RevokeTokenParams) WithName(name string) *RevokeTokenParams

WithName adds the name to the revoke token params

func (*RevokeTokenParams) WithTimeout

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

WithTimeout adds the timeout to the revoke token params

func (*RevokeTokenParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type RevokeTokenReader

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

RevokeTokenReader is a Reader for the RevokeToken structure.

func (*RevokeTokenReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type Search1Default

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

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

successful operation

func NewSearch1Default

func NewSearch1Default(code int) *Search1Default

NewSearch1Default creates a Search1Default with default headers values

func (*Search1Default) Code

func (o *Search1Default) Code() int

Code gets the status code for the search 1 default response

func (*Search1Default) Error

func (o *Search1Default) Error() string

func (*Search1Default) IsClientError

func (o *Search1Default) IsClientError() bool

IsClientError returns true when this search 1 default response has a 4xx status code

func (*Search1Default) IsCode

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

IsCode returns true when this search 1 default response a status code equal to that given

func (*Search1Default) IsRedirect

func (o *Search1Default) IsRedirect() bool

IsRedirect returns true when this search 1 default response has a 3xx status code

func (*Search1Default) IsServerError

func (o *Search1Default) IsServerError() bool

IsServerError returns true when this search 1 default response has a 5xx status code

func (*Search1Default) IsSuccess

func (o *Search1Default) IsSuccess() bool

IsSuccess returns true when this search 1 default response has a 2xx status code

func (*Search1Default) String

func (o *Search1Default) String() string

type Search1Params

type Search1Params struct {

	// Body.
	Body *models.ObjektSearch

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

Search1Params contains all the parameters to send to the API endpoint

for the search 1 operation.

Typically these are written to a http.Request.

func NewSearch1Params

func NewSearch1Params() *Search1Params

NewSearch1Params creates a new Search1Params 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 NewSearch1ParamsWithContext

func NewSearch1ParamsWithContext(ctx context.Context) *Search1Params

NewSearch1ParamsWithContext creates a new Search1Params object with the ability to set a context for a request.

func NewSearch1ParamsWithHTTPClient

func NewSearch1ParamsWithHTTPClient(client *http.Client) *Search1Params

NewSearch1ParamsWithHTTPClient creates a new Search1Params object with the ability to set a custom HTTPClient for a request.

func NewSearch1ParamsWithTimeout

func NewSearch1ParamsWithTimeout(timeout time.Duration) *Search1Params

NewSearch1ParamsWithTimeout creates a new Search1Params object with the ability to set a timeout on a request.

func (*Search1Params) SetBody

func (o *Search1Params) SetBody(body *models.ObjektSearch)

SetBody adds the body to the search 1 params

func (*Search1Params) SetContext

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

SetContext adds the context to the search 1 params

func (*Search1Params) SetDefaults

func (o *Search1Params) SetDefaults()

SetDefaults hydrates default values in the search 1 params (not the query body).

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

func (*Search1Params) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the search 1 params

func (*Search1Params) SetTimeout

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

SetTimeout adds the timeout to the search 1 params

func (*Search1Params) WithBody

func (o *Search1Params) WithBody(body *models.ObjektSearch) *Search1Params

WithBody adds the body to the search 1 params

func (*Search1Params) WithContext

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

WithContext adds the context to the search 1 params

func (*Search1Params) WithDefaults

func (o *Search1Params) WithDefaults() *Search1Params

WithDefaults hydrates default values in the search 1 params (not the query body).

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

func (*Search1Params) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the search 1 params

func (*Search1Params) WithTimeout

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

WithTimeout adds the timeout to the search 1 params

func (*Search1Params) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type Search1Reader

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

Search1Reader is a Reader for the Search1 structure.

func (*Search1Reader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SearchDefault

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

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

successful operation

func NewSearchDefault

func NewSearchDefault(code int) *SearchDefault

NewSearchDefault creates a SearchDefault with default headers values

func (*SearchDefault) Code

func (o *SearchDefault) Code() int

Code gets the status code for the search default response

func (*SearchDefault) Error

func (o *SearchDefault) Error() string

func (*SearchDefault) IsClientError

func (o *SearchDefault) IsClientError() bool

IsClientError returns true when this search default response has a 4xx status code

func (*SearchDefault) IsCode

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

IsCode returns true when this search default response a status code equal to that given

func (*SearchDefault) IsRedirect

func (o *SearchDefault) IsRedirect() bool

IsRedirect returns true when this search default response has a 3xx status code

func (*SearchDefault) IsServerError

func (o *SearchDefault) IsServerError() bool

IsServerError returns true when this search default response has a 5xx status code

func (*SearchDefault) IsSuccess

func (o *SearchDefault) IsSuccess() bool

IsSuccess returns true when this search default response has a 2xx status code

func (*SearchDefault) String

func (o *SearchDefault) String() string

type SearchGETDefault

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

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

successful operation

func NewSearchGETDefault

func NewSearchGETDefault(code int) *SearchGETDefault

NewSearchGETDefault creates a SearchGETDefault with default headers values

func (*SearchGETDefault) Code

func (o *SearchGETDefault) Code() int

Code gets the status code for the search g e t default response

func (*SearchGETDefault) Error

func (o *SearchGETDefault) Error() string

func (*SearchGETDefault) IsClientError

func (o *SearchGETDefault) IsClientError() bool

IsClientError returns true when this search g e t default response has a 4xx status code

func (*SearchGETDefault) IsCode

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

IsCode returns true when this search g e t default response a status code equal to that given

func (*SearchGETDefault) IsRedirect

func (o *SearchGETDefault) IsRedirect() bool

IsRedirect returns true when this search g e t default response has a 3xx status code

func (*SearchGETDefault) IsServerError

func (o *SearchGETDefault) IsServerError() bool

IsServerError returns true when this search g e t default response has a 5xx status code

func (*SearchGETDefault) IsSuccess

func (o *SearchGETDefault) IsSuccess() bool

IsSuccess returns true when this search g e t default response has a 2xx status code

func (*SearchGETDefault) String

func (o *SearchGETDefault) String() string

type SearchGETParams

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

SearchGETParams contains all the parameters to send to the API endpoint

for the search g e t operation.

Typically these are written to a http.Request.

func NewSearchGETParams

func NewSearchGETParams() *SearchGETParams

NewSearchGETParams creates a new SearchGETParams 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 NewSearchGETParamsWithContext

func NewSearchGETParamsWithContext(ctx context.Context) *SearchGETParams

NewSearchGETParamsWithContext creates a new SearchGETParams object with the ability to set a context for a request.

func NewSearchGETParamsWithHTTPClient

func NewSearchGETParamsWithHTTPClient(client *http.Client) *SearchGETParams

NewSearchGETParamsWithHTTPClient creates a new SearchGETParams object with the ability to set a custom HTTPClient for a request.

func NewSearchGETParamsWithTimeout

func NewSearchGETParamsWithTimeout(timeout time.Duration) *SearchGETParams

NewSearchGETParamsWithTimeout creates a new SearchGETParams object with the ability to set a timeout on a request.

func (*SearchGETParams) SetContext

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

SetContext adds the context to the search g e t params

func (*SearchGETParams) SetDefaults

func (o *SearchGETParams) SetDefaults()

SetDefaults hydrates default values in the search g e t params (not the query body).

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

func (*SearchGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the search g e t params

func (*SearchGETParams) SetTimeout

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

SetTimeout adds the timeout to the search g e t params

func (*SearchGETParams) WithContext

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

WithContext adds the context to the search g e t params

func (*SearchGETParams) WithDefaults

func (o *SearchGETParams) WithDefaults() *SearchGETParams

WithDefaults hydrates default values in the search g e t params (not the query body).

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

func (*SearchGETParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the search g e t params

func (*SearchGETParams) WithTimeout

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

WithTimeout adds the timeout to the search g e t params

func (*SearchGETParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type SearchGETReader

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

SearchGETReader is a Reader for the SearchGET structure.

func (*SearchGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SearchParams

type SearchParams struct {

	// Body.
	Body *models.NutzerSearch

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

SearchParams contains all the parameters to send to the API endpoint

for the search operation.

Typically these are written to a http.Request.

func NewSearchParams

func NewSearchParams() *SearchParams

NewSearchParams creates a new SearchParams 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 NewSearchParamsWithContext

func NewSearchParamsWithContext(ctx context.Context) *SearchParams

NewSearchParamsWithContext creates a new SearchParams object with the ability to set a context for a request.

func NewSearchParamsWithHTTPClient

func NewSearchParamsWithHTTPClient(client *http.Client) *SearchParams

NewSearchParamsWithHTTPClient creates a new SearchParams object with the ability to set a custom HTTPClient for a request.

func NewSearchParamsWithTimeout

func NewSearchParamsWithTimeout(timeout time.Duration) *SearchParams

NewSearchParamsWithTimeout creates a new SearchParams object with the ability to set a timeout on a request.

func (*SearchParams) SetBody

func (o *SearchParams) SetBody(body *models.NutzerSearch)

SetBody adds the body to the search params

func (*SearchParams) SetContext

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

SetContext adds the context to the search params

func (*SearchParams) SetDefaults

func (o *SearchParams) SetDefaults()

SetDefaults hydrates default values in the search params (not the query body).

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

func (*SearchParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the search params

func (*SearchParams) SetTimeout

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

SetTimeout adds the timeout to the search params

func (*SearchParams) WithBody

func (o *SearchParams) WithBody(body *models.NutzerSearch) *SearchParams

WithBody adds the body to the search params

func (*SearchParams) WithContext

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

WithContext adds the context to the search params

func (*SearchParams) WithDefaults

func (o *SearchParams) WithDefaults() *SearchParams

WithDefaults hydrates default values in the search params (not the query body).

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

func (*SearchParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the search params

func (*SearchParams) WithTimeout

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

WithTimeout adds the timeout to the search params

func (*SearchParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type SearchReader

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

SearchReader is a Reader for the Search structure.

func (*SearchReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TransferOwnerDefault

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

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

successful operation

func NewTransferOwnerDefault

func NewTransferOwnerDefault(code int) *TransferOwnerDefault

NewTransferOwnerDefault creates a TransferOwnerDefault with default headers values

func (*TransferOwnerDefault) Code

func (o *TransferOwnerDefault) Code() int

Code gets the status code for the transfer owner default response

func (*TransferOwnerDefault) Error

func (o *TransferOwnerDefault) Error() string

func (*TransferOwnerDefault) IsClientError

func (o *TransferOwnerDefault) IsClientError() bool

IsClientError returns true when this transfer owner default response has a 4xx status code

func (*TransferOwnerDefault) IsCode

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

IsCode returns true when this transfer owner default response a status code equal to that given

func (*TransferOwnerDefault) IsRedirect

func (o *TransferOwnerDefault) IsRedirect() bool

IsRedirect returns true when this transfer owner default response has a 3xx status code

func (*TransferOwnerDefault) IsServerError

func (o *TransferOwnerDefault) IsServerError() bool

IsServerError returns true when this transfer owner default response has a 5xx status code

func (*TransferOwnerDefault) IsSuccess

func (o *TransferOwnerDefault) IsSuccess() bool

IsSuccess returns true when this transfer owner default response has a 2xx status code

func (*TransferOwnerDefault) String

func (o *TransferOwnerDefault) String() string

type TransferOwnerParams

type TransferOwnerParams struct {

	// Body.
	Body *models.TransferInhaltInfo

	// Kennung.
	Kennung string

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

TransferOwnerParams contains all the parameters to send to the API endpoint

for the transfer owner operation.

Typically these are written to a http.Request.

func NewTransferOwnerParams

func NewTransferOwnerParams() *TransferOwnerParams

NewTransferOwnerParams creates a new TransferOwnerParams 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 NewTransferOwnerParamsWithContext

func NewTransferOwnerParamsWithContext(ctx context.Context) *TransferOwnerParams

NewTransferOwnerParamsWithContext creates a new TransferOwnerParams object with the ability to set a context for a request.

func NewTransferOwnerParamsWithHTTPClient

func NewTransferOwnerParamsWithHTTPClient(client *http.Client) *TransferOwnerParams

NewTransferOwnerParamsWithHTTPClient creates a new TransferOwnerParams object with the ability to set a custom HTTPClient for a request.

func NewTransferOwnerParamsWithTimeout

func NewTransferOwnerParamsWithTimeout(timeout time.Duration) *TransferOwnerParams

NewTransferOwnerParamsWithTimeout creates a new TransferOwnerParams object with the ability to set a timeout on a request.

func (*TransferOwnerParams) SetBody

func (o *TransferOwnerParams) SetBody(body *models.TransferInhaltInfo)

SetBody adds the body to the transfer owner params

func (*TransferOwnerParams) SetContext

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

SetContext adds the context to the transfer owner params

func (*TransferOwnerParams) SetDefaults

func (o *TransferOwnerParams) SetDefaults()

SetDefaults hydrates default values in the transfer owner params (not the query body).

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

func (*TransferOwnerParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the transfer owner params

func (*TransferOwnerParams) SetKennung

func (o *TransferOwnerParams) SetKennung(kennung string)

SetKennung adds the kennung to the transfer owner params

func (*TransferOwnerParams) SetTimeout

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

SetTimeout adds the timeout to the transfer owner params

func (*TransferOwnerParams) WithBody

WithBody adds the body to the transfer owner params

func (*TransferOwnerParams) WithContext

WithContext adds the context to the transfer owner params

func (*TransferOwnerParams) WithDefaults

func (o *TransferOwnerParams) WithDefaults() *TransferOwnerParams

WithDefaults hydrates default values in the transfer owner params (not the query body).

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

func (*TransferOwnerParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the transfer owner params

func (*TransferOwnerParams) WithKennung

func (o *TransferOwnerParams) WithKennung(kennung string) *TransferOwnerParams

WithKennung adds the kennung to the transfer owner params

func (*TransferOwnerParams) WithTimeout

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

WithTimeout adds the timeout to the transfer owner params

func (*TransferOwnerParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type TransferOwnerReader

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

TransferOwnerReader is a Reader for the TransferOwner structure.

func (*TransferOwnerReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateNutzerDefault

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

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

successful operation

func NewUpdateNutzerDefault

func NewUpdateNutzerDefault(code int) *UpdateNutzerDefault

NewUpdateNutzerDefault creates a UpdateNutzerDefault with default headers values

func (*UpdateNutzerDefault) Code

func (o *UpdateNutzerDefault) Code() int

Code gets the status code for the update nutzer default response

func (*UpdateNutzerDefault) Error

func (o *UpdateNutzerDefault) Error() string

func (*UpdateNutzerDefault) IsClientError

func (o *UpdateNutzerDefault) IsClientError() bool

IsClientError returns true when this update nutzer default response has a 4xx status code

func (*UpdateNutzerDefault) IsCode

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

IsCode returns true when this update nutzer default response a status code equal to that given

func (*UpdateNutzerDefault) IsRedirect

func (o *UpdateNutzerDefault) IsRedirect() bool

IsRedirect returns true when this update nutzer default response has a 3xx status code

func (*UpdateNutzerDefault) IsServerError

func (o *UpdateNutzerDefault) IsServerError() bool

IsServerError returns true when this update nutzer default response has a 5xx status code

func (*UpdateNutzerDefault) IsSuccess

func (o *UpdateNutzerDefault) IsSuccess() bool

IsSuccess returns true when this update nutzer default response has a 2xx status code

func (*UpdateNutzerDefault) String

func (o *UpdateNutzerDefault) String() string

type UpdateNutzerParams

type UpdateNutzerParams struct {

	// Body.
	Body *models.NutzerData

	// Kennung.
	Kennung string

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

UpdateNutzerParams contains all the parameters to send to the API endpoint

for the update nutzer operation.

Typically these are written to a http.Request.

func NewUpdateNutzerParams

func NewUpdateNutzerParams() *UpdateNutzerParams

NewUpdateNutzerParams creates a new UpdateNutzerParams 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 NewUpdateNutzerParamsWithContext

func NewUpdateNutzerParamsWithContext(ctx context.Context) *UpdateNutzerParams

NewUpdateNutzerParamsWithContext creates a new UpdateNutzerParams object with the ability to set a context for a request.

func NewUpdateNutzerParamsWithHTTPClient

func NewUpdateNutzerParamsWithHTTPClient(client *http.Client) *UpdateNutzerParams

NewUpdateNutzerParamsWithHTTPClient creates a new UpdateNutzerParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateNutzerParamsWithTimeout

func NewUpdateNutzerParamsWithTimeout(timeout time.Duration) *UpdateNutzerParams

NewUpdateNutzerParamsWithTimeout creates a new UpdateNutzerParams object with the ability to set a timeout on a request.

func (*UpdateNutzerParams) SetBody

func (o *UpdateNutzerParams) SetBody(body *models.NutzerData)

SetBody adds the body to the update nutzer params

func (*UpdateNutzerParams) SetContext

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

SetContext adds the context to the update nutzer params

func (*UpdateNutzerParams) SetDefaults

func (o *UpdateNutzerParams) SetDefaults()

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

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

func (*UpdateNutzerParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update nutzer params

func (*UpdateNutzerParams) SetKennung

func (o *UpdateNutzerParams) SetKennung(kennung string)

SetKennung adds the kennung to the update nutzer params

func (*UpdateNutzerParams) SetTimeout

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

SetTimeout adds the timeout to the update nutzer params

func (*UpdateNutzerParams) WithBody

WithBody adds the body to the update nutzer params

func (*UpdateNutzerParams) WithContext

WithContext adds the context to the update nutzer params

func (*UpdateNutzerParams) WithDefaults

func (o *UpdateNutzerParams) WithDefaults() *UpdateNutzerParams

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

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

func (*UpdateNutzerParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update nutzer params

func (*UpdateNutzerParams) WithKennung

func (o *UpdateNutzerParams) WithKennung(kennung string) *UpdateNutzerParams

WithKennung adds the kennung to the update nutzer params

func (*UpdateNutzerParams) WithTimeout

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

WithTimeout adds the timeout to the update nutzer params

func (*UpdateNutzerParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateNutzerReader

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

UpdateNutzerReader is a Reader for the UpdateNutzer structure.

func (*UpdateNutzerReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdatePasswordDefault

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

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

successful operation

func NewUpdatePasswordDefault

func NewUpdatePasswordDefault(code int) *UpdatePasswordDefault

NewUpdatePasswordDefault creates a UpdatePasswordDefault with default headers values

func (*UpdatePasswordDefault) Code

func (o *UpdatePasswordDefault) Code() int

Code gets the status code for the update password default response

func (*UpdatePasswordDefault) Error

func (o *UpdatePasswordDefault) Error() string

func (*UpdatePasswordDefault) IsClientError

func (o *UpdatePasswordDefault) IsClientError() bool

IsClientError returns true when this update password default response has a 4xx status code

func (*UpdatePasswordDefault) IsCode

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

IsCode returns true when this update password default response a status code equal to that given

func (*UpdatePasswordDefault) IsRedirect

func (o *UpdatePasswordDefault) IsRedirect() bool

IsRedirect returns true when this update password default response has a 3xx status code

func (*UpdatePasswordDefault) IsServerError

func (o *UpdatePasswordDefault) IsServerError() bool

IsServerError returns true when this update password default response has a 5xx status code

func (*UpdatePasswordDefault) IsSuccess

func (o *UpdatePasswordDefault) IsSuccess() bool

IsSuccess returns true when this update password default response has a 2xx status code

func (*UpdatePasswordDefault) String

func (o *UpdatePasswordDefault) String() string

type UpdatePasswordParams

type UpdatePasswordParams struct {

	// Body.
	Body *models.ChangePasswordData

	// Kennung.
	Kennung string

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

UpdatePasswordParams contains all the parameters to send to the API endpoint

for the update password operation.

Typically these are written to a http.Request.

func NewUpdatePasswordParams

func NewUpdatePasswordParams() *UpdatePasswordParams

NewUpdatePasswordParams creates a new UpdatePasswordParams 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 NewUpdatePasswordParamsWithContext

func NewUpdatePasswordParamsWithContext(ctx context.Context) *UpdatePasswordParams

NewUpdatePasswordParamsWithContext creates a new UpdatePasswordParams object with the ability to set a context for a request.

func NewUpdatePasswordParamsWithHTTPClient

func NewUpdatePasswordParamsWithHTTPClient(client *http.Client) *UpdatePasswordParams

NewUpdatePasswordParamsWithHTTPClient creates a new UpdatePasswordParams object with the ability to set a custom HTTPClient for a request.

func NewUpdatePasswordParamsWithTimeout

func NewUpdatePasswordParamsWithTimeout(timeout time.Duration) *UpdatePasswordParams

NewUpdatePasswordParamsWithTimeout creates a new UpdatePasswordParams object with the ability to set a timeout on a request.

func (*UpdatePasswordParams) SetBody

SetBody adds the body to the update password params

func (*UpdatePasswordParams) SetContext

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

SetContext adds the context to the update password params

func (*UpdatePasswordParams) SetDefaults

func (o *UpdatePasswordParams) SetDefaults()

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

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

func (*UpdatePasswordParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update password params

func (*UpdatePasswordParams) SetKennung

func (o *UpdatePasswordParams) SetKennung(kennung string)

SetKennung adds the kennung to the update password params

func (*UpdatePasswordParams) SetTimeout

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

SetTimeout adds the timeout to the update password params

func (*UpdatePasswordParams) WithBody

WithBody adds the body to the update password params

func (*UpdatePasswordParams) WithContext

WithContext adds the context to the update password params

func (*UpdatePasswordParams) WithDefaults

func (o *UpdatePasswordParams) WithDefaults() *UpdatePasswordParams

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

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

func (*UpdatePasswordParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update password params

func (*UpdatePasswordParams) WithKennung

func (o *UpdatePasswordParams) WithKennung(kennung string) *UpdatePasswordParams

WithKennung adds the kennung to the update password params

func (*UpdatePasswordParams) WithTimeout

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

WithTimeout adds the timeout to the update password params

func (*UpdatePasswordParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdatePasswordReader

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

UpdatePasswordReader is a Reader for the UpdatePassword structure.

func (*UpdatePasswordReader) ReadResponse

func (o *UpdatePasswordReader) 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