SpotifySearchResult

data class SpotifySearchResult(albums: PagingObject<SimpleAlbum>?, artists: PagingObject<Artist>?, playlists: PagingObject<SimplePlaylist>?, tracks: PagingObject<Track>?, episodes: NullablePagingObject<SimpleEpisode>?, shows: NullablePagingObject<SimpleShow>?)

Functions

component1
Link copied to clipboard
common
operator fun component1(): PagingObject<SimpleAlbum>?
component2
Link copied to clipboard
common
operator fun component2(): PagingObject<Artist>?
component3
Link copied to clipboard
common
operator fun component3(): PagingObject<SimplePlaylist>?
component4
Link copied to clipboard
common
operator fun component4(): PagingObject<Track>?
component5
Link copied to clipboard
common
operator fun component5(): NullablePagingObject<SimpleEpisode>?
component6
Link copied to clipboard
common
operator fun component6(): NullablePagingObject<SimpleShow>?
copy
Link copied to clipboard
common
fun copy(albums: PagingObject<SimpleAlbum>? = null, artists: PagingObject<Artist>? = null, playlists: PagingObject<SimplePlaylist>? = null, tracks: PagingObject<Track>? = null, episodes: NullablePagingObject<SimpleEpisode>? = null, shows: NullablePagingObject<SimpleShow>? = null): SpotifySearchResult
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

albums
Link copied to clipboard
common
val albums: PagingObject<SimpleAlbum>? = null
artists
Link copied to clipboard
common
val artists: PagingObject<Artist>? = null
episodes
Link copied to clipboard
common
val episodes: NullablePagingObject<SimpleEpisode>? = null
playlists
Link copied to clipboard
common
val playlists: PagingObject<SimplePlaylist>? = null
shows
Link copied to clipboard
common
val shows: NullablePagingObject<SimpleShow>? = null
tracks
Link copied to clipboard
common
val tracks: PagingObject<Track>? = null

Sources

(source)
Link copied to clipboard