1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 12:47:27 +01:00
MadelineProto/docs/API_docs/constructors/inputBotInlineResultDocument.md

20 lines
802 B
Markdown
Raw Normal View History

## Constructor: inputBotInlineResultDocument
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[string](../types/string.md) | Required|
|type|[string](../types/string.md) | Required|
|title|[string](../types/string.md) | Optional|
|description|[string](../types/string.md) | Optional|
|document|[InputDocument](../types/InputDocument.md) | Required|
|send\_message|[InputBotInlineMessage](../types/InputBotInlineMessage.md) | Required|
2016-12-19 18:35:27 +01:00
### Type:
2016-12-19 18:35:27 +01:00
[InputBotInlineResult](../types/InputBotInlineResult.md)
### Example:
```
2016-12-19 17:48:27 +01:00
$inputBotInlineResultDocument = ['_' => inputBotInlineResultDocument', 'id' => string, 'type' => string, 'title' => string, 'description' => string, 'document' => InputDocument, 'send_message' => InputBotInlineMessage, ];
```