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

Properties

freeAbove: Money
isMatching: boolean

Only appears in response to requests for ShippingMethods by Cart or location to mark this shipping rate as one that matches the Cart or location.

price: Money