Properties
| Name | Type | Description |
|---|---|---|
| TravelAgencyContracts | array | The travel agency contracts. |
| Cursor | string | Unique identifier of the last and hence oldest contract returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older messages. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContractResult",
"title": "ContractResult",
"required": [
"TravelAgencyContracts"
],
"type": "object",
"properties": {
"TravelAgencyContracts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TravelAgencyContract"
},
"description": "The travel agency contracts."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last and hence oldest contract returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older messages.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "ContractResult"
}