#[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 ThresholdingRangesNode {
#[builder(custom(type = super::NumericSeriesNode, convert = Box::new))]
#[serde(rename = "input")]
input: Box<super::NumericSeriesNode>,
#[serde(rename = "threshold")]
#[derive_with(with = conjure_object::private::DoubleWrapper)]
threshold: f64,
#[serde(rename = "operator")]
operator: super::super::super::api::ThresholdOperator,
#[builder(
default,
custom(
type = impl
Into<Option<super::PersistenceWindowConfiguration>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(
rename = "persistenceWindowConfiguration",
skip_serializing_if = "Option::is_none",
default
)]
persistence_window_configuration: Option<Box<super::PersistenceWindowConfiguration>>,
}
impl ThresholdingRangesNode {
#[inline]
pub fn new(
input: super::NumericSeriesNode,
threshold: f64,
operator: super::super::super::api::ThresholdOperator,
) -> Self {
Self::builder().input(input).threshold(threshold).operator(operator).build()
}
#[inline]
pub fn input(&self) -> &super::NumericSeriesNode {
&*self.input
}
#[inline]
pub fn threshold(&self) -> f64 {
self.threshold
}
#[inline]
pub fn operator(&self) -> &super::super::super::api::ThresholdOperator {
&self.operator
}
#[inline]
pub fn persistence_window_configuration(
&self,
) -> Option<&super::PersistenceWindowConfiguration> {
self.persistence_window_configuration.as_ref().map(|o| &**o)
}
}