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