use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct O11yPeriodAzureConnectionArtifact {
#[serde(rename = "cliCommand", skip_serializing_if = "Option::is_none")]
pub cli_command: Option<String>,
#[serde(rename = "cloudPowerShellCommand", skip_serializing_if = "Option::is_none")]
pub cloud_power_shell_command: Option<String>,
}
impl O11yPeriodAzureConnectionArtifact {
pub fn new() -> O11yPeriodAzureConnectionArtifact {
O11yPeriodAzureConnectionArtifact {
cli_command: None,
cloud_power_shell_command: None,
}
}
}