Properties
| Name | Type | Description |
|---|---|---|
| object | The email channel subscription. | |
| sms | object | The SMS channel subscription. |
| mobile_push | object | The mobile push channel subscription. |
| object | The whatsapp channel subscription. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Subscriptions",
"title": "Subscriptions",
"type": "object",
"properties": {
"email": {
"description": "The email channel subscription.",
"$ref": "#/components/schemas/EmailChannel",
"nullable": true
},
"sms": {
"description": "The SMS channel subscription.",
"$ref": "#/components/schemas/SMSChannel",
"nullable": true
},
"mobile_push": {
"description": "The mobile push channel subscription.",
"$ref": "#/components/schemas/PushChannel",
"nullable": true
},
"whatsapp": {
"description": "The whatsapp channel subscription.",
"$ref": "#/components/schemas/WhatsappChannel",
"nullable": true
}
}
}