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

40 lines
837 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|
|ttl\_seconds|[int](../types/int.md) | Optional|Time to live in seconds of self-destructing photo|
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
$inputMediaPhoto = ['_' => 'inputMediaPhoto', 'id' => InputPhoto, 'ttl_seconds' => int];
```
Or, if you're into Lua:
```lua
inputMediaPhoto={_='inputMediaPhoto', id=InputPhoto, ttl_seconds=int}
```