This class represents an element in a document structure.
| name | data type | description |
|---|---|---|
| creationDate | number | Returns the creation date. |
| variables | map of string | Returns the element variables. |
| nodeType | DocumentNodeType | Returns the document node type. |
| children | array of DocumentElementType | Returns the document element children. |
Properties inherited from ResourceType |
||
| reference | ReferenceType | Returns the resource's object reference. |
Example
{
"creationDate" : 12345,
"variables" : {
"property1" : "...",
"property2" : "..."
},
"nodeType" : "LINK",
"children" : [ {
"creationDate" : 12345,
"variables" : {
"property1" : "...",
"property2" : "..."
},
"nodeType" : "STRUCTURE",
"children" : [ { }, { } ],
"reference" : { }
}, {
"creationDate" : 12345,
"variables" : {
"property1" : "...",
"property2" : "..."
},
"nodeType" : "LINK",
"children" : [ { }, { } ],
"reference" : { }
} ],
"reference" : { }
}