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

commonMain.app.moviebase.provider.omdb.model.OmdbValue.kt Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
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,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy