#[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 InProgressResult {
#[builder(
default,
custom(
type = impl
Into<Option<super::InProgressDetails>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(
rename = "inProgressDetails",
skip_serializing_if = "Option::is_none",
default
)]
in_progress_details: Option<Box<super::InProgressDetails>>,
}
impl InProgressResult {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn in_progress_details(&self) -> Option<&super::InProgressDetails> {
self.in_progress_details.as_ref().map(|o| &**o)
}
}