#[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 TimeSeriesNumericPlot {
#[serde(rename = "color")]
color: super::super::super::api::HexColor,
#[builder(custom(type = super::LineStyle, convert = Box::new))]
#[serde(rename = "lineStyle")]
line_style: Box<super::LineStyle>,
}
impl TimeSeriesNumericPlot {
#[inline]
pub fn new(
color: super::super::super::api::HexColor,
line_style: super::LineStyle,
) -> Self {
Self::builder().color(color).line_style(line_style).build()
}
#[inline]
pub fn color(&self) -> &super::super::super::api::HexColor {
&self.color
}
#[inline]
pub fn line_style(&self) -> &super::LineStyle {
&*self.line_style
}
}