MadelineProtoDocs/old_docs/API_docs_v100/constructors/botInlineResult.md

46 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

2019-06-23 13:07:51 +02:00
---
title: botInlineResult
2019-12-27 17:48:04 +01:00
description: Generic result
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: botInlineResult
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Generic result
2019-06-23 13:07:51 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|id|[string](../types/string.md) | Yes|Result ID|
|type|[string](../types/string.md) | Yes|Result type (see [bot API docs](https://core.telegram.org/bots/api#inlinequeryresult))|
|title|[string](../types/string.md) | Optional|Result title|
|description|[string](../types/string.md) | Optional|Result description|
|url|[string](../types/string.md) | Optional|URL of article or webpage|
|thumb|[WebDocument](../types/WebDocument.md) | Optional|Thumbnail for the result|
|content|[WebDocument](../types/WebDocument.md) | Optional|Content of the result|
2019-06-23 13:07:51 +02:00
|send\_message|[BotInlineMessage](../types/BotInlineMessage.md) | Yes|Message to send|
### Type: [BotInlineResult](../types/BotInlineResult.md)
### Example:
```php
$botInlineResult = ['_' => 'botInlineResult', 'id' => 'string', 'type' => 'string', 'title' => 'string', 'description' => 'string', 'url' => 'string', 'thumb' => WebDocument, 'content' => WebDocument, 'send_message' => BotInlineMessage];
```
Or, if you're into Lua:
```lua
botInlineResult={_='botInlineResult', id='string', type='string', title='string', description='string', url='string', thumb=WebDocument, content=WebDocument, send_message=BotInlineMessage}
```