MadelineProtoDocs/docs/API_docs/constructors/userProfilePhoto.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

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

Type: UserProfilePhoto

Example:

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

PWRTelegram json-encoded version:

{"_": "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}