/// DeploymentTargetEnum
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub enum DeploymentTargetEnum {
#[default]
#[serde(rename = "Preview")]
Preview,
#[serde(rename = "Production")]
Production,
}
impl std::fmt::Display for DeploymentTargetEnum {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let str_val = match self {
DeploymentTargetEnum::Preview => "Preview",
DeploymentTargetEnum::Production => "Production",
};
write!(f, "{}", str_val)
}
}