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

1.1 KiB

title description
updateInlineBotCallbackQuery updateInlineBotCallbackQuery attributes, type and example

Constructor: updateInlineBotCallbackQuery

Back to constructors index

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"}

Or, if you're into Lua:

updateInlineBotCallbackQuery={_='updateInlineBotCallbackQuery', query_id=long, user_id=int, msg_id=InputBotInlineMessageID, data='bytes'}