All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.jellyfin.sdk.model.api.OpenLiveStreamDto.kt Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
// !!        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

/**
 * Open live stream dto.
 */
@Serializable
public data class OpenLiveStreamDto(
	/**
	 * The open token.
	 */
	@SerialName("OpenToken")
	public val openToken: String? = null,
	/**
	 * The user id.
	 */
	@SerialName("UserId")
	public val userId: UUID? = null,
	/**
	 * The play session id.
	 */
	@SerialName("PlaySessionId")
	public val playSessionId: String? = null,
	/**
	 * The max streaming bitrate.
	 */
	@SerialName("MaxStreamingBitrate")
	public val maxStreamingBitrate: Int? = null,
	/**
	 * The start time in ticks.
	 */
	@SerialName("StartTimeTicks")
	public val startTimeTicks: Long? = null,
	/**
	 * The audio stream index.
	 */
	@SerialName("AudioStreamIndex")
	public val audioStreamIndex: Int? = null,
	/**
	 * The subtitle stream index.
	 */
	@SerialName("SubtitleStreamIndex")
	public val subtitleStreamIndex: Int? = null,
	/**
	 * The max audio channels.
	 */
	@SerialName("MaxAudioChannels")
	public val maxAudioChannels: Int? = null,
	/**
	 * The item id.
	 */
	@SerialName("ItemId")
	public val itemId: UUID? = null,
	/**
	 * A value indicating whether to enable direct play.
	 */
	@SerialName("EnableDirectPlay")
	public val enableDirectPlay: Boolean? = null,
	/**
	 * A value indicating whether to enale direct stream.
	 */
	@SerialName("EnableDirectStream")
	public val enableDirectStream: Boolean? = null,
	/**
	 * A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which
	 * content a certain device is able to play.
	 *
	 *
	 * Specifically, it defines the supported containers
	 * (`P:MediaBrowser.Model.Dlna.DeviceProfile.ContainerProfiles`) and
	 * codecs (`P:MediaBrowser.Model.Dlna.DeviceProfile.CodecProfiles`) (video and/or audio, including
	 * codec profiles and levels)
	 * the device is able to direct play (without transcoding or remuxing),
	 * as well as which containers/codecs to transcode to
	 * (`P:MediaBrowser.Model.Dlna.DeviceProfile.TranscodingProfiles`) in case it isn't.
	 */
	@SerialName("DeviceProfile")
	public val deviceProfile: DeviceProfile? = null,
	/**
	 * The device play protocols.
	 */
	@SerialName("DirectPlayProtocols")
	public val directPlayProtocols: List,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy