nominal-api-conjure 0.1292.1

Conjure HTTP API bindings for the Nominal platform
Documentation
/// Request to list the transforms belonging to a single ingest job, oldest-first.
#[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 SearchIngestTransformsRequest {
    #[serde(rename = "ingestJobRid")]
    ingest_job_rid: conjure_object::ResourceIdentifier,
    #[builder(default, into)]
    #[serde(rename = "statuses", skip_serializing_if = "Option::is_none", default)]
    statuses: Option<Vec<super::IngestTransformStatus>>,
    #[builder(default, into)]
    #[serde(rename = "pageSize", skip_serializing_if = "Option::is_none", default)]
    page_size: Option<i32>,
    #[builder(default, into)]
    #[serde(rename = "nextPageToken", skip_serializing_if = "Option::is_none", default)]
    next_page_token: Option<String>,
}
impl SearchIngestTransformsRequest {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(ingest_job_rid: conjure_object::ResourceIdentifier) -> Self {
        Self::builder().ingest_job_rid(ingest_job_rid).build()
    }
    /// The ingest job whose transforms to list.
    #[inline]
    pub fn ingest_job_rid(&self) -> &conjure_object::ResourceIdentifier {
        &self.ingest_job_rid
    }
    /// When present and non-empty, only transforms in one of these statuses are returned. Omit,
    /// or pass an empty list, to return transforms in any status.
    #[inline]
    pub fn statuses(&self) -> Option<&[super::IngestTransformStatus]> {
        self.statuses.as_ref().map(|o| &**o)
    }
    /// Defaults to 100. Clamped to 1_000 if larger, and to 1 if non-positive.
    #[inline]
    pub fn page_size(&self) -> Option<i32> {
        self.page_size.as_ref().map(|o| *o)
    }
    #[inline]
    pub fn next_page_token(&self) -> Option<&str> {
        self.next_page_token.as_ref().map(|o| &**o)
    }
}