OrderItemOptionCategory
If this item can be customised, this contains the categories of options that can be chosen (e.g 'Toppings', 'Sides' etc)
namestring
The name of the group of options (e.g 'Sides', 'Toppings', 'Drinks' etc).
selectedOptions object[]
The options that were selected (e.g 'Plain Chips', 'Peri-Peri Chips', 'Noodles' etc)
Array [
namestring
The name of the selected option (e.g 'Chips')
optionPrice object
The amount of the payment
amountint64
The amount in the currency specified. Note that the amount will be represented as a whole number from the least significant digit (e.g 523 USD = $5.23)
Example:
1099currencystring
ISO 4217 Currency code e.g 'GBP'
Example:
GBP]
OrderItemOptionCategory
{
"name": "string",
"selectedOptions": [
{
"name": "string",
"optionPrice": {
"amount": 1099,
"currency": "GBP"
}
}
]
}