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

Properties

freeAbove?: CentPrecisionMoney

Free shipping is applied 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.

Currency amount of the ShippingRate.

Price tiers for the ShippingRate.