Module Values.CalculationSummarySource

Summary information for a notebook calculation.

Sourcetype nonrec t = {
  1. calculationExecutionId : CalculationExecutionId.t option;
    (*

    The calculation execution UUID.

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

    A description of the calculation.

    *)
  3. status : CalculationStatus.t option;
    (*

    Contains information about the status of the calculation.

    *)
}
Sourceval make : ?calculationExecutionId:??? -> ?description:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CalculationExecutionId.t | `Structure of (string * [> `Enum of string | `String of DescriptionString.t | `Timestamp of Date.t ]) list ]) 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