package models import "encoding/xml" type Value struct { XMLName xml.Name `xml:"value"` StructValue *StructValue `xml:"structValue,omitempty"` SimpleValue *SimpleValue `xml:"simpleValue,omitempty"` }