#[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 ChecklistMetadata {
#[serde(rename = "authorRid")]
author_rid: super::super::super::rids::api::UserRid,
#[serde(rename = "assigneeRid")]
assignee_rid: super::super::super::rids::api::UserRid,
#[builder(into)]
#[serde(rename = "title")]
title: String,
#[builder(into)]
#[serde(rename = "description")]
description: String,
#[serde(rename = "createdAt")]
created_at: conjure_object::DateTime<conjure_object::Utc>,
#[builder(
default,
map(
key(type = super::super::super::super::api::PropertyName),
value(type = super::super::super::super::api::PropertyValue)
)
)]
#[serde(
rename = "properties",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
properties: std::collections::BTreeMap<
super::super::super::super::api::PropertyName,
super::super::super::super::api::PropertyValue,
>,
#[builder(default, set(item(type = super::super::super::super::api::Label)))]
#[serde(
rename = "labels",
skip_serializing_if = "std::collections::BTreeSet::is_empty",
default
)]
labels: std::collections::BTreeSet<super::super::super::super::api::Label>,
#[builder(default, into)]
#[serde(rename = "lastUsed", skip_serializing_if = "Option::is_none", default)]
last_used: Option<conjure_object::DateTime<conjure_object::Utc>>,
#[serde(rename = "isArchived")]
is_archived: bool,
#[serde(rename = "isPublished")]
is_published: bool,
}
impl ChecklistMetadata {
#[inline]
pub fn author_rid(&self) -> &super::super::super::rids::api::UserRid {
&self.author_rid
}
#[inline]
pub fn assignee_rid(&self) -> &super::super::super::rids::api::UserRid {
&self.assignee_rid
}
#[inline]
pub fn title(&self) -> &str {
&*self.title
}
#[inline]
pub fn description(&self) -> &str {
&*self.description
}
#[inline]
pub fn created_at(&self) -> conjure_object::DateTime<conjure_object::Utc> {
self.created_at
}
#[inline]
pub fn properties(
&self,
) -> &std::collections::BTreeMap<
super::super::super::super::api::PropertyName,
super::super::super::super::api::PropertyValue,
> {
&self.properties
}
#[inline]
pub fn labels(
&self,
) -> &std::collections::BTreeSet<super::super::super::super::api::Label> {
&self.labels
}
#[inline]
pub fn last_used(&self) -> Option<conjure_object::DateTime<conjure_object::Utc>> {
self.last_used.as_ref().map(|o| *o)
}
#[inline]
pub fn is_archived(&self) -> bool {
self.is_archived
}
#[inline]
pub fn is_published(&self) -> bool {
self.is_published
}
}