StagedOverview Data Type

REST entity for the overview, contained in the Content Staging package.

Properties
name data type description
selectType SelectType Get the select type.
orderDirection OrderDirection Get the order direction.
source string Get the source.
recursive boolean Get the recursive flag.
id string
name string
listType ListType Get the overview type.
orderBy OrderBy Get sort order-by.
selectedNodeItemIds array of StagedNodeIdObjectId Get selected UUIDs.
maxItems number Get maximum item count.

Example

{
  "selectType" : "AUTO",
  "orderDirection" : "UNDEFINED",
  "source" : "...",
  "recursive" : true,
  "id" : "...",
  "name" : "...",
  "listType" : "FOLDER",
  "orderBy" : "EDATE",
  "selectedNodeItemIds" : [ {
    "nodeId" : "...",
    "objectId" : "..."
  }, {
    "nodeId" : "...",
    "objectId" : "..."
  } ],
  "maxItems" : 12345
}