All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| executionId | string | |
| summary | map of number | Summary of entities imported/exported per entity class |
| fieldsNotImported | map of FieldsNotImportedStringCollectionDto | Stores a list of field names that were not imported because of differences between original and current model - fields do not exist in current model |
| exceptionMessage | string | Occurred exception |
| errorMessageKey | string | Occurred error message key |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"executionId" : "...",
"summary" : {
"property1" : 12345,
"property2" : 12345
},
"fieldsNotImported" : {
"property1" : {
"fieldsNotImported" : [ "...", "..." ]
},
"property2" : {
"fieldsNotImported" : [ "...", "..." ]
}
},
"exceptionMessage" : "...",
"errorMessageKey" : "...",
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "INVALID_PARAMETER",
"message" : "..."
}
}