Fields when send to the api inside a request.
Field | Type | Description |
---|---|---|
name | [Language: String] | Name of the product price (translated) |
price | UInt | Price of this product price (cents) |
order | Int | The product prices of a product are sorted on the order property (descending). If you specify the same order for multiple product prices, the id of the product price is used. Setting the same order for all product prices is discouraged. |
Fields when returned by the api in a response.
Field | Type | Description |
---|---|---|
name | [Language: String] | Name of the product price (translated) |
price | UInt | Price of this product price (cents) |
id | Int | Id of the product price |
order | Int | The product prices of a product are sorted on the order property (descending). If you specify the same order for multiple product prices, the id of the product price is used. Setting the same order for all product prices is discouraged. |
When used inside a request.
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"price": 11,
"order": 10
}
When returned in a response.
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"price": 13,
"id": 10,
"order": 14
}