TmdbImages

@Serializable
data class TmdbImages(val id: Int? = null, val posters: List<TmdbFileImage> = emptyList(), val backdrops: List<TmdbFileImage> = emptyList())

Constructors

Link copied to clipboard
constructor(id: Int? = null, posters: List<TmdbFileImage> = emptyList(), backdrops: List<TmdbFileImage> = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "backdrops")
val backdrops: List<TmdbFileImage>
Link copied to clipboard
@SerialName(value = "id")
val id: Int? = null
Link copied to clipboard
@SerialName(value = "posters")
val posters: List<TmdbFileImage>