Interface UpdateNewCallbackQuery

A new incoming callback query; for bots only. Subtype of Update.

interface UpdateNewCallbackQuery {
    @type: "updateNewCallbackQuery";
    chat_id: number;
    chat_instance: string;
    id: string;
    message_id: number;
    payload: CallbackQueryPayload;
    sender_user_id: number;
}

Properties

@type: "updateNewCallbackQuery"
chat_id: number

Identifier of the chat where the query was sent.

chat_instance: string

Identifier that uniquely corresponds to the chat to which the message was sent.

id: string

Unique query identifier.

message_id: number

Identifier of the message from which the query originated.

Query payload.

sender_user_id: number

Identifier of the user who sent the query.