MadelineProto/old_docs/API_docs_v66/constructors/inputBotInlineResultDocument.md

48 lines
1.4 KiB
Markdown
Raw Normal View History

2017-06-30 15:36:33 +02:00
---
title: inputBotInlineResultDocument
description: inputBotInlineResultDocument attributes, type and example
---
## Constructor: inputBotInlineResultDocument
[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|
### Type: [InputBotInlineResult](../types/InputBotInlineResult.md)
### Example:
```
$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"}
```
2017-06-30 15:36:33 +02:00
Or, if you're into Lua:
```
inputBotInlineResultDocument={_='inputBotInlineResultDocument', id=string, type=string, title=string, description=string, document=InputDocument, send_message=InputBotInlineMessage, }
```