#[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 ClearChannelPrefixTreeRequest {
#[serde(rename = "dataSourceRid")]
data_source_rid: conjure_object::ResourceIdentifier,
}
impl ClearChannelPrefixTreeRequest {
#[inline]
pub fn new(data_source_rid: conjure_object::ResourceIdentifier) -> Self {
Self::builder().data_source_rid(data_source_rid).build()
}
#[inline]
pub fn data_source_rid(&self) -> &conjure_object::ResourceIdentifier {
&self.data_source_rid
}
}