MadelineProto/docs/TD_docs/constructors/updateChatPhoto.md

39 lines
693 B
Markdown

---
title: updateChatPhoto
description: Chat photo was changed
---
## Constructor: updateChatPhoto
[Back to constructors index](index.md)
Chat photo was changed
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|chat\_id|[long](../types/long.md) | Yes|Chat identifier|
|photo|[chatPhoto](../types/chatPhoto.md) | Yes|New chat photo, nullable|
### Type: [Update](../types/Update.md)
### Example:
```
$updateChatPhoto = ['_' => 'updateChatPhoto', 'chat_id' => long, 'photo' => chatPhoto, ];
```
Or, if you're into Lua:
```
updateChatPhoto={_='updateChatPhoto', chat_id=long, photo=chatPhoto, }
```