proxycurl_linkedin_rs/models/
exit.rs1#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
12pub struct Exit {
13 #[serde(
15 rename = "linkedin_profile_url",
16 default,
17 with = "::serde_with::rust::double_option",
18 skip_serializing_if = "Option::is_none"
19 )]
20 pub linkedin_profile_url: Option<Option<String>>,
21 #[serde(
23 rename = "crunchbase_profile_url",
24 default,
25 with = "::serde_with::rust::double_option",
26 skip_serializing_if = "Option::is_none"
27 )]
28 pub crunchbase_profile_url: Option<Option<String>>,
29 #[serde(
31 rename = "name",
32 default,
33 with = "::serde_with::rust::double_option",
34 skip_serializing_if = "Option::is_none"
35 )]
36 pub name: Option<Option<String>>,
37}
38
39impl Exit {
40 pub fn new() -> Exit {
41 Exit {
42 linkedin_profile_url: None,
43 crunchbase_profile_url: None,
44 name: None,
45 }
46 }
47}