nominal-api-conjure 0.1430.0

Conjure HTTP API bindings for the Nominal platform
Documentation
/// The value at the specified percentile.
#[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 ResolvedPercentile {
    #[builder(custom(type = super::ResolvedDouble, convert = Box::new))]
    #[serde(rename = "percentile")]
    percentile: Box<super::ResolvedDouble>,
}
impl ResolvedPercentile {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(percentile: super::ResolvedDouble) -> Self {
        Self::builder().percentile(percentile).build()
    }
    #[inline]
    pub fn percentile(&self) -> &super::ResolvedDouble {
        &*self.percentile
    }
}