@iterable/react-native-sdk - v2.0.3
    Preparing search index...

    Interface IterableInboxRowViewModel

    Represents the view model for an inbox row in the Iterable SDK.

    interface IterableInboxRowViewModel {
        createdAt?: Date;
        imageUrl?: string;
        inAppMessage: IterableInAppMessage;
        read: boolean;
        subtitle?: string;
        title: string;
    }
    Index

    Properties

    createdAt?: Date

    The date and time when the inbox row was created. This field is optional.

    imageUrl?: string

    The URL of the image associated with the inbox row. This field is optional.

    inAppMessage: IterableInAppMessage

    The in-app message associated with the inbox row.

    read: boolean

    Indicates whether the inbox row has been read.

    subtitle?: string

    The subtitle of the inbox row. This field is optional.

    title: string

    The title of the inbox row.