Properties
| Name | Type | Description |
|---|---|---|
| Messages | array | The filtered messages. |
| Cursor | string | Unique identifier of the last and hence oldest message 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/MessageResult",
"title": "MessageResult",
"required": [
"Messages"
],
"type": "object",
"properties": {
"Messages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Message"
},
"description": "The filtered messages."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last and hence oldest message 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": "MessageResult"
}