UserProfilePhotos

data class UserProfilePhotos(totalCount: Int, photos: List<List<PhotoSize>>)

This object represent a user's profile pictures.

Parameters

totalCount

Total number of profile pictures the target user has

photos

Requested profile pictures (in up to 4 sizes each)

Constructors

UserProfilePhotos
Link copied to clipboard
common
fun UserProfilePhotos(totalCount: Int, photos: List<List<PhotoSize>> = emptyList())
Total number of profile pictures the target user has

Functions

component1
Link copied to clipboard
common
operator fun component1(): Int
component2
Link copied to clipboard
common
operator fun component2(): List<List<PhotoSize>>
copy
Link copied to clipboard
common
fun copy(totalCount: Int, photos: List<List<PhotoSize>> = emptyList()): UserProfilePhotos
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

photos
Link copied to clipboard
common
val photos: List<List<PhotoSize>>
Requested profile pictures (in up to 4 sizes each)
totalCount
Link copied to clipboard
common
val totalCount: Int
Total number of profile pictures the target user has