Mews · Schema

Customer update options

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
SendMarketingEmails object Send marketing email (or `null` if the value should not be updated).
Invoiceable object Invoiceable (or `null` if the value should not be updated).
BillAddressObjection object Bill address objection (or `null` if the value should not be updated).
View JSON Schema on GitHub

JSON Schema

mews-customeroptionupdateparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerOptionUpdateParameters",
  "title": "Customer update options",
  "type": "object",
  "properties": {
    "SendMarketingEmails": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Send marketing email (or `null` if the value should not be updated).",
      "nullable": true
    },
    "Invoiceable": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Invoiceable (or `null` if the value should not be updated).",
      "nullable": true
    },
    "BillAddressObjection": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Bill address objection (or `null` if the value should not be updated).",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "CustomerOptionUpdateParameters"
}