nominal-api-conjure 0.1436.0

Conjure HTTP API bindings for the Nominal platform
Documentation
/// Request to end the active stream session for a channel-backed live video series.
#[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 EndStreamV2Request {
    #[builder(custom(type = super::VideoChannelSeries, convert = Box::new))]
    #[serde(rename = "channelSeries")]
    channel_series: Box<super::VideoChannelSeries>,
}
impl EndStreamV2Request {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(channel_series: super::VideoChannelSeries) -> Self {
        Self::builder().channel_series(channel_series).build()
    }
    #[inline]
    pub fn channel_series(&self) -> &super::VideoChannelSeries {
        &*self.channel_series
    }
}