nominal-api 0.1240.0

API bindings for the Nominal platform
Documentation
/// The starting timestamp of a range cannot be greater than or equal to the end timestamp.
/// At least one of start and end timestamps must be present.
/// Only the first range when sorted may omit the start, and only the last may omit the end.
#[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 InvalidLiteralRange {
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::super::super::super::super::objects::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::super::objects::api::Timestamp>>,
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::super::super::super::super::objects::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::super::objects::api::Timestamp>>,
}
impl InvalidLiteralRange {
    /// 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::super::objects::api::Timestamp> {
        self.start.as_ref().map(|o| &**o)
    }
    #[inline]
    pub fn end(
        &self,
    ) -> Option<&super::super::super::super::super::objects::api::Timestamp> {
        self.end.as_ref().map(|o| &**o)
    }
}
impl conjure_error::ErrorType for InvalidLiteralRange {
    #[inline]
    fn code() -> conjure_error::ErrorCode {
        conjure_error::ErrorCode::InvalidArgument
    }
    #[inline]
    fn name() -> &'static str {
        "Compute:InvalidLiteralRange"
    }
    #[inline]
    fn safe_args() -> &'static [&'static str] {
        &["end", "start"]
    }
}