4baac3178e
Add PHP, Lua language tag to Code area
1.5 KiB
1.5 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 |
chat_instance | long | Yes |
data | bytes | Optional |
game_short_name | string | Optional |
Type: Update
Example:
$updateInlineBotCallbackQuery = ['_' => 'updateInlineBotCallbackQuery', 'query_id' => long, 'user_id' => int, 'msg_id' => InputBotInlineMessageID, 'chat_instance' => long, 'data' => 'bytes', 'game_short_name' => 'string'];
PWRTelegram json-encoded version:
{"_": "updateInlineBotCallbackQuery", "query_id": long, "user_id": int, "msg_id": InputBotInlineMessageID, "chat_instance": long, "data": {"_": "bytes", "bytes":"base64 encoded bytes"}, "game_short_name": "string"}
Or, if you're into Lua:
updateInlineBotCallbackQuery={_='updateInlineBotCallbackQuery', query_id=long, user_id=int, msg_id=InputBotInlineMessageID, chat_instance=long, data='bytes', game_short_name='string'}