#[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 ApproximateThresholdRanges {
#[builder(custom(type = super::NumericSeries, convert = Box::new))]
#[serde(rename = "input")]
input: Box<super::NumericSeries>,
#[builder(custom(type = super::DoubleConstant, convert = Box::new))]
#[serde(rename = "threshold")]
threshold: Box<super::DoubleConstant>,
#[builder(custom(type = super::DoubleConstant, convert = Box::new))]
#[serde(rename = "tolerance")]
tolerance: Box<super::DoubleConstant>,
#[serde(rename = "operator")]
operator: super::ApproximateThresholdOperator,
#[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 ApproximateThresholdRanges {
#[inline]
pub fn input(&self) -> &super::NumericSeries {
&*self.input
}
#[inline]
pub fn threshold(&self) -> &super::DoubleConstant {
&*self.threshold
}
#[inline]
pub fn tolerance(&self) -> &super::DoubleConstant {
&*self.tolerance
}
#[inline]
pub fn operator(&self) -> &super::ApproximateThresholdOperator {
&self.operator
}
#[inline]
pub fn persistence_window_configuration(
&self,
) -> Option<&super::PersistenceWindowConfiguration> {
self.persistence_window_configuration.as_ref().map(|o| &**o)
}
}