UpdateUserItemDataDto

data class UpdateUserItemDataDto(val rating: Double? = null, val playedPercentage: Double? = null, val unplayedItemCount: Int? = null, val playbackPositionTicks: Long? = null, val playCount: Int? = null, val isFavorite: Boolean? = null, val likes: Boolean? = null, val lastPlayedDate: DateTime? = null, val played: Boolean? = null, val key: String? = null, val itemId: String? = null)

This is used by the api to get information about a item user data.

Constructors

Link copied to clipboard
constructor(rating: Double? = null, playedPercentage: Double? = null, unplayedItemCount: Int? = null, playbackPositionTicks: Long? = null, playCount: Int? = null, isFavorite: Boolean? = null, likes: Boolean? = null, lastPlayedDate: DateTime? = null, played: Boolean? = null, key: String? = null, itemId: String? = null)

Properties

Link copied to clipboard
val isFavorite: Boolean? = null

A value indicating whether this instance is favorite.

Link copied to clipboard
val itemId: String? = null

The item identifier.

Link copied to clipboard
val key: String? = null

The key.

Link copied to clipboard

The last played date.

Link copied to clipboard
val likes: Boolean? = null

A value indicating whether this MediaBrowser.Model.Dto.UpdateUserItemDataDto is likes.

Link copied to clipboard

The playback position ticks.

Link copied to clipboard
val playCount: Int? = null

The play count.

Link copied to clipboard
val played: Boolean? = null

A value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played.

Link copied to clipboard

The played percentage.

Link copied to clipboard
val rating: Double? = null

The rating.

Link copied to clipboard
val unplayedItemCount: Int? = null

The unplayed item count.