#[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 NumericOutputPercentile {
#[builder(custom(type = super::DoubleConstant, convert = Box::new))]
#[serde(rename = "percentile")]
percentile: Box<super::DoubleConstant>,
#[builder(default, into)]
#[serde(rename = "outputName", skip_serializing_if = "Option::is_none", default)]
output_name: Option<String>,
}
impl NumericOutputPercentile {
#[inline]
pub fn new(percentile: super::DoubleConstant) -> Self {
Self::builder().percentile(percentile).build()
}
#[inline]
pub fn percentile(&self) -> &super::DoubleConstant {
&*self.percentile
}
#[inline]
pub fn output_name(&self) -> Option<&str> {
self.output_name.as_ref().map(|o| &**o)
}
}