MadelineProtoDocs/old_docs/API_docs_v14/constructors/inputMediaPhoto.md
2020-06-16 17:50:25 +02:00

40 lines
785 B
Markdown

---
title: inputMediaPhoto
description: Forwarded photo
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputMediaPhoto
[Back to constructors index](index.md)
Forwarded photo
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[MessageMedia, Message, Update or InputPhoto](../types/InputPhoto.md) | Optional|Photo to be forwarded|
|caption|[string](../types/string.md) | Yes|
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
$inputMediaPhoto = ['_' => 'inputMediaPhoto', 'id' => InputPhoto, 'caption' => 'string'];
```
Or, if you're into Lua:
```lua
inputMediaPhoto={_='inputMediaPhoto', id=InputPhoto, caption='string'}
```