1.2 KiB
1.2 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 |
geo | GeoPoint | Optional | Geo |
offset | string | Yes | Offset |
Type: Update
Example:
$updateBotInlineQuery = ['_' => 'updateBotInlineQuery', 'query_id' => long, 'user_id' => int, 'query' => 'string', 'geo' => GeoPoint, 'offset' => 'string'];
PWRTelegram json-encoded version:
{"_": "updateBotInlineQuery", "query_id": long, "user_id": int, "query": "string", "geo": GeoPoint, "offset": "string"}
Or, if you're into Lua:
updateBotInlineQuery={_='updateBotInlineQuery', query_id=long, user_id=int, query='string', geo=GeoPoint, offset='string'}