Notification data that can be used to access notification template data.

interface NotificationData {
    label?: string;
    tags?: string[];
    templateKey: string;
    templateVariables: {
        key: string;
        value: string | number | boolean;
    };
}

Properties

label?: string

Label of this notification.

tags?: string[]

Tags of this notification template.

templateKey: string

Template key of this notification.

templateVariables: {
    key: string;
    value: string | number | boolean;
}

Template variables of this notification.