Interface UpdateNewInlineCallbackQuery

A new incoming callback query from a message sent via a bot; for bots only. Subtype of Update.

interface UpdateNewInlineCallbackQuery {
    @type: "updateNewInlineCallbackQuery";
    chat_instance: string;
    id: string;
    inline_message_id: string;
    payload: CallbackQueryPayload;
    sender_user_id: number;
}

Properties

@type: "updateNewInlineCallbackQuery"
chat_instance: string

An identifier uniquely corresponding to the chat a message was sent to.

id: string

Unique query identifier.

inline_message_id: string

Identifier of the inline message from which the query originated.

Query payload.

sender_user_id: number

Identifier of the user who sent the query.