You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x
Price
Representation of a Price Price
export interface Price {
'currencyIso'?: string;
'formattedValue'?: string;
'maxQuantity'?: number;
'minQuantity'?: number;
'priceType'?: PricePriceTypeEnum;
'value'?: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
currencyIso | Optional | string | Currency iso format {string} Price |
formattedValue | Optional | string | Value of price formatted {string} Price |
maxQuantity | Optional | number | Maximum quantity of the price value {number} Price |
minQuantity | Optional | number | Minimum quantity of the price value {number} Price |
priceType | Optional | PricePriceTypeEnum | Type of the price {string} Price |
value | Optional | number | Value of price in BigDecimal format {number} Price |