Values.RunDetailSummarySourceSummary information about a workflow run's execution details, including status and timing information.
type nonrec t = {status : WorkflowRunStatus.t option;The current status of the workflow run.
*)createdOn : TimestampValue.t option;The timestamp when the workflow run was created, in ISO 8601 date-time format.
*)startedAt : TimestampValue.t option;The timestamp when the workflow run started execution, in ISO 8601 date-time format.
*)endedAt : TimestampValue.t option;The timestamp when the workflow run completed execution, in ISO 8601 date-time format. This value is null if the run is not complete.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `Timestamp of TimestampValue.t ]) list ]