This bean holds data about all the content elements of a given document.
| name | data type | description | 
|---|---|---|
| storageSize | number | |
| compressedSize | number | |
| contentSize | number | |
| fileNames | array of File | |
| hashes | array of HashDescriptor | |
| Properties inherited from DocumentContentMetaDataType | ||
| hashes | array of HashDescriptor | |
| contentSize | number | |
| compressedSize | number | |
| storageSize | number | |
| fileNames | array of File | |
Example
{
  "storageSize" : 12345,
  "compressedSize" : 12345,
  "contentSize" : 12345,
  "fileNames" : [ {
    "absolute" : true,
    "parentFile" : { },
    "path" : "...",
    "absoluteFile" : { },
    "parent" : "...",
    "file" : true,
    "canonicalFile" : { },
    "name" : "...",
    "freeSpace" : 12345,
    "usableSpace" : 12345,
    "canonicalPath" : "...",
    "hidden" : true,
    "totalSpace" : 12345,
    "absolutePath" : "...",
    "directory" : true
  }, {
    "absolute" : true,
    "parentFile" : { },
    "path" : "...",
    "absoluteFile" : { },
    "parent" : "...",
    "file" : true,
    "canonicalFile" : { },
    "name" : "...",
    "freeSpace" : 12345,
    "usableSpace" : 12345,
    "canonicalPath" : "...",
    "hidden" : true,
    "totalSpace" : 12345,
    "absolutePath" : "...",
    "directory" : true
  } ],
  "hashes" : [ {
    "algorithmName" : "...",
    "hash" : "..."
  }, {
    "algorithmName" : "...",
    "hash" : "..."
  } ]
}