PageTaskListResponse Data Type

Response containing a list of pages assigned to a task

Properties
name data type description
pages array of PageTask Assigned pages
Properties inherited from GenericResponse
messages array of Message Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo

Example

{
  "pages" : [ {
    "pageId" : "...",
    "completeOn" : "save"
  }, {
    "pageId" : "...",
    "completeOn" : "move"
  } ],
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}