Module Values.DeliverabilityTestReportSource

An object that contains metadata related to a predictive inbox placement test.

Sourcetype nonrec t = {
  1. reportId : ReportId.t option;
    (*

    A unique string that identifies the predictive inbox placement test.

    *)
  2. reportName : ReportName.t option;
    (*

    A name that helps you identify a predictive inbox placement test report.

    *)
  3. subject : DeliverabilityTestSubject.t option;
    (*

    The subject line for an email that you submitted in a predictive inbox placement test.

    *)
  4. fromEmailAddress : EmailAddress.t option;
    (*

    The sender address that you specified for the predictive inbox placement test.

    *)
  5. createDate : Timestamp.t option;
    (*

    The date and time when the predictive inbox placement test was created.

    *)
  6. deliverabilityTestStatus : DeliverabilityTestStatus.t option;
    (*

    The status of the predictive inbox placement test. If the status is IN_PROGRESS, then the predictive inbox placement test is currently running. Predictive inbox placement tests are usually complete within 24 hours of creating the test. If the status is COMPLETE, then the test is finished, and you can use the GetDeliverabilityTestReport to view the results of the test.

    *)
}
Sourceval make : ?reportId:??? -> ?reportName:??? -> ?subject:??? -> ?fromEmailAddress:??? -> ?createDate:??? -> ?deliverabilityTestStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ReportId.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