mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-10 04:20:24 +00:00
14 lines
281 B
Go
14 lines
281 B
Go
package v3
|
|
|
|
import (
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
type ServerVariable struct {
|
|
Node *yaml.Node
|
|
Enum []low.NodeReference[string]
|
|
Default low.NodeReference[string]
|
|
Description low.NodeReference[string]
|
|
}
|