use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CommandCancelAction {
#[serde(rename = "index")]
pub index: String,
#[serde(rename = "node")]
pub node: String,
#[serde(rename = "shard")]
pub shard: u32,
#[serde(rename = "allow_primary", default, skip_serializing_if = "Option::is_none")]
pub allow_primary: Option<bool>,
}
impl CommandCancelAction {
pub fn new(index: String, node: String, shard: u32) -> CommandCancelAction {
CommandCancelAction {
index,
node,
shard,
allow_primary: None,
}
}
}