MadelineProtoDocs/old_docs/API_docs_v53/constructors/updateBotCallbackQuery.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

1.1 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
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", "bytes":"base64 encoded bytes"}}

Or, if you're into Lua:

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