pub struct AgSessionResponse {Show 20 fields
pub id: Uuid,
pub organization_id: Uuid,
pub meeting_id: Uuid,
pub platform: String,
pub video_url: String,
pub host_url: Option<String>,
pub status: String,
pub scheduled_start: DateTime<Utc>,
pub actual_start: Option<DateTime<Utc>>,
pub actual_end: Option<DateTime<Utc>>,
pub remote_attendees_count: i32,
pub remote_voting_power: f64,
pub quorum_remote_contribution: f64,
pub waiting_room_enabled: bool,
pub recording_enabled: bool,
pub recording_url: Option<String>,
pub duration_minutes: Option<i64>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub created_by: Uuid,
}Expand description
Réponse API pour une session AG
Fields§
§id: Uuid§organization_id: Uuid§meeting_id: Uuid§platform: String§video_url: String§host_url: Option<String>§status: String§scheduled_start: DateTime<Utc>§actual_start: Option<DateTime<Utc>>§actual_end: Option<DateTime<Utc>>§remote_attendees_count: i32§remote_voting_power: f64§quorum_remote_contribution: f64§waiting_room_enabled: bool§recording_enabled: bool§recording_url: Option<String>§duration_minutes: Option<i64>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§created_by: UuidTrait Implementations§
Source§impl Clone for AgSessionResponse
impl Clone for AgSessionResponse
Source§fn clone(&self) -> AgSessionResponse
fn clone(&self) -> AgSessionResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AgSessionResponse
impl Debug for AgSessionResponse
Source§impl From<&AgSession> for AgSessionResponse
impl From<&AgSession> for AgSessionResponse
Auto Trait Implementations§
impl Freeze for AgSessionResponse
impl RefUnwindSafe for AgSessionResponse
impl Send for AgSessionResponse
impl Sync for AgSessionResponse
impl Unpin for AgSessionResponse
impl UnwindSafe for AgSessionResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Chain<T> for T
impl<T> Chain<T> for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Fake for T
impl<T> Fake for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.