github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/model/tenant_access.go (about) 1 package model 2 3 import "github.com/kyma-incubator/compass/components/director/pkg/resource" 4 5 // TenantAccess represents the tenant's access level to the resource 6 type TenantAccess struct { 7 ExternalTenantID string 8 InternalTenantID string 9 ResourceType resource.Type 10 ResourceID string 11 Owner bool 12 }