Flow Node
data class FlowNode(val configuration: Any? = null, val inputs: List<FlowNodeInput>? = null, val name: String, val outputs: List<FlowNodeOutput>? = null, val type: FlowNodeType)
Internal mixin for flow node
Constructors
Link copied to clipboard
constructor(configuration: Any? = null, inputs: List<FlowNodeInput>? = null, name: String, outputs: List<FlowNodeOutput>? = null, type: FlowNodeType)
Properties
Link copied to clipboard
Contains configurations for the node.
Link copied to clipboard
List of node inputs in a flow
Link copied to clipboard
List of node outputs in a flow
Link copied to clipboard
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.