Module Values.OverallVolumeSource

An object that contains information about email that was sent from the selected domain.

Sourcetype nonrec t = {
  1. volumeStatistics : VolumeStatistics.t option;
    (*

    An object that contains information about the numbers of messages that arrived in recipients' inboxes and junk mail folders.

    *)
  2. readRatePercent : Percentage.t option;
    (*

    The percentage of emails that were sent from the domain that were read by their recipients.

    *)
  3. domainIspPlacements : DomainIspPlacements.t option;
    (*

    An object that contains inbox and junk mail placement metrics for individual email providers.

    *)
}
Sourceval make : ?volumeStatistics:??? -> ?readRatePercent:??? -> ?domainIspPlacements:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Percentage.t | `List of [> `Structure of (string * [> `Double of Percentage.t | `Long of Volume.t | `String of IspName.t ]) list ] list | `Structure of (string * [> `Long of Volume.t ]) 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