github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_template.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 // Golang based template 13 type Template struct { 14 // template name for reference 15 Name string `json:"name"` 16 // template namespace 17 Namespace string `json:"namespace,omitempty"` 18 Type_ *TemplateType `json:"type"` 19 // template body to use 20 Body string `json:"body"` 21 // template labels 22 Labels map[string]string `json:"labels,omitempty"` 23 }