-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalog.go
28 lines (26 loc) · 1.59 KB
/
catalog.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package mdclasses
import "encoding/xml"
type Catalog struct {
MDOBaseType
XMLName xml.Name `xml:"Catalog"`
ProducedTypes MDOProducedTypes `xml:"producedTypes"`
InputByString string `xml:"inputByString"`
FullTextSearchOnInputByString string `xml:"fullTextSearchOnInputByString"`
StandardAttributes []StandardAttribute `xml:"standardAttributes"`
CreateOnInput string `xml:"createOnInput"`
Help Help `xml:"help"`
DataLockControlMode string `xml:"dataLockControlMode"`
FullTextSearch string `xml:"fullTextSearch"`
ObjectPresentation ObjectKeyValueType `xml:"objectPresentation"`
Hierarchical string `xml:"hierarchical"`
LevelCount string `xml:"levelCount"`
FoldersOnTop string `xml:"foldersOnTop"`
DescriptionLength string `xml:"descriptionLength"`
CodeType string `xml:"codeType"`
CodeAllowedLength string `xml:"codeAllowedLength"`
DefaultPresentation string `xml:"defaultPresentation"`
EditType string `xml:"editType"`
ChoiceMode string `xml:"choiceMode"`
Attributes []Attribute `xml:"attributes"`
TabularSections []TabularSection `xml:"tabularSections"`
}