GetUserProfilePhotosRequest

data class GetUserProfilePhotosRequest(userId: Int, offset: Int?, limit: Int?)

Request body for getUserProfilePhotos

Parameters

userId

Unique identifier of the target user

offset

Sequential number of the first photo to be returned. By default, all photos are returned.

limit

Limits the number of photos to be retrieved. Values between 1-100 are accepted. Defaults to 100.

Constructors

GetUserProfilePhotosRequest
Link copied to clipboard
common
fun GetUserProfilePhotosRequest(userId: Int, offset: Int? = null, limit: Int? = null)
Unique identifier of the target user

Functions

component1
Link copied to clipboard
common
operator fun component1(): Int
component2
Link copied to clipboard
common
operator fun component2(): Int?
component3
Link copied to clipboard
common
operator fun component3(): Int?
copy
Link copied to clipboard
common
fun copy(userId: Int, offset: Int? = null, limit: Int? = null): GetUserProfilePhotosRequest
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

limit
Link copied to clipboard
common
val limit: Int? = null
Limits the number of photos to be retrieved.
offset
Link copied to clipboard
common
val offset: Int? = null
Sequential number of the first photo to be returned.
userId
Link copied to clipboard
common
val userId: Int
Unique identifier of the target user