product_fees_v0_models

package
v0.24.10 Latest Latest
Warning

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

Go to latest
Published: Oct 15, 2024 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Error

type Error struct {

	// An error code that identifies the type of error that occurred.
	// Required: true
	Code *string `json:"code"`

	// Additional details that can help the caller understand or fix the issue.
	Details string `json:"details,omitempty"`

	// A message that describes the error condition.
	// Required: true
	Message *string `json:"message"`
}

Error error

swagger:model Error

func (*Error) ContextValidate

func (m *Error) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this error based on context it is used

func (*Error) MarshalBinary

func (m *Error) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Error) UnmarshalBinary

func (m *Error) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Error) Validate

func (m *Error) Validate(formats strfmt.Registry) error

Validate validates this error

type ErrorList

type ErrorList []*Error

ErrorList A list of error responses returned when a request is unsuccessful.

swagger:model ErrorList

func (ErrorList) ContextValidate

func (m ErrorList) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this error list based on the context it is used

func (ErrorList) Validate

func (m ErrorList) Validate(formats strfmt.Registry) error

Validate validates this error list

type FeeDetail

type FeeDetail struct {

	// The amount charged for a given fee.
	// Required: true
	FeeAmount *MoneyType `json:"FeeAmount"`

	// The promotion amount for a given fee.
	FeePromotion *MoneyType `json:"FeePromotion,omitempty"`

	// The type of fee charged to a seller.
	// Required: true
	FeeType *string `json:"FeeType"`

	// The final fee amount for a given fee.
	// Required: true
	FinalFee *MoneyType `json:"FinalFee"`

	// included fee detail list
	IncludedFeeDetailList IncludedFeeDetailList `json:"IncludedFeeDetailList,omitempty"`

	// The tax amount for a given fee.
	TaxAmount *MoneyType `json:"TaxAmount,omitempty"`
}

FeeDetail The type of fee, fee amount, and other details.

swagger:model FeeDetail

func (*FeeDetail) ContextValidate

func (m *FeeDetail) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fee detail based on the context it is used

func (*FeeDetail) MarshalBinary

func (m *FeeDetail) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FeeDetail) UnmarshalBinary

func (m *FeeDetail) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FeeDetail) Validate

func (m *FeeDetail) Validate(formats strfmt.Registry) error

Validate validates this fee detail

type FeeDetailList

type FeeDetailList []*FeeDetail

FeeDetailList A list of other fees that contribute to a given fee.

swagger:model FeeDetailList

func (FeeDetailList) ContextValidate

func (m FeeDetailList) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fee detail list based on the context it is used

func (FeeDetailList) Validate

func (m FeeDetailList) Validate(formats strfmt.Registry) error

Validate validates this fee detail list

type FeesEstimate

type FeesEstimate struct {

	// fee detail list
	FeeDetailList FeeDetailList `json:"FeeDetailList,omitempty"`

	// The time at which the fees were estimated. This defaults to the time the request is made.
	// Required: true
	// Format: date-time
	TimeOfFeesEstimation *strfmt.DateTime `json:"TimeOfFeesEstimation"`

	// Total estimated fees for a given item, price, and fulfillment channel.
	TotalFeesEstimate *MoneyType `json:"TotalFeesEstimate,omitempty"`
}

FeesEstimate The total estimated fees for an item and a list of details.

swagger:model FeesEstimate

func (*FeesEstimate) ContextValidate

func (m *FeesEstimate) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fees estimate based on the context it is used

func (*FeesEstimate) MarshalBinary

func (m *FeesEstimate) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FeesEstimate) UnmarshalBinary

func (m *FeesEstimate) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FeesEstimate) Validate

func (m *FeesEstimate) Validate(formats strfmt.Registry) error

Validate validates this fees estimate

type FeesEstimateByIDRequest

type FeesEstimateByIDRequest struct {

	// fees estimate request
	FeesEstimateRequest *FeesEstimateRequest `json:"FeesEstimateRequest,omitempty"`

	// Id type
	// Required: true
	IDType *IDType `json:"IdType"`

	// The item identifier.
	// Required: true
	IDValue *string `json:"IdValue"`
}

FeesEstimateByIDRequest A product, marketplace, and proposed price used to request estimated fees.

