@ua/react-native-airship
    Preparing search index...

    Interface InboxMessage

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

    Properties

    expirationDate?: number

    Optional - The message expiration date in milliseconds.

    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.