mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-22 21:05:48 +08:00
21 lines
682 B
Go
21 lines
682 B
Go
package domain
|
|
|
|
const CollectionNameWorkflowOutput = "workflow_output"
|
|
|
|
type WorkflowOutput struct {
|
|
Meta
|
|
WorkflowId string `json:"workflowId" db:"workflowRef"`
|
|
RunId string `json:"runId" db:"runRef"`
|
|
NodeId string `json:"nodeId" db:"nodeId"`
|
|
NodeConfig WorkflowNodeConfig `json:"nodeConfig" db:"nodeConfig"`
|
|
Outputs []*WorkflowOutputEntry `json:"outputs" db:"outputs"`
|
|
Succeeded bool `json:"succeeded" db:"succeeded"`
|
|
}
|
|
|
|
type WorkflowOutputEntry struct {
|
|
Type string `json:"type"`
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
ValueType string `json:"valueType"`
|
|
}
|