Artist

@Serializable
data class Artist(val id: Int, val name: String, val cover: Cover? = null, val various: Boolean? = null, val composer: Boolean? = null, val genres: List<String>? = null)(source)

Constructors

Link copied to clipboard
constructor(id: Int, name: String, cover: Cover? = null, various: Boolean? = null, composer: Boolean? = null, genres: List<String>? = null)

Properties

Link copied to clipboard
val composer: Boolean? = null
Link copied to clipboard
val cover: Cover? = null
Link copied to clipboard
val genres: List<String>? = null
Link copied to clipboard
val id: Int
Link copied to clipboard
Link copied to clipboard
val various: Boolean? = null