#[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 VideoVizDefinitionV2 {
#[builder(default, into)]
#[serde(rename = "title", skip_serializing_if = "Option::is_none", default)]
title: Option<String>,
#[serde(rename = "variable")]
variable: super::super::super::channelvariables::api::ChannelVariableName,
}
impl VideoVizDefinitionV2 {
#[inline]
pub fn new(
variable: super::super::super::channelvariables::api::ChannelVariableName,
) -> Self {
Self::builder().variable(variable).build()
}
#[inline]
pub fn title(&self) -> Option<&str> {
self.title.as_ref().map(|o| &**o)
}
#[inline]
pub fn variable(
&self,
) -> &super::super::super::channelvariables::api::ChannelVariableName {
&self.variable
}
}