linkbreakers 1.98.0

Official Rust SDK for the Linkbreakers API
Documentation
/*
 * Linkbreakers API
 *
 * This is a documentation of all the APIs of Linkbreakers
 *
 * The version of the OpenAPI document: 1.98.0
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SyncGoogleFormsResponse {
    #[serde(rename = "responsesSynced", skip_serializing_if = "Option::is_none")]
    pub responses_synced: Option<String>,
    #[serde(rename = "visitorsEnriched", skip_serializing_if = "Option::is_none")]
    pub visitors_enriched: Option<String>,
}

impl SyncGoogleFormsResponse {
    pub fn new() -> SyncGoogleFormsResponse {
        SyncGoogleFormsResponse {
            responses_synced: None,
            visitors_enriched: None,
        }
    }
}