1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
updateBotCallbackQuery | A callback button was pressed, and the button data was sent to the bot that created the button | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateBotCallbackQuery
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 | int | Yes | ID of the user that pressed the button |
peer | Peer | Yes | Chat where the inline keyboard was sent |
msg_id | int | Yes | Message ID |
data | bytes | Yes | Callback data |
Type: Update
Example:
$updateBotCallbackQuery = ['_' => 'updateBotCallbackQuery', 'query_id' => long, 'user_id' => int, 'peer' => Peer, 'msg_id' => int, 'data' => 'bytes'];
Or, if you're into Lua:
updateBotCallbackQuery={_='updateBotCallbackQuery', query_id=long, user_id=int, peer=Peer, msg_id=int, data='bytes'}