Represents a queue job
Properties
Name | Type | Required | Description |
---|---|---|---|
id | string | ✅ | |
input | any | ✅ | The job input. May be any valid JSON. |
status | QueueJobStatus | ✅ | |
events | QueueJobEvent[] | ✅ | |
createTime | string | ✅ | |
updateTime | string | ✅ | |
metadata | any | ❌ | |
webhook | string | ❌ | |
output | any | ❌ | The job output. May be any valid JSON. |
Properties
Name | Type | Required | Description |
---|---|---|---|
PENDING | string | ✅ | "pending" |
RUNNING | string | ✅ | "running" |
SUCCEEDED | string | ✅ | "succeeded" |
CANCELLED | string | ✅ | "cancelled" |
FAILED | string | ✅ | "failed" |