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 IngestVideoResponse {
    #[serde(rename = "videoRid")]
    video_rid: super::super::super::api::rids::VideoRid,
    #[serde(rename = "videoFileRid")]
    video_file_rid: super::super::super::api::rids::VideoFileRid,
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::AsyncHandle>>,
            convert = |v|v.into().map(Box::new)
        )
    )]
    #[serde(rename = "asyncHandle", skip_serializing_if = "Option::is_none", default)]
    async_handle: Option<Box<super::AsyncHandle>>,
}
impl IngestVideoResponse {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        video_rid: super::super::super::api::rids::VideoRid,
        video_file_rid: super::super::super::api::rids::VideoFileRid,
    ) -> Self {
        Self::builder().video_rid(video_rid).video_file_rid(video_file_rid).build()
    }
    #[inline]
    pub fn video_rid(&self) -> &super::super::super::api::rids::VideoRid {
        &self.video_rid
    }
    #[inline]
    pub fn video_file_rid(&self) -> &super::super::super::api::rids::VideoFileRid {
        &self.video_file_rid
    }
    #[deprecated(note = "Deprecated")]
    #[inline]
    pub fn async_handle(&self) -> Option<&super::AsyncHandle> {
        self.async_handle.as_ref().map(|o| &**o)
    }
}