ParentListResponse Data Type

All the MEVEO API web service response must extend this class.

Implemented Interfaces
Serializable
Properties
name data type description
parents ParentEntitiesDto
Properties inherited from BaseResponse
actionStatus ActionStatus

Example

{
  "parents" : {
    "parent" : [ {
      "code" : "...",
      "description" : "..."
    }, {
      "code" : "...",
      "description" : "..."
    } ]
  },
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : "GENERIC_API_EXCEPTION",
    "message" : "..."
  }
}