MadelineProto/docs/TD_docs/constructors/messagePhoto.md

46 lines
784 B
Markdown
Raw Normal View History

---
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:
```
2017-07-23 16:33:46 +02:00
$messagePhoto = ['_' => 'messagePhoto', 'photo' => photo, 'caption' => 'string'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "messagePhoto", "photo": photo, "caption": "string"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
messagePhoto={_='messagePhoto', photo=photo, caption='string'}
```