2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
title: botInlineMediaResult
|
|
|
|
description: botInlineMediaResult attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: botInlineMediaResult
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-03-11 19:54:51 +01:00
|
|
|
|id|[string](../types/string.md) | Yes|
|
|
|
|
|type|[string](../types/string.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|photo|[Photo](../types/Photo.md) | Optional|
|
|
|
|
|document|[Document](../types/Document.md) | Optional|
|
|
|
|
|title|[string](../types/string.md) | Optional|
|
|
|
|
|description|[string](../types/string.md) | Optional|
|
2017-03-11 19:54:51 +01:00
|
|
|
|send\_message|[BotInlineMessage](../types/BotInlineMessage.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [BotInlineResult](../types/BotInlineResult.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$botInlineMediaResult = ['_' => 'botInlineMediaResult', 'id' => 'string', 'type' => 'string', 'photo' => Photo, 'document' => Document, 'title' => 'string', 'description' => 'string', 'send_message' => BotInlineMessage];
|
2017-01-25 23:16:22 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "botInlineMediaResult", "id": "string", "type": "string", "photo": Photo, "document": Document, "title": "string", "description": "string", "send_message": BotInlineMessage}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
botInlineMediaResult={_='botInlineMediaResult', id='string', type='string', photo=Photo, document=Document, title='string', description='string', send_message=BotInlineMessage}
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|