This DocumentElementType represents a link to another document.
| name | data type | description |
|---|---|---|
| children | array of DocumentElementType | Returns the document element children. |
| linkedDocumentId | DocumentRevisionReferenceType | Returns the linked document id. |
| linkName | string | Returns the link name. |
| nodeType | DocumentNodeType | Returns the document node type. |
Properties inherited from DocumentElementType |
||
| 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
{
"children" : [ {
"creationDate" : 12345,
"variables" : {
"property1" : "...",
"property2" : "..."
},
"nodeType" : "LINK",
"children" : [ { }, { } ],
"reference" : { }
}, {
"creationDate" : 12345,
"variables" : {
"property1" : "...",
"property2" : "..."
},
"nodeType" : "CONTENT",
"children" : [ { }, { } ],
"reference" : { }
} ],
"linkedDocumentId" : {
"hdoc" : "..."
},
"linkName" : "...",
"nodeType" : "STRUCTURE",
"creationDate" : 12345,
"variables" : {
"property1" : "...",
"property2" : "..."
},
"reference" : { }
}