Generic response containing the response code and response messages (no additional objects)
| name | data type | description |
|---|---|---|
| import | JobStatus | Status of the latest import |
| messages | array of Message | Messages contained in the response (which should be shown to the user) |
| responseInfo | ResponseInfo |
Example
{
"import" : {
"running" : true,
"messages" : [ { }, { } ],
"progress" : {
"done" : 12345,
"total" : 12345,
"started" : 12345,
"finished" : 12345
},
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
},
"messages" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
}