OpenFin Workspace API
    Preparing search index...

    Interface NotificationReminderCreatedEvent

    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;
        reminderDate: Date;
        type: "notification-reminder-created";
    }
    Index
    notification: Readonly

    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: "notification-reminder-created"