Files
libopenapi/datamodel/high/nodes/nodeentry.go

17 lines
305 B
Go

package nodes
import "gopkg.in/yaml.v3"
// NodeEntry represents a single node used by NodeBuilder.
type NodeEntry struct {
Tag string
Key string
Value any
StringValue string
Line int
KeyStyle yaml.Style
// ValueStyle yaml.Style
RenderZero bool
LowValue any
}