ProcessQueueEntry Data Type

Represents an entry in the process queue.

Properties
name data type description
id string The ID of this entry which is unique across the different process queue tables. In contrast to #getEntryId getEntryId() this ID contains the type of the object, so the correct process queue table can be identified. This is expected to be objectType + "/" + entryId.
entryId number The ID of the entry in its process queue. In contrast to #getId getId() this is just the ID of the entry in its own process queue table.
objectId number The ID of the object.
objectType string The type of the object.
processKey string The process key.
data string Addionial data for the process.
state string The state of the entry in the process queue.
timestamp number The creation timestamp of the entry.

Example

{
  "id" : "...",
  "entryId" : 12345,
  "objectId" : 12345,
  "objectType" : "...",
  "processKey" : "...",
  "data" : "...",
  "state" : "...",
  "timestamp" : 12345
}