use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct O11yPeriodAttributesComponentEntry {
#[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>>,
}
impl O11yPeriodAttributesComponentEntry {
pub fn new() -> O11yPeriodAttributesComponentEntry {
O11yPeriodAttributesComponentEntry {
associated_component: None,
attributes: None,
}
}
}