github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/pkg/graphql/runtime_context.go (about)

     1  package graphql
     2  
     3  // RuntimeContext missing godoc
     4  type RuntimeContext struct {
     5  	ID    string `json:"id"`
     6  	Key   string `json:"key"`
     7  	Value string `json:"value"`
     8  }
     9  
    10  // RuntimeContextPageExt is an extended types used by external API
    11  type RuntimeContextPageExt struct {
    12  	RuntimeContextPage
    13  	Data []*RuntimeContextExt `json:"data"`
    14  }
    15  
    16  // RuntimeContextExt missing godoc
    17  type RuntimeContextExt struct {
    18  	RuntimeContext
    19  	Labels Labels `json:"labels"`
    20  }