1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
updateInlineBotCallbackQuery | updateInlineBotCallbackQuery attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateInlineBotCallbackQuery
Attributes:
Name | Type | Required |
---|---|---|
query_id | long | Yes |
user_id | int | Yes |
msg_id | InputBotInlineMessageID | Yes |
data | bytes | Yes |
Type: Update
Example:
$updateInlineBotCallbackQuery = ['_' => 'updateInlineBotCallbackQuery', 'query_id' => long, 'user_id' => int, 'msg_id' => InputBotInlineMessageID, 'data' => 'bytes'];
PWRTelegram json-encoded version:
{"_": "updateInlineBotCallbackQuery", "query_id": long, "user_id": int, "msg_id": InputBotInlineMessageID, "data": {"_": "bytes", "bytes":"base64 encoded bytes"}}
Or, if you're into Lua:
updateInlineBotCallbackQuery={_='updateInlineBotCallbackQuery', query_id=long, user_id=int, msg_id=InputBotInlineMessageID, data='bytes'}