mirror of
https://github.com/danog/MadelineProto.git
synced 2025-01-06 02:38:50 +01:00
21 lines
802 B
Markdown
21 lines
802 B
Markdown
## Constructor: botInlineMediaResult
|
|
|
|
### 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|
|
|
### Type:
|
|
|
|
[BotInlineResult](../types/BotInlineResult.md)
|
|
### Example:
|
|
|
|
```
|
|
$botInlineMediaResult = ['_' => botInlineMediaResult', 'id' => string, 'type' => string, 'photo' => Photo, 'document' => Document, 'title' => string, 'description' => string, 'send_message' => BotInlineMessage, ];
|
|
``` |