977 B
977 B
title | description |
---|---|
updateBotInlineQuery | updateBotInlineQuery attributes, type and example |
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'}