#[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 SearchStreamingSessionsResponse {
#[builder(default, list(item(type = super::StreamingSession)))]
#[serde(
rename = "streamingSessions",
skip_serializing_if = "Vec::is_empty",
default
)]
streaming_sessions: Vec<super::StreamingSession>,
#[builder(default, into)]
#[serde(rename = "nextPageToken", skip_serializing_if = "Option::is_none", default)]
next_page_token: Option<super::super::super::api::Token>,
}
impl SearchStreamingSessionsResponse {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn streaming_sessions(&self) -> &[super::StreamingSession] {
&*self.streaming_sessions
}
#[inline]
pub fn next_page_token(&self) -> Option<&super::super::super::api::Token> {
self.next_page_token.as_ref().map(|o| &*o)
}
}