Module Values.FlowNodeOutputSource

Contains configurations for an output from a node.

Sourcetype nonrec t = {
  1. name : FlowNodeOutputName.t;
    (*

    A name for the output that you can reference.

    *)
  2. type_ : FlowNodeIODataType.t;
    (*

    The data type of the output. If the output doesn't match this type at runtime, a validation error will be thrown.

    *)
}
Sourceval context_ : string
Sourceval make : name:FlowNodeOutputName.t -> type_:FlowNodeIODataType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FlowNodeOutputName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t