Tmdb4ListMeta

@Serializable
data class Tmdb4ListMeta(val iso639: String, val id: Int, val featuredInt: Int, val description: String? = null, val revenue: String, val publicInt: Int, val name: String, val updatedAt: LocalDateTime?, val createdAt: LocalDateTime?, val sortBy: Int, val backdropPath: String? = null, val runtime: Int? = null, val averageRating: Float? = null, val iso3166: String? = null, val adultInt: Int, val numberOfItems: Int, val posterPath: String? = null)

Constructors

Link copied to clipboard
constructor(iso639: String, id: Int, featuredInt: Int, description: String? = null, revenue: String, publicInt: Int, name: String, updatedAt: LocalDateTime?, createdAt: LocalDateTime?, sortBy: Int, backdropPath: String? = null, runtime: Int? = null, averageRating: Float? = null, iso3166: String? = null, adultInt: Int, numberOfItems: Int, posterPath: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
@SerialName(value = "adult")
val adultInt: Int
Link copied to clipboard
@SerialName(value = "average_rating")
val averageRating: Float? = null
Link copied to clipboard
@SerialName(value = "backdrop_path")
val backdropPath: String? = null
Link copied to clipboard
@SerialName(value = "created_at")
@Serializable(with = LocalDateTimeSerializer::class)
val createdAt: LocalDateTime?
Link copied to clipboard
val description: String? = null
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "featured")
val featuredInt: Int
Link copied to clipboard
val id: Int
Link copied to clipboard
@SerialName(value = "iso_3166_1")
val iso3166: String? = null
Link copied to clipboard
@SerialName(value = "iso_639_1")
val iso639: String
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "number_of_items")
val numberOfItems: Int
Link copied to clipboard
@SerialName(value = "poster_path")
val posterPath: String? = null
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "public")
val publicInt: Int
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "runtime")
val runtime: Int? = null
Link copied to clipboard
@SerialName(value = "sort_by")
val sortBy: Int
Link copied to clipboard
@SerialName(value = "updated_at")
@Serializable(with = LocalDateTimeSerializer::class)
val updatedAt: LocalDateTime?