Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.39 KB

File metadata and controls

24 lines (18 loc) · 1.39 KB

Zernio::WorkflowEdge

Properties

Name Type Description Notes
id String
source String Source node id
target String Target node id
source_handle String Selects a branch output of a multi-output node. Null (or omitted) = the node's single/default output. Known handles per node type: - condition — a rule's `id`, or `'default'` (no rule matched) - wait_for_reply — `'reply'` (contact replied) `'timeout'` (no reply in window) - webhook — `'success'` (2xx)

Example

require 'zernio-sdk'

instance = Zernio::WorkflowEdge.new(
  id: null,
  source: null,
  target: null,
  source_handle: null
)