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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
use super::*;
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct PageSectionItem {
    pub template: String,
    pub title: String,
    pub track_id: String,
    pub link: Link,
    pub image: Option<Image>,

    pub category: Option<String>,
    pub description: Option<String>,
    pub quantity: Option<i32>,
    pub quantity_str: Option<String>,

    pub venue: Option<PageSectionItemVenue>,
    pub overlay: Option<String>,

    pub price: Option<Price>,

    #[serde(flatten)]
    pub _extra_fields: std::collections::HashMap<String, serde_json::Value>,
}

#[derive(Deserialize, Debug)]
pub struct PageSection {
    pub items: Vec<PageSectionItem>,
    pub link: Link,
    pub template: String,
    pub name: String,

    pub title: Option<String>,

    #[serde(flatten)]
    pub _extra_fields: std::collections::HashMap<String, serde_json::Value>,
}

#[derive(Deserialize, Debug)]
pub struct PageSharedAttributes {
    pub page_title: String,
    pub expires_in_seconds: i32,
    pub categories: Vec<PageCategory>,
    pub created: Date,
    pub show_large_title: bool,
    pub show_map: bool,
    pub track_id: String,
}

#[derive(Deserialize, Debug)]
#[serde(tag = "name")]
pub enum Page {
    #[serde(rename = "front")]
    Front {
        city: String,
        city_data: CityData,
        configuration_debug: ConfigurationDebug,
        sections: Vec<PageSection>,

        #[serde(flatten)]
        page: PageSharedAttributes,

        #[serde(flatten)]
        _extra_fields: std::collections::HashMap<String, serde_json::Value>,
    },
    #[serde(rename = "delivery")]
    Delivery {
        sections: Vec<PageSection>,

        #[serde(flatten)]
        page: PageSharedAttributes,

        #[serde(flatten)]
        _extra_fields: std::collections::HashMap<String, serde_json::Value>,
    },
}