boulderopalscaleup.jobs.JobData

class boulderopalscaleup.jobs.JobData(*, id, name, session_id, created_at, device_name, data)

Full data payload for a completed job.

Variables

  • id (str) – Unique identifier of the job.
  • name (str) – Human-readable name of the job.
  • session_id (str) – Session identifier associated with the job.
  • created_at (datetime) – UTC timestamp of when the job was created.
  • device_name (str) – Name of the device the job ran on.
  • data (list [ JobDataEntry ]) – Ordered list of result entries produced by the job.

Was this useful?