#[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 AggregateUnderRangesSeries {
#[builder(custom(type = super::NumericSeries, convert = Box::new))]
#[serde(rename = "input")]
input: Box<super::NumericSeries>,
#[builder(custom(type = super::RangeSeries, convert = Box::new))]
#[serde(rename = "ranges")]
ranges: Box<super::RangeSeries>,
#[serde(rename = "operation")]
operation: super::NumericAggregationFunction,
}
impl AggregateUnderRangesSeries {
#[inline]
pub fn new(
input: super::NumericSeries,
ranges: super::RangeSeries,
operation: super::NumericAggregationFunction,
) -> Self {
Self::builder().input(input).ranges(ranges).operation(operation).build()
}
#[inline]
pub fn input(&self) -> &super::NumericSeries {
&*self.input
}
#[inline]
pub fn ranges(&self) -> &super::RangeSeries {
&*self.ranges
}
#[deprecated(
note = "Use a dedicated group-by-and-aggregate node instead (coming in a follow-up PR). This field is retained\nas required for backwards compatibility with existing callers.\n"
)]
#[inline]
pub fn operation(&self) -> &super::NumericAggregationFunction {
&self.operation
}
}