use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct O11yPeriodMissingAttributesComponentEntry {
#[serde(rename = "associatedComponent", skip_serializing_if = "Option::is_none")]
pub associated_component: Option<Box<models::O11yPeriodAssociatedComponent>>,
#[serde(rename = "attributes", skip_serializing_if = "Option::is_none")]
pub attributes: Option<Vec<String>>,
#[serde(rename = "documentationLink", skip_serializing_if = "Option::is_none")]
pub documentation_link: Option<String>,
#[serde(rename = "message", skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
}
impl O11yPeriodMissingAttributesComponentEntry {
pub fn new() -> O11yPeriodMissingAttributesComponentEntry {
O11yPeriodMissingAttributesComponentEntry {
associated_component: None,
attributes: None,
documentation_link: None,
message: None,
}
}
}