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
DBTEAMAddSecondaryEmailResultSuccessSwift
case success = 0 - 
                  
                  
Secondary email is not available to be claimed by the user.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultUnavailableSwift
case unavailable = 1 - 
                  
                  
Secondary email is already a pending email for the user.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultAlreadyPendingSwift
case alreadyPending = 2 - 
                  
                  
Secondary email is already a verified email for the user.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultAlreadyOwnedByUserSwift
case alreadyOwnedByUser = 3 - 
                  
                  
User already has the maximum number of secondary emails allowed.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultReachedLimitSwift
case reachedLimit = 4 - 
                  
                  
A transient error occurred. Please try again later.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultTransientErrorSwift
case transientError = 5 - 
                  
                  
An error occurred due to conflicting updates. Please try again later.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultTooManyUpdatesSwift
case tooManyUpdates = 6 - 
                  
                  
An unknown error occurred.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultUnknownErrorSwift
case unknownError = 7 - 
                  
                  
Too many emails are being sent to this email address. Please try again later.
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultRateLimitedSwift
case rateLimited = 8 - 
                  
                  
(no description).
Declaration
Objective-C
DBTEAMAddSecondaryEmailResultOtherSwift
case other = 9 
View on GitHub
        DBTEAMAddSecondaryEmailResultTag Enumeration Reference