#[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 ResolvedSeries {
#[builder(custom(type = super::StorageLocator, convert = Box::new))]
#[serde(rename = "storageLocator")]
storage_locator: Box<super::StorageLocator>,
#[builder(default, into)]
#[serde(rename = "unit", skip_serializing_if = "Option::is_none", default)]
unit: Option<super::super::super::super::super::api::Unit>,
}
impl ResolvedSeries {
#[inline]
pub fn new(storage_locator: super::StorageLocator) -> Self {
Self::builder().storage_locator(storage_locator).build()
}
#[inline]
pub fn storage_locator(&self) -> &super::StorageLocator {
&*self.storage_locator
}
#[inline]
pub fn unit(&self) -> Option<&super::super::super::super::super::api::Unit> {
self.unit.as_ref().map(|o| &*o)
}
}