use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetGeoBreakdownResponse {
#[serde(rename = "data", skip_serializing_if = "Option::is_none")]
pub data: Option<Vec<models::GeoDataPoint>>,
#[serde(rename = "totalEvents", skip_serializing_if = "Option::is_none")]
pub total_events: Option<i32>,
}
impl GetGeoBreakdownResponse {
pub fn new() -> GetGeoBreakdownResponse {
GetGeoBreakdownResponse {
data: None,
total_events: None,
}
}
}