Values.FlowNodeContains configurations about a node in the flow.
type nonrec t = {name : FlowNodeName.t;A name for the node.
*)type_ : FlowNodeType.t;The type of node. This value must match the name of the key that you provide in the configuration you provide in the FlowNodeConfiguration field.
*)configuration : FlowNodeConfiguration.t option;Contains configurations for the node.
*)inputs : FlowNodeInputs.t option;An array of objects, each of which contains information about an input into the node.
*)outputs : FlowNodeOutputs.t option;A list of objects, each of which contains information about an output from the node.
*)}val make :
?configuration:FlowNodeConfiguration.t ->
?inputs:FlowNodeInputs.t ->
?outputs:FlowNodeOutputs.t ->
name:FlowNodeName.t ->
type_:FlowNodeType.t ->
unit ->
t