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

    emails

    An 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

    emails

    An 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

    events

    An 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

    events

    An array of events containing email addresses to remove from the suppression list.