CustomerPaymentsResponse Data Type

The Class CustomerPaymentsResponse.

Implemented Interfaces
Serializable
Properties
name data type description
paging PagingAndFiltering The paging.
customerPaymentDtoList array of PaymentDto The customer payment dto list.
actionStatus ActionStatus The status response of the web service response.
balance number The balance.

Example

{
  "paging" : {
    "fullTextFilter" : "...",
    "filters" : {
      "property1" : { },
      "property2" : { }
    },
    "fields" : "...",
    "offset" : 12345,
    "limit" : 12345,
    "sortBy" : "...",
    "sortOrder" : "DESCENDING",
    "multiSortOrder" : "...",
    "totalNumberOfRecords" : 12345,
    "loadReferenceDepth" : 12345
  },
  "customerPaymentDtoList" : [ {
    "type" : "...",
    "description" : "...",
    "paymentMethod" : "CASH",
    "occTemplateCode" : "...",
    "amount" : 12345.0,
    "customerAccountCode" : "...",
    "reference" : "...",
    "bankLot" : "...",
    "depositDate" : 12345,
    "bankCollectionDate" : 12345,
    "collectionDate" : 12345,
    "dueDate" : 12345,
    "transactionDate" : 12345,
    "listAoIdsForMatching" : [ 12345, 12345 ],
    "isToMatching" : true,
    "paymentOrder" : "...",
    "fees" : 12345.0,
    "comment" : "...",
    "paymentInfo" : "...",
    "paymentInfo1" : "...",
    "paymentInfo2" : "...",
    "paymentInfo3" : "...",
    "paymentInfo4" : "...",
    "paymentInfo5" : "...",
    "paymentInfo6" : "...",
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    }
  }, {
    "type" : "...",
    "description" : "...",
    "paymentMethod" : "CASH",
    "occTemplateCode" : "...",
    "amount" : 12345.0,
    "customerAccountCode" : "...",
    "reference" : "...",
    "bankLot" : "...",
    "depositDate" : 12345,
    "bankCollectionDate" : 12345,
    "collectionDate" : 12345,
    "dueDate" : 12345,
    "transactionDate" : 12345,
    "listAoIdsForMatching" : [ 12345, 12345 ],
    "isToMatching" : true,
    "paymentOrder" : "...",
    "fees" : 12345.0,
    "comment" : "...",
    "paymentInfo" : "...",
    "paymentInfo1" : "...",
    "paymentInfo2" : "...",
    "paymentInfo3" : "...",
    "paymentInfo4" : "...",
    "paymentInfo5" : "...",
    "paymentInfo6" : "...",
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    }
  } ],
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  },
  "balance" : 12345.0
}