MadelineProtoDocs/docs/API_docs/constructors/updateBotCallbackQuery.md
2018-04-19 17:56:40 +00:00

1.4 KiB

title description image
updateBotCallbackQuery updateBotCallbackQuery attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateBotCallbackQuery

Back to constructors index

Attributes:

Name Type Required
query_id long Yes
user_id int Yes
peer Peer Yes
msg_id int Yes
chat_instance long Yes
data bytes Optional
game_short_name string Optional

Type: Update

Example:

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

PWRTelegram json-encoded version:

{"_": "updateBotCallbackQuery", "query_id": long, "user_id": int, "peer": Peer, "msg_id": int, "chat_instance": long, "data": {"_": "bytes", "bytes":"base64 encoded bytes"}, "game_short_name": "string"}

Or, if you're into Lua:

updateBotCallbackQuery={_='updateBotCallbackQuery', query_id=long, user_id=int, peer=Peer, msg_id=int, chat_instance=long, data='bytes', game_short_name='string'}