All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.adamratzman.spotify.models.Search.kt Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2021; Original author: Adam Ratzman */
package com.adamratzman.spotify.models

import kotlinx.serialization.Serializable

@Serializable
public data class SpotifySearchResult(
    val albums: PagingObject? = null,
    val artists: PagingObject? = null,
    val playlists: PagingObject? = null,
    val tracks: PagingObject? = null,
    val episodes: NullablePagingObject? = null,
    val shows: NullablePagingObject? = null
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy