Module Values.PendingMessageSource

Represents a pending message in an agent execution.

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

    The unique identifier for this pending message.

    *)
  2. message : Message.t option;
    (*

    The message content.

    *)
}
Sourceval make : ?messageId:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t | `Structure of 'a list ]) list ] list ]) 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