ChatBotKit Node SDK
    Preparing search index...

    Represents a single message in the widget conversation.

    interface Message {
        id: string;
        meta?: Record<string, unknown>;
        text: string;
        type: "user" | "bot" | "input";
    }
    Index

    Properties

    Properties

    id: string

    Unique identifier for the message

    meta?: Record<string, unknown>

    Optional metadata associated with the message

    text: string

    The text content of the message

    type: "user" | "bot" | "input"

    The type of message