use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct O11yPeriodDataCollectedForIntegration {
#[serde(rename = "logs", skip_serializing_if = "Option::is_none")]
pub logs: Option<Vec<models::O11yPeriodIntegrationsPeriodCollectedLogAttribute>>,
#[serde(rename = "metrics", skip_serializing_if = "Option::is_none")]
pub metrics: Option<Vec<models::O11yPeriodIntegrationsPeriodCollectedMetric>>,
}
impl O11yPeriodDataCollectedForIntegration {
pub fn new() -> O11yPeriodDataCollectedForIntegration {
O11yPeriodDataCollectedForIntegration {
logs: None,
metrics: None,
}
}
}