DBTEAMAddSecondaryEmailResultTag
Objective-C
enum DBTEAMAddSecondaryEmailResultTag : NSInteger {}
Swift
@frozen enum DBTEAMAddSecondaryEmailResultTag : Int, @unchecked Sendable
The DBTEAMAddSecondaryEmailResultTag
enum type represents the possible tag
states with which the DBTEAMAddSecondaryEmailResult
union can exist.
-
Describes a secondary email that was successfully added to a user.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultSuccess
Swift
case success = 0
-
Secondary email is not available to be claimed by the user.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultUnavailable
Swift
case unavailable = 1
-
Secondary email is already a pending email for the user.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultAlreadyPending
Swift
case alreadyPending = 2
-
Secondary email is already a verified email for the user.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultAlreadyOwnedByUser
Swift
case alreadyOwnedByUser = 3
-
User already has the maximum number of secondary emails allowed.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultReachedLimit
Swift
case reachedLimit = 4
-
A transient error occurred. Please try again later.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultTransientError
Swift
case transientError = 5
-
An error occurred due to conflicting updates. Please try again later.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultTooManyUpdates
Swift
case tooManyUpdates = 6
-
An unknown error occurred.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultUnknownError
Swift
case unknownError = 7
-
Too many emails are being sent to this email address. Please try again later.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultRateLimited
Swift
case rateLimited = 8
-
(no description).
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultOther
Swift
case other = 9