commonMain.app.moviebase.provider.omdb.model.OmdbValue.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of movie-providers-js Show documentation
Show all versions of movie-providers-js Show documentation
Kotlin Multiplatform library to access several Movie Providers.
package app.moviebase.provider.omdb.model
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class OmdbValue(
@SerialName("imdbRating") val imdbRating: String? = null,
@SerialName("imdbVotes") val imdbVotes: String? = null,
@SerialName("Metascore") val metascore: String? = null,
@SerialName("tomatoURL") val tomatoURL: String? = null,
@SerialName("Ratings") val ratings: List? = null,
)