Files
libopenapi/datamodel/low/v3/server_variable.go
Dave Shanley 3d5ecf0efb Refactored version directory names
3.0 and 2.0 do not work, there are multiple versions and anything with a period in it sucks from my point of view, v2 and v3 feel much better from a DX perspective.
2022-09-16 08:33:39 -04:00

12 lines
219 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]
}