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

48 lines
1.4 KiB
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
title: inputBotInlineResultDocument
2016-12-20 13:32:11 +01:00
description: inputBotInlineResultDocument attributes, type and example
2016-12-20 13:15:22 +01:00
---
## Constructor: inputBotInlineResultDocument
2016-12-20 13:15:22 +01:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[string](../types/string.md) | Yes|
|type|[string](../types/string.md) | Yes|
|title|[string](../types/string.md) | Optional|
|description|[string](../types/string.md) | Optional|
|document|[InputDocument](../types/InputDocument.md) | Yes|
|send\_message|[InputBotInlineMessage](../types/InputBotInlineMessage.md) | Yes|
2016-12-19 18:56:05 +01:00
### Type: [InputBotInlineResult](../types/InputBotInlineResult.md)
### Example:
```
2016-12-30 21:21:36 +01:00
$inputBotInlineResultDocument = ['_' => 'inputBotInlineResultDocument', 'id' => string, 'type' => string, 'title' => string, 'description' => string, 'document' => InputDocument, 'send_message' => InputBotInlineMessage, ];
```
2017-07-23 16:11:02 +02:00
[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, }
```