PlaybackProgressInfo

data class PlaybackProgressInfo(    val canSeek: Boolean,     val item: BaseItemDto? = null,     val itemId: UUID,     val sessionId: String? = null,     val mediaSourceId: String? = null,     val audioStreamIndex: Int? = null,     val subtitleStreamIndex: Int? = null,     val isPaused: Boolean,     val isMuted: Boolean,     val positionTicks: Long? = null,     val playbackStartTimeTicks: Long? = null,     val volumeLevel: Int? = null,     val brightness: Int? = null,     val aspectRatio: String? = null,     val playMethod: PlayMethod,     val liveStreamId: String? = null,     val playSessionId: String? = null,     val repeatMode: RepeatMode,     val playbackOrder: PlaybackOrder,     val nowPlayingQueue: List<QueueItem>? = null,     val playlistItemId: String? = null)

Class PlaybackProgressInfo.

Constructors

Link copied to clipboard
constructor(    canSeek: Boolean,     item: BaseItemDto? = null,     itemId: UUID,     sessionId: String? = null,     mediaSourceId: String? = null,     audioStreamIndex: Int? = null,     subtitleStreamIndex: Int? = null,     isPaused: Boolean,     isMuted: Boolean,     positionTicks: Long? = null,     playbackStartTimeTicks: Long? = null,     volumeLevel: Int? = null,     brightness: Int? = null,     aspectRatio: String? = null,     playMethod: PlayMethod,     liveStreamId: String? = null,     playSessionId: String? = null,     repeatMode: RepeatMode,     playbackOrder: PlaybackOrder,     nowPlayingQueue: List<QueueItem>? = null,     playlistItemId: String? = null)

Properties

Link copied to clipboard
val aspectRatio: String? = null
Link copied to clipboard
val audioStreamIndex: Int? = null

The index of the audio stream.

Link copied to clipboard
val brightness: Int? = null
Link copied to clipboard

A value indicating whether this instance can seek.

Link copied to clipboard

A value indicating whether this instance is muted.

Link copied to clipboard

A value indicating whether this instance is paused.

Link copied to clipboard
val item: BaseItemDto? = null

The item.

Link copied to clipboard

The item identifier.

Link copied to clipboard
val liveStreamId: String? = null

The live stream identifier.

Link copied to clipboard
val mediaSourceId: String? = null

The media version identifier.

Link copied to clipboard
Link copied to clipboard

The playback order.

Link copied to clipboard
Link copied to clipboard
val playlistItemId: String? = null
Link copied to clipboard

The play method.

Link copied to clipboard
val playSessionId: String? = null

The play session identifier.

Link copied to clipboard
val positionTicks: Long? = null

The position ticks.

Link copied to clipboard

The repeat mode.

Link copied to clipboard
val sessionId: String? = null

The session id.

Link copied to clipboard

The index of the subtitle stream.

Link copied to clipboard
val volumeLevel: Int? = null

The volume level.