Module Values_2.StatementOutputSource

The code execution output in JSON format.

Sourcetype nonrec t = {
  1. data : StatementOutputData.t option;
    (*

    The code execution output.

    *)
  2. executionCount : Values_0.IntegerValue.t option;
    (*

    The execution count of the output.

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

    The status of the code execution output.

    *)
  4. errorName : Values_0.GenericString.t option;
    (*

    The name of the error in the output.

    *)
  5. errorValue : Values_0.GenericString.t option;
    (*

    The error value of the output.

    *)
  6. traceback : OrchestrationStringList.t option;
    (*

    The traceback of the output.

    *)
}
Sourceval make : ?data:??? -> ?executionCount:??? -> ?status:??? -> ?errorName:??? -> ?errorValue:??? -> ?traceback:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.IntegerValue.t | `List of [> `String of Values_0.GenericString.t ] list | `String of Values_0.GenericString.t | `Structure of (string * [> `String of Values_0.GenericString.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