proxycurl_linkedin_rs/models/
role_search_eriched_result.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 RoleSearchErichedResult {
13    /// LinkedIn Profile URL of the person that most closely matches the role
14    #[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(rename = "profile", skip_serializing_if = "Option::is_none")]
22    pub profile: Option<Box<crate::models::PersonEndpointResponse>>,
23}
24
25impl RoleSearchErichedResult {
26    pub fn new() -> RoleSearchErichedResult {
27        RoleSearchErichedResult {
28            linkedin_profile_url: None,
29            profile: None,
30        }
31    }
32}