Interface IRawNotification

Represents the raw data of a single Notification.

interface IRawNotification {
    icon: INotificationIcon;
    id: string;
    message: INotificationMessage;
    template: INotificationTemplate;
    timestampMs: string;
}

Properties

icon: INotificationIcon
id: string
message: INotificationMessage
template: INotificationTemplate
timestampMs: string