nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// NOTE this is deprecated and will be translated to NeverConnectDisconnectedValues by the frontend.
/// This option indicates the duration below which disconnected values will always be connected with a line.
#[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 ThresholdDisconnectedValues {
    #[builder(
        custom(type = super::super::super::run::api::Duration, convert = Box::new)
    )]
    #[serde(rename = "type")]
    type_: Box<super::super::super::run::api::Duration>,
}
impl ThresholdDisconnectedValues {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(type_: super::super::super::run::api::Duration) -> Self {
        Self::builder().type_(type_).build()
    }
    #[inline]
    pub fn type_(&self) -> &super::super::super::run::api::Duration {
        &*self.type_
    }
}