Package com.skt.nugu.sdk.agent.ext.mediaplayer

Types

Link copied to clipboard
enum Action : Enum<Action>
Link copied to clipboard
data class Context(    val appStatus: String,     val playerActivity: PlayerActivity,     val user: User?,     val currentSong: Song?,     val playlist: Playlist?,     val toggle: Toggle?)
Link copied to clipboard
enum PlayerActivity : Enum<PlayerActivity>
Link copied to clipboard
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.

Link copied to clipboard
data class Song(    val category: String,     val theme: String?,     val genre: Array<String>?,     val artist: Array<String>,     val album: String?,     val title: String?,     val duration: String?,     val issueDate: String?,     val etc: JsonObject?)
Link copied to clipboard
enum Target : Enum<Target>
Link copied to clipboard
data class Toggle(val repeat: Toggle.Repeat?, val shuffle: Toggle.Shuffle?)

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

Link copied to clipboard
data class User(val isLogIn: String, val hasVoucher: String)

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