MadelineProtoDocs/old_docs/API_docs_v105/constructors/inputMediaPhoto.md

40 lines
772 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: inputMediaPhoto
description: Media photo
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputMediaPhoto
[Back to constructors index](index.md)
Media photo
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[MessageMedia, Message, Update or InputPhoto](../types/InputPhoto.md) | Optional|ID|
|ttl\_seconds|[int](../types/int.md) | Optional|Ttl seconds|
### 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}
```