MadelineProtoDocs/old_docs/API_docs_v5/constructors/userProfilePhoto.md

1.1 KiB

title description image
userProfilePhoto User profile photo. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: userProfilePhoto

Back to constructors index

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

Type: UserProfilePhoto

Example:

$userProfilePhoto = ['_' => 'userProfilePhoto', 'photo_id' => long, 'photo_small' => FileLocation, 'photo_big' => FileLocation];

Or, if you're into Lua:

userProfilePhoto={_='userProfilePhoto', photo_id=long, photo_small=FileLocation, photo_big=FileLocation}