1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
updateBotInlineQuery | Update bot inline query | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateBotInlineQuery
Update bot inline query
Attributes:
Name | Type | Required | Description |
---|---|---|---|
query_id | long | Yes | Query ID |
user_id | int | Yes | User ID |
query | string | Yes | Query |
offset | string | Yes | Offset |
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'}