DBTEAMResendSecondaryEmailResultTag
Objective-C
enum DBTEAMResendSecondaryEmailResultTag : NSInteger {}
Swift
@frozen enum DBTEAMResendSecondaryEmailResultTag : Int, @unchecked Sendable
The DBTEAMResendSecondaryEmailResultTag
enum type represents the possible
tag states with which the DBTEAMResendSecondaryEmailResult
union can
exist.
-
A verification email was successfully sent to the secondary email address.
Declaration
Objective-C
DBTEAMResendSecondaryEmailResultSuccess
Swift
case success = 0
-
This secondary email address is not pending for the user.
Declaration
Objective-C
DBTEAMResendSecondaryEmailResultNotPending
Swift
case notPending = 1
-
Too many emails are being sent to this email address. Please try again later.
Declaration
Objective-C
DBTEAMResendSecondaryEmailResultRateLimited
Swift
case rateLimited = 2
-
(no description).
Declaration
Objective-C
DBTEAMResendSecondaryEmailResultOther
Swift
case other = 3