All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| customEntityInstance | array of CustomEntityInstanceDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"customEntityInstance" : [ {
"code" : "...",
"description" : "...",
"cetCode" : "...",
"disabled" : true,
"customFields" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
}
}, {
"code" : "...",
"description" : "...",
"cetCode" : "...",
"disabled" : true,
"customFields" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
}
} ],
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "INSUFFICIENT_BALANCE",
"message" : "..."
}
}