proxycurl_linkedin_rs/models/
student.rs

1/*
2 * Proxycurl API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
12pub struct Student {
13    #[serde(rename = "profile_url", skip_serializing_if = "Option::is_none")]
14    pub profile_url: Option<String>,
15    #[serde(rename = "profile", skip_serializing_if = "Option::is_none")]
16    pub profile: Option<Box<crate::models::Person>>,
17}
18
19impl Student {
20    pub fn new() -> Student {
21        Student {
22            profile_url: None,
23            profile: None,
24        }
25    }
26}