document_archive

package
v2.0.2 Latest Latest
Warning

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

Go to latest
Published: May 1, 2023 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for document archive API

func (*Client) DocumentArchiveAccountAccountPost

DocumentArchiveAccountAccountPost bs e t a upload file to account document archive

func (*Client) DocumentArchiveAccountGetAccount

DocumentArchiveAccountGetAccount bs e t a find documents archived associated with account object type

func (*Client) DocumentArchiveCustomerCustomerPost

DocumentArchiveCustomerCustomerPost bs e t a upload file to customer document archive

func (*Client) DocumentArchiveCustomerGetCustomer

DocumentArchiveCustomerGetCustomer bs e t a find documents archived associated with customer object type

func (*Client) DocumentArchiveDelete

func (a *Client) DocumentArchiveDelete(params *DocumentArchiveDeleteParams, authInfo runtime.ClientAuthInfoWriter) error

DocumentArchiveDelete bs e t a delete document archive

func (*Client) DocumentArchiveEmployeeEmployeePost

DocumentArchiveEmployeeEmployeePost bs e t a upload file to employee document archive

func (*Client) DocumentArchiveEmployeeGetEmployee

DocumentArchiveEmployeeGetEmployee bs e t a find documents archived associated with employee object type

func (*Client) DocumentArchiveProductGetProduct

DocumentArchiveProductGetProduct bs e t a find documents archived associated with product object type

func (*Client) DocumentArchiveProductProductPost

DocumentArchiveProductProductPost bs e t a upload file to product document archive

func (*Client) DocumentArchiveProjectGetProject

DocumentArchiveProjectGetProject bs e t a find documents archived associated with project object type

func (*Client) DocumentArchiveProjectProjectPost

DocumentArchiveProjectProjectPost bs e t a upload file to project document archive

func (*Client) DocumentArchiveProspectGetProspect

DocumentArchiveProspectGetProspect bs e t a find documents archived associated with prospect object type

func (*Client) DocumentArchiveProspectProspectPost

DocumentArchiveProspectProspectPost bs e t a upload file to prospect document archive

func (*Client) DocumentArchivePut

func (a *Client) DocumentArchivePut(params *DocumentArchivePutParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchivePutOK, error)

DocumentArchivePut bs e t a update document archive

func (*Client) DocumentArchiveReceptionReceptionPost

DocumentArchiveReceptionReceptionPost bs e t a upload a file to the document archive reception send as multipart form

func (*Client) DocumentArchiveSupplierGetSupplier

DocumentArchiveSupplierGetSupplier bs e t a find documents archived associated with supplier object type

func (*Client) DocumentArchiveSupplierSupplierPost

DocumentArchiveSupplierSupplierPost bs e t a upload file to supplier document archive

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	DocumentArchiveAccountAccountPost(params *DocumentArchiveAccountAccountPostParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveAccountAccountPostCreated, error)

	DocumentArchiveAccountGetAccount(params *DocumentArchiveAccountGetAccountParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveAccountGetAccountOK, error)

	DocumentArchiveCustomerCustomerPost(params *DocumentArchiveCustomerCustomerPostParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveCustomerCustomerPostCreated, error)

	DocumentArchiveCustomerGetCustomer(params *DocumentArchiveCustomerGetCustomerParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveCustomerGetCustomerOK, error)

	DocumentArchiveEmployeeEmployeePost(params *DocumentArchiveEmployeeEmployeePostParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveEmployeeEmployeePostCreated, error)

	DocumentArchiveEmployeeGetEmployee(params *DocumentArchiveEmployeeGetEmployeeParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveEmployeeGetEmployeeOK, error)

	DocumentArchiveProductGetProduct(params *DocumentArchiveProductGetProductParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveProductGetProductOK, error)

	DocumentArchiveProductProductPost(params *DocumentArchiveProductProductPostParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveProductProductPostCreated, error)

	DocumentArchiveProjectGetProject(params *DocumentArchiveProjectGetProjectParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveProjectGetProjectOK, error)

	DocumentArchiveProjectProjectPost(params *DocumentArchiveProjectProjectPostParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveProjectProjectPostCreated, error)

	DocumentArchiveProspectGetProspect(params *DocumentArchiveProspectGetProspectParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveProspectGetProspectOK, error)

	DocumentArchiveProspectProspectPost(params *DocumentArchiveProspectProspectPostParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveProspectProspectPostCreated, error)

	DocumentArchiveReceptionReceptionPost(params *DocumentArchiveReceptionReceptionPostParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveReceptionReceptionPostCreated, error)

	DocumentArchiveSupplierGetSupplier(params *DocumentArchiveSupplierGetSupplierParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveSupplierGetSupplierOK, error)

	DocumentArchiveSupplierSupplierPost(params *DocumentArchiveSupplierSupplierPostParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchiveSupplierSupplierPostCreated, error)

	DocumentArchiveDelete(params *DocumentArchiveDeleteParams, authInfo runtime.ClientAuthInfoWriter) error

	DocumentArchivePut(params *DocumentArchivePutParams, authInfo runtime.ClientAuthInfoWriter) (*DocumentArchivePutOK, 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 document archive API client.

type DocumentArchiveAccountAccountPostCreated

type DocumentArchiveAccountAccountPostCreated struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchiveAccountAccountPostCreated handles this case with default header values.

successfully created

func NewDocumentArchiveAccountAccountPostCreated

func NewDocumentArchiveAccountAccountPostCreated() *DocumentArchiveAccountAccountPostCreated

NewDocumentArchiveAccountAccountPostCreated creates a DocumentArchiveAccountAccountPostCreated with default headers values

func (*DocumentArchiveAccountAccountPostCreated) Error

func (*DocumentArchiveAccountAccountPostCreated) GetPayload

type DocumentArchiveAccountAccountPostParams

type DocumentArchiveAccountAccountPostParams struct {

	/*File
	  The file

	*/
	File runtime.NamedReadCloser
	/*ID
	  Element ID

	*/
	ID int32

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

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

func NewDocumentArchiveAccountAccountPostParams

func NewDocumentArchiveAccountAccountPostParams() *DocumentArchiveAccountAccountPostParams

NewDocumentArchiveAccountAccountPostParams creates a new DocumentArchiveAccountAccountPostParams object with the default values initialized.

func NewDocumentArchiveAccountAccountPostParamsWithContext

func NewDocumentArchiveAccountAccountPostParamsWithContext(ctx context.Context) *DocumentArchiveAccountAccountPostParams

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

func NewDocumentArchiveAccountAccountPostParamsWithHTTPClient

func NewDocumentArchiveAccountAccountPostParamsWithHTTPClient(client *http.Client) *DocumentArchiveAccountAccountPostParams

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

func NewDocumentArchiveAccountAccountPostParamsWithTimeout

func NewDocumentArchiveAccountAccountPostParamsWithTimeout(timeout time.Duration) *DocumentArchiveAccountAccountPostParams

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

func (*DocumentArchiveAccountAccountPostParams) SetContext

SetContext adds the context to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) SetFile

SetFile adds the file to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) SetID

SetID adds the id to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) SetTimeout

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

SetTimeout adds the timeout to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) WithContext

WithContext adds the context to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) WithFile

WithFile adds the file to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) WithID

WithID adds the id to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) WithTimeout

WithTimeout adds the timeout to the document archive account account post params

func (*DocumentArchiveAccountAccountPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveAccountAccountPostReader

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

DocumentArchiveAccountAccountPostReader is a Reader for the DocumentArchiveAccountAccountPost structure.

func (*DocumentArchiveAccountAccountPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveAccountGetAccountOK

type DocumentArchiveAccountGetAccountOK struct {
	Payload *models.ListResponseDocumentArchive
}

DocumentArchiveAccountGetAccountOK handles this case with default header values.

successful operation

func NewDocumentArchiveAccountGetAccountOK

func NewDocumentArchiveAccountGetAccountOK() *DocumentArchiveAccountGetAccountOK

NewDocumentArchiveAccountGetAccountOK creates a DocumentArchiveAccountGetAccountOK with default headers values

func (*DocumentArchiveAccountGetAccountOK) Error

func (*DocumentArchiveAccountGetAccountOK) GetPayload

type DocumentArchiveAccountGetAccountParams

type DocumentArchiveAccountGetAccountParams struct {

	/*Count
	  Number of elements to return

	*/
	Count *int64
	/*Fields
	  Fields filter pattern

	*/
	Fields *string
	/*From
	  From index

	*/
	From *int64
	/*ID
	  Element ID

	*/
	ID int32
	/*PeriodDateFrom
	  From and including

	*/
	PeriodDateFrom *string
	/*PeriodDateTo
	  To and excluding

	*/
	PeriodDateTo *string
	/*Sorting
	  Sorting pattern

	*/
	Sorting *string

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

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

func NewDocumentArchiveAccountGetAccountParams

func NewDocumentArchiveAccountGetAccountParams() *DocumentArchiveAccountGetAccountParams

NewDocumentArchiveAccountGetAccountParams creates a new DocumentArchiveAccountGetAccountParams object with the default values initialized.

func NewDocumentArchiveAccountGetAccountParamsWithContext

func NewDocumentArchiveAccountGetAccountParamsWithContext(ctx context.Context) *DocumentArchiveAccountGetAccountParams

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

func NewDocumentArchiveAccountGetAccountParamsWithHTTPClient

func NewDocumentArchiveAccountGetAccountParamsWithHTTPClient(client *http.Client) *DocumentArchiveAccountGetAccountParams

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

func NewDocumentArchiveAccountGetAccountParamsWithTimeout

func NewDocumentArchiveAccountGetAccountParamsWithTimeout(timeout time.Duration) *DocumentArchiveAccountGetAccountParams

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

func (*DocumentArchiveAccountGetAccountParams) SetContext

SetContext adds the context to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetCount

func (o *DocumentArchiveAccountGetAccountParams) SetCount(count *int64)

SetCount adds the count to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetFields

func (o *DocumentArchiveAccountGetAccountParams) SetFields(fields *string)

SetFields adds the fields to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetFrom

SetFrom adds the from to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetID

SetID adds the id to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetPeriodDateFrom

func (o *DocumentArchiveAccountGetAccountParams) SetPeriodDateFrom(periodDateFrom *string)

SetPeriodDateFrom adds the periodDateFrom to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetPeriodDateTo

func (o *DocumentArchiveAccountGetAccountParams) SetPeriodDateTo(periodDateTo *string)

SetPeriodDateTo adds the periodDateTo to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetSorting

func (o *DocumentArchiveAccountGetAccountParams) SetSorting(sorting *string)

SetSorting adds the sorting to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) SetTimeout

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

SetTimeout adds the timeout to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithContext

WithContext adds the context to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithCount

WithCount adds the count to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithFields

WithFields adds the fields to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithFrom

WithFrom adds the from to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithID

WithID adds the id to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithPeriodDateFrom

WithPeriodDateFrom adds the periodDateFrom to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithPeriodDateTo

WithPeriodDateTo adds the periodDateTo to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithSorting

WithSorting adds the sorting to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WithTimeout

WithTimeout adds the timeout to the document archive account get account params

func (*DocumentArchiveAccountGetAccountParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveAccountGetAccountReader

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

DocumentArchiveAccountGetAccountReader is a Reader for the DocumentArchiveAccountGetAccount structure.

func (*DocumentArchiveAccountGetAccountReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveCustomerCustomerPostCreated

type DocumentArchiveCustomerCustomerPostCreated struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchiveCustomerCustomerPostCreated handles this case with default header values.

successfully created

func NewDocumentArchiveCustomerCustomerPostCreated

func NewDocumentArchiveCustomerCustomerPostCreated() *DocumentArchiveCustomerCustomerPostCreated

NewDocumentArchiveCustomerCustomerPostCreated creates a DocumentArchiveCustomerCustomerPostCreated with default headers values

func (*DocumentArchiveCustomerCustomerPostCreated) Error

func (*DocumentArchiveCustomerCustomerPostCreated) GetPayload

type DocumentArchiveCustomerCustomerPostParams

type DocumentArchiveCustomerCustomerPostParams struct {

	/*File
	  The file

	*/
	File runtime.NamedReadCloser
	/*ID
	  Element ID

	*/
	ID int32

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

DocumentArchiveCustomerCustomerPostParams contains all the parameters to send to the API endpoint for the document archive customer customer post operation typically these are written to a http.Request

func NewDocumentArchiveCustomerCustomerPostParams

func NewDocumentArchiveCustomerCustomerPostParams() *DocumentArchiveCustomerCustomerPostParams

NewDocumentArchiveCustomerCustomerPostParams creates a new DocumentArchiveCustomerCustomerPostParams object with the default values initialized.

func NewDocumentArchiveCustomerCustomerPostParamsWithContext

func NewDocumentArchiveCustomerCustomerPostParamsWithContext(ctx context.Context) *DocumentArchiveCustomerCustomerPostParams

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

func NewDocumentArchiveCustomerCustomerPostParamsWithHTTPClient

func NewDocumentArchiveCustomerCustomerPostParamsWithHTTPClient(client *http.Client) *DocumentArchiveCustomerCustomerPostParams

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

func NewDocumentArchiveCustomerCustomerPostParamsWithTimeout

func NewDocumentArchiveCustomerCustomerPostParamsWithTimeout(timeout time.Duration) *DocumentArchiveCustomerCustomerPostParams

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

func (*DocumentArchiveCustomerCustomerPostParams) SetContext

SetContext adds the context to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) SetFile

SetFile adds the file to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) SetID

SetID adds the id to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) SetTimeout

SetTimeout adds the timeout to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) WithContext

WithContext adds the context to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) WithFile

WithFile adds the file to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) WithID

WithID adds the id to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) WithTimeout

WithTimeout adds the timeout to the document archive customer customer post params

func (*DocumentArchiveCustomerCustomerPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveCustomerCustomerPostReader

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

DocumentArchiveCustomerCustomerPostReader is a Reader for the DocumentArchiveCustomerCustomerPost structure.

func (*DocumentArchiveCustomerCustomerPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveCustomerGetCustomerOK

type DocumentArchiveCustomerGetCustomerOK struct {
	Payload *models.ListResponseDocumentArchive
}

DocumentArchiveCustomerGetCustomerOK handles this case with default header values.

successful operation

func NewDocumentArchiveCustomerGetCustomerOK

func NewDocumentArchiveCustomerGetCustomerOK() *DocumentArchiveCustomerGetCustomerOK

NewDocumentArchiveCustomerGetCustomerOK creates a DocumentArchiveCustomerGetCustomerOK with default headers values

func (*DocumentArchiveCustomerGetCustomerOK) Error

func (*DocumentArchiveCustomerGetCustomerOK) GetPayload

type DocumentArchiveCustomerGetCustomerParams

type DocumentArchiveCustomerGetCustomerParams struct {

	/*Count
	  Number of elements to return

	*/
	Count *int64
	/*Fields
	  Fields filter pattern

	*/
	Fields *string
	/*From
	  From index

	*/
	From *int64
	/*ID
	  Element ID

	*/
	ID int32
	/*PeriodDateFrom
	  From and including

	*/
	PeriodDateFrom *string
	/*PeriodDateTo
	  To and excluding

	*/
	PeriodDateTo *string
	/*Sorting
	  Sorting pattern

	*/
	Sorting *string

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

DocumentArchiveCustomerGetCustomerParams contains all the parameters to send to the API endpoint for the document archive customer get customer operation typically these are written to a http.Request

func NewDocumentArchiveCustomerGetCustomerParams

func NewDocumentArchiveCustomerGetCustomerParams() *DocumentArchiveCustomerGetCustomerParams

NewDocumentArchiveCustomerGetCustomerParams creates a new DocumentArchiveCustomerGetCustomerParams object with the default values initialized.

func NewDocumentArchiveCustomerGetCustomerParamsWithContext

func NewDocumentArchiveCustomerGetCustomerParamsWithContext(ctx context.Context) *DocumentArchiveCustomerGetCustomerParams

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

func NewDocumentArchiveCustomerGetCustomerParamsWithHTTPClient

func NewDocumentArchiveCustomerGetCustomerParamsWithHTTPClient(client *http.Client) *DocumentArchiveCustomerGetCustomerParams

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

func NewDocumentArchiveCustomerGetCustomerParamsWithTimeout

func NewDocumentArchiveCustomerGetCustomerParamsWithTimeout(timeout time.Duration) *DocumentArchiveCustomerGetCustomerParams

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

func (*DocumentArchiveCustomerGetCustomerParams) SetContext

SetContext adds the context to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetCount

func (o *DocumentArchiveCustomerGetCustomerParams) SetCount(count *int64)

SetCount adds the count to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetFields

func (o *DocumentArchiveCustomerGetCustomerParams) SetFields(fields *string)

SetFields adds the fields to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetFrom

SetFrom adds the from to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetID

SetID adds the id to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetPeriodDateFrom

func (o *DocumentArchiveCustomerGetCustomerParams) SetPeriodDateFrom(periodDateFrom *string)

SetPeriodDateFrom adds the periodDateFrom to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetPeriodDateTo

func (o *DocumentArchiveCustomerGetCustomerParams) SetPeriodDateTo(periodDateTo *string)

SetPeriodDateTo adds the periodDateTo to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetSorting

func (o *DocumentArchiveCustomerGetCustomerParams) SetSorting(sorting *string)

SetSorting adds the sorting to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) SetTimeout

SetTimeout adds the timeout to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithContext

WithContext adds the context to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithCount

WithCount adds the count to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithFields

WithFields adds the fields to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithFrom

WithFrom adds the from to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithID

WithID adds the id to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithPeriodDateFrom

WithPeriodDateFrom adds the periodDateFrom to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithPeriodDateTo

WithPeriodDateTo adds the periodDateTo to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithSorting

WithSorting adds the sorting to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WithTimeout

WithTimeout adds the timeout to the document archive customer get customer params

func (*DocumentArchiveCustomerGetCustomerParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveCustomerGetCustomerReader

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

DocumentArchiveCustomerGetCustomerReader is a Reader for the DocumentArchiveCustomerGetCustomer structure.

func (*DocumentArchiveCustomerGetCustomerReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveDeleteDefault

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

DocumentArchiveDeleteDefault handles this case with default header values.

successful operation

func NewDocumentArchiveDeleteDefault

func NewDocumentArchiveDeleteDefault(code int) *DocumentArchiveDeleteDefault

NewDocumentArchiveDeleteDefault creates a DocumentArchiveDeleteDefault with default headers values

func (*DocumentArchiveDeleteDefault) Code

Code gets the status code for the document archive delete default response

func (*DocumentArchiveDeleteDefault) Error

type DocumentArchiveDeleteParams

type DocumentArchiveDeleteParams struct {

	/*ID
	  Element ID

	*/
	ID int32

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

DocumentArchiveDeleteParams contains all the parameters to send to the API endpoint for the document archive delete operation typically these are written to a http.Request

func NewDocumentArchiveDeleteParams

func NewDocumentArchiveDeleteParams() *DocumentArchiveDeleteParams

NewDocumentArchiveDeleteParams creates a new DocumentArchiveDeleteParams object with the default values initialized.

func NewDocumentArchiveDeleteParamsWithContext

func NewDocumentArchiveDeleteParamsWithContext(ctx context.Context) *DocumentArchiveDeleteParams

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

func NewDocumentArchiveDeleteParamsWithHTTPClient

func NewDocumentArchiveDeleteParamsWithHTTPClient(client *http.Client) *DocumentArchiveDeleteParams

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

func NewDocumentArchiveDeleteParamsWithTimeout

func NewDocumentArchiveDeleteParamsWithTimeout(timeout time.Duration) *DocumentArchiveDeleteParams

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

func (*DocumentArchiveDeleteParams) SetContext

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

SetContext adds the context to the document archive delete params

func (*DocumentArchiveDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive delete params

func (*DocumentArchiveDeleteParams) SetID

func (o *DocumentArchiveDeleteParams) SetID(id int32)

SetID adds the id to the document archive delete params

func (*DocumentArchiveDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the document archive delete params

func (*DocumentArchiveDeleteParams) WithContext

WithContext adds the context to the document archive delete params

func (*DocumentArchiveDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive delete params

func (*DocumentArchiveDeleteParams) WithID

WithID adds the id to the document archive delete params

func (*DocumentArchiveDeleteParams) WithTimeout

WithTimeout adds the timeout to the document archive delete params

func (*DocumentArchiveDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveDeleteReader

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

DocumentArchiveDeleteReader is a Reader for the DocumentArchiveDelete structure.

func (*DocumentArchiveDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveEmployeeEmployeePostCreated

type DocumentArchiveEmployeeEmployeePostCreated struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchiveEmployeeEmployeePostCreated handles this case with default header values.

successfully created

func NewDocumentArchiveEmployeeEmployeePostCreated

func NewDocumentArchiveEmployeeEmployeePostCreated() *DocumentArchiveEmployeeEmployeePostCreated

NewDocumentArchiveEmployeeEmployeePostCreated creates a DocumentArchiveEmployeeEmployeePostCreated with default headers values

func (*DocumentArchiveEmployeeEmployeePostCreated) Error

func (*DocumentArchiveEmployeeEmployeePostCreated) GetPayload

type DocumentArchiveEmployeeEmployeePostParams

type DocumentArchiveEmployeeEmployeePostParams struct {

	/*File
	  The file

	*/
	File runtime.NamedReadCloser
	/*ID
	  Element ID

	*/
	ID int32

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

DocumentArchiveEmployeeEmployeePostParams contains all the parameters to send to the API endpoint for the document archive employee employee post operation typically these are written to a http.Request

func NewDocumentArchiveEmployeeEmployeePostParams

func NewDocumentArchiveEmployeeEmployeePostParams() *DocumentArchiveEmployeeEmployeePostParams

NewDocumentArchiveEmployeeEmployeePostParams creates a new DocumentArchiveEmployeeEmployeePostParams object with the default values initialized.

func NewDocumentArchiveEmployeeEmployeePostParamsWithContext

func NewDocumentArchiveEmployeeEmployeePostParamsWithContext(ctx context.Context) *DocumentArchiveEmployeeEmployeePostParams

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

func NewDocumentArchiveEmployeeEmployeePostParamsWithHTTPClient

func NewDocumentArchiveEmployeeEmployeePostParamsWithHTTPClient(client *http.Client) *DocumentArchiveEmployeeEmployeePostParams

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

func NewDocumentArchiveEmployeeEmployeePostParamsWithTimeout

func NewDocumentArchiveEmployeeEmployeePostParamsWithTimeout(timeout time.Duration) *DocumentArchiveEmployeeEmployeePostParams

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

func (*DocumentArchiveEmployeeEmployeePostParams) SetContext

SetContext adds the context to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) SetFile

SetFile adds the file to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) SetID

SetID adds the id to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) SetTimeout

SetTimeout adds the timeout to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) WithContext

WithContext adds the context to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) WithFile

WithFile adds the file to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) WithID

WithID adds the id to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) WithTimeout

WithTimeout adds the timeout to the document archive employee employee post params

func (*DocumentArchiveEmployeeEmployeePostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveEmployeeEmployeePostReader

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

DocumentArchiveEmployeeEmployeePostReader is a Reader for the DocumentArchiveEmployeeEmployeePost structure.

func (*DocumentArchiveEmployeeEmployeePostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveEmployeeGetEmployeeOK

type DocumentArchiveEmployeeGetEmployeeOK struct {
	Payload *models.ListResponseDocumentArchive
}

DocumentArchiveEmployeeGetEmployeeOK handles this case with default header values.

successful operation

func NewDocumentArchiveEmployeeGetEmployeeOK

func NewDocumentArchiveEmployeeGetEmployeeOK() *DocumentArchiveEmployeeGetEmployeeOK

NewDocumentArchiveEmployeeGetEmployeeOK creates a DocumentArchiveEmployeeGetEmployeeOK with default headers values

func (*DocumentArchiveEmployeeGetEmployeeOK) Error

func (*DocumentArchiveEmployeeGetEmployeeOK) GetPayload

type DocumentArchiveEmployeeGetEmployeeParams

type DocumentArchiveEmployeeGetEmployeeParams struct {

	/*Count
	  Number of elements to return

	*/
	Count *int64
	/*Fields
	  Fields filter pattern

	*/
	Fields *string
	/*From
	  From index

	*/
	From *int64
	/*ID
	  Element ID

	*/
	ID int32
	/*PeriodDateFrom
	  From and including

	*/
	PeriodDateFrom *string
	/*PeriodDateTo
	  To and excluding

	*/
	PeriodDateTo *string
	/*Sorting
	  Sorting pattern

	*/
	Sorting *string

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

DocumentArchiveEmployeeGetEmployeeParams contains all the parameters to send to the API endpoint for the document archive employee get employee operation typically these are written to a http.Request

func NewDocumentArchiveEmployeeGetEmployeeParams

func NewDocumentArchiveEmployeeGetEmployeeParams() *DocumentArchiveEmployeeGetEmployeeParams

NewDocumentArchiveEmployeeGetEmployeeParams creates a new DocumentArchiveEmployeeGetEmployeeParams object with the default values initialized.

func NewDocumentArchiveEmployeeGetEmployeeParamsWithContext

func NewDocumentArchiveEmployeeGetEmployeeParamsWithContext(ctx context.Context) *DocumentArchiveEmployeeGetEmployeeParams

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

func NewDocumentArchiveEmployeeGetEmployeeParamsWithHTTPClient

func NewDocumentArchiveEmployeeGetEmployeeParamsWithHTTPClient(client *http.Client) *DocumentArchiveEmployeeGetEmployeeParams

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

func NewDocumentArchiveEmployeeGetEmployeeParamsWithTimeout

func NewDocumentArchiveEmployeeGetEmployeeParamsWithTimeout(timeout time.Duration) *DocumentArchiveEmployeeGetEmployeeParams

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

func (*DocumentArchiveEmployeeGetEmployeeParams) SetContext

SetContext adds the context to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetCount

func (o *DocumentArchiveEmployeeGetEmployeeParams) SetCount(count *int64)

SetCount adds the count to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetFields

func (o *DocumentArchiveEmployeeGetEmployeeParams) SetFields(fields *string)

SetFields adds the fields to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetFrom

SetFrom adds the from to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetID

SetID adds the id to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetPeriodDateFrom

func (o *DocumentArchiveEmployeeGetEmployeeParams) SetPeriodDateFrom(periodDateFrom *string)

SetPeriodDateFrom adds the periodDateFrom to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetPeriodDateTo

func (o *DocumentArchiveEmployeeGetEmployeeParams) SetPeriodDateTo(periodDateTo *string)

SetPeriodDateTo adds the periodDateTo to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetSorting

func (o *DocumentArchiveEmployeeGetEmployeeParams) SetSorting(sorting *string)

SetSorting adds the sorting to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) SetTimeout

SetTimeout adds the timeout to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithContext

WithContext adds the context to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithCount

WithCount adds the count to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithFields

WithFields adds the fields to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithFrom

WithFrom adds the from to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithID

WithID adds the id to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithPeriodDateFrom

WithPeriodDateFrom adds the periodDateFrom to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithPeriodDateTo

WithPeriodDateTo adds the periodDateTo to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithSorting

WithSorting adds the sorting to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WithTimeout

WithTimeout adds the timeout to the document archive employee get employee params

func (*DocumentArchiveEmployeeGetEmployeeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveEmployeeGetEmployeeReader

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

DocumentArchiveEmployeeGetEmployeeReader is a Reader for the DocumentArchiveEmployeeGetEmployee structure.

func (*DocumentArchiveEmployeeGetEmployeeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveProductGetProductOK

type DocumentArchiveProductGetProductOK struct {
	Payload *models.ListResponseDocumentArchive
}

DocumentArchiveProductGetProductOK handles this case with default header values.

successful operation

func NewDocumentArchiveProductGetProductOK

func NewDocumentArchiveProductGetProductOK() *DocumentArchiveProductGetProductOK

NewDocumentArchiveProductGetProductOK creates a DocumentArchiveProductGetProductOK with default headers values

func (*DocumentArchiveProductGetProductOK) Error

func (*DocumentArchiveProductGetProductOK) GetPayload

type DocumentArchiveProductGetProductParams

type DocumentArchiveProductGetProductParams struct {

	/*Count
	  Number of elements to return

	*/
	Count *int64
	/*Fields
	  Fields filter pattern

	*/
	Fields *string
	/*From
	  From index

	*/
	From *int64
	/*ID
	  Element ID

	*/
	ID int32
	/*PeriodDateFrom
	  From and including

	*/
	PeriodDateFrom *string
	/*PeriodDateTo
	  To and excluding

	*/
	PeriodDateTo *string
	/*Sorting
	  Sorting pattern

	*/
	Sorting *string

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

DocumentArchiveProductGetProductParams contains all the parameters to send to the API endpoint for the document archive product get product operation typically these are written to a http.Request

func NewDocumentArchiveProductGetProductParams

func NewDocumentArchiveProductGetProductParams() *DocumentArchiveProductGetProductParams

NewDocumentArchiveProductGetProductParams creates a new DocumentArchiveProductGetProductParams object with the default values initialized.

func NewDocumentArchiveProductGetProductParamsWithContext

func NewDocumentArchiveProductGetProductParamsWithContext(ctx context.Context) *DocumentArchiveProductGetProductParams

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

func NewDocumentArchiveProductGetProductParamsWithHTTPClient

func NewDocumentArchiveProductGetProductParamsWithHTTPClient(client *http.Client) *DocumentArchiveProductGetProductParams

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

func NewDocumentArchiveProductGetProductParamsWithTimeout

func NewDocumentArchiveProductGetProductParamsWithTimeout(timeout time.Duration) *DocumentArchiveProductGetProductParams

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

func (*DocumentArchiveProductGetProductParams) SetContext

SetContext adds the context to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetCount

func (o *DocumentArchiveProductGetProductParams) SetCount(count *int64)

SetCount adds the count to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetFields

func (o *DocumentArchiveProductGetProductParams) SetFields(fields *string)

SetFields adds the fields to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetFrom

SetFrom adds the from to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetID

SetID adds the id to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetPeriodDateFrom

func (o *DocumentArchiveProductGetProductParams) SetPeriodDateFrom(periodDateFrom *string)

SetPeriodDateFrom adds the periodDateFrom to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetPeriodDateTo

func (o *DocumentArchiveProductGetProductParams) SetPeriodDateTo(periodDateTo *string)

SetPeriodDateTo adds the periodDateTo to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetSorting

func (o *DocumentArchiveProductGetProductParams) SetSorting(sorting *string)

SetSorting adds the sorting to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) SetTimeout

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

SetTimeout adds the timeout to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithContext

WithContext adds the context to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithCount

WithCount adds the count to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithFields

WithFields adds the fields to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithFrom

WithFrom adds the from to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithID

WithID adds the id to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithPeriodDateFrom

WithPeriodDateFrom adds the periodDateFrom to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithPeriodDateTo

WithPeriodDateTo adds the periodDateTo to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithSorting

WithSorting adds the sorting to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WithTimeout

WithTimeout adds the timeout to the document archive product get product params

func (*DocumentArchiveProductGetProductParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveProductGetProductReader

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

DocumentArchiveProductGetProductReader is a Reader for the DocumentArchiveProductGetProduct structure.

func (*DocumentArchiveProductGetProductReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveProductProductPostCreated

type DocumentArchiveProductProductPostCreated struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchiveProductProductPostCreated handles this case with default header values.

successfully created

func NewDocumentArchiveProductProductPostCreated

func NewDocumentArchiveProductProductPostCreated() *DocumentArchiveProductProductPostCreated

NewDocumentArchiveProductProductPostCreated creates a DocumentArchiveProductProductPostCreated with default headers values

func (*DocumentArchiveProductProductPostCreated) Error

func (*DocumentArchiveProductProductPostCreated) GetPayload

type DocumentArchiveProductProductPostParams

type DocumentArchiveProductProductPostParams struct {

	/*File
	  The file

	*/
	File runtime.NamedReadCloser
	/*ID
	  Element ID

	*/
	ID int32

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

DocumentArchiveProductProductPostParams contains all the parameters to send to the API endpoint for the document archive product product post operation typically these are written to a http.Request

func NewDocumentArchiveProductProductPostParams

func NewDocumentArchiveProductProductPostParams() *DocumentArchiveProductProductPostParams

NewDocumentArchiveProductProductPostParams creates a new DocumentArchiveProductProductPostParams object with the default values initialized.

func NewDocumentArchiveProductProductPostParamsWithContext

func NewDocumentArchiveProductProductPostParamsWithContext(ctx context.Context) *DocumentArchiveProductProductPostParams

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

func NewDocumentArchiveProductProductPostParamsWithHTTPClient

func NewDocumentArchiveProductProductPostParamsWithHTTPClient(client *http.Client) *DocumentArchiveProductProductPostParams

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

func NewDocumentArchiveProductProductPostParamsWithTimeout

func NewDocumentArchiveProductProductPostParamsWithTimeout(timeout time.Duration) *DocumentArchiveProductProductPostParams

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

func (*DocumentArchiveProductProductPostParams) SetContext

SetContext adds the context to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) SetFile

SetFile adds the file to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) SetID

SetID adds the id to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) SetTimeout

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

SetTimeout adds the timeout to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) WithContext

WithContext adds the context to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) WithFile

WithFile adds the file to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) WithID

WithID adds the id to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) WithTimeout

WithTimeout adds the timeout to the document archive product product post params

func (*DocumentArchiveProductProductPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveProductProductPostReader

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

DocumentArchiveProductProductPostReader is a Reader for the DocumentArchiveProductProductPost structure.

func (*DocumentArchiveProductProductPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveProjectGetProjectOK

type DocumentArchiveProjectGetProjectOK struct {
	Payload *models.ListResponseDocumentArchive
}

DocumentArchiveProjectGetProjectOK handles this case with default header values.

successful operation

func NewDocumentArchiveProjectGetProjectOK

func NewDocumentArchiveProjectGetProjectOK() *DocumentArchiveProjectGetProjectOK

NewDocumentArchiveProjectGetProjectOK creates a DocumentArchiveProjectGetProjectOK with default headers values

func (*DocumentArchiveProjectGetProjectOK) Error

func (*DocumentArchiveProjectGetProjectOK) GetPayload

type DocumentArchiveProjectGetProjectParams

type DocumentArchiveProjectGetProjectParams struct {

	/*Count
	  Number of elements to return

	*/
	Count *int64
	/*Fields
	  Fields filter pattern

	*/
	Fields *string
	/*From
	  From index

	*/
	From *int64
	/*ID
	  Element ID

	*/
	ID int32
	/*PeriodDateFrom
	  From and including

	*/
	PeriodDateFrom *string
	/*PeriodDateTo
	  To and excluding

	*/
	PeriodDateTo *string
	/*Sorting
	  Sorting pattern

	*/
	Sorting *string

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

DocumentArchiveProjectGetProjectParams contains all the parameters to send to the API endpoint for the document archive project get project operation typically these are written to a http.Request

func NewDocumentArchiveProjectGetProjectParams

func NewDocumentArchiveProjectGetProjectParams() *DocumentArchiveProjectGetProjectParams

NewDocumentArchiveProjectGetProjectParams creates a new DocumentArchiveProjectGetProjectParams object with the default values initialized.

func NewDocumentArchiveProjectGetProjectParamsWithContext

func NewDocumentArchiveProjectGetProjectParamsWithContext(ctx context.Context) *DocumentArchiveProjectGetProjectParams

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

func NewDocumentArchiveProjectGetProjectParamsWithHTTPClient

func NewDocumentArchiveProjectGetProjectParamsWithHTTPClient(client *http.Client) *DocumentArchiveProjectGetProjectParams

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

func NewDocumentArchiveProjectGetProjectParamsWithTimeout

func NewDocumentArchiveProjectGetProjectParamsWithTimeout(timeout time.Duration) *DocumentArchiveProjectGetProjectParams

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

func (*DocumentArchiveProjectGetProjectParams) SetContext

SetContext adds the context to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetCount

func (o *DocumentArchiveProjectGetProjectParams) SetCount(count *int64)

SetCount adds the count to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetFields

func (o *DocumentArchiveProjectGetProjectParams) SetFields(fields *string)

SetFields adds the fields to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetFrom

SetFrom adds the from to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetID

SetID adds the id to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetPeriodDateFrom

func (o *DocumentArchiveProjectGetProjectParams) SetPeriodDateFrom(periodDateFrom *string)

SetPeriodDateFrom adds the periodDateFrom to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetPeriodDateTo

func (o *DocumentArchiveProjectGetProjectParams) SetPeriodDateTo(periodDateTo *string)

SetPeriodDateTo adds the periodDateTo to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetSorting

func (o *DocumentArchiveProjectGetProjectParams) SetSorting(sorting *string)

SetSorting adds the sorting to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) SetTimeout

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

SetTimeout adds the timeout to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithContext

WithContext adds the context to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithCount

WithCount adds the count to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithFields

WithFields adds the fields to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithFrom

WithFrom adds the from to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithID

WithID adds the id to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithPeriodDateFrom

WithPeriodDateFrom adds the periodDateFrom to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithPeriodDateTo

WithPeriodDateTo adds the periodDateTo to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithSorting

WithSorting adds the sorting to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WithTimeout

WithTimeout adds the timeout to the document archive project get project params

func (*DocumentArchiveProjectGetProjectParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveProjectGetProjectReader

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

DocumentArchiveProjectGetProjectReader is a Reader for the DocumentArchiveProjectGetProject structure.

func (*DocumentArchiveProjectGetProjectReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveProjectProjectPostCreated

type DocumentArchiveProjectProjectPostCreated struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchiveProjectProjectPostCreated handles this case with default header values.

successfully created

func NewDocumentArchiveProjectProjectPostCreated

func NewDocumentArchiveProjectProjectPostCreated() *DocumentArchiveProjectProjectPostCreated

NewDocumentArchiveProjectProjectPostCreated creates a DocumentArchiveProjectProjectPostCreated with default headers values

func (*DocumentArchiveProjectProjectPostCreated) Error

func (*DocumentArchiveProjectProjectPostCreated) GetPayload

type DocumentArchiveProjectProjectPostParams

type DocumentArchiveProjectProjectPostParams struct {

	/*File
	  The file

	*/
	File runtime.NamedReadCloser
	/*ID
	  Element ID

	*/
	ID int32

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

DocumentArchiveProjectProjectPostParams contains all the parameters to send to the API endpoint for the document archive project project post operation typically these are written to a http.Request

func NewDocumentArchiveProjectProjectPostParams

func NewDocumentArchiveProjectProjectPostParams() *DocumentArchiveProjectProjectPostParams

NewDocumentArchiveProjectProjectPostParams creates a new DocumentArchiveProjectProjectPostParams object with the default values initialized.

func NewDocumentArchiveProjectProjectPostParamsWithContext

func NewDocumentArchiveProjectProjectPostParamsWithContext(ctx context.Context) *DocumentArchiveProjectProjectPostParams

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

func NewDocumentArchiveProjectProjectPostParamsWithHTTPClient

func NewDocumentArchiveProjectProjectPostParamsWithHTTPClient(client *http.Client) *DocumentArchiveProjectProjectPostParams

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

func NewDocumentArchiveProjectProjectPostParamsWithTimeout

func NewDocumentArchiveProjectProjectPostParamsWithTimeout(timeout time.Duration) *DocumentArchiveProjectProjectPostParams

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

func (*DocumentArchiveProjectProjectPostParams) SetContext

SetContext adds the context to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) SetFile

SetFile adds the file to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) SetID

SetID adds the id to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) SetTimeout

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

SetTimeout adds the timeout to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) WithContext

WithContext adds the context to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) WithFile

WithFile adds the file to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) WithID

WithID adds the id to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) WithTimeout

WithTimeout adds the timeout to the document archive project project post params

func (*DocumentArchiveProjectProjectPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveProjectProjectPostReader

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

DocumentArchiveProjectProjectPostReader is a Reader for the DocumentArchiveProjectProjectPost structure.

func (*DocumentArchiveProjectProjectPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveProspectGetProspectOK

type DocumentArchiveProspectGetProspectOK struct {
	Payload *models.ListResponseDocumentArchive
}

DocumentArchiveProspectGetProspectOK handles this case with default header values.

successful operation

func NewDocumentArchiveProspectGetProspectOK

func NewDocumentArchiveProspectGetProspectOK() *DocumentArchiveProspectGetProspectOK

NewDocumentArchiveProspectGetProspectOK creates a DocumentArchiveProspectGetProspectOK with default headers values

func (*DocumentArchiveProspectGetProspectOK) Error

func (*DocumentArchiveProspectGetProspectOK) GetPayload

type DocumentArchiveProspectGetProspectParams

type DocumentArchiveProspectGetProspectParams struct {

	/*Count
	  Number of elements to return

	*/
	Count *int64
	/*Fields
	  Fields filter pattern

	*/
	Fields *string
	/*From
	  From index

	*/
	From *int64
	/*ID
	  Element ID

	*/
	ID int32
	/*PeriodDateFrom
	  From and including

	*/
	PeriodDateFrom *string
	/*PeriodDateTo
	  To and excluding

	*/
	PeriodDateTo *string
	/*Sorting
	  Sorting pattern

	*/
	Sorting *string

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

DocumentArchiveProspectGetProspectParams contains all the parameters to send to the API endpoint for the document archive prospect get prospect operation typically these are written to a http.Request

func NewDocumentArchiveProspectGetProspectParams

func NewDocumentArchiveProspectGetProspectParams() *DocumentArchiveProspectGetProspectParams

NewDocumentArchiveProspectGetProspectParams creates a new DocumentArchiveProspectGetProspectParams object with the default values initialized.

func NewDocumentArchiveProspectGetProspectParamsWithContext

func NewDocumentArchiveProspectGetProspectParamsWithContext(ctx context.Context) *DocumentArchiveProspectGetProspectParams

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

func NewDocumentArchiveProspectGetProspectParamsWithHTTPClient

func NewDocumentArchiveProspectGetProspectParamsWithHTTPClient(client *http.Client) *DocumentArchiveProspectGetProspectParams

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

func NewDocumentArchiveProspectGetProspectParamsWithTimeout

func NewDocumentArchiveProspectGetProspectParamsWithTimeout(timeout time.Duration) *DocumentArchiveProspectGetProspectParams

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

func (*DocumentArchiveProspectGetProspectParams) SetContext

SetContext adds the context to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetCount

func (o *DocumentArchiveProspectGetProspectParams) SetCount(count *int64)

SetCount adds the count to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetFields

func (o *DocumentArchiveProspectGetProspectParams) SetFields(fields *string)

SetFields adds the fields to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetFrom

SetFrom adds the from to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetID

SetID adds the id to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetPeriodDateFrom

func (o *DocumentArchiveProspectGetProspectParams) SetPeriodDateFrom(periodDateFrom *string)

SetPeriodDateFrom adds the periodDateFrom to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetPeriodDateTo

func (o *DocumentArchiveProspectGetProspectParams) SetPeriodDateTo(periodDateTo *string)

SetPeriodDateTo adds the periodDateTo to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetSorting

func (o *DocumentArchiveProspectGetProspectParams) SetSorting(sorting *string)

SetSorting adds the sorting to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) SetTimeout

SetTimeout adds the timeout to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithContext

WithContext adds the context to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithCount

WithCount adds the count to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithFields

WithFields adds the fields to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithFrom

WithFrom adds the from to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithID

WithID adds the id to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithPeriodDateFrom

WithPeriodDateFrom adds the periodDateFrom to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithPeriodDateTo

WithPeriodDateTo adds the periodDateTo to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithSorting

WithSorting adds the sorting to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WithTimeout

WithTimeout adds the timeout to the document archive prospect get prospect params

func (*DocumentArchiveProspectGetProspectParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveProspectGetProspectReader

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

DocumentArchiveProspectGetProspectReader is a Reader for the DocumentArchiveProspectGetProspect structure.

func (*DocumentArchiveProspectGetProspectReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveProspectProspectPostCreated

type DocumentArchiveProspectProspectPostCreated struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchiveProspectProspectPostCreated handles this case with default header values.

successfully created

func NewDocumentArchiveProspectProspectPostCreated

func NewDocumentArchiveProspectProspectPostCreated() *DocumentArchiveProspectProspectPostCreated

NewDocumentArchiveProspectProspectPostCreated creates a DocumentArchiveProspectProspectPostCreated with default headers values

func (*DocumentArchiveProspectProspectPostCreated) Error

func (*DocumentArchiveProspectProspectPostCreated) GetPayload

type DocumentArchiveProspectProspectPostParams

type DocumentArchiveProspectProspectPostParams struct {

	/*File
	  The file

	*/
	File runtime.NamedReadCloser
	/*ID
	  Element ID

	*/
	ID int32

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

DocumentArchiveProspectProspectPostParams contains all the parameters to send to the API endpoint for the document archive prospect prospect post operation typically these are written to a http.Request

func NewDocumentArchiveProspectProspectPostParams

func NewDocumentArchiveProspectProspectPostParams() *DocumentArchiveProspectProspectPostParams

NewDocumentArchiveProspectProspectPostParams creates a new DocumentArchiveProspectProspectPostParams object with the default values initialized.

func NewDocumentArchiveProspectProspectPostParamsWithContext

func NewDocumentArchiveProspectProspectPostParamsWithContext(ctx context.Context) *DocumentArchiveProspectProspectPostParams

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

func NewDocumentArchiveProspectProspectPostParamsWithHTTPClient

func NewDocumentArchiveProspectProspectPostParamsWithHTTPClient(client *http.Client) *DocumentArchiveProspectProspectPostParams

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

func NewDocumentArchiveProspectProspectPostParamsWithTimeout

func NewDocumentArchiveProspectProspectPostParamsWithTimeout(timeout time.Duration) *DocumentArchiveProspectProspectPostParams

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

func (*DocumentArchiveProspectProspectPostParams) SetContext

SetContext adds the context to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) SetFile

SetFile adds the file to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) SetID

SetID adds the id to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) SetTimeout

SetTimeout adds the timeout to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) WithContext

WithContext adds the context to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) WithFile

WithFile adds the file to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) WithID

WithID adds the id to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) WithTimeout

