proxycurl_linkedin_rs/models/job_list_count.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 JobListCount {
13 #[serde(rename = "count", skip_serializing_if = "Option::is_none")]
14 pub count: Option<i32>,
15}
16
17impl JobListCount {
18 pub fn new() -> JobListCount {
19 JobListCount { count: None }
20 }
21}