ResendSecondaryEmailResult
public enum ResendSecondaryEmailResult : CustomStringConvertible, JSONRepresentable
Result of trying to resend verification email to a secondary email address. ‘success’ is the only value indicating that a verification email was successfully sent. The other values explain the type of error that occurred, and include the email for which the error occurred.
-
A verification email was successfully sent to the secondary email address.
Declaration
Swift
case success(String) -
This secondary email address is not pending for the user.
Declaration
Swift
case notPending(String) -
Too many emails are being sent to this email address. Please try again later.
Declaration
Swift
case rateLimited(String) -
An unspecified error.
Declaration
Swift
case other -
Declaration
Swift
public var description: String { get }
View on GitHub
ResendSecondaryEmailResult Enumeration Reference