mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 08:16:54 +01:00
826 B
826 B
title | description |
---|---|
updateChatPhoto | Chat photo was changed |
Constructor: updateChatPhoto
Chat photo was changed
Attributes:
Name | Type | Required | Description |
---|---|---|---|
chat_id | long | Yes | Chat identifier |
photo | chatPhoto | Yes | New chat photo, nullable |
Type: Update
Example:
$updateChatPhoto = ['_' => 'updateChatPhoto', 'chat_id' => long, 'photo' => chatPhoto, ];
PWRTelegram json-encoded version:
{"_":"updateChatPhoto","chat_id":"long","photo":"chatPhoto"}
Or, if you're into Lua:
updateChatPhoto={_='updateChatPhoto', chat_id=long, photo=chatPhoto, }