nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
#[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 TimeSeriesPlot {
    #[serde(rename = "variableName")]
    variable_name: super::super::super::channelvariables::api::ChannelVariableName,
    #[builder(default, into)]
    #[serde(rename = "enabled", skip_serializing_if = "Option::is_none", default)]
    enabled: Option<bool>,
    #[serde(rename = "yAxisId")]
    y_axis_id: super::AxisId,
    #[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 TimeSeriesPlot {
    #[inline]
    pub fn variable_name(
        &self,
    ) -> &super::super::super::channelvariables::api::ChannelVariableName {
        &self.variable_name
    }
    #[inline]
    pub fn enabled(&self) -> Option<bool> {
        self.enabled.as_ref().map(|o| *o)
    }
    #[inline]
    pub fn y_axis_id(&self) -> &super::AxisId {
        &self.y_axis_id
    }
    #[inline]
    pub fn color(&self) -> &super::super::super::api::HexColor {
        &self.color
    }
    #[inline]
    pub fn line_style(&self) -> &super::LineStyle {
        &*self.line_style
    }
}