Model that describes cheques.
| Name | Type | Description |
|---|---|---|
| agregate_status | String | Cheque aggregation status: New - new, Prepared - ready for aggregation, Agregated - aggregated. Allowed values: Default, New, Prepared, Agregated. |
| amount | Decimal | Cheque amount. |
| card | RetailCard | Customer card. |
| cashier | User | Cashier. |
| code | String | Cheque code. |
| date | Int64 | Cheque creation date as Unix time. |
| doc_order_delivery_id | Int64 | Linked DocOrderDelivery document ID. The value is 0 when the cheque is not linked to a delivery order. |
| is_return | Boolean | Indicates whether the cheque is a return cheque. |
| last_update | Int64 | Last record update date as Unix time in seconds. |
| return_reason | RetailReturnReason | Return reason. |
| seller | User | Seller. |
| session | String | UUID of the shift linked to the cheque. |
| status | String | Cheque status: Opened - opened, Paying - payment in progress, Closed - closed, Delayed - delayed, DelayedPayment - delayed during payment, Canceled - canceled. Allowed values: Default, Opened, Paying, Closed, Delayed, DelayedPayment, Canceled. |
| uuid | String | Cheque UUID. |