MadelineProto/docs/TD_docs/constructors/updateChatPhoto.md

46 lines
823 B
Markdown
Raw Normal View History

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