Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 835 Bytes

File metadata and controls

26 lines (20 loc) · 835 Bytes

Zernio::CreateWhatsAppFlowRequest

Properties

Name Type Description Notes
account_id String WhatsApp social account ID
name String Flow display name
categories Array<String> Flow categories
clone_flow_id String Optional: ID of an existing flow to clone the Flow JSON from [optional]
as_version Boolean When cloning, true keeps the clone in cloneFlowId's version lineage (auto-numbered next version); false/absent creates an independent flow. Ignored without cloneFlowId. [optional]

Example

require 'zernio-sdk'

instance = Zernio::CreateWhatsAppFlowRequest.new(
  account_id: null,
  name: null,
  categories: null,
  clone_flow_id: null,
  as_version: null
)