DBTEAMMembersRecoverErrorTag
Objective-C
enum DBTEAMMembersRecoverErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersRecoverErrorTag : Int, @unchecked Sendable
The DBTEAMMembersRecoverErrorTag enum type represents the possible tag
states with which the DBTEAMMembersRecoverError union can exist.
-
No matching user found. The provided team_member_id, email, or external_id does not exist on this team.
Declaration
Objective-C
DBTEAMMembersRecoverErrorUserNotFoundSwift
case userNotFound = 0 -
The user is not recoverable.
Declaration
Objective-C
DBTEAMMembersRecoverErrorUserUnrecoverableSwift
case userUnrecoverable = 1 -
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersRecoverErrorUserNotInTeamSwift
case userNotInTeam = 2 -
Team is full. The organization has no available licenses.
Declaration
Objective-C
DBTEAMMembersRecoverErrorTeamLicenseLimitSwift
case teamLicenseLimit = 3 -
(no description).
Declaration
Objective-C
DBTEAMMembersRecoverErrorOtherSwift
case other = 4
View on GitHub
DBTEAMMembersRecoverErrorTag Enumeration Reference