/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.81.3
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct HourOfDayDataPoint {
#[serde(rename = "eventCount", skip_serializing_if = "Option::is_none")]
pub event_count: Option<i32>,
#[serde(rename = "hour", skip_serializing_if = "Option::is_none")]
pub hour: Option<i32>,
}
impl HourOfDayDataPoint {
pub fn new() -> HourOfDayDataPoint {
HourOfDayDataPoint {
event_count: None,
hour: None,
}
}
}