Models
Job
The Job model represents a job object returned by the API.
class Job(BaseModel):
id: str
status: JobStatus
stopped: bool = False| Attribute | Type | Description |
|---|---|---|
id | str | The unique identifier of the job. |
status | JobStatus | The current status of the job, using the JobStatus enum. |
stopped | bool | Indicates if the job has been stopped. Defaults to False. |