public_items

package
v0.72.0 Latest Latest
Warning

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

Go to latest
Published: Aug 5, 2024 License: MIT Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const (
	PublicListItemsCreatedAtConstant     = "createdAt"
	PublicListItemsCreatedAtAscConstant  = "createdAt:asc"
	PublicListItemsCreatedAtDescConstant = "createdAt:desc"
	PublicListItemsUpdatedAtConstant     = "updatedAt"
	PublicListItemsUpdatedAtAscConstant  = "updatedAt:asc"
	PublicListItemsUpdatedAtDescConstant = "updatedAt:desc"
)

Get the enum in PublicListItemsParams

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for public items API

func (*Client) PublicBulkRemoveMyItems deprecated

Deprecated: 2022-08-10 - Use PublicBulkRemoveMyItemsShort instead.

PublicBulkRemoveMyItems to bulk remove items

Bulk remove user's own items.

func (*Client) PublicBulkRemoveMyItemsShort

func (a *Client) PublicBulkRemoveMyItemsShort(params *PublicBulkRemoveMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicBulkRemoveMyItemsOK, error)

PublicBulkRemoveMyItemsShort to bulk remove items

Bulk remove user's own items.

func (*Client) PublicBulkUpdateMyItems deprecated

Deprecated: 2022-08-10 - Use PublicBulkUpdateMyItemsShort instead.

PublicBulkUpdateMyItems to bulk update items

Bulk Updating user's own items.

func (*Client) PublicBulkUpdateMyItemsShort

func (a *Client) PublicBulkUpdateMyItemsShort(params *PublicBulkUpdateMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicBulkUpdateMyItemsOK, error)

PublicBulkUpdateMyItemsShort to bulk update items

Bulk Updating user's own items.

func (*Client) PublicConsumeMyItem deprecated

Deprecated: 2022-08-10 - Use PublicConsumeMyItemShort instead.

PublicConsumeMyItem to consume item

Consume user's own item.

func (*Client) PublicConsumeMyItemShort

func (a *Client) PublicConsumeMyItemShort(params *PublicConsumeMyItemParams, authInfo runtime.ClientAuthInfoWriter) (*PublicConsumeMyItemOK, error)

PublicConsumeMyItemShort to consume item

Consume user's own item.

func (*Client) PublicGetItem deprecated

Deprecated: 2022-08-10 - Use PublicGetItemShort instead.

PublicGetItem to get an item

Getting an user's owned item info.

func (*Client) PublicGetItemShort

func (a *Client) PublicGetItemShort(params *PublicGetItemParams, authInfo runtime.ClientAuthInfoWriter) (*PublicGetItemOK, error)

PublicGetItemShort to get an item

Getting an user's owned item info.

func (*Client) PublicListItems deprecated

Deprecated: 2022-08-10 - Use PublicListItemsShort instead.

PublicListItems to list all items

Listing all user's owned items in an inventory. The response body will be in the form of standard pagination.

func (*Client) PublicListItemsShort

func (a *Client) PublicListItemsShort(params *PublicListItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicListItemsOK, error)

PublicListItemsShort to list all items

Listing all user's owned items in an inventory. The response body will be in the form of standard pagination.

func (*Client) PublicMoveMyItems deprecated

Deprecated: 2022-08-10 - Use PublicMoveMyItemsShort instead.

PublicMoveMyItems to move items between my inventories

Move items between inventories that is owned by the same user.

Currently, this endpoint supports transferring items exclusively from source OTHER. Items from source ECOMMERCE are not yet eligible for transfer. We are working on expanding support to include source ECOMMERCE in future updates.

func (*Client) PublicMoveMyItemsShort

func (a *Client) PublicMoveMyItemsShort(params *PublicMoveMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicMoveMyItemsOK, error)

PublicMoveMyItemsShort to move items between my inventories

Move items between inventories that is owned by the same user.

