#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct IngestVideoRequest {
#[builder(default, list(item(type = super::IngestSource)))]
#[serde(rename = "sources", skip_serializing_if = "Vec::is_empty", default)]
sources: Vec<super::IngestSource>,
#[builder(default, map(key(type = String, into), value(type = String, into)))]
#[serde(
rename = "properties",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
properties: std::collections::BTreeMap<String, String>,
#[builder(default, set(item(type = String, into)))]
#[serde(
rename = "labels",
skip_serializing_if = "std::collections::BTreeSet::is_empty",
default
)]
labels: std::collections::BTreeSet<String>,
#[builder(default, into)]
#[serde(rename = "title", skip_serializing_if = "Option::is_none", default)]
title: Option<String>,
#[builder(default, into)]
#[serde(rename = "description", skip_serializing_if = "Option::is_none", default)]
description: Option<String>,
#[builder(custom(type = super::VideoTimestampManifest, convert = Box::new))]
#[serde(rename = "timestamps")]
timestamps: Box<super::VideoTimestampManifest>,
#[builder(default, into)]
#[serde(rename = "workspace", skip_serializing_if = "Option::is_none", default)]
workspace: Option<conjure_object::ResourceIdentifier>,
}
impl IngestVideoRequest {
#[inline]
pub fn new(timestamps: super::VideoTimestampManifest) -> Self {
Self::builder().timestamps(timestamps).build()
}
#[inline]
pub fn sources(&self) -> &[super::IngestSource] {
&*self.sources
}
#[inline]
pub fn properties(&self) -> &std::collections::BTreeMap<String, String> {
&self.properties
}
#[inline]
pub fn labels(&self) -> &std::collections::BTreeSet<String> {
&self.labels
}
#[inline]
pub fn title(&self) -> Option<&str> {
self.title.as_ref().map(|o| &**o)
}
#[inline]
pub fn description(&self) -> Option<&str> {
self.description.as_ref().map(|o| &**o)
}
#[inline]
pub fn timestamps(&self) -> &super::VideoTimestampManifest {
&*self.timestamps
}
#[inline]
pub fn workspace(&self) -> Option<&conjure_object::ResourceIdentifier> {
self.workspace.as_ref().map(|o| &*o)
}
}