ExportSelectionResponse Data Type

Response containing the list of subselected folders

Properties
name data type description
folders array of number Get the subselected folders
inheritedFolders map of array of number Get the subselected inherited folders
Properties inherited from GenericResponse
messages array of Message Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo

Example

{
  "folders" : [ 12345, 12345 ],
  "inheritedFolders" : {
    "property1" : [ 12345, 12345 ],
    "property2" : [ 12345, 12345 ]
  },
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}