Module Values.DomainIspPlacementSource

An object that contains inbox placement data for email sent from one of your email domains to a specific email provider.

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

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

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

    The total number of messages that were sent from the selected domain to the specified email provider that arrived in recipients' inboxes.

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

    The total number of messages that were sent from the selected domain to the specified email provider that arrived in recipients' spam or junk mail folders.

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

    The percentage of messages that were sent from the selected domain to the specified email provider that arrived in recipients' inboxes.

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

    The percentage of messages that were sent from the selected domain to the specified email provider that arrived in recipients' spam or junk mail folders.

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