MadelineProto/old_docs/API_docs_v53/constructors/updateBotCallbackQuery.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.0 KiB

title description
updateBotCallbackQuery updateBotCallbackQuery attributes, type and example

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
data bytes Yes

Type: Update

Example:

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

PWRTelegram json-encoded version:

{"_": "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'}