Values.SendDataPointSourceRepresents sending statistics data. Each SendDataPoint contains statistics for a 15-minute period of sending activity.
type nonrec t = {timestamp : Timestamp.t option;Time of the data point.
*)deliveryAttempts : Counter.t option;Number of emails that have been sent.
*)bounces : Counter.t option;Number of emails that have bounced.
*)complaints : Counter.t option;Number of unwanted emails that were rejected by recipients.
*)rejects : Counter.t option;Number of emails rejected by Amazon SES.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Long of Counter.t | `Timestamp of Timestamp.t ]) list ]