interface ShippingRateDraft {
    freeAbove?: _Money;
    price: _Money;
    tiers?: ShippingRatePriceTier[];
}

Properties

freeAbove?: _Money

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

price: _Money

Money value of the ShippingRate.

Price tiers for the ShippingRate.

Generated using TypeDoc