#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ConfigClusterSettings {
#[serde(rename = "Enable", skip_serializing_if = "Option::is_none")]
pub enable: Option<bool>,
#[serde(rename = "InterNodeListenAddress", skip_serializing_if = "Option::is_none")]
pub inter_node_listen_address: Option<String>,
#[serde(rename = "InterNodeUrls", skip_serializing_if = "Option::is_none")]
pub inter_node_urls: Option<Vec<String>>,
}
impl ConfigClusterSettings {
pub fn new() -> ConfigClusterSettings {
ConfigClusterSettings {
enable: None,
inter_node_listen_address: None,
inter_node_urls: None,
}
}
}