Layer 227
constructor
photos.photosSlice#15051f54 count:int photos:Vector<Photo> users:Vector<User> = photos.Photos;

Parameters

Name Type Description
Count int Total number of photos
Photos Vector < Photo > List of photos
Users Vector < User > List of mentioned users

Returns

photos.Photos

Gogram Example

// Creating PhotosPhotosSlice constructor
obj := &tg.PhotosPhotosSlice{
    Count: 42,
    Photos: &tg.VectorPhoto{},
    Users: &tg.VectorUser{},
}