mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 21:49:52 +00:00
13 lines
318 B
Go
13 lines
318 B
Go
package domain
|
|
|
|
const WorkflowOutputCertificate = "certificate"
|
|
|
|
type WorkflowOutput struct {
|
|
Meta
|
|
Workflow string `json:"workflow"`
|
|
NodeId string `json:"nodeId"`
|
|
Node *WorkflowNode `json:"node"`
|
|
Output []WorkflowNodeIo `json:"output"`
|
|
Succeed bool `json:"succeed"`
|
|
}
|