Module Values.GetDeliverabilityTestReportResponseSource

The results of the predictive inbox placement test.

Sourcetype nonrec t = {
  1. deliverabilityTestReport : DeliverabilityTestReport.t option;
    (*

    An object that contains the results of the predictive inbox placement test.

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

    An object that specifies how many test messages that were sent during the predictive inbox placement test were delivered to recipients' inboxes, how many were sent to recipients' spam folders, and how many weren't delivered.

    *)
  3. ispPlacements : IspPlacements.t option;
    (*

    An object that describes how the test email was handled by several email providers, including Gmail, Hotmail, Yahoo, AOL, and others.

    *)
  4. message : MessageContent.t option;
    (*

    An object that contains the message that you sent when you performed this predictive inbox placement test.

    *)
  5. tags : TagList.t option;
    (*

    An array of objects that define the tags (keys and values) that are associated with the predictive inbox placement test.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `NotFoundException of NotFoundException.t
  3. | `TooManyRequestsException of TooManyRequestsException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?deliverabilityTestReport:??? -> ?overallPlacement:??? -> ?ispPlacements:??? -> ?message:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of IspName.t | `Structure of (string * [> `Double of Percentage.t ]) list ]) list ] list | `String of MessageContent.t | `Structure of (string * [> `Double of Percentage.t | `Enum of string | `String of ReportId.t | `Timestamp of Timestamp.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