#[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 StringArrayLengthQuery {
#[builder(into)]
#[serde(rename = "name")]
name: String,
#[serde(rename = "operator")]
operator: super::super::internal::search::api::Operator,
#[serde(rename = "value")]
value: i32,
}
impl StringArrayLengthQuery {
#[inline]
pub fn new(
name: impl Into<String>,
operator: super::super::internal::search::api::Operator,
value: i32,
) -> Self {
Self::builder().name(name).operator(operator).value(value).build()
}
#[inline]
pub fn name(&self) -> &str {
&*self.name
}
#[inline]
pub fn operator(&self) -> &super::super::internal::search::api::Operator {
&self.operator
}
#[inline]
pub fn value(&self) -> i32 {
self.value
}
}