1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

#[derive(Debug, Deserialize)]
pub struct ProductionCompanyExportedId {
    pub id: i64,
    pub name: String,
}

#[derive(Debug, Deserialize)]
pub struct KeywordExportedId {
    pub id: i64,
    pub name: String,
}

#[derive(Debug, Deserialize)]
pub struct CollectionExportedId {
    pub id: i64,
    pub name: String,
}

#[derive(Debug, Deserialize)]
pub struct TvNetworkExportedId {
    pub id: i64,
    pub name: String,
}

#[derive(Debug, Deserialize)]
pub struct MovieExportedId {
    pub id: i64,
    pub original_title: String,
    pub popularity: f64,
    pub adult: bool,
    pub video: bool,
}

#[derive(Debug, Deserialize)]
pub struct TvSeriesExportedId {
    pub id: i64,
    pub original_name: String,
    pub popularity: f64,
}

#[derive(Debug, Deserialize)]
pub struct PersonExportedId {
    pub id: i64,
    pub name: String,
    pub popularity: f64,
    pub adult: bool,
}