AboutSupportDeveloper GuideVersion 22.3.18

Event fired whenever a reminder has been canceled by the user, reminder notification is deleted or the reminder timeout has reached.

"notification-reminder-removed"

interface NotificationReminderRemovedEvent {
    notification: Readonly<Required<Omit<TemplateMarkdown, "buttons"> | Omit<TemplateList, "buttons"> | Omit<TemplateCustom, "buttons">> & {
        buttons: readonly Required<ButtonOptions>[];
    }>;
    type: "notification-reminder-removed";
}

Properties

Properties

notification: Readonly<Required<Omit<TemplateMarkdown, "buttons"> | Omit<TemplateList, "buttons"> | Omit<TemplateCustom, "buttons">> & {
    buttons: readonly Required<ButtonOptions>[];
}>

The notification associated with the reminder that has just been removed.

This object will match what is returned from the create call when the notification was first created.

type