interface InboxMessage {
    extras: Record<string, string>;
    id: string;
    isRead: boolean;
    listIconUrl?: string;
    sentDate: number;
    title: string;
}

Properties

extras: Record<string, string>

String to String map of any message extras.

id: string

The message ID. Needed to display, mark as read, or delete the message.

isRead: boolean

The unread / read status of the message.

listIconUrl?: string

Optional - The icon url for the message.

sentDate: number

The message sent date in milliseconds.

title: string

The message title.