Playlist

data class Playlist(    val type: Playlist.Type?,     val name: String,     val number: String,     val length: String,     val currentSongOrder: String)

Playlist information. If not supported, should be null. When create event, exclude field not supported.

Constructors

Link copied to clipboard
fun Playlist(    type: Playlist.Type?,     name: String,     number: String,     length: String,     currentSongOrder: String)

Types

Link copied to clipboard
enum Type : Enum<Playlist.Type>

Functions

Link copied to clipboard
fun toJson(): JsonElement

Properties

Link copied to clipboard
@SerializedName(value = "currentSongOrder")
val currentSongOrder: String
Link copied to clipboard
@SerializedName(value = "length")
val length: String
Link copied to clipboard
@SerializedName(value = "name")
val name: String
Link copied to clipboard
@SerializedName(value = "number")
val number: String
Link copied to clipboard
@SerializedName(value = "type")
val type: Playlist.Type?