pub struct VoiceFlowsQuery {
pub after: Option<String>,
pub limit: Option<u32>,
pub schema_versions: Option<String>,
}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).
schema_versions: Option<String>The document versions this caller’s flow engine can run —
wavekat_flow::SUPPORTED_SCHEMA_VERSIONS, comma-separated
ascending (“1,2”). The platform withholds documents in any other
version rather than serving one the caller would fail to parse.
Send it. None does not mean “anything goes”: the platform
reads a missing value as version 1 only, because this parameter
arrived alongside version 2 and a caller that omits it is an
older build. A client that can run a newer version and stays
quiet silently loses those flows.
Trait Implementations§
Source§impl Clone for VoiceFlowsQuery
impl Clone for VoiceFlowsQuery
Source§fn clone(&self) -> VoiceFlowsQuery
fn clone(&self) -> VoiceFlowsQuery
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more