1.5 KiB
1.5 KiB
title | description | image |
---|---|---|
messages.botResults | Result of a query to an inline bot | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: messages.botResults
Result of a query to an inline bot
Attributes:
Name | Type | Required | Description |
---|---|---|---|
gallery | Bool | Optional | Whether the result is a picture gallery |
query_id | long | Yes | Query ID |
next_offset | string | Optional | The next offset to use when navigating through results |
switch_pm | InlineBotSwitchPM | Optional | Whether the bot requested the user to message him in private |
results | Array of BotInlineResult | Yes | Results |
cache_time | int | Yes | Caching validity of the results |
users | Array of User | Yes | Users |
Type: messages_BotResults
Example:
$messages_botResults = ['_' => 'messages.botResults', 'gallery' => Bool, 'query_id' => long, 'next_offset' => 'string', 'switch_pm' => InlineBotSwitchPM, 'results' => [BotInlineResult, BotInlineResult], 'cache_time' => int, 'users' => [User, User]];
Or, if you're into Lua:
messages_botResults={_='messages.botResults', gallery=Bool, query_id=long, next_offset='string', switch_pm=InlineBotSwitchPM, results={BotInlineResult}, cache_time=int, users={User}}