Field | Type | Description |
---|---|---|
id | Int | Id of the product price |
name | String | Name of the product price (translated) |
price | Price | Price of this product price (cents). Please also check if the shop where you want to order has an offer with a discount for this product price available. |
offer | OfferItem.detailed? | Nullable. Specificies where a discount should get appllied. A shop can give a complete category a discount, or only a certain product, or only a fixed product price. When calculating the discount, always round the price to 1 cent before multiplying it with an amount, persons or kilograms. |
{
"id": 13,
"name": "...",
"price": {
"value": 10,
"currency": "EUR"
},
"offer": {
"type": "percentage",
"x": 12,
"y": 11,
"percentage": 10,
"minimum": 14,
"offer": {
"id": 13,
"name": "Black Friday",
"from_date": "2019-01-31",
"until_date": "2019-01-31",
"valid_for": "order",
"recurring": 18,
"recurring_on": {
"day_1": 19,
"day_2": 18,
"day_3": 12,
"day_4": 10,
"day_5": 14,
"day_6": 19,
"day_7": 12
}
},
"applies_to": "category",
"item_id": 12
}
}