nominal-api 0.1240.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 SearchIngestJobsResponse {
    #[builder(default, list(item(type = super::IngestJob)))]
    #[serde(rename = "ingestJobs", skip_serializing_if = "Vec::is_empty", default)]
    ingest_jobs: Vec<super::IngestJob>,
    #[builder(default, into)]
    #[serde(rename = "nextPageToken", skip_serializing_if = "Option::is_none", default)]
    next_page_token: Option<super::super::super::api::Token>,
}
impl SearchIngestJobsResponse {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    #[inline]
    pub fn ingest_jobs(&self) -> &[super::IngestJob] {
        &*self.ingest_jobs
    }
    #[inline]
    pub fn next_page_token(&self) -> Option<&super::super::super::api::Token> {
        self.next_page_token.as_ref().map(|o| &*o)
    }
}