MadelineProtoDocs/old_docs/API_docs_v105/constructors/messageActionChatEditPhoto.md

39 lines
740 B
Markdown
Raw Permalink Normal View History

2019-09-13 17:13:55 +02:00
---
title: messageActionChatEditPhoto
2019-12-27 17:48:04 +01:00
description: Group profile changed
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageActionChatEditPhoto
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Group profile changed
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|photo|[Photo](../types/Photo.md) | Optional|New group pofile photo|
2019-09-13 17:13:55 +02:00
### Type: [MessageAction](../types/MessageAction.md)
### Example:
```php
$messageActionChatEditPhoto = ['_' => 'messageActionChatEditPhoto', 'photo' => Photo];
```
Or, if you're into Lua:
```lua
messageActionChatEditPhoto={_='messageActionChatEditPhoto', photo=Photo}
```