SpotifyCategory

@Serializable
data class SpotifyCategory(val href: String, val id: String, val icons: List<SpotifyImage>, val name: String) : Identifiable(source)

Spotify music category

Parameters

href

A link to the Web API endpoint returning full details of the category.

icons

The category icon, in various sizes.

id

The Spotify category ID of the category.

name

The name of the category.

Constructors

Link copied to clipboard
constructor(href: String, id: String, icons: List<SpotifyImage>, name: String)

Properties

Link copied to clipboard
@Transient
lateinit var api: GenericSpotifyApi

The API client associated with the request

Link copied to clipboard
open override val href: String
Link copied to clipboard
Link copied to clipboard
open override val id: String
Link copied to clipboard