nominal-api-conjure 0.1323.0

Conjure HTTP API bindings for the Nominal platform
Documentation
/// The result of fitting a custom curve, containing the optimized values for each named parameter.
#[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 CustomCurveResultDetails {
    #[builder(default, map(key(type = String, into), value(type = f64)))]
    #[serde(
        rename = "parameters",
        skip_serializing_if = "std::collections::BTreeMap::is_empty",
        default
    )]
    #[derive_with(with = conjure_object::private::DoubleWrapper)]
    parameters: std::collections::BTreeMap<String, f64>,
}
impl CustomCurveResultDetails {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    /// Optimized parameter values produced by the curve fit. Keys match the parameter names provided in the request.
    #[inline]
    pub fn parameters(&self) -> &std::collections::BTreeMap<String, f64> {
        &self.parameters
    }
}