nominal-api-conjure 0.1330.0

Conjure HTTP API bindings for the Nominal platform
Documentation
#[derive(
    Debug,
    Clone,
    conjure_object::serde::Serialize,
    conjure_object::serde::Deserialize,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    Copy
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct LttbStrategy {
    #[serde(rename = "maxPointsPerGroup")]
    max_points_per_group: i32,
}
impl LttbStrategy {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(max_points_per_group: i32) -> Self {
        Self::builder().max_points_per_group(max_points_per_group).build()
    }
    /// Maximum number of selected points to return for each group. Must be positive and no greater than 10,000.
    #[inline]
    pub fn max_points_per_group(&self) -> i32 {
        self.max_points_per_group
    }
}