MadelineProtoDocs/docs/API_docs/constructors/userProfilePhoto.md

992 B

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 Photo ID
photo_small FileLocation Yes Photo small
photo_big FileLocation Yes Photo big
dc_id int Yes DC ID

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}