swagger:model FeesEstimateByIdRequest

func (*FeesEstimateByIDRequest) ContextValidate

func (m *FeesEstimateByIDRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fees estimate by Id request based on the context it is used

func (*FeesEstimateByIDRequest) MarshalBinary

func (m *FeesEstimateByIDRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FeesEstimateByIDRequest) UnmarshalBinary

func (m *FeesEstimateByIDRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FeesEstimateByIDRequest) Validate

func (m *FeesEstimateByIDRequest) Validate(formats strfmt.Registry) error

Validate validates this fees estimate by Id request

type FeesEstimateError

type FeesEstimateError struct {

	// An error code that identifies the type of error that occurred.
	// Required: true
	Code *string `json:"Code"`

	// detail
	// Required: true
	Detail FeesEstimateErrorDetail `json:"Detail"`

	// A message that describes the error condition.
	// Required: true
	Message *string `json:"Message"`

	// An error type, identifying either the receiver or the sender as the originator of the error.
	// Required: true
	Type *string `json:"Type"`
}

FeesEstimateError An unexpected error occurred during this operation.

swagger:model FeesEstimateError

func (*FeesEstimateError) ContextValidate

func (m *FeesEstimateError) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fees estimate error based on the context it is used

func (*FeesEstimateError) MarshalBinary

func (m *FeesEstimateError) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FeesEstimateError) UnmarshalBinary

func (m *FeesEstimateError) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FeesEstimateError) Validate

func (m *FeesEstimateError) Validate(formats strfmt.Registry) error

Validate validates this fees estimate error

type FeesEstimateErrorDetail

type FeesEstimateErrorDetail []interface{}

FeesEstimateErrorDetail Additional information that can help the caller understand or fix the issue.

swagger:model FeesEstimateErrorDetail

func (FeesEstimateErrorDetail) ContextValidate

func (m FeesEstimateErrorDetail) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this fees estimate error detail based on context it is used

func (FeesEstimateErrorDetail) Validate

func (m FeesEstimateErrorDetail) Validate(formats strfmt.Registry) error

Validate validates this fees estimate error detail

type FeesEstimateIdentifier

type FeesEstimateIdentifier struct {

	// Id type
	IDType IDType `json:"IdType,omitempty"`

	// The item identifier.
	IDValue string `json:"IdValue,omitempty"`

	// When true, the offer is fulfilled by Amazon.
	IsAmazonFulfilled bool `json:"IsAmazonFulfilled,omitempty"`

	// A marketplace identifier.
	MarketplaceID string `json:"MarketplaceId,omitempty"`

	// optional fulfillment program
	OptionalFulfillmentProgram OptionalFulfillmentProgram `json:"OptionalFulfillmentProgram,omitempty"`

	// The item price on which the fee estimate is based.
	PriceToEstimateFees *PriceToEstimateFees `json:"PriceToEstimateFees,omitempty"`

	// The seller identifier.
	SellerID string `json:"SellerId,omitempty"`

	// A unique identifier provided by the caller to track this request.
	SellerInputIdentifier string `json:"SellerInputIdentifier,omitempty"`
}

FeesEstimateIdentifier An item identifier, marketplace, time of request, and other details that identify an estimate.

swagger:model FeesEstimateIdentifier

func (*FeesEstimateIdentifier) ContextValidate

func (m *FeesEstimateIdentifier) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fees estimate identifier based on the context it is used

func (*FeesEstimateIdentifier) MarshalBinary

func (m *FeesEstimateIdentifier) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FeesEstimateIdentifier) UnmarshalBinary

func (m *FeesEstimateIdentifier) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FeesEstimateIdentifier) Validate

func (m *FeesEstimateIdentifier) Validate(formats strfmt.Registry) error

Validate validates this fees estimate identifier

type FeesEstimateRequest

type FeesEstimateRequest struct {

	// A unique identifier provided by the caller to track this request.
	// Required: true
	Identifier *string `json:"Identifier"`

	// When true, the offer is fulfilled by Amazon.
	IsAmazonFulfilled bool `json:"IsAmazonFulfilled,omitempty"`

	// A marketplace identifier.
	// Required: true
	MarketplaceID *string `json:"MarketplaceId"`

	// optional fulfillment program
	OptionalFulfillmentProgram OptionalFulfillmentProgram `json:"OptionalFulfillmentProgram,omitempty"`

	// The product price that the fee estimate is based on.
	// Required: true
	PriceToEstimateFees *PriceToEstimateFees `json:"PriceToEstimateFees"`
}

