commonMain.app.moviebase.tmdb.model.TmdbListModel.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!
// ktlint-disable filename
package app.moviebase.tmdb.model
enum class TmdbListSortBy(val value: String) {
ORIGINAL_TITLE("original_title"),
VOTE_AVERAGE("vote_average"),
PRIMARY_RELEASE_DATE("primary_release_date"),
TITLE("title"),
POPULARITY("popularity"),
RELEASE_DATE(" release_date"),
REVENUE("revenue"),
VOTE_COUNT("vote_count")
}