UserDeleteResult
public enum UserDeleteResult : CustomStringConvertible, JSONRepresentable
Result of trying to delete a user’s secondary emails. ‘success’ is the only value indicating that a user was successfully retrieved for deleting secondary 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 delete a secondary email.
Declaration
Swift
case success(Team.UserDeleteEmailsResult)
-
Specified user is not a valid target for deleting secondary emails.
Declaration
Swift
case invalidUser(Team.UserSelectorArg)
-
An unspecified error.
Declaration
Swift
case other
-
Declaration
Swift
public var description: String { get }