Module Values.CalculationStatisticsSource

Contains statistics for a notebook calculation.

Sourcetype nonrec t = {
  1. dpuExecutionInMillis : Long.t option;
    (*

    The data processing unit execution time in milliseconds for the calculation.

    *)
  2. progress : DescriptionString.t option;
    (*

    The progress of the calculation.

    *)
}
Sourceval make : ?dpuExecutionInMillis:??? -> ?progress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of DescriptionString.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