pub struct VoiceCallsQuery {
pub include_deleted: Option<bool>,
pub before: Option<String>,
pub limit: Option<u32>,
}Expand description
Query params for GET /api/voice/calls. All fields optional — the
default returns the newest page.
Fields§
§include_deleted: Option<bool>Include soft-deleted tombstones in the response. Absent / false
returns only live calls — what a human-facing list wants. A
delta-syncing device sets this true to learn about deletes
made on another device or on the web, so it can reap its local
copy.
Unlike VoiceAccountsQuery::include_deleted there is no
“restore a fresh device” use for this: a tombstoned call has had
its recording and transcript destroyed, so the only thing left
to learn from it is that it’s gone.
before: Option<String>RFC 3339 cursor; rows with end_at < before are returned.
limit: Option<u32>1..=200. Server default is 50.
Trait Implementations§
Source§impl Clone for VoiceCallsQuery
impl Clone for VoiceCallsQuery
Source§fn clone(&self) -> VoiceCallsQuery
fn clone(&self) -> VoiceCallsQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VoiceCallsQuery
impl Debug for VoiceCallsQuery
Source§impl Default for VoiceCallsQuery
impl Default for VoiceCallsQuery
Source§fn default() -> VoiceCallsQuery
fn default() -> VoiceCallsQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VoiceCallsQuery
impl<'de> Deserialize<'de> for VoiceCallsQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VoiceCallsQuery
impl RefUnwindSafe for VoiceCallsQuery
impl Send for VoiceCallsQuery
impl Sync for VoiceCallsQuery
impl Unpin for VoiceCallsQuery
impl UnsafeUnpin for VoiceCallsQuery
impl UnwindSafe for VoiceCallsQuery
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