Response to request to retrieve all logs for tag type migration
| name | data type | description |
|---|---|---|
| logFilenames | map of string | |
| jobEntries | array of MigrationJobEntry | Returns the list of job migration job entries |
Properties inherited from GenericResponse |
||
| messages | array of Message | Messages contained in the response (which should be shown to the user) |
| responseInfo | ResponseInfo | |
Example
{
"logFilenames" : {
"property1" : "...",
"property2" : "..."
},
"jobEntries" : [ {
"handledObjects" : 12345,
"logName" : "...",
"jobId" : 12345,
"status" : 12345,
"timestamp" : "...",
"jobType" : 12345
}, {
"handledObjects" : 12345,
"logName" : "...",
"jobId" : 12345,
"status" : 12345,
"timestamp" : "...",
"jobType" : 12345
} ],
"messages" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
}