Interface PreparedInlineMessage

Represents a ready to send inline message. Use sendInlineQueryResultMessage to send the message.

interface PreparedInlineMessage {
    @type: "preparedInlineMessage";
    chat_types: TargetChatTypes;
    inline_query_id: string;
    result: InlineQueryResult;
}

Properties

@type: "preparedInlineMessage"
chat_types: TargetChatTypes

Types of the chats to which the message can be sent.

inline_query_id: string

Unique identifier of the inline query to pass to sendInlineQueryResultMessage.

Resulted inline message of the query.