Documentation
¶
Overview ¶
Package catalogItemsV0 provides primitives to interact with the openapi HTTP API.
Code generated by github.com/oapi-codegen/oapi-codegen/v2 version v2.6.0 DO NOT EDIT.
Index ¶
- func NewListCatalogCategoriesRequest(server string, params *ListCatalogCategoriesParams) (*http.Request, error)
- type Categories
- type Client
- type ClientInterface
- type ClientOption
- type ClientWithResponses
- type ClientWithResponsesInterface
- type Error
- type ErrorList
- type HttpRequestDoer
- type ListCatalogCategoriesParams
- type ListCatalogCategoriesResp
- type ListCatalogCategoriesResponse
- type ListOfCategories
- type RequestEditorFn
- type ResponseEditorFn
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewListCatalogCategoriesRequest ¶
func NewListCatalogCategoriesRequest(server string, params *ListCatalogCategoriesParams) (*http.Request, error)
NewListCatalogCategoriesRequest generates requests for ListCatalogCategories
Types ¶
type Categories ¶
type Categories struct {
// ProductCategoryId The identifier for the product category (or browse node).
ProductCategoryId *string `json:"ProductCategoryId,omitempty"`
// ProductCategoryName The name of the product category (or browse node).
ProductCategoryName *string `json:"ProductCategoryName,omitempty"`
// Parent The parent product category.
Parent *map[string]interface{} `json:"parent,omitempty"`
}
Categories defines model for Categories.
type Client ¶
type Client struct {
// The endpoint of the server conforming to this interface, with scheme,
// https://api.deepmap.com for example. This can contain a path relative
// to the server, such as https://api.deepmap.com/dev-test, and all the
// paths in the swagger spec will be appended to the server.
Server string
// Doer for performing requests, typically a *http.Client with any
// customized settings, such as certificate chains.
Client HttpRequestDoer
// A list of callbacks for modifying requests which are generated before sending over
// the network.
RequestEditors []RequestEditorFn
// A callback for modifying response which are generated after receive from the network.
ResponseEditors []ResponseEditorFn
// The user agent header identifies your application, its version number, and the platform and programming language you are using.
// You must include a user agent header in each request submitted to the sales partner API.
UserAgent string
}
Client which conforms to the OpenAPI3 specification for this service.
func NewClient ¶
func NewClient(server string, opts ...ClientOption) (*Client, error)
Creates a new Client, with reasonable defaults
func (*Client) ListCatalogCategories ¶
type ClientInterface ¶
type ClientInterface interface {
// ListCatalogCategories request
ListCatalogCategories(ctx context.Context, params *ListCatalogCategoriesParams) (*http.Response, error)
}
The interface specification for the client above.
type ClientOption ¶
ClientOption allows setting custom parameters during construction
func WithHTTPClient ¶
func WithHTTPClient(doer HttpRequestDoer) ClientOption
WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client. This is useful for tests.
func WithRequestEditorFn ¶
func WithRequestEditorFn(fn RequestEditorFn) ClientOption
WithRequestEditorFn allows setting up a callback function, which will be called right before sending the request. This can be used to mutate the request.
func WithResponseEditorFn ¶
func WithResponseEditorFn(fn ResponseEditorFn) ClientOption
WithResponseEditorFn allows setting up a callback function, which will be called right after receive the response.
type ClientWithResponses ¶
type ClientWithResponses struct {
ClientInterface
}
func NewClientWithResponses ¶
func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error)
NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling
func (*ClientWithResponses) ListCatalogCategoriesWithResponse ¶
func (c *ClientWithResponses) ListCatalogCategoriesWithResponse(ctx context.Context, params *ListCatalogCategoriesParams) (*ListCatalogCategoriesResp, error)
ListCatalogCategoriesWithResponse request returning *ListCatalogCategoriesResp
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface {
// ListCatalogCategoriesWithResponse request
ListCatalogCategoriesWithResponse(ctx context.Context, params *ListCatalogCategoriesParams) (*ListCatalogCategoriesResp, error)
}
ClientWithResponsesInterface is the interface specification for the client with responses above.
type Error ¶
type Error struct {
// Code An error code that identifies the type of error that occurred.
Code string `json:"code"`
// Details Additional information that can help the caller understand or fix the issue.
Details *string `json:"details,omitempty"`
// Message A message that describes the error condition in a human-readable form.
Message string `json:"message"`
}
Error Error response returned when the request is unsuccessful.
type ErrorList ¶
type ErrorList = []Error
ErrorList A list of error responses returned when a request is unsuccessful.
type HttpRequestDoer ¶
Doer performs HTTP requests.
The standard http.Client implements this interface.
type ListCatalogCategoriesParams ¶
type ListCatalogCategoriesParams struct {
// MarketplaceId A marketplace identifier. Specifies the marketplace for the item.
MarketplaceId string `form:"MarketplaceId" json:"MarketplaceId"`
// ASIN The Amazon Standard Identification Number (ASIN) of the item.
ASIN *string `form:"ASIN,omitempty" json:"ASIN,omitempty"`
// SellerSKU Used to identify items in the given marketplace. SellerSKU is qualified by the seller's SellerId, which is included with every operation that you submit.
SellerSKU *string `form:"SellerSKU,omitempty" json:"SellerSKU,omitempty"`
}
ListCatalogCategoriesParams defines parameters for ListCatalogCategories.
type ListCatalogCategoriesResp ¶
type ListCatalogCategoriesResp struct {
Body []byte
HTTPResponse *http.Response
JSON200 *ListCatalogCategoriesResponse
JSON400 *ListCatalogCategoriesResponse
JSON401 *ListCatalogCategoriesResponse
JSON403 *ListCatalogCategoriesResponse
JSON404 *ListCatalogCategoriesResponse
JSON429 *ListCatalogCategoriesResponse
JSON500 *ListCatalogCategoriesResponse
JSON503 *ListCatalogCategoriesResponse
}
func ParseListCatalogCategoriesResp ¶
func ParseListCatalogCategoriesResp(rsp *http.Response) (*ListCatalogCategoriesResp, error)
ParseListCatalogCategoriesResp parses an HTTP response from a ListCatalogCategoriesWithResponse call
func (ListCatalogCategoriesResp) Status ¶
func (r ListCatalogCategoriesResp) Status() string
Status returns HTTPResponse.Status
func (ListCatalogCategoriesResp) StatusCode ¶
func (r ListCatalogCategoriesResp) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type ListCatalogCategoriesResponse ¶
type ListCatalogCategoriesResponse struct {
// Errors A list of error responses returned when a request is unsuccessful.
Errors *ErrorList `json:"errors,omitempty"`
Payload *ListOfCategories `json:"payload,omitempty"`
}
ListCatalogCategoriesResponse defines model for ListCatalogCategoriesResponse.
type ListOfCategories ¶
type ListOfCategories = []Categories
ListOfCategories defines model for ListOfCategories.
type RequestEditorFn ¶
RequestEditorFn is the function signature for the RequestEditor callback function