The MigrationResponse is returned when a migration job is invoked or reinvoked. It contains the jobId and message information.
| name | data type | description |
|---|---|---|
| messages | array of Message | Return the list of messages |
| responseInfo | ResponseInfo | Return the reponse info |
| jobId | number | 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" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
},
"jobId" : 12345
}