#[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 ThemeAwareImage {
#[serde(rename = "light")]
light: super::rids::AttachmentRid,
#[serde(rename = "dark")]
dark: super::rids::AttachmentRid,
}
impl ThemeAwareImage {
#[inline]
pub fn new(
light: super::rids::AttachmentRid,
dark: super::rids::AttachmentRid,
) -> Self {
Self::builder().light(light).dark(dark).build()
}
#[inline]
pub fn light(&self) -> &super::rids::AttachmentRid {
&self.light
}
#[inline]
pub fn dark(&self) -> &super::rids::AttachmentRid {
&self.dark
}
}