use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ProjectSummaryQuota {
#[serde(rename = "hard", skip_serializing_if = "Option::is_none")]
pub hard: Option<std::collections::HashMap<String, i64>>,
#[serde(rename = "used", skip_serializing_if = "Option::is_none")]
pub used: Option<std::collections::HashMap<String, i64>>,
}
impl ProjectSummaryQuota {
pub fn new() -> ProjectSummaryQuota {
ProjectSummaryQuota {
hard: None,
used: None,
}
}
}