MadelineProto/docs/API_docs/constructors/botInlineMediaResult.md

31 lines
944 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
title: botInlineMediaResult
2016-12-20 13:32:11 +01:00
description: botInlineMediaResult attributes, type and example
2016-12-20 13:15:22 +01:00
---
## Constructor: botInlineMediaResult
2016-12-20 13:15:22 +01:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[string](../types/string.md) | Required|
|type|[string](../types/string.md) | Required|
|photo|[Photo](../types/Photo.md) | Optional|
|document|[Document](../types/Document.md) | Optional|
|title|[string](../types/string.md) | Optional|
|description|[string](../types/string.md) | Optional|
|send\_message|[BotInlineMessage](../types/BotInlineMessage.md) | Required|
2016-12-19 18:56:05 +01:00
### Type: [BotInlineResult](../types/BotInlineResult.md)
### Example:
```
$botInlineMediaResult = ['_' => botInlineMediaResult, 'id' => string, 'type' => string, 'photo' => Photo, 'document' => Document, 'title' => string, 'description' => string, 'send_message' => BotInlineMessage, ];
```