Module Values.VolumeStatisticsSource

An object that contains information about the amount of email that was delivered to recipients.

Sourcetype nonrec t = {
  1. inboxRawCount : Volume.t option;
    (*

    The total number of emails that arrived in recipients' inboxes.

    *)
  2. spamRawCount : Volume.t option;
    (*

    The total number of emails that arrived in recipients' spam or junk mail folders.

    *)
  3. projectedInbox : Volume.t option;
    (*

    An estimate of the percentage of emails sent from the current domain that will arrive in recipients' inboxes.

    *)
  4. projectedSpam : Volume.t option;
    (*

    An estimate of the percentage of emails sent from the current domain that will arrive in recipients' spam or junk mail folders.

    *)
}
Sourceval make : ?inboxRawCount:??? -> ?spamRawCount:??? -> ?projectedInbox:??? -> ?projectedSpam:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Volume.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