nominal-api 0.1240.0

API bindings for the Nominal platform
Documentation
#[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 GetDataScopeBoundsResponse {
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::super::super::api::Timestamp>>,
            convert = |v|v.into().map(Box::new)
        )
    )]
    #[serde(rename = "endTime", skip_serializing_if = "Option::is_none", default)]
    end_time: Option<Box<super::super::super::api::Timestamp>>,
}
impl GetDataScopeBoundsResponse {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    /// If missing, the end bound is not known definitively. This can happen if the
    /// data scope corresponds to an external database or its data was not updated in the last month.
    #[inline]
    pub fn end_time(&self) -> Option<&super::super::super::api::Timestamp> {
        self.end_time.as_ref().map(|o| &**o)
    }
}