tmdb_api/common/
image.rs

1#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
2pub struct Image {
3    pub aspect_ratio: f64,
4    pub file_path: String,
5    pub height: u64,
6    pub iso_639_1: Option<String>,
7    pub vote_average: f64,
8    pub vote_count: u64,
9    pub width: u64,
10}