MadelineProto/docs/TD_docs/constructors/messagePhoto.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

46 lines
784 B
Markdown

---
title: messagePhoto
description: Photo message
---
## Constructor: messagePhoto
[Back to constructors index](index.md)
Photo message
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|photo|[photo](../types/photo.md) | Yes|Message content|
|caption|[string](../types/string.md) | Yes|Photo caption|
### Type: [MessageContent](../types/MessageContent.md)
### Example:
```
$messagePhoto = ['_' => 'messagePhoto', 'photo' => photo, 'caption' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "messagePhoto", "photo": photo, "caption": "string"}
```
Or, if you're into Lua:
```
messagePhoto={_='messagePhoto', photo=photo, caption='string'}
```