Properties
| Name | Type | Description |
|---|---|---|
| status | string | |
| isSkipped | boolean | |
| quantity | integer | Amount of units in the cart. |
| manualPrice | integer | Manual price. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateItemInput",
"title": "UpdateItemInput",
"type": "object",
"properties": {
"status": {
"type": "string",
"nullable": true
},
"isSkipped": {
"type": "boolean",
"nullable": true
},
"quantity": {
"type": "integer",
"format": "int32",
"title": "quantity",
"description": "Amount of units in the cart.",
"example": 5
},
"manualPrice": {
"type": "integer",
"format": "int32",
"title": "manualPrice",
"description": "Manual price.",
"default": null,
"nullable": true,
"example": 40
}
},
"additionalProperties": false
}