aboutsummaryrefslogtreecommitdiffstats
path: root/meetup/src/event.rs
blob: 30b3fca2ee88187bebd067c8b53a819e5cbcb7be (plain)
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
#[derive(Debug, Deserialize, PartialEq)]
pub struct Event {
    pub name: String,
    pub description: Option<String>,
    pub link: String,
    pub local_date: Option<String>,
    pub local_time: Option<String>,
    pub venue: Option<Venue>,
}

#[derive(Debug, Deserialize, PartialEq)]
pub struct Venue {
    pub name: String,
    pub address_1: String,
    pub city: String,
    pub localized_country_name: String,
}



// lat
// lon
// order 'time'
// [radius]
// end_date_range
// [page]