pub struct GetFlowByPath200Response {Show 28 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: bool,
pub draft_saved_at: Option<String>,
pub no_deployed: Option<bool>,
pub draft: Option<HashMap<String, Value>>,
pub other_drafts_users: Option<Vec<UserDraftOverlayOtherDraftsUsersInner>>,
}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: bool§draft_saved_at: Option<String>§no_deployed: Option<bool>§draft: Option<HashMap<String, Value>>§other_drafts_users: Option<Vec<UserDraftOverlayOtherDraftsUsersInner>>Other workspace users (and the legacy NULL-email row, if any) with a saved draft at the same path. Populated only on the authed user’s "get by path" responses for kinds the editor surfaces a fork banner for (script, flow, app, raw_app). Empty / omitted for kinds without that UI.
Implementations§
Trait Implementations§
Source§impl Clone for GetFlowByPath200Response
impl Clone for GetFlowByPath200Response
Source§fn clone(&self) -> GetFlowByPath200Response
fn clone(&self) -> GetFlowByPath200Response
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 GetFlowByPath200Response
impl Debug for GetFlowByPath200Response
Source§impl Default for GetFlowByPath200Response
impl Default for GetFlowByPath200Response
Source§fn default() -> GetFlowByPath200Response
fn default() -> GetFlowByPath200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFlowByPath200Response
impl<'de> Deserialize<'de> for GetFlowByPath200Response
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
Source§impl PartialEq for GetFlowByPath200Response
impl PartialEq for GetFlowByPath200Response
Source§fn eq(&self, other: &GetFlowByPath200Response) -> bool
fn eq(&self, other: &GetFlowByPath200Response) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetFlowByPath200Response
impl Serialize for GetFlowByPath200Response
impl StructuralPartialEq for GetFlowByPath200Response
Auto Trait Implementations§
impl Freeze for GetFlowByPath200Response
impl RefUnwindSafe for GetFlowByPath200Response
impl Send for GetFlowByPath200Response
impl Sync for GetFlowByPath200Response
impl Unpin for GetFlowByPath200Response
impl UnsafeUnpin for GetFlowByPath200Response
impl UnwindSafe for GetFlowByPath200Response
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