MadelineProtoDocs/old_docs/API_docs_v43/constructors/messageMediaPhoto.md
2020-09-12 12:47:38 +02:00

40 lines
793 B
Markdown

---
title: messageMediaPhoto
description: Attached photo.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageMediaPhoto
[Back to constructors index](index.md)
Attached photo.
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|photo|[Photo](../types/Photo.md) | Optional|Photo|
|ttl\_seconds|[int](../types/int.md) | Optional|Time to live in seconds of self-destructing photo|
### Type: [MessageMedia](../types/MessageMedia.md)
### Example:
```php
$messageMediaPhoto = ['_' => 'messageMediaPhoto', 'photo' => Photo, 'ttl_seconds' => int];
```
Or, if you're into Lua:
```lua
messageMediaPhoto={_='messageMediaPhoto', photo=Photo, ttl_seconds=int}
```