AboutSupportDeveloper GuideVersion 22.3.18

Event fired whenever a reminder has been created either via the Notifications API or by the user on the Notification Center UI

"notification-reminder-created"

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

Properties

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

The reminder notification that has just been created.

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

reminderDate: Date

The reminder time-out timestamp.

type