mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 21:07:47 +01:00
1.3 KiB
1.3 KiB
title | description |
---|---|
messages.botResults | messages_botResults attributes, type and example |
Constructor: messages.botResults
Attributes:
Name | Type | Required |
---|---|---|
gallery | Bool | Optional |
query_id | long | Yes |
next_offset | string | Optional |
switch_pm | InlineBotSwitchPM | Optional |
results | Array of BotInlineResult | Yes |
cache_time | int | Yes |
Type: messages_BotResults
Example:
$messages_botResults = ['_' => 'messages.botResults', 'gallery' => Bool, 'query_id' => long, 'next_offset' => string, 'switch_pm' => InlineBotSwitchPM, 'results' => [BotInlineResult], 'cache_time' => int, ];
PWRTelegram json-encoded version:
{"_":"messages.botResults","gallery":"Bool","query_id":"long","next_offset":"string","switch_pm":"InlineBotSwitchPM","results":["BotInlineResult"],"cache_time":"int"}
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, }