Module Values.CallbackStartedDetailsSource

Contains details about a callback operation that has started, including timing information and callback metadata.

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

    The callback ID. Callback IDs are generated by the DurableContext when a durable function calls ctx.waitForCallback.

    *)
  2. heartbeatTimeout : DurationSeconds.t option;
    (*

    The heartbeat timeout value, in seconds.

    *)
  3. timeout : DurationSeconds.t option;
    (*

    The timeout value, in seconds.

    *)
}
Sourceval make : ?callbackId:??? -> ?heartbeatTimeout:??? -> ?timeout:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DurationSeconds.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