SuppressionListDeleter
public class SuppressionListDeleter<T> : Request<SuppressionListDeleterParameters> where T : EmailEventRepresentable
The SuppressionListDeleter class is base class inherited by requests that
delete entries from a supression list. You should not use this class
directly.
-
Initializes the request with an array of email addresses to delete from the suppression list.
Declaration
Swift
public convenience init(emails: [String])Parameters
emailsAn array of emails to delete from the suppression list.
-
Initializes the request with an array of email addresses to delete from the suppression list.
Declaration
Swift
public convenience init(emails: String...)Parameters
emailsAn array of emails to delete from the suppression list.
-
Initializes the request with an array of events that should be removed from the suppression list.
Declaration
Swift
public convenience init(events: [T])Parameters
eventsAn array of events containing email addresses to remove from the suppression list.
-
Initializes the request with an array of events that should be removed from the suppression list.
Declaration
Swift
public convenience init(events: T...)Parameters
eventsAn array of events containing email addresses to remove from the suppression list.
View on GitHub
SuppressionListDeleter Class Reference