nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
#[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 SearchDatasetsRequest {
    #[builder(custom(type = super::SearchDatasetsQuery, convert = Box::new))]
    #[serde(rename = "query")]
    query: Box<super::SearchDatasetsQuery>,
    #[builder(default, into)]
    #[serde(rename = "pageSize", skip_serializing_if = "Option::is_none", default)]
    page_size: Option<i32>,
    #[builder(default, into)]
    #[serde(rename = "token", skip_serializing_if = "Option::is_none", default)]
    token: Option<super::super::super::api::Token>,
    #[builder(custom(type = super::SortOptions, convert = Box::new))]
    #[serde(rename = "sortOptions")]
    sort_options: Box<super::SortOptions>,
}
impl SearchDatasetsRequest {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        query: super::SearchDatasetsQuery,
        sort_options: super::SortOptions,
    ) -> Self {
        Self::builder().query(query).sort_options(sort_options).build()
    }
    #[inline]
    pub fn query(&self) -> &super::SearchDatasetsQuery {
        &*self.query
    }
    /// Defaults to 100. Will throw if larger than 1000.
    #[inline]
    pub fn page_size(&self) -> Option<i32> {
        self.page_size.as_ref().map(|o| *o)
    }
    #[inline]
    pub fn token(&self) -> Option<&super::super::super::api::Token> {
        self.token.as_ref().map(|o| &*o)
    }
    #[inline]
    pub fn sort_options(&self) -> &super::SortOptions {
        &*self.sort_options
    }
}