The MigrationResponse is returned when a migration job is invoked or reinvoked. It contains the jobId and message information.
name | data type | constraints | description |
---|---|---|---|
messages | array of Message | Return the list of messages | |
responseInfo | ResponseInfo | Return the reponse info | |
jobId | number | required int | Returns the job id for this reponse |
Properties inherited from GenericResponse |
|||
messages | array of Message | Messages contained in the response (which should be shown to the user) | |
responseInfo | ResponseInfo |
Example
{ "messages" : [ { "isInstantMessage" : true, "fieldName" : "...", "message" : "...", "type" : "SUCCESS", "timestamp" : 12345, "image" : "...", "sender" : { "id" : 12345, "firstName" : "...", "lastName" : "...", "description" : "...", "email" : "...", "groups" : [ { }, { } ], "login" : "...", "password" : "..." }, "id" : 12345 }, { "isInstantMessage" : true, "fieldName" : "...", "message" : "...", "type" : "SUCCESS", "timestamp" : 12345, "image" : "...", "sender" : { "id" : 12345, "firstName" : "...", "lastName" : "...", "description" : "...", "email" : "...", "groups" : [ { }, { } ], "login" : "...", "password" : "..." }, "id" : 12345 } ], "responseInfo" : { "responseCode" : "OK", "responseMessage" : "...", "property" : "..." }, "jobId" : 12345 }