#[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 WriteStructsRequest {
#[builder(default, list(item(type = super::StructPoint)))]
#[serde(rename = "structs", skip_serializing_if = "Vec::is_empty", default)]
structs: Vec<super::StructPoint>,
#[builder(default, into)]
#[serde(rename = "channel", skip_serializing_if = "Option::is_none", default)]
channel: Option<super::super::super::super::api::Channel>,
}
impl WriteStructsRequest {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn structs(&self) -> &[super::StructPoint] {
&*self.structs
}
#[inline]
pub fn channel(&self) -> Option<&super::super::super::super::api::Channel> {
self.channel.as_ref().map(|o| &*o)
}
}