Module Values.RunDetailSummarySource

Summary information about a workflow run's execution details, including status and timing information.

Sourcetype nonrec t = {
  1. status : WorkflowRunStatus.t option;
    (*

    The current status of the workflow run.

    *)
  2. createdOn : TimestampValue.t option;
    (*

    The timestamp when the workflow run was created, in ISO 8601 date-time format.

    *)
  3. startedAt : TimestampValue.t option;
    (*

    The timestamp when the workflow run started execution, in ISO 8601 date-time format.

    *)
  4. 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.

    *)
}
Sourceval make : ?status:??? -> ?createdOn:??? -> ?startedAt:??? -> ?endedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp of TimestampValue.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