DBTEAMDeleteSecondaryEmailResultTag
Objective-C
enum DBTEAMDeleteSecondaryEmailResultTag : NSInteger {}
Swift
@frozen enum DBTEAMDeleteSecondaryEmailResultTag : Int, @unchecked Sendable
The DBTEAMDeleteSecondaryEmailResultTag
enum type represents the possible
tag states with which the DBTEAMDeleteSecondaryEmailResult
union can
exist.
-
The secondary email was successfully deleted.
Declaration
Objective-C
DBTEAMDeleteSecondaryEmailResultSuccess
Swift
case success = 0
-
The email address was not found for the user.
Declaration
Objective-C
DBTEAMDeleteSecondaryEmailResultNotFound
Swift
case notFound = 1
-
The email address is the primary email address of the user, and cannot be removed.
Declaration
Objective-C
DBTEAMDeleteSecondaryEmailResultCannotRemovePrimary
Swift
case cannotRemovePrimary = 2
-
(no description).
Declaration
Objective-C
DBTEAMDeleteSecondaryEmailResultOther
Swift
case other = 3