@iterable/react-native-sdk - v3.0.1
    Preparing search index...

    Interface IterableEmbeddedMessageElements

    The elements of an embedded message.

    Includes what to display, and how to handle interaction.

    interface IterableEmbeddedMessageElements {
        body?: string | null;
        buttons?: IterableEmbeddedMessageElementsButton[] | null;
        defaultAction?: IterableAction | null;
        mediaUrl?: string | null;
        mediaUrlCaption?: string | null;
        text?: IterableEmbeddedMessageElementsText[] | null;
        title?: string | null;
    }
    Index

    Properties

    body?: string | null

    The message's body text.

    Buttons to display.

    defaultAction?: IterableAction | null

    What to do when a user clicks on the message (outside of its buttons).

    mediaUrl?: string | null

    The URL of an image associated with the message.

    mediaUrlCaption?: string | null

    Text description of the image.

    Extra data fields. Not for display.

    title?: string | null

    The message's title text.