Unblu Embedded App Component API
    Preparing search index...

    Interface FileMessageData

    interface FileMessageData {
        caption: string;
        captionType: ConversationMessageTextType;
        fallbackText: string;
        file: File;
        locale?: string;
        quickReplies: QuickReply[];
        type: MessageType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    caption: string

    The caption text for the message.

    The type of the caption message.

    fallbackText: string

    The fallback text of the message.

    file: File

    The file as a JavaScript file type.

    locale?: string

    The language of the message, expressed as a locale string (e.g., "en-US"). If not set, the service attempts to detect the language from the message text, but only if automatic language detection is enabled. If auto-detection is disabled, the locale remains null, no language is set for the message, and the message isn't translated.

    quickReplies: QuickReply[]

    A list of quick replies. Optional.

    The type of the message.