Interface Notification

Contains information about a notification.

interface Notification {
    @type: "notification";
    date: number;
    id: number;
    is_silent?: boolean;
    type: NotificationType;
}

Properties

@type: "notification"
date: number

Notification date.

id: number

Unique persistent identifier of this notification.

is_silent?: boolean

True, if the notification was explicitly sent without sound.

Notification type.