github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_test_workflow_execution.go (about) 1 /* 2 * Testkube API 3 * 4 * Testkube provides a Kubernetes-native framework for test definition, execution and results 5 * 6 * API version: 1.0.0 7 * Contact: testkube@kubeshop.io 8 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 9 */ 10 package testkube 11 12 import ( 13 "time" 14 ) 15 16 type TestWorkflowExecution struct { 17 // unique execution identifier 18 Id string `json:"id"` 19 // execution name 20 Name string `json:"name"` 21 // sequence number for the execution 22 Number int32 `json:"number,omitempty"` 23 // when the execution has been scheduled to run 24 ScheduledAt time.Time `json:"scheduledAt,omitempty"` 25 // when the execution result's status has changed last time (queued, passed, failed) 26 StatusAt time.Time `json:"statusAt,omitempty"` 27 // structured tree of steps 28 Signature []TestWorkflowSignature `json:"signature,omitempty"` 29 Result *TestWorkflowResult `json:"result,omitempty"` 30 // additional information from the steps, like referenced executed tests or artifacts 31 Output []TestWorkflowOutput `json:"output,omitempty"` 32 Workflow *TestWorkflow `json:"workflow"` 33 ResolvedWorkflow *TestWorkflow `json:"resolvedWorkflow,omitempty"` 34 }