github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_executor_output.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  // CRD based executor data
    17  type ExecutorOutput struct {
    18  	// One of possible output types
    19  	Type_ string `json:"type"`
    20  	// Message/event data passed from executor (like log lines etc)
    21  	Content string           `json:"content,omitempty"`
    22  	Result  *ExecutionResult `json:"result,omitempty"`
    23  	// Timestamp of log
    24  	Time time.Time `json:"time,omitempty"`
    25  }