Properties
| Name | Type | Description |
|---|---|---|
| name | string | The itemʼs product name. |
| quantity | number | Quantity of this item. |
| isTaxable | boolean | Whether the item is taxable. |
| amount | number | Price of the item |
| type | string | Explicitly specifying the gift certificate type |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OrderItemGiftCertificate",
"title": "Order Item Gift Certificate",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The item\u02bcs product name."
},
"quantity": {
"type": "number",
"description": "Quantity of this item.",
"format": "double"
},
"isTaxable": {
"type": "boolean",
"description": "Whether the item is taxable."
},
"amount": {
"type": "number",
"description": "Price of the item",
"format": "double"
},
"type": {
"type": "string",
"description": "Explicitly specifying the gift certificate type"
}
},
"x-internal": false
}