JobExecutionResultsResponseDto Data Type

Pagination and sorting criteria plus total record count.

Implemented Interfaces
Serializable
Properties
name data type description
jobExecutionResult JobExecutionResultsDto
paging PagingAndFiltering The paging.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "jobExecutionResult" : {
    "jobExecutionResults" : [ {
      "id" : 12345,
      "jobInstanceId" : 12345,
      "runningOnNodes" : "...",
      "startDate" : 12345,
      "endDate" : 12345,
      "nbItemsToProcess" : 12345,
      "nbItemsCorrectlyProcessed" : 12345,
      "nbItemsProcessedWithWarning" : 12345,
      "nbItemsProcessedWithError" : 12345,
      "status" : "COMPLETED_MORE",
      "report" : "...",
      "jobInstanceCode" : "..."
    }, {
      "id" : 12345,
      "jobInstanceId" : 12345,
      "runningOnNodes" : "...",
      "startDate" : 12345,
      "endDate" : 12345,
      "nbItemsToProcess" : 12345,
      "nbItemsCorrectlyProcessed" : 12345,
      "nbItemsProcessedWithWarning" : 12345,
      "nbItemsProcessedWithError" : 12345,
      "status" : "RUNNING",
      "report" : "...",
      "jobInstanceCode" : "..."
    } ],
    "totalNumberOfRecords" : 12345
  },
  "paging" : {
    "fullTextFilter" : "...",
    "filters" : {
      "property1" : { },
      "property2" : { }
    },
    "fields" : "...",
    "offset" : 12345,
    "limit" : 12345,
    "sortBy" : "...",
    "sortOrder" : "ASCENDING",
    "multiSortOrder" : "...",
    "totalNumberOfRecords" : 12345,
    "loadReferenceDepth" : 12345
  },
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}