commonMain.app.moviebase.tmdb.api.TmdbCollectionsApi.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tmdb-api-jvm Show documentation
Show all versions of tmdb-api-jvm Show documentation
Kotlin Multiplatform library to access the TMDB API.
The newest version!
package app.moviebase.tmdb.api
import app.moviebase.tmdb.model.TmdbBelongsToCollection
import app.moviebase.tmdb.core.endPointV3
import app.moviebase.tmdb.core.parameterLanguage
import io.ktor.client.*
import io.ktor.client.call.*
import io.ktor.client.request.*
class TmdbCollectionsApi internal constructor(private val client: HttpClient) {
suspend fun getDetails(collectionId: Int, language: String? = null): TmdbBelongsToCollection = client.get {
endPointV3("collection", collectionId.toString())
parameterLanguage(language)
}.body()
}