- Overview
- PreflightReport
PreflightReport
Part of Diagnostics & preflight in the Python API reference.
Related guidance: getting-started/preflight, how-to/troubleshooting.
Runnable examples: preflight.py.
from picogrid_ecn_client import PreflightReportCollect the checks and readiness observed by one preflight run.
PreflightReport( *, generated_at: datetime, successful: bool, ready: bool, checks: tuple[PreflightCheck, ...],)Source · models/diagnostics.py
Fields
Section titled “Fields”| Name | Type | Required | Default | Constraints | Description |
|---|---|---|---|---|---|
| generated_at | datetime | yes | — | — | Timezone-aware UTC time when the report was generated. |
| successful | bool | yes | — | — | Whether every required preflight check passed. |
| ready | bool | yes | — | — | Whether the client was ready for this report. |
| checks | tuple[PreflightCheck, …] | yes | — | — | Ordered check results included in the report. |
Version 0.2.0 · branch main
