#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct RangeAggregationContext {
#[builder(default, list(item(type = super::VariableWithAggregation)))]
#[serde(
rename = "variablesToAggregate",
skip_serializing_if = "Vec::is_empty",
default
)]
variables_to_aggregate: Vec<super::VariableWithAggregation>,
}
impl RangeAggregationContext {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn variables_to_aggregate(&self) -> &[super::VariableWithAggregation] {
&*self.variables_to_aggregate
}
}