FlowNode¶
Structure Class¶
FlowNode
dataclass
¶
Contains configurations about a node in the flow.
Attributes¶
configuration
class-attribute
instance-attribute
¶
configuration: FlowNodeConfiguration | None = None
Contains configurations for the node.
inputs
class-attribute
instance-attribute
¶
inputs: list[FlowNodeInput] | None = None
An array of objects, each of which contains information about an input into the node.
outputs
class-attribute
instance-attribute
¶
outputs: list[FlowNodeOutput] | None = None
A list of objects, each of which contains information about an output from the node.
type
instance-attribute
¶
type: FlowNodeType
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.