Values.JobSummarySourceAn object containing the jobId, status, startTime, and endTime of a job.
type nonrec t = {jobId : JobId.t option;The ID of the job.
*)status : JobStatus.t option;The current status of the job.
*)startTime : Timestamp.t option;The time at which the job was started.
*)endTime : Timestamp.t option;The time at which the job has finished.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `String of JobId.t | `Timestamp of Timestamp.t ])
list ]