Module Values.GetDomainStatisticsReportRequestSource

A request to obtain deliverability metrics for a domain.

Sourcetype nonrec t = {
  1. domain : Identity.t;
    (*

    The domain that you want to obtain deliverability metrics for.

    *)
  2. startDate : Timestamp.t;
    (*

    The first day (in Unix time) that you want to obtain domain deliverability metrics for.

    *)
  3. endDate : Timestamp.t;
    (*

    The last day (in Unix time) that you want to obtain domain deliverability metrics for. The EndDate that you specify has to be less than or equal to 30 days after the StartDate.

    *)
}
Sourceval context_ : string
Sourceval make : domain:Identity.t -> startDate:Timestamp.t -> endDate:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Identity.t | `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