Mews · Schema

MessageThreadResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
MessageThreads array The filtered message threads.
Cursor string Unique identifier of the last and hence oldest message thread returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older message threads.
View JSON Schema on GitHub

JSON Schema

mews-messagethreadresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageThreadResult",
  "title": "MessageThreadResult",
  "required": [
    "MessageThreads"
  ],
  "type": "object",
  "properties": {
    "MessageThreads": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MessageThread"
      },
      "description": "The filtered message threads."
    },
    "Cursor": {
      "type": "string",
      "description": "Unique identifier of the last and hence oldest message thread returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older message threads.",
      "format": "uuid",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "MessageThreadResult"
}