#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct IngestSourceMetadata {
#[builder(
default,
custom(
type = impl
Into<Option<super::TimestampMetadata>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(
rename = "timestampMetadata",
skip_serializing_if = "Option::is_none",
default
)]
timestamp_metadata: Option<Box<super::TimestampMetadata>>,
}
impl IngestSourceMetadata {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn timestamp_metadata(&self) -> Option<&super::TimestampMetadata> {
self.timestamp_metadata.as_ref().map(|o| &**o)
}
}