2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: inputBotInlineResult
|
2019-12-27 17:48:04 +01:00
|
|
|
description: An inline bot result
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: inputBotInlineResult
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
An inline bot result
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|id|[string](../types/string.md) | Yes|ID of result|
|
|
|
|
|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 result|
|
|
|
|
|thumb|[InputWebDocument](../types/InputWebDocument.md) | Optional|Thumbnail for result|
|
|
|
|
|content|[InputWebDocument](../types/InputWebDocument.md) | Optional|Result contents|
|
|
|
|
|send\_message|[InputBotInlineMessage](../types/InputBotInlineMessage.md) | Yes|Message to send when the result is selected|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputBotInlineResult](../types/InputBotInlineResult.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$inputBotInlineResult = ['_' => 'inputBotInlineResult', 'id' => 'string', 'type' => 'string', 'title' => 'string', 'description' => 'string', 'url' => 'string', 'thumb' => InputWebDocument, 'content' => InputWebDocument, 'send_message' => InputBotInlineMessage];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
inputBotInlineResult={_='inputBotInlineResult', id='string', type='string', title='string', description='string', url='string', thumb=InputWebDocument, content=InputWebDocument, send_message=InputBotInlineMessage}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|