2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
title: botInlineMessageMediaAuto
|
|
|
|
description: botInlineMessageMediaAuto attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: botInlineMessageMediaAuto
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|caption|[string](../types/string.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|reply\_markup|[ReplyMarkup](../types/ReplyMarkup.md) | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [BotInlineMessage](../types/BotInlineMessage.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$botInlineMessageMediaAuto = ['_' => 'botInlineMessageMediaAuto', 'caption' => string, 'reply_markup' => ReplyMarkup, ];
|
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
botInlineMessageMediaAuto={_='botInlineMessageMediaAuto', caption=string, reply_markup=ReplyMarkup, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|