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

    Interface Magento2PriceRange

    Price range for a Magento 2 product. The minimum and maximum bounds bracket the variant prices for products with multiple variants (Configurable, Grouped). For products with a single price both bounds are identical.

    const range: Magento2PriceRange = {
    minimum_price: {
    regular_price: { value: 9.9, currency: "USD" },
    final_price: { value: 9.9, currency: "USD" }
    },
    maximum_price: {
    regular_price: { value: 229.9, currency: "USD" },
    final_price: { value: 229.9, currency: "USD" }
    }
    };
    interface Magento2PriceRange {
        minimum_price: Magento2PriceBound;
        maximum_price: Magento2PriceBound;
    }
    Index

    Properties

    minimum_price: Magento2PriceBound

    Lowest price across product variants

    maximum_price: Magento2PriceBound

    Highest price across product variants