Files
libopenapi/datamodel/low/3.0/server_variable.go
Dave Shanley 7535cf568c Working through the model builder
Shaping out the design as I go, what makes sence, what feels right, what do we need, how do we want to use it and how to we want to search it etc.
2022-07-30 15:27:21 -04:00

12 lines
231 B
Go

package v3
import (
"github.com/pb33f/libopenapi/datamodel/low"
)
type ServerVariable struct {
Enum []low.NodeReference[string]
Default low.NodeReference[string]
Description low.NodeReference[string]
}