MadelineProto/old_docs/API_docs_v66/constructors/messages_botResults.md

48 lines
1.3 KiB
Markdown
Raw Normal View History

2017-06-30 15:36:33 +02:00
---
title: messages.botResults
description: messages_botResults attributes, type and example
---
## Constructor: messages.botResults
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|gallery|[Bool](../types/Bool.md) | Optional|
|query\_id|[long](../types/long.md) | Yes|
|next\_offset|[string](../types/string.md) | Optional|
|switch\_pm|[InlineBotSwitchPM](../types/InlineBotSwitchPM.md) | Optional|
|results|Array of [BotInlineResult](../types/BotInlineResult.md) | Yes|
|cache\_time|[int](../types/int.md) | Yes|
### Type: [messages\_BotResults](../types/messages_BotResults.md)
### Example:
```
$messages_botResults = ['_' => 'messages.botResults', 'gallery' => Bool, 'query_id' => long, 'next_offset' => string, 'switch_pm' => InlineBotSwitchPM, 'results' => [BotInlineResult], 'cache_time' => int, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"messages.botResults","gallery":"Bool","query_id":"long","next_offset":"string","switch_pm":"InlineBotSwitchPM","results":["BotInlineResult"],"cache_time":"int"}
```
2017-06-30 15:36:33 +02:00
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, }
```