All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| terminationReason | array of TerminationReasonDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"terminationReason" : [ {
"code" : "...",
"description" : "...",
"applyAgreement" : true,
"applyReimbursment" : true,
"applyTerminationCharges" : true,
"updatedCode" : "..."
}, {
"code" : "...",
"description" : "...",
"applyAgreement" : true,
"applyReimbursment" : true,
"applyTerminationCharges" : true,
"updatedCode" : "..."
} ],
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "ENTITY_ALREADY_EXISTS_EXCEPTION",
"message" : "..."
}
}