linkbreakers 1.77.6

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

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetGroupedTimeSeriesResponse {
    #[serde(rename = "series", skip_serializing_if = "Option::is_none")]
    pub series: Option<Vec<models::TimeSeriesSeries>>,
    #[serde(rename = "totalEvents", skip_serializing_if = "Option::is_none")]
    pub total_events: Option<i32>,
}

impl GetGroupedTimeSeriesResponse {
    pub fn new() -> GetGroupedTimeSeriesResponse {
        GetGroupedTimeSeriesResponse {
            series: None,
            total_events: None,
        }
    }
}