Values.FlowExecutionSummarySourceAn object that contains summary information about a flow execution.
type nonrec t = {flowExecutionId : FlowExecutionId.t option;The ID of the flow execution.
*)status : FlowExecutionStatus.t option;The current status of the flow execution.
*)systemInstanceId : Urn.t option;The ID of the system instance that contains the flow.
*)flowTemplateId : Urn.t option;The ID of the flow.
*)createdAt : Timestamp.t option;The date and time when the flow execution summary was created.
*)updatedAt : Timestamp.t option;The date and time when the flow execution summary was last updated.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of FlowExecutionId.t
| `Timestamp of Timestamp.t ])
list ]