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 NumRangesConditionV1 {
    #[builder(
        custom(
            type = super::super::super::compute::api::deprecated::RangesNode,
            convert = Box::new
        )
    )]
    #[serde(rename = "ranges")]
    ranges: Box<super::super::super::compute::api::deprecated::RangesNode>,
    #[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::super::super::api::ChannelLocator)
        )
    )]
    #[serde(
        rename = "variables",
        skip_serializing_if = "std::collections::BTreeMap::is_empty",
        default
    )]
    variables: std::collections::BTreeMap<
        super::super::super::compute::api::VariableName,
        super::super::super::api::ChannelLocator,
    >,
}
impl NumRangesConditionV1 {
    #[inline]
    pub fn ranges(&self) -> &super::super::super::compute::api::deprecated::RangesNode {
        &*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::super::super::api::ChannelLocator,
    > {
        &self.variables
    }
}