Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| quantity | integer | Amount of units in the cart. |
| unitPrice | integer | |
| status | object | |
| statusName | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SimulationItemResult",
"title": "SimulationItemResult",
"type": "object",
"properties": {
"id": {
"type": "string",
"nullable": true
},
"quantity": {
"type": "integer",
"format": "int32",
"title": "quantity",
"description": "Amount of units in the cart.",
"example": 5
},
"unitPrice": {
"type": "integer",
"format": "int64",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ItemSimulationStatus"
},
"statusName": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
}