...

Source file src/github.com/redhat-developer/odo/pkg/api/bindable_service.go

Documentation: github.com/redhat-developer/odo/pkg/api

     1  package api
     2  
     3  type BindableService struct {
     4  	Name       string `json:"name,omitempty"`
     5  	Namespace  string `json:"namespace,omitempty"`
     6  	Kind       string `json:"kind,omitempty"`
     7  	APIVersion string `json:"apiVersion,omitempty"`
     8  	Service    string `json:"service,omitempty"`
     9  }
    10  

View as plain text