Module Values.IspPlacementSource

An object that describes how email sent during the predictive inbox placement test was handled by a certain email provider.

Sourcetype nonrec t = {
  1. ispName : IspName.t option;
    (*

    The name of the email provider that the inbox placement data applies to.

    *)
  2. placementStatistics : PlacementStatistics.t option;
    (*

    An object that contains inbox placement metrics for a specific email provider.

    *)
}
Sourceval make : ?ispName:??? -> ?placementStatistics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IspName.t | `Structure of (string * [> `Double of Percentage.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