MadelineProtoDocs/docs/API_docs/constructors/updateBotCallbackQuery.md
2024-05-01 14:53:46 +02:00

1.5 KiB

title description nav_exclude image
updateBotCallbackQuery A callback button was pressed, and the button data was sent to the bot that created the button true https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateBotCallbackQuery

Back to constructors index

A callback button was pressed, and the button data was sent to the bot that created the button

Attributes:

Name Type Required Description
query_id long Yes Query ID
user_id long Yes ID of the user that pressed the button
peer long Yes Chat where the inline keyboard was sent
msg_id int Yes Message ID
chat_instance long Yes Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.
data bytes Optional Callback data
game_short_name string Optional Short name of a Game to be returned, serves as the unique identifier for the game

Type: Update

Example:

$updateBotCallbackQuery = ['_' => 'updateBotCallbackQuery', 'query_id' => long, 'user_id' => long, 'peer' => long, 'msg_id' => int, 'chat_instance' => long, 'data' => 'bytes', 'game_short_name' => 'string'];