1012 B
1012 B
title | description | image | redirect_from |
---|---|---|---|
photos.photosSlice | Incomplete list of photos with auxiliary data. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/photos_photosSlice.html |
Constructor: photos.photosSlice
Incomplete list of photos with auxiliary data.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
count | int | Yes | Total number of photos |
photos | Array of Photo | Yes | List of photos |
users | Array of User | Yes | List of mentioned users |
Type: photos.Photos
Example:
$photos.photosSlice = ['_' => 'photos.photosSlice', 'count' => int, 'photos' => [Photo, Photo], 'users' => [User, User]];
Or, if you're into Lua:
photos.photosSlice={_='photos.photosSlice', count=int, photos={Photo}, users={User}}