REST Model of a dirt queue entry
| name | data type | description |
|---|---|---|
| id | number | Entry ID |
| objType | number | Object type |
| objId | number | Object ID |
| timestamp | number | Timestamp |
| label | string | Action label |
| failed | boolean | True, if the dirt queue event failed |
| failReason | string | Failure reason description |
Example
{
"id" : 12345,
"objType" : 12345,
"objId" : 12345,
"timestamp" : 12345,
"label" : "...",
"failed" : true,
"failReason" : "..."
}