sellersv1

package
v1.0.2 Latest Latest
Warning

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

Go to latest
Published: Sep 2, 2023 License: MIT Imports: 8 Imported by: 0

Documentation

Overview

Package sellersv1 provides primitives to interact with the openapi HTTP API.

Code generated by github.com/deepmap/oapi-codegen version v1.13.4 DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewGetMarketplaceParticipationsRequest

func NewGetMarketplaceParticipationsRequest(server string) (*http.Request, error)

NewGetMarketplaceParticipationsRequest generates requests for GetMarketplaceParticipations

Types

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) GetMarketplaceParticipations

func (c *Client) GetMarketplaceParticipations(ctx context.Context) (*http.Response, error)

type ClientInterface

type ClientInterface interface {
	// GetMarketplaceParticipations request
	GetMarketplaceParticipations(ctx context.Context) (*http.Response, error)
}

The interface specification for the client above.

type ClientOption

type ClientOption func(*Client) error

ClientOption allows setting custom parameters during construction

func WithBaseURL

func WithBaseURL(baseURL string) ClientOption

WithBaseURL overrides the baseURL.

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) GetMarketplaceParticipationsWithResponse

func (c *ClientWithResponses) GetMarketplaceParticipationsWithResponse(ctx context.Context) (*GetMarketplaceParticipationsResp, error)

GetMarketplaceParticipationsWithResponse request returning *GetMarketplaceParticipationsResp

type ClientWithResponsesInterface

type ClientWithResponsesInterface interface {
	// GetMarketplaceParticipationsWithResponse request
	GetMarketplaceParticipationsWithResponse(ctx context.Context) (*GetMarketplaceParticipationsResp, 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 occured.
	Code string `json:"code"`

	// Details Additional details 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 GetMarketplaceParticipationsResp

func ParseGetMarketplaceParticipationsResp

func ParseGetMarketplaceParticipationsResp(rsp *http.Response) (*GetMarketplaceParticipationsResp, error)

ParseGetMarketplaceParticipationsResp parses an HTTP response from a GetMarketplaceParticipationsWithResponse call

func (GetMarketplaceParticipationsResp) Status

Status returns HTTPResponse.Status

func (GetMarketplaceParticipationsResp) StatusCode

func (r GetMarketplaceParticipationsResp) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GetMarketplaceParticipationsResponse

type GetMarketplaceParticipationsResponse struct {
	// Errors A list of error responses returned when a request is unsuccessful.
	Errors *ErrorList `json:"errors,omitempty"`

	// Payload List of marketplace participations.
	Payload *MarketplaceParticipationList `json:"payload,omitempty"`
}

GetMarketplaceParticipationsResponse The response schema for the getMarketplaceParticipations operation.

type HttpRequestDoer

type HttpRequestDoer interface {
	Do(req *http.Request) (*http.Response, error)
}

Doer performs HTTP requests.

The standard http.Client implements this interface.

type Marketplace

type Marketplace struct {
	// CountryCode The ISO 3166-1 alpha-2 format country code of the marketplace.
	CountryCode string `json:"countryCode"`

	// DefaultCurrencyCode The ISO 4217 format currency code of the marketplace.
	DefaultCurrencyCode string `json:"defaultCurrencyCode"`

	// DefaultLanguageCode The ISO 639-1 format language code of the marketplace.
	DefaultLanguageCode string `json:"defaultLanguageCode"`

	// DomainName The domain name of the marketplace.
	DomainName string `json:"domainName"`

	// Id The encrypted marketplace value.
	Id string `json:"id"`

	// Name Marketplace name.
	Name string `json:"name"`
}

Marketplace Detailed information about an Amazon market where a seller can list items for sale and customers can view and purchase items.

type MarketplaceParticipation

type MarketplaceParticipation struct {
	// Marketplace Detailed information about an Amazon market where a seller can list items for sale and customers can view and purchase items.
	Marketplace Marketplace `json:"marketplace"`

	// Participation Detailed information that is specific to a seller in a Marketplace.
	Participation Participation `json:"participation"`
}

MarketplaceParticipation defines model for MarketplaceParticipation.

type MarketplaceParticipationList

type MarketplaceParticipationList = []MarketplaceParticipation

MarketplaceParticipationList List of marketplace participations.

type Participation

type Participation struct {
	// HasSuspendedListings Specifies if the seller has suspended listings. True if the seller Listing Status is set to Inactive, otherwise False.
	HasSuspendedListings bool `json:"hasSuspendedListings"`
	IsParticipating      bool `json:"isParticipating"`
}

Participation Detailed information that is specific to a seller in a Marketplace.

type RequestEditorFn

type RequestEditorFn func(ctx context.Context, req *http.Request) error

RequestEditorFn is the function signature for the RequestEditor callback function

type ResponseEditorFn

type ResponseEditorFn func(ctx context.Context, rsp *http.Response) error

ResponseEditorFn is the function signature for the ResponseEditor callback function

Jump to

Keyboard shortcuts

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