Product
interface Product
{
id: string;
reducedPrice: number;
last30DaysMinPrice: number;
}
Properties
Name | Type | Description |
---|---|---|
id | string | Product ID |
reducedPrice | number | (optional) Price of the product after reduction. Required when the discountFactor in special offer is not defined. |
last30DaysMinPrice | number | (optional) Minimum price of the product in the last 30 days |
Description
Product parameters.