Currently, this endpoint supports transferring items exclusively from source OTHER. Items from source ECOMMERCE are not yet eligible for transfer. We are working on expanding support to include source ECOMMERCE in future updates.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	PublicConsumeMyItem(params *PublicConsumeMyItemParams, authInfo runtime.ClientAuthInfoWriter) (*PublicConsumeMyItemOK, *PublicConsumeMyItemBadRequest, *PublicConsumeMyItemNotFound, *PublicConsumeMyItemInternalServerError, error)
	PublicConsumeMyItemShort(params *PublicConsumeMyItemParams, authInfo runtime.ClientAuthInfoWriter) (*PublicConsumeMyItemOK, error)
	PublicListItems(params *PublicListItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicListItemsOK, *PublicListItemsBadRequest, *PublicListItemsInternalServerError, error)
	PublicListItemsShort(params *PublicListItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicListItemsOK, error)
	PublicBulkUpdateMyItems(params *PublicBulkUpdateMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicBulkUpdateMyItemsOK, *PublicBulkUpdateMyItemsBadRequest, *PublicBulkUpdateMyItemsNotFound, *PublicBulkUpdateMyItemsInternalServerError, error)
	PublicBulkUpdateMyItemsShort(params *PublicBulkUpdateMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicBulkUpdateMyItemsOK, error)
	PublicBulkRemoveMyItems(params *PublicBulkRemoveMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicBulkRemoveMyItemsOK, *PublicBulkRemoveMyItemsBadRequest, *PublicBulkRemoveMyItemsNotFound, *PublicBulkRemoveMyItemsInternalServerError, error)
	PublicBulkRemoveMyItemsShort(params *PublicBulkRemoveMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicBulkRemoveMyItemsOK, error)
	PublicMoveMyItems(params *PublicMoveMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicMoveMyItemsOK, *PublicMoveMyItemsBadRequest, *PublicMoveMyItemsInternalServerError, error)
	PublicMoveMyItemsShort(params *PublicMoveMyItemsParams, authInfo runtime.ClientAuthInfoWriter) (*PublicMoveMyItemsOK, error)
	PublicGetItem(params *PublicGetItemParams, authInfo runtime.ClientAuthInfoWriter) (*PublicGetItemOK, *PublicGetItemBadRequest, *PublicGetItemNotFound, *PublicGetItemInternalServerError, error)
	PublicGetItemShort(params *PublicGetItemParams, authInfo runtime.ClientAuthInfoWriter) (*PublicGetItemOK, 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 public items API client.

type PublicBulkRemoveMyItemsBadRequest

type PublicBulkRemoveMyItemsBadRequest struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicBulkRemoveMyItemsBadRequest handles this case with default header values.

Bad Request

func NewPublicBulkRemoveMyItemsBadRequest

func NewPublicBulkRemoveMyItemsBadRequest() *PublicBulkRemoveMyItemsBadRequest

NewPublicBulkRemoveMyItemsBadRequest creates a PublicBulkRemoveMyItemsBadRequest with default headers values

func (*PublicBulkRemoveMyItemsBadRequest) Error

func (*PublicBulkRemoveMyItemsBadRequest) GetPayload

func (*PublicBulkRemoveMyItemsBadRequest) ToJSONString

func (o *PublicBulkRemoveMyItemsBadRequest) ToJSONString() string

type PublicBulkRemoveMyItemsInternalServerError

type PublicBulkRemoveMyItemsInternalServerError struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicBulkRemoveMyItemsInternalServerError handles this case with default header values.

Internal Server Error

func NewPublicBulkRemoveMyItemsInternalServerError

func NewPublicBulkRemoveMyItemsInternalServerError() *PublicBulkRemoveMyItemsInternalServerError

NewPublicBulkRemoveMyItemsInternalServerError creates a PublicBulkRemoveMyItemsInternalServerError with default headers values

func (*PublicBulkRemoveMyItemsInternalServerError) Error

func (*PublicBulkRemoveMyItemsInternalServerError) GetPayload

func (*PublicBulkRemoveMyItemsInternalServerError) ToJSONString

type PublicBulkRemoveMyItemsNotFound

type PublicBulkRemoveMyItemsNotFound struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicBulkRemoveMyItemsNotFound handles this case with default header values.

Not Found

func NewPublicBulkRemoveMyItemsNotFound

func NewPublicBulkRemoveMyItemsNotFound() *PublicBulkRemoveMyItemsNotFound

NewPublicBulkRemoveMyItemsNotFound creates a PublicBulkRemoveMyItemsNotFound with default headers values

func (*PublicBulkRemoveMyItemsNotFound) Error

func (*PublicBulkRemoveMyItemsNotFound) GetPayload

func (*PublicBulkRemoveMyItemsNotFound) ToJSONString

func (o *PublicBulkRemoveMyItemsNotFound) ToJSONString() string

type PublicBulkRemoveMyItemsOK

type PublicBulkRemoveMyItemsOK struct {
	Payload []*inventoryclientmodels.ApimodelsUpdateItemResp
}

PublicBulkRemoveMyItemsOK handles this case with default header values.

OK

func NewPublicBulkRemoveMyItemsOK

func NewPublicBulkRemoveMyItemsOK() *PublicBulkRemoveMyItemsOK

NewPublicBulkRemoveMyItemsOK creates a PublicBulkRemoveMyItemsOK with default headers values

func (*PublicBulkRemoveMyItemsOK) Error

func (o *PublicBulkRemoveMyItemsOK) Error() string

func (*PublicBulkRemoveMyItemsOK) GetPayload

func (*PublicBulkRemoveMyItemsOK) ToJSONString

func (o *PublicBulkRemoveMyItemsOK) ToJSONString() string

type PublicBulkRemoveMyItemsParams

type PublicBulkRemoveMyItemsParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Body*/
	Body []*inventoryclientmodels.ApimodelsRemoveInventoryItemReq
	/*InventoryID
	  InventoryID

	*/
	InventoryID string
	/*Namespace
	  Namespace

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

PublicBulkRemoveMyItemsParams contains all the parameters to send to the API endpoint for the public bulk remove my items operation typically these are written to a http.Request

func NewPublicBulkRemoveMyItemsParams

func NewPublicBulkRemoveMyItemsParams() *PublicBulkRemoveMyItemsParams

NewPublicBulkRemoveMyItemsParams creates a new PublicBulkRemoveMyItemsParams object with the default values initialized.

func NewPublicBulkRemoveMyItemsParamsWithContext

func NewPublicBulkRemoveMyItemsParamsWithContext(ctx context.Context) *PublicBulkRemoveMyItemsParams

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

func NewPublicBulkRemoveMyItemsParamsWithHTTPClient

func NewPublicBulkRemoveMyItemsParamsWithHTTPClient(client *http.Client) *PublicBulkRemoveMyItemsParams

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

func NewPublicBulkRemoveMyItemsParamsWithTimeout

func NewPublicBulkRemoveMyItemsParamsWithTimeout(timeout time.Duration) *PublicBulkRemoveMyItemsParams

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

func (*PublicBulkRemoveMyItemsParams) SetAuthInfoWriter

func (o *PublicBulkRemoveMyItemsParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) SetBody

SetBody adds the body to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) SetContext

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

SetContext adds the context to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) SetFlightId added in v0.63.0

func (o *PublicBulkRemoveMyItemsParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*PublicBulkRemoveMyItemsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) SetHTTPClientTransport

func (o *PublicBulkRemoveMyItemsParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) SetInventoryID

func (o *PublicBulkRemoveMyItemsParams) SetInventoryID(inventoryID string)

SetInventoryID adds the inventoryId to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) SetNamespace

func (o *PublicBulkRemoveMyItemsParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) SetTimeout

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

SetTimeout adds the timeout to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) WithBody

WithBody adds the body to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) WithContext

WithContext adds the context to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) WithInventoryID

func (o *PublicBulkRemoveMyItemsParams) WithInventoryID(inventoryID string) *PublicBulkRemoveMyItemsParams

WithInventoryID adds the inventoryID to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) WithNamespace

WithNamespace adds the namespace to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) WithTimeout

WithTimeout adds the timeout to the public bulk remove my items params

func (*PublicBulkRemoveMyItemsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PublicBulkRemoveMyItemsReader

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

PublicBulkRemoveMyItemsReader is a Reader for the PublicBulkRemoveMyItems structure.

func (*PublicBulkRemoveMyItemsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PublicBulkUpdateMyItemsBadRequest

type PublicBulkUpdateMyItemsBadRequest struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicBulkUpdateMyItemsBadRequest handles this case with default header values.

Bad Request

func NewPublicBulkUpdateMyItemsBadRequest

func NewPublicBulkUpdateMyItemsBadRequest() *PublicBulkUpdateMyItemsBadRequest

NewPublicBulkUpdateMyItemsBadRequest creates a PublicBulkUpdateMyItemsBadRequest with default headers values

func (*PublicBulkUpdateMyItemsBadRequest) Error

func (*PublicBulkUpdateMyItemsBadRequest) GetPayload

func (*PublicBulkUpdateMyItemsBadRequest) ToJSONString

func (o *PublicBulkUpdateMyItemsBadRequest) ToJSONString() string

type PublicBulkUpdateMyItemsInternalServerError

type PublicBulkUpdateMyItemsInternalServerError struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicBulkUpdateMyItemsInternalServerError handles this case with default header values.

Internal Server Error

func NewPublicBulkUpdateMyItemsInternalServerError

func NewPublicBulkUpdateMyItemsInternalServerError() *PublicBulkUpdateMyItemsInternalServerError

NewPublicBulkUpdateMyItemsInternalServerError creates a PublicBulkUpdateMyItemsInternalServerError with default headers values

func (*PublicBulkUpdateMyItemsInternalServerError) Error

func (*PublicBulkUpdateMyItemsInternalServerError) GetPayload

func (*PublicBulkUpdateMyItemsInternalServerError) ToJSONString

type PublicBulkUpdateMyItemsNotFound

type PublicBulkUpdateMyItemsNotFound struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicBulkUpdateMyItemsNotFound handles this case with default header values.

Not Found

func NewPublicBulkUpdateMyItemsNotFound

func NewPublicBulkUpdateMyItemsNotFound() *PublicBulkUpdateMyItemsNotFound

NewPublicBulkUpdateMyItemsNotFound creates a PublicBulkUpdateMyItemsNotFound with default headers values

func (*PublicBulkUpdateMyItemsNotFound) Error

func (*PublicBulkUpdateMyItemsNotFound) GetPayload

func (*PublicBulkUpdateMyItemsNotFound) ToJSONString

func (o *PublicBulkUpdateMyItemsNotFound) ToJSONString() string

type PublicBulkUpdateMyItemsOK

type PublicBulkUpdateMyItemsOK struct {
	Payload []*inventoryclientmodels.ApimodelsUpdateItemResp
}

PublicBulkUpdateMyItemsOK handles this case with default header values.

OK

func NewPublicBulkUpdateMyItemsOK

func NewPublicBulkUpdateMyItemsOK() *PublicBulkUpdateMyItemsOK

NewPublicBulkUpdateMyItemsOK creates a PublicBulkUpdateMyItemsOK with default headers values

func (*PublicBulkUpdateMyItemsOK) Error

func (o *PublicBulkUpdateMyItemsOK) Error() string

func (*PublicBulkUpdateMyItemsOK) GetPayload

func (*PublicBulkUpdateMyItemsOK) ToJSONString

func (o *PublicBulkUpdateMyItemsOK) ToJSONString() string

type PublicBulkUpdateMyItemsParams

type PublicBulkUpdateMyItemsParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Body*/
	Body []*inventoryclientmodels.ApimodelsUpdateItemReq
	/*InventoryID
	  InventoryID

	*/
	InventoryID string
	/*Namespace
	  Namespace

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

PublicBulkUpdateMyItemsParams contains all the parameters to send to the API endpoint for the public bulk update my items operation typically these are written to a http.Request

func NewPublicBulkUpdateMyItemsParams

func NewPublicBulkUpdateMyItemsParams() *PublicBulkUpdateMyItemsParams

NewPublicBulkUpdateMyItemsParams creates a new PublicBulkUpdateMyItemsParams object with the default values initialized.

func NewPublicBulkUpdateMyItemsParamsWithContext

func NewPublicBulkUpdateMyItemsParamsWithContext(ctx context.Context) *PublicBulkUpdateMyItemsParams

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

func NewPublicBulkUpdateMyItemsParamsWithHTTPClient

func NewPublicBulkUpdateMyItemsParamsWithHTTPClient(client *http.Client) *PublicBulkUpdateMyItemsParams

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

func NewPublicBulkUpdateMyItemsParamsWithTimeout

func NewPublicBulkUpdateMyItemsParamsWithTimeout(timeout time.Duration) *PublicBulkUpdateMyItemsParams

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

func (*PublicBulkUpdateMyItemsParams) SetAuthInfoWriter

func (o *PublicBulkUpdateMyItemsParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) SetBody

SetBody adds the body to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) SetContext

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

SetContext adds the context to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) SetFlightId added in v0.63.0

func (o *PublicBulkUpdateMyItemsParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*PublicBulkUpdateMyItemsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) SetHTTPClientTransport

func (o *PublicBulkUpdateMyItemsParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) SetInventoryID

func (o *PublicBulkUpdateMyItemsParams) SetInventoryID(inventoryID string)

SetInventoryID adds the inventoryId to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) SetNamespace

func (o *PublicBulkUpdateMyItemsParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) SetTimeout

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

SetTimeout adds the timeout to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) WithBody

WithBody adds the body to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) WithContext

WithContext adds the context to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) WithInventoryID

func (o *PublicBulkUpdateMyItemsParams) WithInventoryID(inventoryID string) *PublicBulkUpdateMyItemsParams

WithInventoryID adds the inventoryID to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) WithNamespace

WithNamespace adds the namespace to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) WithTimeout

WithTimeout adds the timeout to the public bulk update my items params

func (*PublicBulkUpdateMyItemsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PublicBulkUpdateMyItemsReader

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

PublicBulkUpdateMyItemsReader is a Reader for the PublicBulkUpdateMyItems structure.

func (*PublicBulkUpdateMyItemsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PublicConsumeMyItemBadRequest

type PublicConsumeMyItemBadRequest struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicConsumeMyItemBadRequest handles this case with default header values.

Bad Request

func NewPublicConsumeMyItemBadRequest

func NewPublicConsumeMyItemBadRequest() *PublicConsumeMyItemBadRequest

NewPublicConsumeMyItemBadRequest creates a PublicConsumeMyItemBadRequest with default headers values

func (*PublicConsumeMyItemBadRequest) Error

func (*PublicConsumeMyItemBadRequest) GetPayload

func (*PublicConsumeMyItemBadRequest) ToJSONString

func (o *PublicConsumeMyItemBadRequest) ToJSONString() string

type PublicConsumeMyItemInternalServerError

type PublicConsumeMyItemInternalServerError struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicConsumeMyItemInternalServerError handles this case with default header values.

Internal Server Error

func NewPublicConsumeMyItemInternalServerError

func NewPublicConsumeMyItemInternalServerError() *PublicConsumeMyItemInternalServerError

NewPublicConsumeMyItemInternalServerError creates a PublicConsumeMyItemInternalServerError with default headers values

func (*PublicConsumeMyItemInternalServerError) Error

func (*PublicConsumeMyItemInternalServerError) GetPayload

func (*PublicConsumeMyItemInternalServerError) ToJSONString

type PublicConsumeMyItemNotFound

type PublicConsumeMyItemNotFound struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicConsumeMyItemNotFound handles this case with default header values.

Not Found

func NewPublicConsumeMyItemNotFound

func NewPublicConsumeMyItemNotFound() *PublicConsumeMyItemNotFound

NewPublicConsumeMyItemNotFound creates a PublicConsumeMyItemNotFound with default headers values

func (*PublicConsumeMyItemNotFound) Error

func (*PublicConsumeMyItemNotFound) GetPayload

func (*PublicConsumeMyItemNotFound) ToJSONString

func (o *PublicConsumeMyItemNotFound) ToJSONString() string

type PublicConsumeMyItemOK

type PublicConsumeMyItemOK struct {
	Payload *inventoryclientmodels.ApimodelsItemResp
}

PublicConsumeMyItemOK handles this case with default header values.

OK

func NewPublicConsumeMyItemOK

func NewPublicConsumeMyItemOK() *PublicConsumeMyItemOK

NewPublicConsumeMyItemOK creates a PublicConsumeMyItemOK with default headers values

func (*PublicConsumeMyItemOK) Error

func (o *PublicConsumeMyItemOK) Error() string

func (*PublicConsumeMyItemOK) GetPayload

func (*PublicConsumeMyItemOK) ToJSONString

func (o *PublicConsumeMyItemOK) ToJSONString() string

type PublicConsumeMyItemParams

type PublicConsumeMyItemParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Body*/
	Body *inventoryclientmodels.ApimodelsConsumeItemReq
	/*InventoryID
	  InventoryID

	*/
	InventoryID string
	/*Namespace
	  Namespace

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

PublicConsumeMyItemParams contains all the parameters to send to the API endpoint for the public consume my item operation typically these are written to a http.Request

func NewPublicConsumeMyItemParams

func NewPublicConsumeMyItemParams() *PublicConsumeMyItemParams

NewPublicConsumeMyItemParams creates a new PublicConsumeMyItemParams object with the default values initialized.

func NewPublicConsumeMyItemParamsWithContext

func NewPublicConsumeMyItemParamsWithContext(ctx context.Context) *PublicConsumeMyItemParams

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

func NewPublicConsumeMyItemParamsWithHTTPClient

func NewPublicConsumeMyItemParamsWithHTTPClient(client *http.Client) *PublicConsumeMyItemParams

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

func NewPublicConsumeMyItemParamsWithTimeout

func NewPublicConsumeMyItemParamsWithTimeout(timeout time.Duration) *PublicConsumeMyItemParams

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

func (*PublicConsumeMyItemParams) SetAuthInfoWriter

func (o *PublicConsumeMyItemParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the public consume my item params

func (*PublicConsumeMyItemParams) SetBody

SetBody adds the body to the public consume my item params

func (*PublicConsumeMyItemParams) SetContext

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

SetContext adds the context to the public consume my item params

func (*PublicConsumeMyItemParams) SetFlightId added in v0.63.0

func (o *PublicConsumeMyItemParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*PublicConsumeMyItemParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the public consume my item params

func (*PublicConsumeMyItemParams) SetHTTPClientTransport

func (o *PublicConsumeMyItemParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the public consume my item params

func (*PublicConsumeMyItemParams) SetInventoryID

func (o *PublicConsumeMyItemParams) SetInventoryID(inventoryID string)

SetInventoryID adds the inventoryId to the public consume my item params

func (*PublicConsumeMyItemParams) SetNamespace

func (o *PublicConsumeMyItemParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the public consume my item params

func (*PublicConsumeMyItemParams) SetTimeout

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

SetTimeout adds the timeout to the public consume my item params

func (*PublicConsumeMyItemParams) WithBody

WithBody adds the body to the public consume my item params

func (*PublicConsumeMyItemParams) WithContext

WithContext adds the context to the public consume my item params

func (*PublicConsumeMyItemParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the public consume my item params

func (*PublicConsumeMyItemParams) WithInventoryID

func (o *PublicConsumeMyItemParams) WithInventoryID(inventoryID string) *PublicConsumeMyItemParams

WithInventoryID adds the inventoryID to the public consume my item params

func (*PublicConsumeMyItemParams) WithNamespace

func (o *PublicConsumeMyItemParams) WithNamespace(namespace string) *PublicConsumeMyItemParams

WithNamespace adds the namespace to the public consume my item params

func (*PublicConsumeMyItemParams) WithTimeout

WithTimeout adds the timeout to the public consume my item params

func (*PublicConsumeMyItemParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PublicConsumeMyItemReader

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

PublicConsumeMyItemReader is a Reader for the PublicConsumeMyItem structure.

func (*PublicConsumeMyItemReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PublicGetItemBadRequest

type PublicGetItemBadRequest struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicGetItemBadRequest handles this case with default header values.

Bad Request

func NewPublicGetItemBadRequest

func NewPublicGetItemBadRequest() *PublicGetItemBadRequest

NewPublicGetItemBadRequest creates a PublicGetItemBadRequest with default headers values

func (*PublicGetItemBadRequest) Error

func (o *PublicGetItemBadRequest) Error() string

func (*PublicGetItemBadRequest) GetPayload

func (*PublicGetItemBadRequest) ToJSONString

func (o *PublicGetItemBadRequest) ToJSONString() string

type PublicGetItemInternalServerError

type PublicGetItemInternalServerError struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicGetItemInternalServerError handles this case with default header values.

Internal Server Error

func NewPublicGetItemInternalServerError

func NewPublicGetItemInternalServerError() *PublicGetItemInternalServerError

NewPublicGetItemInternalServerError creates a PublicGetItemInternalServerError with default headers values

func (*PublicGetItemInternalServerError) Error

func (*PublicGetItemInternalServerError) GetPayload

func (*PublicGetItemInternalServerError) ToJSONString

func (o *PublicGetItemInternalServerError) ToJSONString() string

type PublicGetItemNotFound

type PublicGetItemNotFound struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicGetItemNotFound handles this case with default header values.

Not Found

func NewPublicGetItemNotFound

func NewPublicGetItemNotFound() *PublicGetItemNotFound

NewPublicGetItemNotFound creates a PublicGetItemNotFound with default headers values

func (*PublicGetItemNotFound) Error

func (o *PublicGetItemNotFound) Error() string

func (*PublicGetItemNotFound) GetPayload

func (*PublicGetItemNotFound) ToJSONString

func (o *PublicGetItemNotFound) ToJSONString() string

type PublicGetItemOK

type PublicGetItemOK struct {
	Payload *inventoryclientmodels.ApimodelsItemResp
}

PublicGetItemOK handles this case with default header values.

OK

func NewPublicGetItemOK

func NewPublicGetItemOK() *PublicGetItemOK

NewPublicGetItemOK creates a PublicGetItemOK with default headers values

func (*PublicGetItemOK) Error

func (o *PublicGetItemOK) Error() string

func (*PublicGetItemOK) GetPayload

func (*PublicGetItemOK) ToJSONString

func (o *PublicGetItemOK) ToJSONString() string

type PublicGetItemParams

type PublicGetItemParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*InventoryID
	  InventoryID

	*/
	InventoryID string
	/*Namespace
	  Namespace

	*/
	Namespace string
	/*SlotID
	  slotID

	*/
	SlotID string
	/*SourceItemID
	  sourceItemID

	*/
	SourceItemID string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

PublicGetItemParams contains all the parameters to send to the API endpoint for the public get item operation typically these are written to a http.Request

func NewPublicGetItemParams

func NewPublicGetItemParams() *PublicGetItemParams

NewPublicGetItemParams creates a new PublicGetItemParams object with the default values initialized.

func NewPublicGetItemParamsWithContext

func NewPublicGetItemParamsWithContext(ctx context.Context) *PublicGetItemParams

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

func NewPublicGetItemParamsWithHTTPClient

func NewPublicGetItemParamsWithHTTPClient(client *http.Client) *PublicGetItemParams

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

func NewPublicGetItemParamsWithTimeout

func NewPublicGetItemParamsWithTimeout(timeout time.Duration) *PublicGetItemParams

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

func (*PublicGetItemParams) SetAuthInfoWriter

func (o *PublicGetItemParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the public get item params

func (*PublicGetItemParams) SetContext

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

SetContext adds the context to the public get item params

func (*PublicGetItemParams) SetFlightId added in v0.63.0

func (o *PublicGetItemParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*PublicGetItemParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the public get item params

func (*PublicGetItemParams) SetHTTPClientTransport

func (o *PublicGetItemParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the public get item params

func (*PublicGetItemParams) SetInventoryID

func (o *PublicGetItemParams) SetInventoryID(inventoryID string)

SetInventoryID adds the inventoryId to the public get item params

func (*PublicGetItemParams) SetNamespace

func (o *PublicGetItemParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the public get item params

func (*PublicGetItemParams) SetSlotID added in v0.53.0

func (o *PublicGetItemParams) SetSlotID(slotID string)

SetSlotID adds the slotId to the public get item params

func (*PublicGetItemParams) SetSourceItemID added in v0.53.0

func (o *PublicGetItemParams) SetSourceItemID(sourceItemID string)

SetSourceItemID adds the sourceItemId to the public get item params

func (*PublicGetItemParams) SetTimeout

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

SetTimeout adds the timeout to the public get item params

func (*PublicGetItemParams) WithContext

WithContext adds the context to the public get item params

func (*PublicGetItemParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the public get item params

func (*PublicGetItemParams) WithInventoryID

func (o *PublicGetItemParams) WithInventoryID(inventoryID string) *PublicGetItemParams

WithInventoryID adds the inventoryID to the public get item params

func (*PublicGetItemParams) WithNamespace

func (o *PublicGetItemParams) WithNamespace(namespace string) *PublicGetItemParams

WithNamespace adds the namespace to the public get item params

func (*PublicGetItemParams) WithSlotID added in v0.53.0

func (o *PublicGetItemParams) WithSlotID(slotID string) *PublicGetItemParams

WithSlotID adds the slotID to the public get item params

func (*PublicGetItemParams) WithSourceItemID added in v0.53.0

func (o *PublicGetItemParams) WithSourceItemID(sourceItemID string) *PublicGetItemParams

WithSourceItemID adds the sourceItemID to the public get item params

func (*PublicGetItemParams) WithTimeout

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

WithTimeout adds the timeout to the public get item params

func (*PublicGetItemParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PublicGetItemReader

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

PublicGetItemReader is a Reader for the PublicGetItem structure.

func (*PublicGetItemReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PublicListItemsBadRequest

type PublicListItemsBadRequest struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicListItemsBadRequest handles this case with default header values.

Bad Request

func NewPublicListItemsBadRequest

func NewPublicListItemsBadRequest() *PublicListItemsBadRequest

NewPublicListItemsBadRequest creates a PublicListItemsBadRequest with default headers values

func (*PublicListItemsBadRequest) Error

func (o *PublicListItemsBadRequest) Error() string

func (*PublicListItemsBadRequest) GetPayload

func (*PublicListItemsBadRequest) ToJSONString

func (o *PublicListItemsBadRequest) ToJSONString() string

type PublicListItemsInternalServerError

type PublicListItemsInternalServerError struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicListItemsInternalServerError handles this case with default header values.

Internal Server Error

func NewPublicListItemsInternalServerError

func NewPublicListItemsInternalServerError() *PublicListItemsInternalServerError

NewPublicListItemsInternalServerError creates a PublicListItemsInternalServerError with default headers values

func (*PublicListItemsInternalServerError) Error

func (*PublicListItemsInternalServerError) GetPayload

func (*PublicListItemsInternalServerError) ToJSONString

func (o *PublicListItemsInternalServerError) ToJSONString() string

type PublicListItemsOK

type PublicListItemsOK struct {
	Payload *inventoryclientmodels.ApimodelsListItemResp
}

PublicListItemsOK handles this case with default header values.

OK

func NewPublicListItemsOK

func NewPublicListItemsOK() *PublicListItemsOK

NewPublicListItemsOK creates a PublicListItemsOK with default headers values

func (*PublicListItemsOK) Error

func (o *PublicListItemsOK) Error() string

func (*PublicListItemsOK) GetPayload

func (*PublicListItemsOK) ToJSONString

func (o *PublicListItemsOK) ToJSONString() string

type PublicListItemsParams

type PublicListItemsParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*InventoryID
	  InventoryID

	*/
	InventoryID string
	/*Namespace
	  Namespace

	*/
	Namespace string
	/*Limit
	  default 25

	*/
	Limit *int64
	/*Offset*/
	Offset *int64
	/*SortBy
	  Only support one level of sortBy; default createdAt

	*/
	SortBy *string
	/*SourceItemID
	  SourceItemID

	*/
	SourceItemID *string
	/*Tags
	  Tags

	*/
	Tags *string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

PublicListItemsParams contains all the parameters to send to the API endpoint for the public list items operation typically these are written to a http.Request

func NewPublicListItemsParams

func NewPublicListItemsParams() *PublicListItemsParams

NewPublicListItemsParams creates a new PublicListItemsParams object with the default values initialized.

func NewPublicListItemsParamsWithContext

func NewPublicListItemsParamsWithContext(ctx context.Context) *PublicListItemsParams

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

func NewPublicListItemsParamsWithHTTPClient

func NewPublicListItemsParamsWithHTTPClient(client *http.Client) *PublicListItemsParams

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

func NewPublicListItemsParamsWithTimeout

func NewPublicListItemsParamsWithTimeout(timeout time.Duration) *PublicListItemsParams

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

func (*PublicListItemsParams) SetAuthInfoWriter

func (o *PublicListItemsParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the public list items params

func (*PublicListItemsParams) SetContext

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

SetContext adds the context to the public list items params

func (*PublicListItemsParams) SetFlightId added in v0.63.0

func (o *PublicListItemsParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*PublicListItemsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the public list items params

func (*PublicListItemsParams) SetHTTPClientTransport

func (o *PublicListItemsParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the public list items params

func (*PublicListItemsParams) SetInventoryID

func (o *PublicListItemsParams) SetInventoryID(inventoryID string)

SetInventoryID adds the inventoryId to the public list items params

func (*PublicListItemsParams) SetLimit

func (o *PublicListItemsParams) SetLimit(limit *int64)

SetLimit adds the limit to the public list items params

func (*PublicListItemsParams) SetNamespace

func (o *PublicListItemsParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the public list items params

func (*PublicListItemsParams) SetOffset

func (o *PublicListItemsParams) SetOffset(offset *int64)

SetOffset adds the offset to the public list items params

func (*PublicListItemsParams) SetSortBy

func (o *PublicListItemsParams) SetSortBy(sortBy *string)

SetSortBy adds the sortBy to the public list items params

func (*PublicListItemsParams) SetSourceItemID

func (o *PublicListItemsParams) SetSourceItemID(sourceItemID *string)

SetSourceItemID adds the sourceItemId to the public list items params

func (*PublicListItemsParams) SetTags

func (o *PublicListItemsParams) SetTags(tags *string)

SetTags adds the tags to the public list items params

func (*PublicListItemsParams) SetTimeout

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

SetTimeout adds the timeout to the public list items params

func (*PublicListItemsParams) WithContext

WithContext adds the context to the public list items params

func (*PublicListItemsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the public list items params

func (*PublicListItemsParams) WithInventoryID

func (o *PublicListItemsParams) WithInventoryID(inventoryID string) *PublicListItemsParams

WithInventoryID adds the inventoryID to the public list items params

func (*PublicListItemsParams) WithLimit

func (o *PublicListItemsParams) WithLimit(limit *int64) *PublicListItemsParams

WithLimit adds the limit to the public list items params

func (*PublicListItemsParams) WithNamespace

func (o *PublicListItemsParams) WithNamespace(namespace string) *PublicListItemsParams

WithNamespace adds the namespace to the public list items params

func (*PublicListItemsParams) WithOffset

func (o *PublicListItemsParams) WithOffset(offset *int64) *PublicListItemsParams

WithOffset adds the offset to the public list items params

func (*PublicListItemsParams) WithSortBy

func (o *PublicListItemsParams) WithSortBy(sortBy *string) *PublicListItemsParams

WithSortBy adds the sortBy to the public list items params

func (*PublicListItemsParams) WithSourceItemID

func (o *PublicListItemsParams) WithSourceItemID(sourceItemID *string) *PublicListItemsParams

WithSourceItemID adds the sourceItemID to the public list items params

func (*PublicListItemsParams) WithTags

WithTags adds the tags to the public list items params

func (*PublicListItemsParams) WithTimeout

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

WithTimeout adds the timeout to the public list items params

func (*PublicListItemsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PublicListItemsReader

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

PublicListItemsReader is a Reader for the PublicListItems structure.

func (*PublicListItemsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PublicMoveMyItemsBadRequest

type PublicMoveMyItemsBadRequest struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicMoveMyItemsBadRequest handles this case with default header values.

Bad Request

func NewPublicMoveMyItemsBadRequest

func NewPublicMoveMyItemsBadRequest() *PublicMoveMyItemsBadRequest

NewPublicMoveMyItemsBadRequest creates a PublicMoveMyItemsBadRequest with default headers values

func (*PublicMoveMyItemsBadRequest) Error

func (*PublicMoveMyItemsBadRequest) GetPayload

func (*PublicMoveMyItemsBadRequest) ToJSONString

func (o *PublicMoveMyItemsBadRequest) ToJSONString() string

type PublicMoveMyItemsInternalServerError

type PublicMoveMyItemsInternalServerError struct {
	Payload *inventoryclientmodels.ApimodelsErrorResponse
}

PublicMoveMyItemsInternalServerError handles this case with default header values.

Internal Server Error

func NewPublicMoveMyItemsInternalServerError

func NewPublicMoveMyItemsInternalServerError() *PublicMoveMyItemsInternalServerError

NewPublicMoveMyItemsInternalServerError creates a PublicMoveMyItemsInternalServerError with default headers values

func (*PublicMoveMyItemsInternalServerError) Error

func (*PublicMoveMyItemsInternalServerError) GetPayload

func (*PublicMoveMyItemsInternalServerError) ToJSONString

func (o *PublicMoveMyItemsInternalServerError) ToJSONString() string

type PublicMoveMyItemsOK

type PublicMoveMyItemsOK struct {
	Payload *inventoryclientmodels.ApimodelsMoveItemsResp
}

PublicMoveMyItemsOK handles this case with default header values.

OK

func NewPublicMoveMyItemsOK

func NewPublicMoveMyItemsOK() *PublicMoveMyItemsOK

NewPublicMoveMyItemsOK creates a PublicMoveMyItemsOK with default headers values

func (*PublicMoveMyItemsOK) Error

func (o *PublicMoveMyItemsOK) Error() string

func (*PublicMoveMyItemsOK) GetPayload

func (*PublicMoveMyItemsOK) ToJSONString

func (o *PublicMoveMyItemsOK) ToJSONString() string

type PublicMoveMyItemsParams

type PublicMoveMyItemsParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry
	/*Body*/
	Body *inventoryclientmodels.ApimodelsMoveItemsReq
	/*InventoryID
	  InventoryID

	*/
	InventoryID string
	/*Namespace
	  Namespace

	*/
	Namespace string

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

PublicMoveMyItemsParams contains all the parameters to send to the API endpoint for the public move my items operation typically these are written to a http.Request

func NewPublicMoveMyItemsParams

func NewPublicMoveMyItemsParams() *PublicMoveMyItemsParams

NewPublicMoveMyItemsParams creates a new PublicMoveMyItemsParams object with the default values initialized.

func NewPublicMoveMyItemsParamsWithContext

func NewPublicMoveMyItemsParamsWithContext(ctx context.Context) *PublicMoveMyItemsParams

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

func NewPublicMoveMyItemsParamsWithHTTPClient

func NewPublicMoveMyItemsParamsWithHTTPClient(client *http.Client) *PublicMoveMyItemsParams

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

func NewPublicMoveMyItemsParamsWithTimeout

func NewPublicMoveMyItemsParamsWithTimeout(timeout time.Duration) *PublicMoveMyItemsParams

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

func (*PublicMoveMyItemsParams) SetAuthInfoWriter

func (o *PublicMoveMyItemsParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the public move my items params

func (*PublicMoveMyItemsParams) SetBody

SetBody adds the body to the public move my items params

func (*PublicMoveMyItemsParams) SetContext

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

SetContext adds the context to the public move my items params

func (*PublicMoveMyItemsParams) SetFlightId added in v0.63.0

func (o *PublicMoveMyItemsParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*PublicMoveMyItemsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the public move my items params

func (*PublicMoveMyItemsParams) SetHTTPClientTransport

func (o *PublicMoveMyItemsParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the public move my items params

func (*PublicMoveMyItemsParams) SetInventoryID

func (o *PublicMoveMyItemsParams) SetInventoryID(inventoryID string)

SetInventoryID adds the inventoryId to the public move my items params

func (*PublicMoveMyItemsParams) SetNamespace

func (o *PublicMoveMyItemsParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the public move my items params

func (*PublicMoveMyItemsParams) SetTimeout

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

SetTimeout adds the timeout to the public move my items params

func (*PublicMoveMyItemsParams) WithBody

WithBody adds the body to the public move my items params

func (*PublicMoveMyItemsParams) WithContext

WithContext adds the context to the public move my items params

func (*PublicMoveMyItemsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the public move my items params

func (*PublicMoveMyItemsParams) WithInventoryID

func (o *PublicMoveMyItemsParams) WithInventoryID(inventoryID string) *PublicMoveMyItemsParams

WithInventoryID adds the inventoryID to the public move my items params

func (*PublicMoveMyItemsParams) WithNamespace

func (o *PublicMoveMyItemsParams) WithNamespace(namespace string) *PublicMoveMyItemsParams

WithNamespace adds the namespace to the public move my items params

func (*PublicMoveMyItemsParams) WithTimeout

WithTimeout adds the timeout to the public move my items params

func (*PublicMoveMyItemsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PublicMoveMyItemsReader

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

PublicMoveMyItemsReader is a Reader for the PublicMoveMyItems structure.

func (*PublicMoveMyItemsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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