ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Interface Magento2PriceTier

    Bulk-pricing tier on a Magento 2 product. Returned in the price_tiers field for products that offer quantity-based discounts.

    const tier: Magento2PriceTier = {
    quantity: 10,
    final_price: { value: 8.5, currency: "USD" }
    };
    interface Magento2PriceTier {
        quantity: number;
        final_price: Magento2Money;
        discount?: Magento2Discount;
    }
    Index

    Properties

    quantity: number

    Minimum quantity required for this tier price

    final_price: Magento2Money

    Price applied at or above the tier quantity

    discount?: Magento2Discount

    Optional discount metadata for the tier