#[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 ShapeVizDefinitionV1 {
#[builder(default, into)]
#[serde(rename = "title", skip_serializing_if = "Option::is_none", default)]
title: Option<String>,
#[builder(
default,
custom(
type = impl
Into<Option<super::Shape>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(rename = "shape", skip_serializing_if = "Option::is_none", default)]
shape: Option<Box<super::Shape>>,
#[builder(default, into)]
#[serde(rename = "fillColor", skip_serializing_if = "Option::is_none", default)]
fill_color: Option<super::super::super::api::HexColor>,
}
impl ShapeVizDefinitionV1 {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn title(&self) -> Option<&str> {
self.title.as_ref().map(|o| &**o)
}
#[inline]
pub fn shape(&self) -> Option<&super::Shape> {
self.shape.as_ref().map(|o| &**o)
}
#[inline]
pub fn fill_color(&self) -> Option<&super::super::super::api::HexColor> {
self.fill_color.as_ref().map(|o| &*o)
}
}