Mews · Schema

Bill extent

Extent of data to be returned. E.g. it is possible to specify that together with the bills, payments and revenue items should be also returned. **Deprecated!**

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Items boolean Whether the response should contain payments and revenue items.
View JSON Schema on GitHub

JSON Schema

mews-billextent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillExtent",
  "title": "Bill extent",
  "type": "object",
  "properties": {
    "Items": {
      "type": "boolean",
      "description": "Whether the response should contain payments and revenue items.",
      "deprecated": true,
      "x-deprecatedMessage": "Use `orderItems/getAll` and `payments/getAll` with `BillIds` filter instead."
    }
  },
  "additionalProperties": false,
  "description": "Extent of data to be returned. E.g. it is possible to specify that together with the bills, payments and revenue items should be also returned. **Deprecated!**",
  "x-schema-id": "BillExtent"
}