MadelineProtoDocs/old_docs/API_docs_v45/constructors/botInlineMessageMediaAuto.md
2018-04-04 19:52:48 +02:00

44 lines
833 B
Markdown

---
title: botInlineMessageMediaAuto
description: botInlineMessageMediaAuto attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
## Constructor: botInlineMessageMediaAuto
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|caption|[string](../types/string.md) | Yes|
### Type: [BotInlineMessage](../types/BotInlineMessage.md)
### Example:
```
$botInlineMessageMediaAuto = ['_' => 'botInlineMessageMediaAuto', 'caption' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "botInlineMessageMediaAuto", "caption": "string"}
```
Or, if you're into Lua:
```
botInlineMessageMediaAuto={_='botInlineMessageMediaAuto', caption='string'}
```