github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_test_workflow_signature.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  type TestWorkflowSignature struct {
    13  	// step reference
    14  	Ref string `json:"ref,omitempty"`
    15  	// step name
    16  	Name string `json:"name,omitempty"`
    17  	// step category, that may be used as name fallback
    18  	Category string `json:"category,omitempty"`
    19  	// is the step/group meant to be optional
    20  	Optional bool `json:"optional,omitempty"`
    21  	// is the step/group meant to be negative
    22  	Negative bool                    `json:"negative,omitempty"`
    23  	Children []TestWorkflowSignature `json:"children,omitempty"`
    24  }