Package-level declarations

This is an internal package which contains data classes for the API responses of Spotify browse APIs.

Types

Link copied to clipboard
@Serializable
internal data class CategoriesInfo(val href: String, val limit: Int, val offset: Int, val next: String? = null, val previous: String? = null, val total: Int, val items: List<CategoryInfo>)
Link copied to clipboard
@Serializable
internal data class CategoriesResponse(val categories: CategoriesInfo)
Link copied to clipboard
@Serializable
internal data class CategoryInfo(val href: String, val id: String, val name: String, val icons: List<ImageInfo>)