Module Values.PlacementStatisticsSource

An object that contains inbox placement data for an email provider.

Sourcetype nonrec t = {
  1. inboxPercentage : Percentage.t option;
    (*

    The percentage of emails that arrived in recipients' inboxes during the predictive inbox placement test.

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

    The percentage of emails that arrived in recipients' spam or junk mail folders during the predictive inbox placement test.

    *)
  3. missingPercentage : Percentage.t option;
    (*

    The percentage of emails that didn't arrive in recipients' inboxes at all during the predictive inbox placement test.

    *)
  4. spfPercentage : Percentage.t option;
    (*

    The percentage of emails that were authenticated by using Sender Policy Framework (SPF) during the predictive inbox placement test.

    *)
  5. dkimPercentage : Percentage.t option;
    (*

    The percentage of emails that were authenticated by using DomainKeys Identified Mail (DKIM) during the predictive inbox placement test.

    *)
}
Sourceval make : ?inboxPercentage:??? -> ?spamPercentage:??? -> ?missingPercentage:??? -> ?spfPercentage:??? -> ?dkimPercentage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Percentage.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