nominal-api-conjure 0.1323.0

Conjure HTTP API bindings for the Nominal platform
Documentation
/// A resolved File Store revision to ingest, whose bytes are read in place from the file-store bucket.
#[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 FileStoreIngestSource {
    #[serde(rename = "fileRevisionRid")]
    file_revision_rid: conjure_object::ResourceIdentifier,
}
impl FileStoreIngestSource {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(file_revision_rid: conjure_object::ResourceIdentifier) -> Self {
        Self::builder().file_revision_rid(file_revision_rid).build()
    }
    #[inline]
    pub fn file_revision_rid(&self) -> &conjure_object::ResourceIdentifier {
        &self.file_revision_rid
    }
}