#[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 SnapshotSummary {
#[serde(rename = "rid")]
rid: super::super::super::rids::api::SnapshotRid,
#[serde(rename = "notebookRid")]
notebook_rid: super::super::super::rids::api::NotebookRid,
#[serde(rename = "authorRid")]
author_rid: super::super::super::rids::api::UserRid,
#[serde(rename = "createdAt")]
created_at: conjure_object::DateTime<conjure_object::Utc>,
}
impl SnapshotSummary {
#[inline]
pub fn rid(&self) -> &super::super::super::rids::api::SnapshotRid {
&self.rid
}
#[inline]
pub fn notebook_rid(&self) -> &super::super::super::rids::api::NotebookRid {
&self.notebook_rid
}
#[inline]
pub fn author_rid(&self) -> &super::super::super::rids::api::UserRid {
&self.author_rid
}
#[inline]
pub fn created_at(&self) -> conjure_object::DateTime<conjure_object::Utc> {
self.created_at
}
}