Values.ActSummarySourceSummary information about an act, including its status and execution timing.
type nonrec t = {workflowRunId : UuidString.t option;The unique identifier of the workflow run containing this act.
*)sessionId : UuidString.t option;The unique identifier of the session containing this act.
*)actId : UuidString.t option;The unique identifier of the act.
*)status : ActStatus.t option;The current execution status of the act.
*)startedAt : DateTimestamp.t option;The timestamp when the act started execution.
*)endedAt : DateTimestamp.t option;The timestamp when the act completed execution, if applicable.
*)traceLocation : TraceLocation.t option;The location where trace information for this act is stored.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of UuidString.t
| `Structure of
(string * [> `Enum of string | `String of NonBlankString.t ]) list
| `Timestamp of DateTimestamp.t ])
list ]