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.
name string
id 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.
recursive boolean Get the recursive flag.

Example

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