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