Module Values.DailyVolumeSource

An object that contains information about the volume of email sent on each day of the analysis period.

Sourcetype nonrec t = {
  1. startDate : Timestamp.t option;
    (*

    The date that the DailyVolume metrics apply to, in Unix time.

    *)
  2. volumeStatistics : VolumeStatistics.t option;
    (*

    An object that contains inbox placement metrics for a specific day in the analysis period.

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

    An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the recipient's email provider.

    *)
}
Sourceval make : ?startDate:??? -> ?volumeStatistics:??? -> ?domainIspPlacements:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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 | `Timestamp of Timestamp.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