linkbreakers 1.92.2

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.92.2
 * 
 * Generated by: https://openapi-generator.tech
 */

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ListDetectedGoogleFormsResponse {
    #[serde(rename = "forms", skip_serializing_if = "Option::is_none")]
    pub forms: Option<Vec<models::DetectedGoogleForm>>,
}

impl ListDetectedGoogleFormsResponse {
    pub fn new() -> ListDetectedGoogleFormsResponse {
        ListDetectedGoogleFormsResponse {
            forms: None,
        }
    }
}