pub struct VoiceFlowsQuery {
pub after: Option<String>,
pub limit: Option<u32>,
}Expand description
Query params for GET /api/voice/flows/published. Cursor-paginated
by flow id ascending; pass the previous page’s next_after until it
comes back None to collect the full set. The full set is what the
daemon’s reconcile wants — a cached flow absent from a complete pull
was deleted on the platform.
Fields§
§after: Option<String>§limit: Option<u32>Page size, server-capped at 100. None = server default (50).
Trait Implementations§
Source§impl Clone for VoiceFlowsQuery
impl Clone for VoiceFlowsQuery
Source§fn clone(&self) -> VoiceFlowsQuery
fn clone(&self) -> VoiceFlowsQuery
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 VoiceFlowsQuery
impl Debug for VoiceFlowsQuery
Source§impl Default for VoiceFlowsQuery
impl Default for VoiceFlowsQuery
Source§fn default() -> VoiceFlowsQuery
fn default() -> VoiceFlowsQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VoiceFlowsQuery
impl<'de> Deserialize<'de> for VoiceFlowsQuery
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 VoiceFlowsQuery
impl RefUnwindSafe for VoiceFlowsQuery
impl Send for VoiceFlowsQuery
impl Sync for VoiceFlowsQuery
impl Unpin for VoiceFlowsQuery
impl UnsafeUnpin for VoiceFlowsQuery
impl UnwindSafe for VoiceFlowsQuery
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