FeesEstimateRequest A product, marketplace, and proposed price used to request estimated fees.

swagger:model FeesEstimateRequest

func (*FeesEstimateRequest) ContextValidate

func (m *FeesEstimateRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fees estimate request based on the context it is used

func (*FeesEstimateRequest) MarshalBinary

func (m *FeesEstimateRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FeesEstimateRequest) UnmarshalBinary

func (m *FeesEstimateRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FeesEstimateRequest) Validate

func (m *FeesEstimateRequest) Validate(formats strfmt.Registry) error

Validate validates this fees estimate request

type FeesEstimateResult

type FeesEstimateResult struct {

	// An error object with a type, code, and message.
	Error *FeesEstimateError `json:"Error,omitempty"`

	// The total estimated fees for an item and a list of details.
	FeesEstimate *FeesEstimate `json:"FeesEstimate,omitempty"`

	// Information used to identify a fees estimate request.
	FeesEstimateIdentifier *FeesEstimateIdentifier `json:"FeesEstimateIdentifier,omitempty"`

	// The status of the fee request. Possible values: Success, ClientError, ServiceError.
	Status string `json:"Status,omitempty"`
}

FeesEstimateResult An item identifier and the estimated fees for the item.

swagger:model FeesEstimateResult

func (*FeesEstimateResult) ContextValidate

func (m *FeesEstimateResult) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fees estimate result based on the context it is used

func (*FeesEstimateResult) MarshalBinary

func (m *FeesEstimateResult) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FeesEstimateResult) UnmarshalBinary

func (m *FeesEstimateResult) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FeesEstimateResult) Validate

func (m *FeesEstimateResult) Validate(formats strfmt.Registry) error

Validate validates this fees estimate result

type GetMyFeesEstimateRequest

type GetMyFeesEstimateRequest struct {

	// fees estimate request
	FeesEstimateRequest *FeesEstimateRequest `json:"FeesEstimateRequest,omitempty"`
}

GetMyFeesEstimateRequest Request schema.

swagger:model GetMyFeesEstimateRequest

func (*GetMyFeesEstimateRequest) ContextValidate

func (m *GetMyFeesEstimateRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get my fees estimate request based on the context it is used

func (*GetMyFeesEstimateRequest) MarshalBinary

func (m *GetMyFeesEstimateRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetMyFeesEstimateRequest) UnmarshalBinary

func (m *GetMyFeesEstimateRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetMyFeesEstimateRequest) Validate

func (m *GetMyFeesEstimateRequest) Validate(formats strfmt.Registry) error

Validate validates this get my fees estimate request

type GetMyFeesEstimateResponse

type GetMyFeesEstimateResponse struct {

	// errors
	Errors ErrorList `json:"errors,omitempty"`

	// The payload for the operation.
	Payload *GetMyFeesEstimateResult `json:"payload,omitempty"`
}

GetMyFeesEstimateResponse get my fees estimate response

swagger:model GetMyFeesEstimateResponse

func (*GetMyFeesEstimateResponse) ContextValidate

func (m *GetMyFeesEstimateResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get my fees estimate response based on the context it is used

func (*GetMyFeesEstimateResponse) MarshalBinary

func (m *GetMyFeesEstimateResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetMyFeesEstimateResponse) UnmarshalBinary

func (m *GetMyFeesEstimateResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetMyFeesEstimateResponse) Validate

func (m *GetMyFeesEstimateResponse) Validate(formats strfmt.Registry) error

Validate validates this get my fees estimate response

type GetMyFeesEstimateResult

type GetMyFeesEstimateResult struct {

	// The item's estimated fees.
	FeesEstimateResult *FeesEstimateResult `json:"FeesEstimateResult,omitempty"`
}

GetMyFeesEstimateResult Response schema.

swagger:model GetMyFeesEstimateResult

func (*GetMyFeesEstimateResult) ContextValidate

func (m *GetMyFeesEstimateResult) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get my fees estimate result based on the context it is used

func (*GetMyFeesEstimateResult) MarshalBinary

func (m *GetMyFeesEstimateResult) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetMyFeesEstimateResult) UnmarshalBinary

func (m *GetMyFeesEstimateResult) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetMyFeesEstimateResult) Validate

