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
use getset::{Getters, Setters};
use serde::{Deserialize, Serialize};
#[cfg(feature = "wasm")]
use wasm_bindgen::prelude::wasm_bindgen;
#[cfg_attr(feature = "wasm", wasm_bindgen)]
#[derive(Debug, Serialize, Deserialize, Getters, Setters, Default, Clone)]
#[getset(get = "pub", set = "pub")]
pub struct SummaryClub {
id: Option<i32>,
resource_state: Option<i32>,
name: Option<String>,
profile_medium: Option<String>,
cover_photo: Option<String>,
cover_photo_small: Option<String>,
sport_type: Option<String>,
city: Option<String>,
state: Option<String>,
country: Option<String>,
private: Option<bool>,
member_count: Option<i32>,
featured: Option<bool>,
verified: Option<bool>,
url: Option<String>,
}