Skip to content

VariantSpecialOffer

The VariantSpecialOffer object represents a variant special offer in the storefront.

classDiagram
  direction LR
  VariantSpecialOffer --> SpecialOffer
  VariantSpecialOffer --> Price
  class SpecialOffer{
  }
  class Price{
  }
  class VariantSpecialOffer{
    SpecialOffer details
    Price price
    Price unitPrice
    Price priceDifference
    float discountPercentage
    string formatDiscount
    ?Price priceInProductCurrency
    ?Price unitPriceInProductCurrency
    ?Price priceDifferenceInProductCurrency
  }

Properties

Attribute name Type Description
details SpecialOffer The SpecialOffer object representing a promotion details.
price Price The Price object representing the special offer price of the variant.
unitPrice Price The Price object representing the special offer unit price of the variant.
priceDifference Price The Price object representing the price difference between special offer price and base price.
discountPercentage float Represents the percentage discount.
priceInProductCurrency null|Price The Price object representing the special offer price of the variant in currency set on product.
unitPriceInProductCurrency null|Price The Price object representing the special offer unit price of the variant in currency set on product.
priceDifferenceInProductCurrency null|Price The Price object representing the price difference between special offer price and base price in currency set on product.
formatDiscount string Returns the rounded percentage discount with % character. formatDiscount is also called while displaying

Examples

details property

{{ variantSpecialOffer.details.discount }}
5.3

price property

{{ variantSpecialOffer.price.formatGross }}
$21.09

unitPrice property

{{ variantSpecialOffer.unitPrice.formatGross }}
$10.87

priceDifference property

{{ variantSpecialOffer.priceDifference.formatGross }}
$14.56

discountPercentage property

{{ variantSpecialOffer.discountPercentage }}
3.4

priceInProductCurrency property

{{ variantSpecialOffer.priceInProductCurrency.formatGross }}
12.98 zł

unitPriceInProductCurrency property

{{ variantSpecialOffer.unitPriceInProductCurrency.formatGross }}
6.32 zł

priceDifferenceInProductCurrency property

{{ variantSpecialOffer.priceDifferenceInProductCurrency.formatGross }}
12.45 zł

formatDiscount property

{{ variantSpecialOffer.formatDiscount }} - {{ variantSpecialOffer }}
20% - 20%