1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
userProfilePhoto | User profile photo. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: userProfilePhoto
User profile photo.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
photo_id | long | Yes | Identifier of the respective photo Parameter added in Layer 2 |
photo_small | FileLocation | Yes | Location of the file, corresponding to the small profile photo thumbnail |
photo_big | FileLocation | Yes | Location of the file, corresponding to the big profile photo thumbnail |
dc_id | int | Yes | DC ID where the photo is stored |
Type: UserProfilePhoto
Example:
$userProfilePhoto = ['_' => 'userProfilePhoto', 'photo_id' => long, 'photo_small' => FileLocation, 'photo_big' => FileLocation, 'dc_id' => int];
Or, if you're into Lua:
userProfilePhoto={_='userProfilePhoto', photo_id=long, photo_small=FileLocation, photo_big=FileLocation, dc_id=int}