UserItemDataDto

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

Class UserItemDataDto.

Constructors

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

Properties

Link copied to clipboard

A value indicating whether this instance is favorite.

Link copied to clipboard

The item identifier.

Link copied to clipboard
val key: String

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.UserItemDataDto is likes.

Link copied to clipboard

The playback position ticks.

Link copied to clipboard

The play count.

Link copied to clipboard

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.