922 B
922 B
title | description |
---|---|
userProfilePhotos | Contains part of the list of user photos |
Constructor: userProfilePhotos
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}}