DocumentContentMetaDataTypeAdapter Data Type

This bean holds data about all the content elements of a given document.

Properties
name data type description
storageSize number
hashes array of HashDescriptor
contentSize number
compressedSize number
fileNames array of File
Properties inherited from DocumentContentMetaDataType
hashes array of HashDescriptor
contentSize number
compressedSize number
storageSize number
fileNames array of File

Example

{
  "storageSize" : 12345,
  "hashes" : [ {
    "algorithmName" : "...",
    "hash" : "..."
  }, {
    "algorithmName" : "...",
    "hash" : "..."
  } ],
  "contentSize" : 12345,
  "compressedSize" : 12345,
  "fileNames" : [ {
    "usableSpace" : 12345,
    "parent" : "...",
    "totalSpace" : 12345,
    "hidden" : true,
    "absolutePath" : "...",
    "directory" : true,
    "path" : "...",
    "file" : true,
    "freeSpace" : 12345,
    "absolute" : true,
    "absoluteFile" : { },
    "canonicalFile" : { },
    "canonicalPath" : "...",
    "name" : "...",
    "parentFile" : { }
  }, {
    "usableSpace" : 12345,
    "parent" : "...",
    "totalSpace" : 12345,
    "hidden" : true,
    "absolutePath" : "...",
    "directory" : true,
    "path" : "...",
    "file" : true,
    "freeSpace" : 12345,
    "absolute" : true,
    "absoluteFile" : { },
    "canonicalFile" : { },
    "canonicalPath" : "...",
    "name" : "...",
    "parentFile" : { }
  } ]
}