The Class ImportExportResponseDto.
name | data type | description |
---|---|---|
actionStatus | ActionStatus | The status response of the web service response. |
executionId | string | The execution id. |
summary | map of number | Summary of entities imported/exported per entity class. |
importResultDto | array of ImportResultDto | |
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. |
Example
{ "actionStatus" : { "status" : "WARNING", "errorCode" : { }, "message" : "...", "entityId" : 12345, "entityCode" : "...", "nrAffected" : 12345, "json" : "..." }, "executionId" : "...", "summary" : { "property1" : 12345, "property2" : 12345 }, "importResultDto" : [ { "name" : "...", "code" : "...", "status" : "..." }, { "name" : "...", "code" : "...", "status" : "..." } ], "fieldsNotImported" : { "property1" : { "fieldsNotImported" : [ "...", "..." ] }, "property2" : { "fieldsNotImported" : [ "...", "..." ] } }, "exceptionMessage" : "...", "errorMessageKey" : "..." }