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 | |
| 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" : [ {
"fieldName" : "...",
"message" : "...",
"type" : "CRITICAL",
"timestamp" : 12345,
"image" : "...",
"sender" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"id" : 12345
}, {
"fieldName" : "...",
"message" : "...",
"type" : "WARNING",
"timestamp" : 12345,
"image" : "...",
"sender" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"id" : 12345
} ],
"responseInfo" : {
"responseCode" : "MAINTENANCEMODE",
"responseMessage" : "...",
"property" : "..."
}
}