UserResendResult
public enum UserResendResult : CustomStringConvertible, JSONRepresentable
Result of trying to resend verification emails to a user. ‘success’ is the only value indicating that a user was successfully retrieved for sending verification emails. The other values explain the type of error that occurred, and include the user for which the error occurred.
-
Describes a user and the results for each attempt to resend verification emails.
Declaration
Swift
case success(Team.UserResendEmailsResult) -
Specified user is not a valid target for resending verification emails.
Declaration
Swift
case invalidUser(Team.UserSelectorArg) -
An unspecified error.
Declaration
Swift
case other -
Declaration
Swift
public var description: String { get }
View on GitHub
UserResendResult Enumeration Reference