MatchedOperationsResponseDto Data Type

The Class MatchedOperationsResponseDto.

Implemented Interfaces
Serializable
Properties
name data type description
actionStatus ActionStatus The status response of the web service response.
matchedOperation array of MatchedOperationDto The matched operations.

Example

{
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  },
  "matchedOperation" : [ {
    "matchingId" : 12345,
    "matchingType" : "A_DERICT_DEBIT",
    "matchingDate" : 12345,
    "matchingAmount" : 12345.0,
    "accountOperationId" : 12345,
    "code" : "...",
    "description" : "...",
    "transactionDate" : 12345,
    "transactionCategory" : "CREDIT",
    "dueDate" : 12345,
    "transactionAmount" : 12345.0,
    "matchedTransactionAmount" : 12345.0,
    "matchingStatus" : "L"
  }, {
    "matchingId" : 12345,
    "matchingType" : "M",
    "matchingDate" : 12345,
    "matchingAmount" : 12345.0,
    "accountOperationId" : 12345,
    "code" : "...",
    "description" : "...",
    "transactionDate" : 12345,
    "transactionCategory" : "DEBIT",
    "dueDate" : 12345,
    "transactionAmount" : 12345.0,
    "matchedTransactionAmount" : 12345.0,
    "matchingStatus" : "C"
  } ]
}