tmdb_api/common/
video.rs

1#[derive(Clone, Debug, Deserialize, Serialize)]
2pub struct Video {
3    pub id: String,
4    pub name: String,
5    #[serde(rename = "type")]
6    pub kind: String,
7    pub site: String,
8    pub key: String,
9    pub published_at: chrono::DateTime<chrono::Utc>,
10    pub size: u64,
11    pub iso_639_1: String,
12    pub iso_3166_1: String,
13}