MadelineProtoDocs/docs/API_docs/constructors/messageActionChatEditPhoto.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
864 B
Markdown

---
title: messageActionChatEditPhoto
description: Message action chat edit photo
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageActionChatEditPhoto
[Back to constructors index](index.md)
Message action chat edit photo
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|photo|[Photo](../types/Photo.md) | Optional|Photo|
### Type: [MessageAction](../types/MessageAction.md)
### Example:
```php
$messageActionChatEditPhoto = ['_' => 'messageActionChatEditPhoto', 'photo' => Photo];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "messageActionChatEditPhoto", "photo": Photo}
```
Or, if you're into Lua:
```lua
messageActionChatEditPhoto={_='messageActionChatEditPhoto', photo=Photo}
```