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). |
JSON Schema
{
"$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"
}