Stream

@JsonClass(generateAdapter = true)
data class Stream(    val height: Int,     val width: Int,     val filesize: Long?,     @Json(name = "stream_type") val streamType: String?,     val url: String,     val bitrate: Int?,     val provider: String?)

Constructors

Link copied to clipboard
fun Stream(    height: Int,     width: Int,     filesize: Long?,     @Json(name = "stream_type") streamType: String?,     url: String,     bitrate: Int?,     provider: String?)

Properties

Link copied to clipboard
val bitrate: Int?
Link copied to clipboard
val filesize: Long?
Link copied to clipboard
val height: Int
Link copied to clipboard
val provider: String?
Link copied to clipboard
val streamType: String?
Link copied to clipboard
val url: String
Link copied to clipboard
val width: Int