github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/pkg/graphql/tenant.go (about) 1 package graphql 2 3 // Tenant missing godoc 4 type Tenant struct { 5 ID string `json:"id"` 6 InternalID string `json:"internalID"` 7 Name *string `json:"name"` 8 Type string `json:"type"` 9 ParentID string `json:"parentID"` 10 Initialized *bool `json:"initialized"` 11 Labels Labels `json:"labels"` 12 Provider string `json:"provider"` 13 }