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