FilmImage

@Serializable
data class FilmImage(val filePath: String, val height: Int, val width: Int)(source)

Data class representing an image associated with a film.

Constructors

Link copied to clipboard
constructor(filePath: String, height: Int, width: Int)

Properties

Link copied to clipboard
@SerializedName(value = "file_path")
val filePath: String

The path to the image file.

Link copied to clipboard
val height: Int

The height of the image.

Link copied to clipboard
val width: Int

The width of the image.