nominal-api-conjure 0.1291.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
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct IngestDataflashRequest {
    #[builder(custom(type = super::ObjectLocator, convert = Box::new))]
    #[serde(rename = "locator")]
    locator: Box<super::ObjectLocator>,
    #[builder(default, into)]
    #[serde(
        rename = "ignoreInvalidTimestamps",
        skip_serializing_if = "Option::is_none",
        default
    )]
    ignore_invalid_timestamps: Option<bool>,
}
impl IngestDataflashRequest {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(locator: super::ObjectLocator) -> Self {
        Self::builder().locator(locator).build()
    }
    #[inline]
    pub fn locator(&self) -> &super::ObjectLocator {
        &*self.locator
    }
    /// If true, skips dataflash records whose timestamp cannot be represented (corrupted/out-of-range)
    /// instead of failing the entire ingest. If not provided, defaults to false.
    #[inline]
    pub fn ignore_invalid_timestamps(&self) -> Option<bool> {
        self.ignore_invalid_timestamps.as_ref().map(|o| *o)
    }
}