A workflow node template.
| KEY | TYPE | Description |
|---|---|---|
| workflowNodeTemplateId | Unique String Identifier | The unique identifier of the workflow node template. |
| name | str | The name of the workflow node template. |
| functionName | str | The function name of the workflow node function. |
| sourceCode | str | The source code of the function that the workflow node template will execute. |
| description | str | A description of the workflow node template. |
| packageRequirements | List[str] | A list of package requirements that the node source code may need. |
| tags | dict | Tags to add to the workflow node template. It contains information on the intended usage of template. |
| additionalConfigs | dict | Additional configurations for the workflow node template. |
| inputs | WorkflowNodeTemplateInput | A list of inputs that the workflow node template will use. |
| outputs | WorkflowNodeTemplateOutput | A list of outputs that the workflow node template will give. |
| templateConfigs | WorkflowNodeTemplateConfig | A list of template configs that are hydrated into source to get complete code. |