shared
Toggle table of contents
0.1.0
common
Platform filter
common
Switch theme
Search in API
shared
shared
/
com.nubasu.spotify.webapi.wrapper.response.search
Package-level
declarations
Types
Types
Albums
Link copied to clipboard
@
Serializable
data
class
Albums
(
val
href
:
String
,
val
limit
:
Int
,
val
next
:
String
?
,
val
offset
:
Int
,
val
previous
:
String
?
,
val
total
:
Int
,
val
items
:
List
<
SimplifiedAlbumObject
>
)
Artists
Link copied to clipboard
@
Serializable
data
class
Artists
(
val
href
:
String
,
val
limit
:
Int
,
val
next
:
String
?
,
val
offset
:
Int
,
val
previous
:
String
?
,
val
total
:
Int
,
val
items
:
List
<
ArtistObject
>
)
Audiobooks
Link copied to clipboard
@
Serializable
data
class
Audiobooks
(
val
href
:
String
,
val
limit
:
Int
,
val
next
:
String
?
,
val
offset
:
Int
,
val
previous
:
String
?
,
val
total
:
Int
,
val
items
:
List
<
SimplifiedAudiobookObject
>
)
Episodes
Link copied to clipboard
@
Serializable
data
class
Episodes
(
val
href
:
String
,
val
limit
:
Int
,
val
next
:
String
?
,
val
offset
:
Int
,
val
previous
:
String
?
,
val
total
:
Int
,
val
items
:
List
<
SimplifiedEpisodeObject
>
)
Playlists
Link copied to clipboard
@
Serializable
data
class
Playlists
(
val
href
:
String
,
val
limit
:
Int
,
val
next
:
String
?
,
val
offset
:
Int
,
val
previous
:
String
?
,
val
total
:
Int
,
val
items
:
List
<
SimplifiedPlaylistObject
>
)
Search
Response
Link copied to clipboard
@
Serializable
data
class
SearchResponse
(
val
tracks
:
Tracks
?
=
null
,
val
artists
:
Artists
?
=
null
,
val
albums
:
Albums
?
=
null
,
val
playlists
:
Playlists
?
=
null
,
val
shows
:
Shows
?
=
null
,
val
episodes
:
Episodes
?
=
null
,
val
audiobooks
:
Audiobooks
?
=
null
)
Shows
Link copied to clipboard
@
Serializable
data
class
Shows
(
val
href
:
String
,
val
limit
:
Int
,
val
next
:
String
?
,
val
offset
:
Int
,
val
previous
:
String
?
,
val
total
:
Int
,
val
items
:
List
<
SimplifiedShowObject
>
)
Tracks
Link copied to clipboard
@
Serializable
data
class
Tracks
(
val
href
:
String
,
val
limit
:
Int
,
val
next
:
String
?
,
val
offset
:
Int
,
val
previous
:
String
?
,
val
total
:
Int
,
val
items
:
List
<
TrackObject
>
)