#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
Copy
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct IngestJobStartTimeRange {
#[builder(default, into)]
#[serde(rename = "startTimeAfter", skip_serializing_if = "Option::is_none", default)]
start_time_after: Option<conjure_object::DateTime<conjure_object::Utc>>,
#[builder(default, into)]
#[serde(
rename = "startTimeBefore",
skip_serializing_if = "Option::is_none",
default
)]
start_time_before: Option<conjure_object::DateTime<conjure_object::Utc>>,
}
impl IngestJobStartTimeRange {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn start_time_after(
&self,
) -> Option<conjure_object::DateTime<conjure_object::Utc>> {
self.start_time_after.as_ref().map(|o| *o)
}
#[inline]
pub fn start_time_before(
&self,
) -> Option<conjure_object::DateTime<conjure_object::Utc>> {
self.start_time_before.as_ref().map(|o| *o)
}
}