Type Alias AlertingTaskRecipientPatch

AlertingTaskRecipientPatch: AlertingTaskRecipientPatchInner[]

A custom custom JSON Patch document, as an array of objects with operation, recipient type and value. Original defined in https://datatracker.ietf.org/doc/html/rfc6902.

[
{
op: "add",
recipientType: "userid",
value: {
"enabled": true,
"value": "recipient-1"
}
},
{
op: "remove",
recipientType: "userid"
},
{
op: "enable",
recipientType: "userid"
},
{
op: "disable",
recipientType: "userid"
},
{
op: "replace",
recipientType: "userid",
value: [
{
"enabled": true,
"value": "recipient-1"
},
{
"enabled": false,
"value": "recipient-2"
}
]
}
]