ReportExtractExecutionResultsResponseDto Data Type

Pagination and sorting criteria plus total record count.

Available Since
15 May 2018
Version
%I%, %G%
Implemented Interfaces
Serializable
Properties
name data type description
reportExtractExecutionResults array of ReportExtractExecutionResultDto
actionStatus ActionStatus Gets the action status.
paging PagingAndFiltering Gets the paging.

Example

{
  "reportExtractExecutionResults" : [ {
    "reportExtractCode" : "...",
    "startDate" : 12345,
    "endDate" : 12345,
    "filePath" : "...",
    "lineCount" : 12345,
    "origin" : "GUI",
    "errorMessage" : "...",
    "status" : true
  }, {
    "reportExtractCode" : "...",
    "startDate" : 12345,
    "endDate" : 12345,
    "filePath" : "...",
    "lineCount" : 12345,
    "origin" : "API",
    "errorMessage" : "...",
    "status" : true
  } ],
  "actionStatus" : {
    "status" : "SUCCESS",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  },
  "paging" : {
    "fullTextFilter" : "...",
    "filters" : {
      "property1" : { },
      "property2" : { }
    },
    "fields" : "...",
    "offset" : 12345,
    "limit" : 12345,
    "sortBy" : "...",
    "sortOrder" : "DESCENDING",
    "multiSortOrder" : "...",
    "totalNumberOfRecords" : 12345,
    "loadReferenceDepth" : 12345
  }
}