GetPlaylistItemsRequest

data class GetPlaylistItemsRequest(    val playlistId: UUID,     val userId: UUID? = null,     val startIndex: Int? = null,     val limit: Int? = null,     val fields: Collection<ItemFields>? = null,     val enableImages: Boolean? = null,     val enableUserData: Boolean? = null,     val imageTypeLimit: Int? = null,     val enableImageTypes: Collection<ImageType>? = null)

The original items of a playlist.

Constructors

Link copied to clipboard
constructor(    playlistId: UUID,     userId: UUID? = null,     startIndex: Int? = null,     limit: Int? = null,     fields: Collection<ItemFields>? = null,     enableImages: Boolean? = null,     enableUserData: Boolean? = null,     imageTypeLimit: Int? = null,     enableImageTypes: Collection<ImageType>? = null)

Properties

Link copied to clipboard
val enableImages: Boolean? = null

Optional. Include image information in output.

Link copied to clipboard

Optional. The image types to include in the output.

Link copied to clipboard
val enableUserData: Boolean? = null

Optional. Include user data.

Link copied to clipboard

Optional. Specify additional fields of information to return in the output.

Link copied to clipboard
val imageTypeLimit: Int? = null

Optional. The max number of images to return, per image type.

Link copied to clipboard
val limit: Int? = null

Optional. The maximum number of records to return.

Link copied to clipboard

The playlist id.

Link copied to clipboard
val startIndex: Int? = null

Optional. The record index to start at. All items with a lower index will be dropped from the results.

Link copied to clipboard
val userId: UUID? = null

User id.