Module Values.FlowDefinition

The definition of the nodes and connections between nodes in the flow.

Sourcetype nonrec t = {
  1. nodes : FlowNodes.t option;
    (*

    An array of node definitions in the flow.

    *)
  2. connections : FlowConnections.t option;
    (*

    An array of connection definitions in the flow.

    *)
}
Sourceval make : ?nodes:FlowNodes.t -> ?connections:FlowConnections.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t