Module Values.ComplaintSource

Information about a Complaint event.

Sourcetype nonrec t = {
  1. complaintSubType : ComplaintSubType.t option;
    (*

    Can either be null or OnAccountSuppressionList. If the value is OnAccountSuppressionList, SES accepted the message, but didn't attempt to send it because it was on the account-level suppression list.

    *)
  2. complaintFeedbackType : ComplaintFeedbackType.t option;
    (*

    The value of the Feedback-Type field from the feedback report received from the ISP.

    *)
}
Sourceval make : ?complaintSubType:??? -> ?complaintFeedbackType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ComplaintSubType.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