func (m *GetMyFeesEstimateResult) Validate(formats strfmt.Registry) error

Validate validates this get my fees estimate result

type GetMyFeesEstimatesErrorList

type GetMyFeesEstimatesErrorList struct {

	// errors
	// Required: true
	Errors []*Error `json:"errors"`
}

GetMyFeesEstimatesErrorList A list of error responses returned when a request is unsuccessful.

swagger:model GetMyFeesEstimatesErrorList

func (*GetMyFeesEstimatesErrorList) ContextValidate

func (m *GetMyFeesEstimatesErrorList) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get my fees estimates error list based on the context it is used

func (*GetMyFeesEstimatesErrorList) MarshalBinary

func (m *GetMyFeesEstimatesErrorList) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetMyFeesEstimatesErrorList) UnmarshalBinary

func (m *GetMyFeesEstimatesErrorList) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetMyFeesEstimatesErrorList) Validate

func (m *GetMyFeesEstimatesErrorList) Validate(formats strfmt.Registry) error

Validate validates this get my fees estimates error list

type GetMyFeesEstimatesRequest

type GetMyFeesEstimatesRequest []*FeesEstimateByIDRequest

GetMyFeesEstimatesRequest Request for estimated fees for a list of products.

swagger:model GetMyFeesEstimatesRequest

func (GetMyFeesEstimatesRequest) ContextValidate

func (m GetMyFeesEstimatesRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get my fees estimates request based on the context it is used

func (GetMyFeesEstimatesRequest) Validate

func (m GetMyFeesEstimatesRequest) Validate(formats strfmt.Registry) error

Validate validates this get my fees estimates request

type GetMyFeesEstimatesResponse

type GetMyFeesEstimatesResponse []*FeesEstimateResult

GetMyFeesEstimatesResponse Estimated fees for a list of products.

swagger:model GetMyFeesEstimatesResponse

func (GetMyFeesEstimatesResponse) ContextValidate

func (m GetMyFeesEstimatesResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get my fees estimates response based on the context it is used

func (GetMyFeesEstimatesResponse) Validate

func (m GetMyFeesEstimatesResponse) Validate(formats strfmt.Registry) error

Validate validates this get my fees estimates response

type IDType

type IDType string

IDType The type of product identifier used in a `FeesEstimateByIdRequest`.

swagger:model IdType

const (

	// IDTypeASIN captures enum value "ASIN"
	IDTypeASIN IDType = "ASIN"

	// IDTypeSellerSKU captures enum value "SellerSKU"
	IDTypeSellerSKU IDType = "SellerSKU"
)

func NewIDType

func NewIDType(value IDType) *IDType

func (IDType) ContextValidate

func (m IDType) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this Id type based on context it is used

func (IDType) Pointer

func (m IDType) Pointer() *IDType

Pointer returns a pointer to a freshly-allocated IDType.

func (IDType) Validate

func (m IDType) Validate(formats strfmt.Registry) error

Validate validates this Id type

type IncludedFeeDetail

type IncludedFeeDetail struct {

	// The amount charged for a given fee.
	// Required: true
	FeeAmount *MoneyType `json:"FeeAmount"`

	// The promotion amount for a given fee.
	FeePromotion *MoneyType `json:"FeePromotion,omitempty"`

	// The type of fee charged to a seller.
	// Required: true
	FeeType *string `json:"FeeType"`

	// The final fee amount for a given fee.
	// Required: true
	FinalFee *MoneyType `json:"FinalFee"`

	// The tax amount for a given fee.
	TaxAmount *MoneyType `json:"TaxAmount,omitempty"`
}

IncludedFeeDetail The type of fee, fee amount, and other details.

swagger:model IncludedFeeDetail

func (*IncludedFeeDetail) ContextValidate

func (m *IncludedFeeDetail) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this included fee detail based on the context it is used

func (*IncludedFeeDetail) MarshalBinary

func (m *IncludedFeeDetail) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*IncludedFeeDetail) UnmarshalBinary

func (m *IncludedFeeDetail) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*IncludedFeeDetail) Validate

