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

     1  package graphql
     2  
     3  // IntegrationSystem missing godoc
     4  type IntegrationSystem struct {
     5  	ID          string  `json:"id"`
     6  	Name        string  `json:"name"`
     7  	Description *string `json:"description"`
     8  }
     9  
    10  // IntegrationSystemPageExt is an extended types used by external API
    11  type IntegrationSystemPageExt struct {
    12  	IntegrationSystemPage
    13  	Data []*IntegrationSystemExt `json:"data"`
    14  }
    15  
    16  // IntegrationSystemExt missing godoc
    17  type IntegrationSystemExt struct {
    18  	IntegrationSystem
    19  	Auths []*IntSysSystemAuth `json:"auths"`
    20  }