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