ultra-telegram-framework
    Preparing search index...

    Interface SendMessageDraftParams

    interface SendMessageDraftParams {
        chat_id: number;
        draft_id: number;
        entities?: MessageEntity[];
        message_thread_id?: number;
        parse_mode?: string;
        text?: string;
    }
    Index

    Properties

    chat_id: number

    Unique identifier for the target private chat

    draft_id: number

    Unique identifier of the message draft; must be non-zero. Changes of drafts with the same identifier are animated.

    entities?: MessageEntity[]

    A JSON-serialized list of special entities that appear in message text, which can be specified instead of parse_mode

    message_thread_id?: number

    Unique identifier for the target message thread

    parse_mode?: string

    Mode for parsing entities in the message text. See formatting options for more details.

    text?: string

    Text of the message to be sent, 0-4096 characters after entities parsing. Pass an empty text to show a "Thinking..." placeholder.