UploadSubtitleDto

@Serializable
data class UploadSubtitleDto(val language: String, val format: String, val isForced: Boolean, val isHearingImpaired: Boolean, val data: String)

Upload subtitles dto.

Constructors

Link copied to clipboard
constructor(language: String, format: String, isForced: Boolean, isHearingImpaired: Boolean, data: String)

Properties

Link copied to clipboard
@SerialName(value = "Data")
val data: String

The subtitle data.

Link copied to clipboard
@SerialName(value = "Format")
val format: String

The subtitle format.

Link copied to clipboard
@SerialName(value = "IsForced")
val isForced: Boolean

A value indicating whether the subtitle is forced.

Link copied to clipboard
@SerialName(value = "IsHearingImpaired")
val isHearingImpaired: Boolean

A value indicating whether the subtitle is for hearing impaired.

Link copied to clipboard
@SerialName(value = "Language")
val language: String

The subtitle language.