SuppressionListDeleterParameters
public struct SuppressionListDeleterParameters : Codable
The SuppressionListDeleterParameters
struct houses all the parameters that
can be made for the suppression delete calls.
-
A
Bool
indicating 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
deleteAll
A
Bool
indicating if all the events on the suppression list should be deleted.emails
An array of emails to delete from the suppression list.