Stream

data class Stream(    val url: String,     val offsetInMilliseconds: Long,     val progressReport: AudioItem.ProgressReport?,     val token: String,     val expectedPreviousToken: String)

Constructors

Link copied to clipboard
fun Stream(    url: String,     offsetInMilliseconds: Long,     progressReport: AudioItem.ProgressReport?,     token: String,     expectedPreviousToken: String)

Properties

Link copied to clipboard
@SerializedName(value = "expectedPreviousToken")
val expectedPreviousToken: String
Link copied to clipboard
@SerializedName(value = "offsetInMilliseconds")
val offsetInMilliseconds: Long
Link copied to clipboard
@SerializedName(value = "progressReport")
val progressReport: AudioItem.ProgressReport?
Link copied to clipboard
@SerializedName(value = "token")
val token: String
Link copied to clipboard
@SerializedName(value = "url")
val url: String