--- 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: ```php $botInlineMessageMediaAuto = ['_' => 'botInlineMessageMediaAuto', 'caption' => 'string']; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "botInlineMessageMediaAuto", "caption": "string"} ``` Or, if you're into Lua: ```lua botInlineMessageMediaAuto={_='botInlineMessageMediaAuto', caption='string'} ```