Module Values.ReceiptSource

The receipt for the message delivered to the recipient.

Sourcetype nonrec t = {
  1. deliveredTimestamp : Instant.t option;
    (*

    The time when the message was delivered to the recipient.

    *)
  2. readTimestamp : Instant.t option;
    (*

    The time when the message was read by the recipient.

    *)
  3. recipientParticipantId : ParticipantId.t option;
    (*

    The identifier of the recipient of the message.

    *)
}
Sourceval make : ?deliveredTimestamp:??? -> ?readTimestamp:??? -> ?recipientParticipantId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Instant.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