The nodes of flow.

Hierarchy (view full)

Constructors

Properties

actionCalls?: ActionCallNode[]

The nodes of action calls.

assignments?: AssignmentNode[]
breaks?: BreakNode[]

The break nodes.

decisions?: DecisionNode[]

The decisions nodes.

fastCreates?: FastCreateNode[]

The nodes to create records via object variable.

fastDeletes?: FastDeleteNode[]

The nodes to remove records via object variable.

fastLookups?: FastLookupNode[]

The nodes to lookup records via object variable.

fastUpdates?: FastUpdateNode[]

The nodes to update records via object variable.

innerFlows?: (FlowInputModel & {
    active: true;
    private: true;
    version: string;
})[]

The inner flows, can be referenced by sub flow nodes.

loops?: LoopNode[]

The loop nodes.

recordCreates?: RecordCreateNode[]

The nodes to create records.

recordDeletes?: RecordDeleteNode[]

The nodes to remove records.

recordLookups?: RecordLookupNode[]

The nodes to lookup records.

recordUpdates?: RecordUpdateNode[]

The nodes to update records.

subFlows?: SubFlowNode[]

The nodes of subflows.

waits?: WaitNode[]

The wait nodes.