pub struct PopulatedFlow {
pub created: Option<i32>,
pub external_id: Option<String>,
pub folder_id: Option<String>,
pub id: Option<String>,
pub metadata: Option<Option<Value>>,
pub project_id: Option<String>,
pub published_version_id: Option<String>,
pub status: Option<String>,
pub updated: Option<i32>,
pub version: Option<Box<FlowVersion>>,
}Fields§
§created: Option<i32>Created and Updated are unix milliseconds.
external_id: Option<String>ExternalID is the caller’s own id for this flow, if it set one.
folder_id: Option<String>FolderID groups the flow in the builder’s tree.
id: Option<String>ID is the flow’s id.
metadata: Option<Option<Value>>§project_id: Option<String>Org is the owning org, which this surface names projectId. Server-derived from the validated principal — never read from a request.
published_version_id: Option<String>PublishedVersionID is the version a run executes when set; empty means the latest version runs.
status: Option<String>Status is ENABLED or DISABLED — whether the flow’s trigger is armed.
updated: Option<i32>§version: Option<Box<FlowVersion>>Version is the flow’s latest version — its display name and step tree.
Implementations§
Source§impl PopulatedFlow
impl PopulatedFlow
pub fn new() -> PopulatedFlow
Trait Implementations§
Source§impl Clone for PopulatedFlow
impl Clone for PopulatedFlow
Source§fn clone(&self) -> PopulatedFlow
fn clone(&self) -> PopulatedFlow
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 PopulatedFlow
impl Debug for PopulatedFlow
Source§impl Default for PopulatedFlow
impl Default for PopulatedFlow
Source§fn default() -> PopulatedFlow
fn default() -> PopulatedFlow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PopulatedFlow
impl<'de> Deserialize<'de> for PopulatedFlow
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 PopulatedFlow
impl PartialEq for PopulatedFlow
Source§impl Serialize for PopulatedFlow
impl Serialize for PopulatedFlow
impl StructuralPartialEq for PopulatedFlow
Auto Trait Implementations§
impl Freeze for PopulatedFlow
impl RefUnwindSafe for PopulatedFlow
impl Send for PopulatedFlow
impl Sync for PopulatedFlow
impl Unpin for PopulatedFlow
impl UnsafeUnpin for PopulatedFlow
impl UnwindSafe for PopulatedFlow
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