#[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 {
#[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_
}
}