1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
updateInlineBotCallbackQuery | This notification is received by bots when a button is pressed | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateInlineBotCallbackQuery
This notification is received by bots when a button is pressed
Attributes:
Name | Type | Required | Description |
---|---|---|---|
query_id | long | Yes | Query ID |
user_id | int | Yes | ID of the user that pressed the button |
msg_id | InputBotInlineMessageID | Yes | ID of the inline message with the button |
data | bytes | Yes | Data associated with the callback button. Be aware that a bad client can send arbitrary data in this field. |
Type: Update
Example:
$updateInlineBotCallbackQuery = ['_' => 'updateInlineBotCallbackQuery', 'query_id' => long, 'user_id' => int, 'msg_id' => InputBotInlineMessageID, 'data' => 'bytes'];
Or, if you're into Lua:
updateInlineBotCallbackQuery={_='updateInlineBotCallbackQuery', query_id=long, user_id=int, msg_id=InputBotInlineMessageID, data='bytes'}