Module Values.SuppressedDestinationSummarySource

A summary that describes the suppressed email address.

Sourcetype nonrec t = {
  1. emailAddress : EmailAddress.t option;
    (*

    The email address that's on the suppression list for your account.

    *)
  2. reason : SuppressionListReason.t option;
    (*

    The reason that the address was added to the suppression list for your account.

    *)
  3. lastUpdateTime : Timestamp.t option;
    (*

    The date and time when the suppressed destination was last updated, shown in Unix time format.

    *)
}
Sourceval make : ?emailAddress:??? -> ?reason:??? -> ?lastUpdateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EmailAddress.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