DocumentElementType Data Type

This class represents an element in a document structure.

Abstract Type
Subtypes
ScannedDocumentElementType, LinkDocumentElementType, StructureCompositeDocumentElementType, FileDocumentElementType, ContentDocumentElementType
Properties
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

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "creationDate" : 12345,
  "variables" : {
    "property1" : "...",
    "property2" : "..."
  },
  "nodeType" : "LINK",
  "children" : [ {
    "creationDate" : 12345,
    "variables" : {
      "property1" : "...",
      "property2" : "..."
    },
    "nodeType" : "CONTENT",
    "children" : [ { }, { } ],
    "reference" : { }
  }, {
    "creationDate" : 12345,
    "variables" : {
      "property1" : "...",
      "property2" : "..."
    },
    "nodeType" : "CONTENT",
    "children" : [ { }, { } ],
    "reference" : { }
  } ],
  "reference" : { }
}