Home > @infiniteobjects/shopify-data-manager > AdminTypes > PriceListPrice
Represents information about pricing for a product variant as defined on a price list, such as the price, compare at price, and origin type. You can use a PriceListPrice to specify a fixed price for a specific product variant.
Signature:
export interface PriceListPrice
Property | Modifiers | Type | Description |
---|---|---|---|
compareAtPrice? | Maybe<MoneyV2> | (Optional) The compare-at price of the product variant on this price list. | |
originType | PriceListPriceOriginType | `${PriceListPriceOriginType}` | The origin of a price, either fixed (defined on the price list) or relative (calculated using a price list adjustment configuration). | |
price | MoneyV2 | The price of the product variant on this price list. | |
quantityPriceBreaks | QuantityPriceBreakConnection | A list of quantity breaks for the product variant. | |
variant | ProductVariant | The product variant associated with this price. |