github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_artifact.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 // API server artifact 13 type Artifact struct { 14 // artifact file path 15 Name string `json:"name,omitempty"` 16 // file size in bytes 17 Size int32 `json:"size,omitempty"` 18 // execution name that produced the artifact 19 ExecutionName string `json:"executionName,omitempty"` 20 Status string `json:"status,omitempty"` 21 }