use crate::types::*;
use crate::errors::*;
use uuid::Uuid;
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct GroupCall {
#[doc(hidden)]
#[serde(rename(serialize = "@type", deserialize = "@type"))]
td_name: String,
#[doc(hidden)]
#[serde(rename(serialize = "@extra", deserialize = "@extra"))]
extra: Option<String>,
id: i64,
title: String,
scheduled_start_date: i64,
enabled_start_notification: bool,
is_active: bool,
is_joined: bool,
need_rejoin: bool,
can_be_managed: bool,
participant_count: i64,
loaded_all_participants: bool,
recent_speakers: Vec<GroupCallRecentSpeaker>,
is_my_video_enabled: bool,
is_my_video_paused: bool,
can_enable_video: bool,
mute_new_participants: bool,
can_toggle_mute_new_participants: bool,
record_duration: i64,
is_video_recorded: bool,
duration: i64,
}
impl RObject for GroupCall {
#[doc(hidden)] fn td_name(&self) -> &'static str { "groupCall" }
#[doc(hidden)] fn extra(&self) -> Option<String> { self.extra.clone() }
fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}
impl GroupCall {
pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
pub fn builder() -> RTDGroupCallBuilder {
let mut inner = GroupCall::default();
inner.td_name = "groupCall".to_string();
inner.extra = Some(Uuid::new_v4().to_string());
RTDGroupCallBuilder { inner }
}
pub fn id(&self) -> i64 { self.id }
pub fn title(&self) -> &String { &self.title }
pub fn scheduled_start_date(&self) -> i64 { self.scheduled_start_date }
pub fn enabled_start_notification(&self) -> bool { self.enabled_start_notification }
pub fn is_active(&self) -> bool { self.is_active }
pub fn is_joined(&self) -> bool { self.is_joined }
pub fn need_rejoin(&self) -> bool { self.need_rejoin }
pub fn can_be_managed(&self) -> bool { self.can_be_managed }
pub fn participant_count(&self) -> i64 { self.participant_count }
pub fn loaded_all_participants(&self) -> bool { self.loaded_all_participants }
pub fn recent_speakers(&self) -> &Vec<GroupCallRecentSpeaker> { &self.recent_speakers }
pub fn is_my_video_enabled(&self) -> bool { self.is_my_video_enabled }
pub fn is_my_video_paused(&self) -> bool { self.is_my_video_paused }
pub fn can_enable_video(&self) -> bool { self.can_enable_video }
pub fn mute_new_participants(&self) -> bool { self.mute_new_participants }
pub fn can_toggle_mute_new_participants(&self) -> bool { self.can_toggle_mute_new_participants }
pub fn record_duration(&self) -> i64 { self.record_duration }
pub fn is_video_recorded(&self) -> bool { self.is_video_recorded }
pub fn duration(&self) -> i64 { self.duration }
}
#[doc(hidden)]
pub struct RTDGroupCallBuilder {
inner: GroupCall
}
impl RTDGroupCallBuilder {
pub fn build(&self) -> GroupCall { self.inner.clone() }
pub fn id(&mut self, id: i64) -> &mut Self {
self.inner.id = id;
self
}
pub fn title<T: AsRef<str>>(&mut self, title: T) -> &mut Self {
self.inner.title = title.as_ref().to_string();
self
}
pub fn scheduled_start_date(&mut self, scheduled_start_date: i64) -> &mut Self {
self.inner.scheduled_start_date = scheduled_start_date;
self
}
pub fn enabled_start_notification(&mut self, enabled_start_notification: bool) -> &mut Self {
self.inner.enabled_start_notification = enabled_start_notification;
self
}
pub fn is_active(&mut self, is_active: bool) -> &mut Self {
self.inner.is_active = is_active;
self
}
pub fn is_joined(&mut self, is_joined: bool) -> &mut Self {
self.inner.is_joined = is_joined;
self
}
pub fn need_rejoin(&mut self, need_rejoin: bool) -> &mut Self {
self.inner.need_rejoin = need_rejoin;
self
}
pub fn can_be_managed(&mut self, can_be_managed: bool) -> &mut Self {
self.inner.can_be_managed = can_be_managed;
self
}
pub fn participant_count(&mut self, participant_count: i64) -> &mut Self {
self.inner.participant_count = participant_count;
self
}
pub fn loaded_all_participants(&mut self, loaded_all_participants: bool) -> &mut Self {
self.inner.loaded_all_participants = loaded_all_participants;
self
}
pub fn recent_speakers(&mut self, recent_speakers: Vec<GroupCallRecentSpeaker>) -> &mut Self {
self.inner.recent_speakers = recent_speakers;
self
}
pub fn is_my_video_enabled(&mut self, is_my_video_enabled: bool) -> &mut Self {
self.inner.is_my_video_enabled = is_my_video_enabled;
self
}
pub fn is_my_video_paused(&mut self, is_my_video_paused: bool) -> &mut Self {
self.inner.is_my_video_paused = is_my_video_paused;
self
}
pub fn can_enable_video(&mut self, can_enable_video: bool) -> &mut Self {
self.inner.can_enable_video = can_enable_video;
self
}
pub fn mute_new_participants(&mut self, mute_new_participants: bool) -> &mut Self {
self.inner.mute_new_participants = mute_new_participants;
self
}
pub fn can_toggle_mute_new_participants(&mut self, can_toggle_mute_new_participants: bool) -> &mut Self {
self.inner.can_toggle_mute_new_participants = can_toggle_mute_new_participants;
self
}
pub fn record_duration(&mut self, record_duration: i64) -> &mut Self {
self.inner.record_duration = record_duration;
self
}
pub fn is_video_recorded(&mut self, is_video_recorded: bool) -> &mut Self {
self.inner.is_video_recorded = is_video_recorded;
self
}
pub fn duration(&mut self, duration: i64) -> &mut Self {
self.inner.duration = duration;
self
}
}
impl AsRef<GroupCall> for GroupCall {
fn as_ref(&self) -> &GroupCall { self }
}
impl AsRef<GroupCall> for RTDGroupCallBuilder {
fn as_ref(&self) -> &GroupCall { &self.inner }
}