Module Values.ChainedInvokeDetailsSource

Contains details about a chained function invocation in a durable execution, including the target function and invocation parameters.

Sourcetype nonrec t = {
  1. result : OperationPayload.t option;
    (*

    The response payload from the chained invocation.

    *)
  2. error : ErrorObject.t option;
    (*

    Details about the chained invocation failure.

    *)
}
Sourceval make : ?result:??? -> ?error:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OperationPayload.t | `Structure of (string * [> `List of [> `String of StackTraceEntry.t ] list | `String of ErrorMessage.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