ProcessCDRResponseDto Data Type

The Class ProcessCDRResponseDto.

Implemented Interfaces
Serializable
Properties
name data type description
listProcessCdrDto array of ProcessCdrDto
actionStatus ActionStatus The status response of the web service response.

Example

{
  "listProcessCdrDto" : [ {
    "cdrId" : 12345,
    "rejectReason" : "...",
    "status" : "CLOSED",
    "edrId" : 12345
  }, {
    "cdrId" : 12345,
    "rejectReason" : "...",
    "status" : "OPEN",
    "edrId" : 12345
  } ],
  "actionStatus" : {
    "status" : "WARNING",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}