use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct O11yPeriodIntegrationsPeriodCollectedLogAttribute {
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(rename = "path", skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
pub r#type: Option<String>,
}
impl O11yPeriodIntegrationsPeriodCollectedLogAttribute {
pub fn new() -> O11yPeriodIntegrationsPeriodCollectedLogAttribute {
O11yPeriodIntegrationsPeriodCollectedLogAttribute {
name: None,
path: None,
r#type: None,
}
}
}