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

Example

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