Alokai

Price

Representation of a Price Price

export interface Price {
	'currencyIso'?: string;
	'formattedValue'?: string;
	'maxQuantity'?: number;
	'minQuantity'?: number;
	'priceType'?: PricePriceTypeEnum;
	'value'?: number;
}

Properties

NameRequiredTypeDescription
currencyIsoOptionalstringCurrency iso format {string} Price
formattedValueOptionalstringValue of price formatted {string} Price
maxQuantityOptionalnumberMaximum quantity of the price value {number} Price
minQuantityOptionalnumberMinimum quantity of the price value {number} Price
priceTypeOptionalPricePriceTypeEnumType of the price {string} Price
valueOptionalnumberValue of price in BigDecimal format {number} Price

Referenced Types

On this page