WithTimeout adds the timeout to the document archive prospect prospect post params

func (*DocumentArchiveProspectProspectPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveProspectProspectPostReader

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

DocumentArchiveProspectProspectPostReader is a Reader for the DocumentArchiveProspectProspectPost structure.

func (*DocumentArchiveProspectProspectPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchivePutOK

type DocumentArchivePutOK struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchivePutOK handles this case with default header values.

successful operation

func NewDocumentArchivePutOK

func NewDocumentArchivePutOK() *DocumentArchivePutOK

NewDocumentArchivePutOK creates a DocumentArchivePutOK with default headers values

func (*DocumentArchivePutOK) Error

func (o *DocumentArchivePutOK) Error() string

func (*DocumentArchivePutOK) GetPayload

type DocumentArchivePutParams

type DocumentArchivePutParams struct {

	/*Body
	  Partial object describing what should be updated

	*/
	Body *models.DocumentArchive
	/*ID
	  Element ID

	*/
	ID int32

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

DocumentArchivePutParams contains all the parameters to send to the API endpoint for the document archive put operation typically these are written to a http.Request

func NewDocumentArchivePutParams

func NewDocumentArchivePutParams() *DocumentArchivePutParams

NewDocumentArchivePutParams creates a new DocumentArchivePutParams object with the default values initialized.

func NewDocumentArchivePutParamsWithContext

func NewDocumentArchivePutParamsWithContext(ctx context.Context) *DocumentArchivePutParams

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

func NewDocumentArchivePutParamsWithHTTPClient

func NewDocumentArchivePutParamsWithHTTPClient(client *http.Client) *DocumentArchivePutParams

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

func NewDocumentArchivePutParamsWithTimeout

func NewDocumentArchivePutParamsWithTimeout(timeout time.Duration) *DocumentArchivePutParams

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

func (*DocumentArchivePutParams) SetBody

SetBody adds the body to the document archive put params

func (*DocumentArchivePutParams) SetContext

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

SetContext adds the context to the document archive put params

func (*DocumentArchivePutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive put params

func (*DocumentArchivePutParams) SetID

func (o *DocumentArchivePutParams) SetID(id int32)

SetID adds the id to the document archive put params

func (*DocumentArchivePutParams) SetTimeout

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

SetTimeout adds the timeout to the document archive put params

func (*DocumentArchivePutParams) WithBody

WithBody adds the body to the document archive put params

func (*DocumentArchivePutParams) WithContext

WithContext adds the context to the document archive put params

func (*DocumentArchivePutParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the document archive put params

func (*DocumentArchivePutParams) WithID

WithID adds the id to the document archive put params

func (*DocumentArchivePutParams) WithTimeout

WithTimeout adds the timeout to the document archive put params

func (*DocumentArchivePutParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchivePutReader

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

DocumentArchivePutReader is a Reader for the DocumentArchivePut structure.

func (*DocumentArchivePutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveReceptionReceptionPostCreated

type DocumentArchiveReceptionReceptionPostCreated struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchiveReceptionReceptionPostCreated handles this case with default header values.

successfully created

func NewDocumentArchiveReceptionReceptionPostCreated

func NewDocumentArchiveReceptionReceptionPostCreated() *DocumentArchiveReceptionReceptionPostCreated

NewDocumentArchiveReceptionReceptionPostCreated creates a DocumentArchiveReceptionReceptionPostCreated with default headers values

func (*DocumentArchiveReceptionReceptionPostCreated) Error

func (*DocumentArchiveReceptionReceptionPostCreated) GetPayload

type DocumentArchiveReceptionReceptionPostParams

type DocumentArchiveReceptionReceptionPostParams struct {

	/*File
	  The file

	*/
	File runtime.NamedReadCloser

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

DocumentArchiveReceptionReceptionPostParams contains all the parameters to send to the API endpoint for the document archive reception reception post operation typically these are written to a http.Request

func NewDocumentArchiveReceptionReceptionPostParams

func NewDocumentArchiveReceptionReceptionPostParams() *DocumentArchiveReceptionReceptionPostParams

NewDocumentArchiveReceptionReceptionPostParams creates a new DocumentArchiveReceptionReceptionPostParams object with the default values initialized.

func NewDocumentArchiveReceptionReceptionPostParamsWithContext

func NewDocumentArchiveReceptionReceptionPostParamsWithContext(ctx context.Context) *DocumentArchiveReceptionReceptionPostParams

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

func NewDocumentArchiveReceptionReceptionPostParamsWithHTTPClient

func NewDocumentArchiveReceptionReceptionPostParamsWithHTTPClient(client *http.Client) *DocumentArchiveReceptionReceptionPostParams

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

func NewDocumentArchiveReceptionReceptionPostParamsWithTimeout

func NewDocumentArchiveReceptionReceptionPostParamsWithTimeout(timeout time.Duration) *DocumentArchiveReceptionReceptionPostParams

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

func (*DocumentArchiveReceptionReceptionPostParams) SetContext

SetContext adds the context to the document archive reception reception post params

func (*DocumentArchiveReceptionReceptionPostParams) SetFile

SetFile adds the file to the document archive reception reception post params

func (*DocumentArchiveReceptionReceptionPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive reception reception post params

func (*DocumentArchiveReceptionReceptionPostParams) SetTimeout

SetTimeout adds the timeout to the document archive reception reception post params

func (*DocumentArchiveReceptionReceptionPostParams) WithContext

WithContext adds the context to the document archive reception reception post params

func (*DocumentArchiveReceptionReceptionPostParams) WithFile

WithFile adds the file to the document archive reception reception post params

func (*DocumentArchiveReceptionReceptionPostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive reception reception post params

func (*DocumentArchiveReceptionReceptionPostParams) WithTimeout

WithTimeout adds the timeout to the document archive reception reception post params

func (*DocumentArchiveReceptionReceptionPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveReceptionReceptionPostReader

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

DocumentArchiveReceptionReceptionPostReader is a Reader for the DocumentArchiveReceptionReceptionPost structure.

func (*DocumentArchiveReceptionReceptionPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveSupplierGetSupplierOK

type DocumentArchiveSupplierGetSupplierOK struct {
	Payload *models.ListResponseDocumentArchive
}

DocumentArchiveSupplierGetSupplierOK handles this case with default header values.

successful operation

func NewDocumentArchiveSupplierGetSupplierOK

func NewDocumentArchiveSupplierGetSupplierOK() *DocumentArchiveSupplierGetSupplierOK

NewDocumentArchiveSupplierGetSupplierOK creates a DocumentArchiveSupplierGetSupplierOK with default headers values

func (*DocumentArchiveSupplierGetSupplierOK) Error

func (*DocumentArchiveSupplierGetSupplierOK) GetPayload

type DocumentArchiveSupplierGetSupplierParams

type DocumentArchiveSupplierGetSupplierParams struct {

	/*Count
	  Number of elements to return

	*/
	Count *int64
	/*Fields
	  Fields filter pattern

	*/
	Fields *string
	/*From
	  From index

	*/
	From *int64
	/*ID
	  Element ID

	*/
	ID int32
	/*PeriodDateFrom
	  From and including

	*/
	PeriodDateFrom *string
	/*PeriodDateTo
	  To and excluding

	*/
	PeriodDateTo *string
	/*Sorting
	  Sorting pattern

	*/
	Sorting *string

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

DocumentArchiveSupplierGetSupplierParams contains all the parameters to send to the API endpoint for the document archive supplier get supplier operation typically these are written to a http.Request

func NewDocumentArchiveSupplierGetSupplierParams

func NewDocumentArchiveSupplierGetSupplierParams() *DocumentArchiveSupplierGetSupplierParams

NewDocumentArchiveSupplierGetSupplierParams creates a new DocumentArchiveSupplierGetSupplierParams object with the default values initialized.

func NewDocumentArchiveSupplierGetSupplierParamsWithContext

func NewDocumentArchiveSupplierGetSupplierParamsWithContext(ctx context.Context) *DocumentArchiveSupplierGetSupplierParams

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

func NewDocumentArchiveSupplierGetSupplierParamsWithHTTPClient

func NewDocumentArchiveSupplierGetSupplierParamsWithHTTPClient(client *http.Client) *DocumentArchiveSupplierGetSupplierParams

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

func NewDocumentArchiveSupplierGetSupplierParamsWithTimeout

func NewDocumentArchiveSupplierGetSupplierParamsWithTimeout(timeout time.Duration) *DocumentArchiveSupplierGetSupplierParams

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

func (*DocumentArchiveSupplierGetSupplierParams) SetContext

SetContext adds the context to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetCount

func (o *DocumentArchiveSupplierGetSupplierParams) SetCount(count *int64)

SetCount adds the count to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetFields

func (o *DocumentArchiveSupplierGetSupplierParams) SetFields(fields *string)

SetFields adds the fields to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetFrom

SetFrom adds the from to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetID

SetID adds the id to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetPeriodDateFrom

func (o *DocumentArchiveSupplierGetSupplierParams) SetPeriodDateFrom(periodDateFrom *string)

SetPeriodDateFrom adds the periodDateFrom to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetPeriodDateTo

func (o *DocumentArchiveSupplierGetSupplierParams) SetPeriodDateTo(periodDateTo *string)

SetPeriodDateTo adds the periodDateTo to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetSorting

func (o *DocumentArchiveSupplierGetSupplierParams) SetSorting(sorting *string)

SetSorting adds the sorting to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) SetTimeout

SetTimeout adds the timeout to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithContext

WithContext adds the context to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithCount

WithCount adds the count to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithFields

WithFields adds the fields to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithFrom

WithFrom adds the from to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithID

WithID adds the id to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithPeriodDateFrom

WithPeriodDateFrom adds the periodDateFrom to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithPeriodDateTo

WithPeriodDateTo adds the periodDateTo to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithSorting

WithSorting adds the sorting to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WithTimeout

WithTimeout adds the timeout to the document archive supplier get supplier params

func (*DocumentArchiveSupplierGetSupplierParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveSupplierGetSupplierReader

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

DocumentArchiveSupplierGetSupplierReader is a Reader for the DocumentArchiveSupplierGetSupplier structure.

func (*DocumentArchiveSupplierGetSupplierReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DocumentArchiveSupplierSupplierPostCreated

type DocumentArchiveSupplierSupplierPostCreated struct {
	Payload *models.ResponseWrapperDocumentArchive
}

DocumentArchiveSupplierSupplierPostCreated handles this case with default header values.

successfully created

func NewDocumentArchiveSupplierSupplierPostCreated

func NewDocumentArchiveSupplierSupplierPostCreated() *DocumentArchiveSupplierSupplierPostCreated

NewDocumentArchiveSupplierSupplierPostCreated creates a DocumentArchiveSupplierSupplierPostCreated with default headers values

func (*DocumentArchiveSupplierSupplierPostCreated) Error

func (*DocumentArchiveSupplierSupplierPostCreated) GetPayload

type DocumentArchiveSupplierSupplierPostParams

type DocumentArchiveSupplierSupplierPostParams struct {

	/*File
	  The file

	*/
	File runtime.NamedReadCloser
	/*ID
	  Element ID

	*/
	ID int32

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

DocumentArchiveSupplierSupplierPostParams contains all the parameters to send to the API endpoint for the document archive supplier supplier post operation typically these are written to a http.Request

func NewDocumentArchiveSupplierSupplierPostParams

func NewDocumentArchiveSupplierSupplierPostParams() *DocumentArchiveSupplierSupplierPostParams

NewDocumentArchiveSupplierSupplierPostParams creates a new DocumentArchiveSupplierSupplierPostParams object with the default values initialized.

func NewDocumentArchiveSupplierSupplierPostParamsWithContext

func NewDocumentArchiveSupplierSupplierPostParamsWithContext(ctx context.Context) *DocumentArchiveSupplierSupplierPostParams

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

func NewDocumentArchiveSupplierSupplierPostParamsWithHTTPClient

func NewDocumentArchiveSupplierSupplierPostParamsWithHTTPClient(client *http.Client) *DocumentArchiveSupplierSupplierPostParams

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

func NewDocumentArchiveSupplierSupplierPostParamsWithTimeout

func NewDocumentArchiveSupplierSupplierPostParamsWithTimeout(timeout time.Duration) *DocumentArchiveSupplierSupplierPostParams

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

func (*DocumentArchiveSupplierSupplierPostParams) SetContext

SetContext adds the context to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) SetFile

SetFile adds the file to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) SetID

SetID adds the id to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) SetTimeout

SetTimeout adds the timeout to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) WithContext

WithContext adds the context to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) WithFile

WithFile adds the file to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) WithID

WithID adds the id to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) WithTimeout

WithTimeout adds the timeout to the document archive supplier supplier post params

func (*DocumentArchiveSupplierSupplierPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DocumentArchiveSupplierSupplierPostReader

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

DocumentArchiveSupplierSupplierPostReader is a Reader for the DocumentArchiveSupplierSupplierPost structure.

func (*DocumentArchiveSupplierSupplierPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Source Files

Jump to

Keyboard shortcuts

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