proxycurl_linkedin_rs/models/
extraction_email_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 ExtractionEmailResult {
13    /// Total queue in the email extraction process
14    #[serde(rename = "email_queue_count", skip_serializing_if = "Option::is_none")]
15    pub email_queue_count: Option<i32>,
16}
17
18impl ExtractionEmailResult {
19    pub fn new() -> ExtractionEmailResult {
20        ExtractionEmailResult {
21            email_queue_count: None,
22        }
23    }
24}