#[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 CreateVideoSeriesRequest {
#[serde(rename = "datasetRid")]
dataset_rid: conjure_object::ResourceIdentifier,
#[builder(into)]
#[serde(rename = "channel")]
channel: String,
#[builder(default, map(key(type = String, into), value(type = String, into)))]
#[serde(
rename = "tags",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
tags: std::collections::BTreeMap<String, String>,
#[builder(custom(type = super::TimeBounds, convert = Box::new))]
#[serde(rename = "timeBounds")]
time_bounds: Box<super::TimeBounds>,
}
impl CreateVideoSeriesRequest {
#[inline]
pub fn new(
dataset_rid: conjure_object::ResourceIdentifier,
channel: impl Into<String>,
time_bounds: super::TimeBounds,
) -> Self {
Self::builder()
.dataset_rid(dataset_rid)
.channel(channel)
.time_bounds(time_bounds)
.build()
}
#[inline]
pub fn dataset_rid(&self) -> &conjure_object::ResourceIdentifier {
&self.dataset_rid
}
#[inline]
pub fn channel(&self) -> &str {
&*self.channel
}
#[inline]
pub fn tags(&self) -> &std::collections::BTreeMap<String, String> {
&self.tags
}
#[inline]
pub fn time_bounds(&self) -> &super::TimeBounds {
&*self.time_bounds
}
}