SuppressionListDeleterParameters
public struct SuppressionListDeleterParameters : Codable
The SuppressionListDeleterParameters struct houses all the parameters that
can be made for the suppression delete calls.
-
A
Boolindicating if all the events on the suppression list should be deleted.Declaration
Swift
public let deleteAll: Bool? -
An array of emails to delete from the suppression list.
Declaration
Swift
public let emails: [String]? -
Initializes the struct.
Declaration
Swift
public init(deleteAll: Bool?, emails: [String]?)Parameters
deleteAllA
Boolindicating if all the events on the suppression list should be deleted.emailsAn array of emails to delete from the suppression list.
View on GitHub
SuppressionListDeleterParameters Structure Reference