1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 14:46:54 +01:00
MadelineProto/docs/TD_docs/constructors/profilePhoto.md
2017-07-23 16:11:02 +02:00

977 B

title description
profilePhoto Describes user profile photo

Constructor: profilePhoto

Back to constructors index

Describes user profile photo

Attributes:

Name Type Required Description
id long Yes Photo identifier, 0 for empty photo. Can be used to find photo in list of userProfilePhotos
small file Yes Small (160x160) user profile photo
big file Yes Big (640x640) user profile photo

Type: ProfilePhoto

Example:

$profilePhoto = ['_' => 'profilePhoto', 'id' => long, 'small' => file, 'big' => file, ];

PWRTelegram json-encoded version:

{"_":"profilePhoto","id":"long","small":"file","big":"file"}

Or, if you're into Lua:

profilePhoto={_='profilePhoto', id=long, small=file, big=file, }