Specifies a Price tier that applies when the minimum quantity for the LineItem of a ProductVariant with the related Price is reached in a Cart.

interface PriceTierDraft {
    minimumQuantity: number;
    value: _Money;
}

Properties

minimumQuantity: number

Minimum quantity this Price tier is valid for.

The minimum quantity is always greater than or equal to 2. The base Price is interpreted as valid for a minimum quantity equal to 1.
value: _Money

Money value that applies when the minimumQuantity is greater than or equal to the LineItem quantity.

The `currencyCode` of a Price tier must be the same as the `currencyCode` in the `value` of the related Price.

Generated using TypeDoc