Mews · Schema

Bill close account parameters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Id string Unique identifier of the associated account (`Customer` or `Company`) the bill is associated to.
TaxIdentifier object Tax identifier of the associated account to be put on a bill.
Address object Address of the associated account to be displayed on bill. Overrides the default one taken from account profile.
View JSON Schema on GitHub

JSON Schema

mews-billcloseaccountparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillCloseAccountParameters",
  "title": "Bill close account parameters",
  "required": [
    "Id"
  ],
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "Unique identifier of the associated account (`Customer` or `Company`) the bill is associated to.",
      "format": "uuid"
    },
    "TaxIdentifier": {
      "title": "String update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/StringUpdateValue"
        }
      ],
      "description": "Tax identifier of the associated account to be put on a bill.",
      "nullable": true
    },
    "Address": {
      "title": "Address parameters",
      "allOf": [
        {
          "$ref": "#/components/schemas/AddressParameters"
        }
      ],
      "description": "Address of the associated account to be displayed on bill. Overrides the default one taken from account profile.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "BillCloseAccountParameters"
}