github.com/jdolitsky/cnab-go@v0.7.1-beta1/bundle/credentials.go (about) 1 package bundle 2 3 // Credential represents the definition of a CNAB credential 4 type Credential struct { 5 Location `yaml:",inline"` 6 Description string `json:"description,omitempty" yaml:"description,omitempty"` 7 Required bool `json:"required,omitempty" yaml:"required,omitempty"` 8 }