| 104 | |
| 105 | |
| 106 | class StatusPayload(BaseModel): |
| 107 | job_id: UUID |
| 108 | status: JobStatus |
| 109 | message: str |
| 110 | error: str | None |
| 111 | annotation_count: int |
| 112 | final_report_ready: bool |
| 113 | pdf_ready: bool |
| 114 | usage: UsageSnapshot |
| 115 | created_at: datetime |
| 116 | updated_at: datetime |
| 117 | artifacts: JobArtifacts |
nothing calls this directly
no outgoing calls
no test coverage detected