#[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 PinnedModuleVersionReference {
#[builder(custom(type = super::StringConstant, convert = Box::new))]
#[serde(rename = "version")]
version: Box<super::StringConstant>,
}
impl PinnedModuleVersionReference {
#[inline]
pub fn new(version: super::StringConstant) -> Self {
Self::builder().version(version).build()
}
#[inline]
pub fn version(&self) -> &super::StringConstant {
&*self.version
}
}