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 TimestampedRange {
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::super::super::super::api::Timestamp>>,
            convert = |v|v.into().map(Box::new)
        )
    )]
    #[serde(rename = "start", skip_serializing_if = "Option::is_none", default)]
    start: Option<Box<super::super::super::super::api::Timestamp>>,
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::super::super::super::api::Timestamp>>,
            convert = |v|v.into().map(Box::new)
        )
    )]
    #[serde(rename = "end", skip_serializing_if = "Option::is_none", default)]
    end: Option<Box<super::super::super::super::api::Timestamp>>,
}
impl TimestampedRange {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    #[inline]
    pub fn start(&self) -> Option<&super::super::super::super::api::Timestamp> {
        self.start.as_ref().map(|o| &**o)
    }
    #[inline]
    pub fn end(&self) -> Option<&super::super::super::super::api::Timestamp> {
        self.end.as_ref().map(|o| &**o)
    }
}