Response TypesThis is an alphabetic listing of all response types.
Album
data class Album(val id: Int,
val name: String,
val year: Int,
val artist: MutableList<Artist>,
val tracks: MutableList<Track>
)
Artist
data class Artist(val id: Int,
val name: String,
val year: Int? = null,
val albums: MutableList<Artist>? = null,
val tracks: MutableList<Track>? = null
)
Image
data class Image(val url: String,
val snowflake: String,
val nsfw: Boolean,
val tag: String
)