mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-13 14:27:21 +01:00
37 lines
754 B
Markdown
37 lines
754 B
Markdown
|
---
|
||
|
title: botInlineMessageMediaAuto
|
||
|
description: botInlineMessageMediaAuto attributes, type and example
|
||
|
---
|
||
|
## Constructor: botInlineMessageMediaAuto
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|caption|[string](../types/string.md) | Yes|
|
||
|
|reply\_markup|[ReplyMarkup](../types/ReplyMarkup.md) | Optional|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [BotInlineMessage](../types/BotInlineMessage.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$botInlineMessageMediaAuto = ['_' => 'botInlineMessageMediaAuto', 'caption' => string, 'reply_markup' => ReplyMarkup, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
botInlineMessageMediaAuto={_='botInlineMessageMediaAuto', caption=string, reply_markup=ReplyMarkup, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|