nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
#[derive(
    Debug,
    Clone,
    conjure_object::serde::Serialize,
    conjure_object::serde::Deserialize,
    conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct NumRangesConditionV3 {
    #[builder(
        custom(type = super::super::super::compute::api::RangeSeries, convert = Box::new)
    )]
    #[serde(rename = "ranges")]
    ranges: Box<super::super::super::compute::api::RangeSeries>,
    #[builder(
        custom(
            type = impl
            conjure_object::serde::Serialize,
            convert = |v|conjure_object::Any::new(v).expect("value failed to serialize")
        )
    )]
    #[serde(rename = "functionSpec")]
    function_spec: conjure_object::Any,
    #[serde(rename = "threshold")]
    threshold: i32,
    #[serde(rename = "operator")]
    operator: super::super::super::compute::api::ThresholdOperator,
    #[builder(
        default,
        map(
            key(type = super::super::super::compute::api::VariableName),
            value(type = super::VariableLocator)
        )
    )]
    #[serde(
        rename = "variables",
        skip_serializing_if = "std::collections::BTreeMap::is_empty",
        default
    )]
    variables: std::collections::BTreeMap<
        super::super::super::compute::api::VariableName,
        super::VariableLocator,
    >,
    #[builder(default, into)]
    #[serde(
        rename = "functionVariables",
        skip_serializing_if = "Option::is_none",
        default
    )]
    function_variables: Option<
        std::collections::BTreeMap<
            super::super::super::compute::api::FunctionReference,
            super::CheckContext,
        >,
    >,
}
impl NumRangesConditionV3 {
    #[inline]
    pub fn ranges(&self) -> &super::super::super::compute::api::RangeSeries {
        &*self.ranges
    }
    #[inline]
    pub fn function_spec(&self) -> &conjure_object::Any {
        &self.function_spec
    }
    #[inline]
    pub fn threshold(&self) -> i32 {
        self.threshold
    }
    #[inline]
    pub fn operator(&self) -> &super::super::super::compute::api::ThresholdOperator {
        &self.operator
    }
    #[inline]
    pub fn variables(
        &self,
    ) -> &std::collections::BTreeMap<
        super::super::super::compute::api::VariableName,
        super::VariableLocator,
    > {
        &self.variables
    }
    #[deprecated(
        note = "This field is deprecated and will be removed in a future version.\n"
    )]
    #[inline]
    pub fn function_variables(
        &self,
    ) -> Option<
        &std::collections::BTreeMap<
            super::super::super::compute::api::FunctionReference,
            super::CheckContext,
        >,
    > {
        self.function_variables.as_ref().map(|o| &*o)
    }
}