func (m *IncludedFeeDetail) Validate(formats strfmt.Registry) error

Validate validates this included fee detail

type IncludedFeeDetailList

type IncludedFeeDetailList []*IncludedFeeDetail

IncludedFeeDetailList A list of other fees that contribute to a given fee.

swagger:model IncludedFeeDetailList

func (IncludedFeeDetailList) ContextValidate

func (m IncludedFeeDetailList) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this included fee detail list based on the context it is used

func (IncludedFeeDetailList) Validate

func (m IncludedFeeDetailList) Validate(formats strfmt.Registry) error

Validate validates this included fee detail list

type MoneyType

type MoneyType struct {

	// The monetary value.
	Amount float64 `json:"Amount,omitempty"`

	// The currency code in ISO 4217 format.
	CurrencyCode string `json:"CurrencyCode,omitempty"`
}

MoneyType money type

swagger:model MoneyType

func (*MoneyType) ContextValidate

func (m *MoneyType) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this money type based on context it is used

func (*MoneyType) MarshalBinary

func (m *MoneyType) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MoneyType) UnmarshalBinary

func (m *MoneyType) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MoneyType) Validate

func (m *MoneyType) Validate(formats strfmt.Registry) error

Validate validates this money type

type OptionalFulfillmentProgram

type OptionalFulfillmentProgram string

OptionalFulfillmentProgram An optional enrollment program to return the estimated fees when the offer is fulfilled by Amazon (IsAmazonFulfilled is set to true).

swagger:model OptionalFulfillmentProgram

const (

	// OptionalFulfillmentProgramFBACORE captures enum value "FBA_CORE"
	OptionalFulfillmentProgramFBACORE OptionalFulfillmentProgram = "FBA_CORE"

	// OptionalFulfillmentProgramFBASNL captures enum value "FBA_SNL"
	OptionalFulfillmentProgramFBASNL OptionalFulfillmentProgram = "FBA_SNL"

	// OptionalFulfillmentProgramFBAEFN captures enum value "FBA_EFN"
	OptionalFulfillmentProgramFBAEFN OptionalFulfillmentProgram = "FBA_EFN"
)

func (OptionalFulfillmentProgram) ContextValidate

func (m OptionalFulfillmentProgram) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this optional fulfillment program based on context it is used

func (OptionalFulfillmentProgram) Pointer

Pointer returns a pointer to a freshly-allocated OptionalFulfillmentProgram.

func (OptionalFulfillmentProgram) Validate

func (m OptionalFulfillmentProgram) Validate(formats strfmt.Registry) error

Validate validates this optional fulfillment program

type Points

type Points struct {

	// points monetary value
	PointsMonetaryValue *MoneyType `json:"PointsMonetaryValue,omitempty"`

	// points number
	PointsNumber int32 `json:"PointsNumber,omitempty"`
}

Points points

swagger:model Points

func (*Points) ContextValidate

func (m *Points) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this points based on the context it is used

func (*Points) MarshalBinary

func (m *Points) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Points) UnmarshalBinary

func (m *Points) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Points) Validate

func (m *Points) Validate(formats strfmt.Registry) error

Validate validates this points

type PriceToEstimateFees

type PriceToEstimateFees struct {

	// The price of the item.
	// Required: true
	ListingPrice *MoneyType `json:"ListingPrice"`

	// The number of Amazon Points offered with the purchase of an item.
	Points *Points `json:"Points,omitempty"`

	// The shipping cost.
	Shipping *MoneyType `json:"Shipping,omitempty"`
}

PriceToEstimateFees Price information for an item, used to estimate fees.

swagger:model PriceToEstimateFees

func (*PriceToEstimateFees) ContextValidate

func (m *PriceToEstimateFees) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this price to estimate fees based on the context it is used

func (*PriceToEstimateFees) MarshalBinary

func (m *PriceToEstimateFees) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PriceToEstimateFees) UnmarshalBinary

func (m *PriceToEstimateFees) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PriceToEstimateFees) Validate

func (m *PriceToEstimateFees) Validate(formats strfmt.Registry) error

Validate validates this price to estimate fees

Jump to

Keyboard shortcuts

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