interface ShippingRate {
    freeAbove?: TypedMoney;
    isMatching?: boolean;
    price: TypedMoney;
    tiers: ShippingRatePriceTier[];
}

Properties

freeAbove?: TypedMoney

Shipping is free if the sum of the (Custom) Line Item Prices reaches the specified value.

isMatching?: boolean

true if the ShippingRate matches given Cart or Location. Only appears in response to requests for Get ShippingMethods for a Cart or Get ShippingMethods for a Location.

price: TypedMoney

Currency amount of the ShippingRate.

Price tiers for the ShippingRate.

Generated using TypeDoc