ContentWorkflowStateOperation Data Type

Wrapper entity with all the info to make a state change operation

Properties
name data type description
name string Name of the new state (required)
comment string State change note (optional)
expiry number Expiry date for the new state in Epoch milliseconds (optional)
Properties inherited from ContentWorkflowParameterOperation
parameters array of Parameter

Example

{
  "name" : "published",
  "comment" : "changed to published",
  "expiry" : 1506004498284,
  "parameters" : [ {
    "id" : "...",
    "value" : "..."
  }, {
    "id" : "...",
    "value" : "..."
  } ]
}