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 CreateCompatibilitiesClassActiveItemResponseSplit {
    /// The nodepool id that will be split
    #[serde(rename = "id")]
    pub id: i32,
    /// The nodepool name that will be split
    #[serde(rename = "name")]
    pub name: String,
    /// A message explaining how the nodepools tier membership will change.
    #[serde(rename = "tier_name")]
    pub tier_name: String,
}