#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct GetSpatialsResponse {
#[builder(default, set(item(type = super::Spatial)))]
#[serde(
rename = "responses",
skip_serializing_if = "std::collections::BTreeSet::is_empty",
default
)]
responses: std::collections::BTreeSet<super::Spatial>,
}
impl GetSpatialsResponse {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn responses(&self) -> &std::collections::BTreeSet<super::Spatial> {
&self.responses
}
}