Mews · Schema

Bill options

Options of the bill.

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
DisplayCustomer boolean Display customer information on a bill.
DisplayTaxation boolean Display taxation detail on a bill.
TrackReceivable boolean Tracking of payments is enabled for bill, only applicable for `BillType` of `Invoice`.
DisplayCid boolean Display CID number on bill, only applicable for `BillType` of `Invoice`.
Rebated boolean Whether the bill is rebated (both fully or partially).
View JSON Schema on GitHub

JSON Schema

mews-billoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillOptions",
  "title": "Bill options",
  "type": "object",
  "properties": {
    "DisplayCustomer": {
      "type": "boolean",
      "description": "Display customer information on a bill."
    },
    "DisplayTaxation": {
      "type": "boolean",
      "description": "Display taxation detail on a bill."
    },
    "TrackReceivable": {
      "type": "boolean",
      "description": "Tracking of payments is enabled for bill, only applicable for `BillType` of `Invoice`."
    },
    "DisplayCid": {
      "type": "boolean",
      "description": "Display CID number on bill, only applicable for `BillType` of `Invoice`."
    },
    "Rebated": {
      "type": "boolean",
      "description": "Whether the bill is rebated (both fully or partially)."
    }
  },
  "additionalProperties": false,
  "description": "Options of the bill.",
  "x-schema-id": "BillOptions"
}