pub struct ListFlows200ResponseInner {Show 26 fields
pub summary: String,
pub description: Option<String>,
pub value: Box<FlowValue>,
pub schema: Option<Value>,
pub on_behalf_of_email: Option<String>,
pub workspace_id: Option<String>,
pub path: String,
pub edited_by: String,
pub edited_at: String,
pub archived: bool,
pub extra_perms: HashMap<String, bool>,
pub starred: Option<bool>,
pub draft_only: Option<bool>,
pub tag: Option<String>,
pub ws_error_handler_muted: Option<bool>,
pub priority: Option<i32>,
pub dedicated_worker: Option<bool>,
pub timeout: Option<f64>,
pub visible_to_runner_only: Option<bool>,
pub labels: Option<Vec<String>>,
pub inherited_labels: Option<Vec<String>>,
pub lock_error_logs: Option<String>,
pub version_id: Option<f64>,
pub is_draft: Option<bool>,
pub draft_path: Option<String>,
pub draft_users: Option<Vec<ListScripts200ResponseInnerAllOfDraftUsersInner>>,
}Fields§
§summary: StringShort description of what this flow does
description: Option<String>Detailed documentation for this flow
value: Box<FlowValue>§schema: Option<Value>JSON Schema for flow inputs. Use this to define input parameters, their types, defaults, and validation. For resource inputs, set type to ‘object’ and format to ‘resource-
on_behalf_of_email: Option<String>§workspace_id: Option<String>§path: String§edited_by: String§edited_at: String§archived: bool§extra_perms: HashMap<String, bool>§starred: Option<bool>§draft_only: Option<bool>§tag: Option<String>§ws_error_handler_muted: Option<bool>§priority: Option<i32>§dedicated_worker: Option<bool>§timeout: Option<f64>§visible_to_runner_only: Option<bool>§labels: Option<Vec<String>>§inherited_labels: Option<Vec<String>>Labels inherited from the parent folder, computed at read time. Read-only — edit them on the folder.
lock_error_logs: Option<String>§version_id: Option<f64>§is_draft: Option<bool>True when the authed user has a draft for this flow — either no deployed row exists at this path (draft-only) or the user saved a per-user draft on top of the deployed row.
draft_path: Option<String>User-typed path the editor has staged but not yet deployed. Sourced from the draft JSON’s draft_path field (the editor only writes it when the typed path differs from the deployed one). Lets the home list render the meaningful name instead of the autogenerated u/{user}/draft_{uuid} URL path. Omitted when unchanged.
draft_users: Option<Vec<ListScripts200ResponseInnerAllOfDraftUsersInner>>Workspace users (including the authed user, and the legacy NULL-email row if any) who have a per-user draft at this path. Drives the home page’s user-avatar circles inside the Draft badge. Omitted when no drafts exist.
Implementations§
Trait Implementations§
Source§impl Clone for ListFlows200ResponseInner
impl Clone for ListFlows200ResponseInner
Source§fn clone(&self) -> ListFlows200ResponseInner
fn clone(&self) -> ListFlows200ResponseInner
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ListFlows200ResponseInner
impl Debug for ListFlows200ResponseInner
Source§impl Default for ListFlows200ResponseInner
impl Default for ListFlows200ResponseInner
Source§fn default() -> ListFlows200ResponseInner
fn default() -> ListFlows200ResponseInner
Source§impl<'de> Deserialize<'de> for ListFlows200ResponseInner
impl<'de> Deserialize<'de> for ListFlows200ResponseInner
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>,
Source§impl PartialEq for ListFlows200ResponseInner
impl PartialEq for ListFlows200ResponseInner
Source§fn eq(&self, other: &ListFlows200ResponseInner) -> bool
fn eq(&self, other: &ListFlows200ResponseInner) -> bool
self and other values to be equal, and is used by ==.