Type Alias AlertingTaskRecipientPatchInner

type AlertingTaskRecipientPatchInner = {
    op:
        | "remove"
        | "add"
        | "replace"
        | "enable"
        | "disable"
        | "subscribe"
        | "unsubscribe";
    recipientType: "userid"
    | "groupid";
    value: unknown;
}
Index

Properties

op:
    | "remove"
    | "add"
    | "replace"
    | "enable"
    | "disable"
    | "subscribe"
    | "unsubscribe"

The operation to be performed.

recipientType: "userid" | "groupid"

Defines the path for the given resource field to patch.

value: unknown

The value to be used for this operation.