Shipping method for delivering physical goods.

interface ShippingMethod {
    amount: string;
    detail?: string;
    identifier?: string;
    label: string;
    type?: SummaryItemType;
}

Hierarchy (view full)

Properties

amount: string

Summary item’s amount.

The amount’s currency is specified at the payment level by setting a value for the currencyCode property on the request.

detail?: string

A user - readable description of the shipping method.

identifier?: string

A unique identifier for the shipping method, used by the app.

label: string

Short, localized description of the item.

Type that indicates whether the amount is final.