#[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 EventReference {
#[builder(default, into)]
#[serde(rename = "eventUuid", skip_serializing_if = "Option::is_none", default)]
event_uuid: Option<conjure_object::Uuid>,
#[serde(rename = "rid")]
rid: super::super::super::super::api::rids::EventRid,
}
impl EventReference {
#[inline]
pub fn new(rid: super::super::super::super::api::rids::EventRid) -> Self {
Self::builder().rid(rid).build()
}
#[deprecated(note = "Please use the rid field instead.")]
#[inline]
pub fn event_uuid(&self) -> Option<conjure_object::Uuid> {
self.event_uuid.as_ref().map(|o| *o)
}
#[inline]
pub fn rid(&self) -> &super::super::super::super::api::rids::EventRid {
&self.rid
}
}