StagedOverview Data Type

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

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

Example

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