Module Values.MessageMetadataSource

Contains metadata related to a message.

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

    The identifier of the message that contains the metadata information.

    *)
  2. receipts : Receipts.t option;
    (*

    The list of receipt information for a message for different recipients.

    *)
  3. messageProcessingStatus : MessageProcessingStatus.t option;
    (*

    The status of Message Processing for the message.

    *)
}
Sourceval make : ?messageId:??? -> ?receipts:??? -> ?messageProcessingStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of Instant.t ]) list ] list | `String of ChatItemId.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