mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
14 lines
459 B
Go
14 lines
459 B
Go
package domain
|
|
|
|
const CollectionNameWorkflowOutput = "workflow_output"
|
|
|
|
type WorkflowOutput struct {
|
|
Meta
|
|
WorkflowId string `json:"workflowId" db:"workflow"`
|
|
RunId string `json:"runId" db:"runId"`
|
|
NodeId string `json:"nodeId" db:"nodeId"`
|
|
Node *WorkflowNode `json:"node" db:"node"`
|
|
Outputs []WorkflowNodeIO `json:"outputs" db:"outputs"`
|
|
Succeeded bool `json:"succeeded" db:"succeeded"`
|
|
}
|