1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
chatPhoto | Group profile photo. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: chatPhoto
Group profile photo.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
has_video | Bool | Optional | |
photo_small | FileLocation | Yes | Location of the file corresponding to the small thumbnail for group profile photo |
photo_big | FileLocation | Yes | Location of the file corresponding to the small thumbnail for group profile photo |
dc_id | int | Yes | DC where this photo is stored |
Type: ChatPhoto
Example:
$chatPhoto = ['_' => 'chatPhoto', 'has_video' => Bool, 'photo_small' => FileLocation, 'photo_big' => FileLocation, 'dc_id' => int];
Or, if you're into Lua:
chatPhoto={_='chatPhoto', has_video=Bool, photo_small=FileLocation, photo_big=FileLocation, dc_id=int}