MadelineProto/docs/TD_docs/constructors/userProfilePhotos.md
2017-07-23 16:33:46 +02:00

922 B

title description
userProfilePhotos Contains part of the list of user photos

Constructor: userProfilePhotos

Back to constructors index

Contains part of the list of user photos

Attributes:

Name Type Required Description
total_count int Yes Total number of user profile photos
photos Array of photo Yes List of photos

Type: UserProfilePhotos

Example:

$userProfilePhotos = ['_' => 'userProfilePhotos', 'total_count' => int, 'photos' => [photo]];

PWRTelegram json-encoded version:

{"_": "userProfilePhotos", "total_count": int, "photos": [photo]}

Or, if you're into Lua:

userProfilePhotos={_='userProfilePhotos', total_count=int, photos={photo}}