Module Values.InvokeWithResponseStreamCompleteEventSource

A response confirming that the event stream is complete.

Sourcetype nonrec t = {
  1. errorCode : String_.t option;
    (*

    An error code.

    *)
  2. errorDetails : String_.t option;
    (*

    The details of any returned error.

    *)
  3. logResult : String_.t option;
    (*

    The last 4 KB of the execution log, which is base64-encoded.

    *)
}
Sourceval make : ?errorCode:??? -> ?errorDetails:??? -> ?logResult:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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