PlaybackStopInfo

@Serializable
data class PlaybackStopInfo(val item: BaseItemDto? = null, val itemId: UUID, val sessionId: String? = null, val mediaSourceId: String? = null, val positionTicks: Long? = null, val liveStreamId: String? = null, val playSessionId: String? = null, val failed: Boolean, val nextMediaType: String? = null, val playlistItemId: String? = null, val nowPlayingQueue: List<QueueItem>? = null)

Class PlaybackStopInfo.

Constructors

Link copied to clipboard
constructor(item: BaseItemDto? = null, itemId: UUID, sessionId: String? = null, mediaSourceId: String? = null, positionTicks: Long? = null, liveStreamId: String? = null, playSessionId: String? = null, failed: Boolean, nextMediaType: String? = null, playlistItemId: String? = null, nowPlayingQueue: List<QueueItem>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Failed")
val failed: Boolean

A value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed.

Link copied to clipboard
@SerialName(value = "Item")
val item: BaseItemDto?

The item.

Link copied to clipboard
@SerialName(value = "ItemId")
val itemId: UUID

The item identifier.

Link copied to clipboard
@SerialName(value = "LiveStreamId")
val liveStreamId: String?

The live stream identifier.

Link copied to clipboard
@SerialName(value = "MediaSourceId")
val mediaSourceId: String?

The media version identifier.

Link copied to clipboard
@SerialName(value = "NextMediaType")
val nextMediaType: String?
Link copied to clipboard
@SerialName(value = "NowPlayingQueue")
val nowPlayingQueue: List<QueueItem>?
Link copied to clipboard
@SerialName(value = "PlaylistItemId")
val playlistItemId: String?
Link copied to clipboard
@SerialName(value = "PlaySessionId")
val playSessionId: String?

The play session identifier.

Link copied to clipboard
@SerialName(value = "PositionTicks")
val positionTicks: Long?

The position ticks.

Link copied to clipboard
@SerialName(value = "SessionId")
val sessionId: String?

The session id.