-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReport.go
More file actions
23 lines (21 loc) · 1.07 KB
/
Report.go
File metadata and controls
23 lines (21 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package mdclasses
import "github.com/v8platform/mdclasses/encoding/xml"
type Report struct {
XMLName xml.Name `xml:"Report"`
Mdclass string `xml:"mdclass,attr"`
Uuid string `xml:"uuid,attr"`
ProducedTypes MDOProducedTypes `xml:"producedTypes"`
Name string `xml:"name"`
Synonym ObjectKeyValueType `xml:"synonym"`
DefaultForm string `xml:"defaultForm"`
MainDataCompositionSchema string `xml:"mainDataCompositionSchema"`
DefaultSettingsForm string `xml:"defaultSettingsForm"`
DefaultVariantForm string `xml:"defaultVariantForm"`
Help Help `xml:"help"`
Templates struct {
Uuid string `xml:"uuid,attr"`
Name string `xml:"name"`
Synonym ObjectKeyValueType `xml:"synonym"`
TemplateType string `xml:"templateType"`
} `xml:"templates"`
}