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

    Class IterableInboxMetadata

    Metadata for a message.

    Index

    Constructors

    Properties

    Methods

    Constructors

    • Constructs an instance of IterableInboxMetadata.

      Parameters

      • title: undefined | string

        The title of the inbox item.

      • subtitle: undefined | string

        The subtitle of the inbox item.

      • icon: undefined | string

        The icon associated with the inbox item.

      Returns IterableInboxMetadata

    Properties

    icon?: string

    The icon associated with the message

    subtitle?: string

    The message subtitle (this is sometimes a preview of the body text)

    title?: string

    The message title

    Methods

    • Creates an instance of IterableInboxMetadata from a dictionary object.

      Parameters

      • dict: {
            icon: undefined | string;
            subtitle: undefined | string;
            title: undefined | string;
        }

        The dictionary object containing the metadata properties. This corresponds to the properties in IterableInboxMetadata.

        • icon: undefined | string

          The icon associated with the message

        • subtitle: undefined | string

          The message subtitle (this is sometimes a preview of the body text)

        • title: undefined | string

          The message title

      Returns IterableInboxMetadata

      A new instance of IterableInboxMetadata with the provided properties.