Module Values.FlowExecutionSummarySource

An object that contains summary information about a flow execution.

Sourcetype nonrec t = {
  1. flowExecutionId : FlowExecutionId.t option;
    (*

    The ID of the flow execution.

    *)
  2. status : FlowExecutionStatus.t option;
    (*

    The current status of the flow execution.

    *)
  3. systemInstanceId : Urn.t option;
    (*

    The ID of the system instance that contains the flow.

    *)
  4. flowTemplateId : Urn.t option;
    (*

    The ID of the flow.

    *)
  5. createdAt : Timestamp.t option;
    (*

    The date and time when the flow execution summary was created.

    *)
  6. updatedAt : Timestamp.t option;
    (*

    The date and time when the flow execution summary was last updated.

    *)
}
Sourceval make : ?flowExecutionId:??? -> ?status:??? -> ?systemInstanceId:??? -> ?flowTemplateId:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FlowExecutionId.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t