MadelineProtoDocs/old_docs/API_docs_v72/constructors/messageMediaPhoto.md

45 lines
893 B
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: messageMediaPhoto
description: messageMediaPhoto attributes, type and example
---
## Constructor: messageMediaPhoto
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|photo|[Photo](../types/Photo.md) | Optional|
2018-04-01 13:24:46 +02:00
|caption|[string](../types/string.md) | Optional|
2018-04-01 13:19:25 +02:00
|ttl\_seconds|[int](../types/int.md) | Optional|
### Type: [MessageMedia](../types/MessageMedia.md)
### Example:
```
2018-04-01 13:24:46 +02:00
$messageMediaPhoto = ['_' => 'messageMediaPhoto', 'photo' => Photo, 'caption' => 'string', 'ttl_seconds' => int];
2018-04-01 13:19:25 +02:00
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2018-04-01 13:24:46 +02:00
{"_": "messageMediaPhoto", "photo": Photo, "caption": "string", "ttl_seconds": int}
2018-04-01 13:19:25 +02:00
```
Or, if you're into Lua:
```
2018-04-01 13:24:46 +02:00
messageMediaPhoto={_='messageMediaPhoto', photo=Photo, caption='string', ttl_seconds=int}
2018-04-01 13:19:25 +02:00
```