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.
orderDirection OrderDirection Get the order direction.
orderBy OrderBy Get sort order-by.
selectedNodeItemIds array of StagedNodeIdObjectId Get selected UUIDs.
source string Get the source.
recursive boolean Get the recursive flag.
id string
maxItems number Get maximum item count.
name string

Example

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