ContractListResponsDto Data Type

Pagination and sorting criteria plus total record count.

Version
10.0
Implemented Interfaces
Serializable
Properties
name data type description
contract ContractListDto list of contract
paging PagingAndFiltering The paging.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "contract" : {
    "listSize" : 12345,
    "contracts" : [ {
      "contractAccountLevel" : "CUSTOMER",
      "accountCode" : "...",
      "status" : "ACTIVE",
      "statusDate" : 12345,
      "contractDate" : 12345,
      "beginDate" : 12345,
      "endDate" : 12345,
      "renewal" : true,
      "contractDuration" : 12345,
      "customFields" : { },
      "billingRules" : [ { }, { } ],
      "id" : 12345,
      "auditableField" : [ { }, { } ],
      "code" : "...",
      "description" : "...",
      "updatedCode" : "..."
    }, {
      "contractAccountLevel" : "CUSTOMER",
      "accountCode" : "...",
      "status" : "CLOSED",
      "statusDate" : 12345,
      "contractDate" : 12345,
      "beginDate" : 12345,
      "endDate" : 12345,
      "renewal" : true,
      "contractDuration" : 12345,
      "customFields" : { },
      "billingRules" : [ { }, { } ],
      "id" : 12345,
      "auditableField" : [ { }, { } ],
      "code" : "...",
      "description" : "...",
      "updatedCode" : "..."
    } ]
  },
  "paging" : {
    "fullTextFilter" : "...",
    "filters" : {
      "property1" : { },
      "property2" : { }
    },
    "fields" : "...",
    "offset" : 12345,
    "limit" : 12345,
    "sortBy" : "...",
    "sortOrder" : "DESCENDING",
    "multiSortOrder" : "...",
    "totalNumberOfRecords" : 12345,
    "loadReferenceDepth" : 12345
  },
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}