Module Values.SendDurableExecutionCallbackSuccessRequestSource

Sends a successful completion response for a callback operation in a durable execution. Use this API when an external system has successfully completed a callback operation.

Sourcetype nonrec t = {
  1. callbackId : CallbackId.t;
    (*

    The unique identifier for the callback operation.

    *)
  2. result : BinaryOperationPayload.t option;
    (*

    The result data from the successful callback operation. Maximum size is 256 KB.

    *)
}
Sourceval context_ : string
Sourceval make : ?result:??? -> callbackId:CallbackId.t -> unit -> t
Sourceval of_header_and_body : ((string, CallbackId.t) Awso.Import.List.Assoc.t * BinaryOperationPayload.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of BinaryOperationPayload.t | `String of CallbackId.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