Properties
| Name | Type | Description |
|---|---|---|
| OutletItems | array | The outlet items. |
| OutletBills | array | The outlet bills of the items. |
| Cursor | string | Unique identifier of the last and hence oldest outlet item returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent r |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OutletItemResult",
"title": "OutletItemResult",
"required": [
"OutletBills",
"OutletItems"
],
"type": "object",
"properties": {
"OutletItems": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OutletItem"
},
"description": "The outlet items."
},
"OutletBills": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OutletBill"
},
"description": "The outlet bills of the items."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last and hence oldest outlet item returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent request to fetch the next batch of older outlet items.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "OutletItemResult"
}