1.0 KiB
1.0 KiB
title | description | image |
---|---|---|
updateBotInlineQuery | updateBotInlineQuery attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateBotInlineQuery
Attributes:
Name | Type | Required |
---|---|---|
query_id | long | Yes |
user_id | int | Yes |
query | string | Yes |
offset | string | Yes |
Type: Update
Example:
$updateBotInlineQuery = ['_' => 'updateBotInlineQuery', 'query_id' => long, 'user_id' => int, 'query' => 'string', 'offset' => 'string'];
PWRTelegram json-encoded version:
{"_": "updateBotInlineQuery", "query_id": long, "user_id": int, "query": "string", "offset": "string"}
Or, if you're into Lua:
updateBotInlineQuery={_='updateBotInlineQuery', query_id=long, user_id=int, query='string', offset='string'}