#[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 TableColumnNumericConfig {
#[builder(custom(type = super::TableColumnNumericAggregation, convert = Box::new))]
#[serde(rename = "aggregation")]
aggregation: Box<super::TableColumnNumericAggregation>,
#[builder(
default,
custom(
type = impl
Into<Option<super::NumberFormat>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(rename = "numberFormat", skip_serializing_if = "Option::is_none", default)]
number_format: Option<Box<super::NumberFormat>>,
}
impl TableColumnNumericConfig {
#[inline]
pub fn new(aggregation: super::TableColumnNumericAggregation) -> Self {
Self::builder().aggregation(aggregation).build()
}
#[inline]
pub fn aggregation(&self) -> &super::TableColumnNumericAggregation {
&*self.aggregation
}
#[inline]
pub fn number_format(&self) -> Option<&super::NumberFormat> {
self.number_format.as_ref().map(|o| &**o)
}
}