nominal-api 0.1256.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 IngestVideoFileDetails {
    #[serde(rename = "videoFileRid")]
    video_file_rid: conjure_object::ResourceIdentifier,
    #[serde(rename = "videoRid")]
    video_rid: conjure_object::ResourceIdentifier,
}
impl IngestVideoFileDetails {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        video_file_rid: conjure_object::ResourceIdentifier,
        video_rid: conjure_object::ResourceIdentifier,
    ) -> Self {
        Self::builder().video_file_rid(video_file_rid).video_rid(video_rid).build()
    }
    #[inline]
    pub fn video_file_rid(&self) -> &conjure_object::ResourceIdentifier {
        &self.video_file_rid
    }
    #[inline]
    pub fn video_rid(&self) -> &conjure_object::ResourceIdentifier {
        &self.video_rid
    }
}