1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct LicenseLicenseTierEntitlementsExceededAlert {
    /// Current usage.
    #[serde(rename = "current")]
    pub current: Option<i32>,
    /// Alert type. The unit of measure for the current and licensed fields for capacity is terabytes. For nodes_with_seds_count, it is the number of nodes that have one or more self-encrypting drives.
    #[serde(rename = "issue_type")]
    pub issue_type: String,
    /// Licensed amount.
    #[serde(rename = "licensed")]
    pub licensed: Option<i32>,
}