commonMain.org.jellyfin.sdk.model.api.PlaybackProgressInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jellyfin-model-jvm Show documentation
Show all versions of jellyfin-model-jvm Show documentation
Official Kotlin/Java SDK for Jellyfin. org.jellyfin.sdk:jellyfin-model-jvm
// !! WARNING
// !! DO NOT EDIT THIS FILE
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
@file:UseSerializers(UUIDSerializer::class)
package org.jellyfin.sdk.model.api
import kotlin.Boolean
import kotlin.Int
import kotlin.Long
import kotlin.String
import kotlin.collections.List
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.UseSerializers
import org.jellyfin.sdk.model.UUID
import org.jellyfin.sdk.model.serializer.UUIDSerializer
/**
* Class PlaybackProgressInfo.
*/
@Serializable
public data class PlaybackProgressInfo(
/**
* A value indicating whether this instance can seek.
*/
@SerialName("CanSeek")
public val canSeek: Boolean,
/**
* The item.
*/
@SerialName("Item")
public val item: BaseItemDto? = null,
/**
* The item identifier.
*/
@SerialName("ItemId")
public val itemId: UUID,
/**
* The session id.
*/
@SerialName("SessionId")
public val sessionId: String? = null,
/**
* The media version identifier.
*/
@SerialName("MediaSourceId")
public val mediaSourceId: String? = null,
/**
* The index of the audio stream.
*/
@SerialName("AudioStreamIndex")
public val audioStreamIndex: Int? = null,
/**
* The index of the subtitle stream.
*/
@SerialName("SubtitleStreamIndex")
public val subtitleStreamIndex: Int? = null,
/**
* A value indicating whether this instance is paused.
*/
@SerialName("IsPaused")
public val isPaused: Boolean,
/**
* A value indicating whether this instance is muted.
*/
@SerialName("IsMuted")
public val isMuted: Boolean,
/**
* The position ticks.
*/
@SerialName("PositionTicks")
public val positionTicks: Long? = null,
@SerialName("PlaybackStartTimeTicks")
public val playbackStartTimeTicks: Long? = null,
/**
* The volume level.
*/
@SerialName("VolumeLevel")
public val volumeLevel: Int? = null,
@SerialName("Brightness")
public val brightness: Int? = null,
@SerialName("AspectRatio")
public val aspectRatio: String? = null,
/**
* The play method.
*/
@SerialName("PlayMethod")
public val playMethod: PlayMethod,
/**
* The live stream identifier.
*/
@SerialName("LiveStreamId")
public val liveStreamId: String? = null,
/**
* The play session identifier.
*/
@SerialName("PlaySessionId")
public val playSessionId: String? = null,
/**
* The repeat mode.
*/
@SerialName("RepeatMode")
public val repeatMode: RepeatMode,
/**
* The playback order.
*/
@SerialName("PlaybackOrder")
public val playbackOrder: PlaybackOrder,
@SerialName("NowPlayingQueue")
public val nowPlayingQueue: List? = null,
@SerialName("PlaylistItemId")
public val playlistItemId: String? = null,
)