2017-07-23 17:44:01 +02:00
|
|
|
---
|
|
|
|
title: inputBotInlineResultDocument
|
|
|
|
description: inputBotInlineResultDocument attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: inputBotInlineResultDocument
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-07-23 17:44:01 +02:00
|
|
|
|id|[string](../types/string.md) | Yes|
|
|
|
|
|type|[string](../types/string.md) | Yes|
|
|
|
|
|title|[string](../types/string.md) | Optional|
|
|
|
|
|description|[string](../types/string.md) | Optional|
|
2018-02-18 14:18:18 +01:00
|
|
|
|document|[InputDocument](../types/InputDocument.md) | Optional|
|
2017-07-23 17:44:01 +02:00
|
|
|
|send\_message|[InputBotInlineMessage](../types/InputBotInlineMessage.md) | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputBotInlineResult](../types/InputBotInlineResult.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$inputBotInlineResultDocument = ['_' => 'inputBotInlineResultDocument', 'id' => 'string', 'type' => 'string', 'title' => 'string', 'description' => 'string', 'document' => InputDocument, 'send_message' => InputBotInlineMessage];
|
|
|
|
```
|
|
|
|
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_": "inputBotInlineResultDocument", "id": "string", "type": "string", "title": "string", "description": "string", "document": InputDocument, "send_message": InputBotInlineMessage}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
inputBotInlineResultDocument={_='inputBotInlineResultDocument', id='string', type='string', title='string', description='string', document=InputDocument, send_message=InputBotInlineMessage}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|