Mews · Schema

Bill update parameters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
BillId string Unique identifier of the bill to update.
AccountId object Unique identifier of the account (`Customer` or `Company`) the bill is issued to (or null if the account should not be updated).
AssociatedAccountIds object Unique identifiers of the `Customer` or `Company` that are associated to the bill (or null if the account should not be updated).
View JSON Schema on GitHub

JSON Schema

mews-billupdateparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillUpdateParameters",
  "title": "Bill update parameters",
  "required": [
    "BillId"
  ],
  "type": "object",
  "properties": {
    "BillId": {
      "type": "string",
      "description": "Unique identifier of the bill to update.",
      "format": "uuid"
    },
    "AccountId": {
      "title": "Guid update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/GuidUpdateValue"
        }
      ],
      "description": "Unique identifier of the account (`Customer` or `Company`) the bill is issued to (or null if the account should not be updated).",
      "nullable": true
    },
    "AssociatedAccountIds": {
      "title": "Associated account IDs update parameters",
      "allOf": [
        {
          "$ref": "#/components/schemas/AssociatedAccountIdsUpdate"
        }
      ],
      "description": "Unique identifiers of the `Customer` or `Company` that are associated to the bill (or null if the account should not be updated).",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "BillUpdateParameters"
}