linkbreakers 1.77.5

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

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct VisitorTrendDataPoint {
    #[serde(rename = "newVisitorCount", skip_serializing_if = "Option::is_none")]
    pub new_visitor_count: Option<i32>,
    #[serde(rename = "returningVisitorCount", skip_serializing_if = "Option::is_none")]
    pub returning_visitor_count: Option<i32>,
    #[serde(rename = "timestamp", skip_serializing_if = "Option::is_none")]
    pub timestamp: Option<String>,
}

impl VisitorTrendDataPoint {
    pub fn new() -> VisitorTrendDataPoint {
        VisitorTrendDataPoint {
            new_visitor_count: None,
            returning_visitor_count: None,
            timestamp: None,
        }
    }
}