github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/pkg/graphql/applicaiton_template.go (about) 1 package graphql 2 3 // ApplicationTemplate missing godoc 4 type ApplicationTemplate struct { 5 ID string `json:"id"` 6 Name string `json:"name"` 7 Description *string `json:"description"` 8 ApplicationNamespace *string `json:"applicationNamespace"` 9 Webhooks []Webhook `json:"webhooks"` 10 ApplicationInput string `json:"applicationInput"` 11 Placeholders []*PlaceholderDefinition `json:"placeholders"` 12 AccessLevel ApplicationTemplateAccessLevel `json:"accessLevel"` 13 Labels Labels `json:"labels"` 14 }