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
DBTEAMMembersRecoverErrorUserNotFound
Swift
case userNotFound = 0
-
The user is not recoverable.
Declaration
Objective-C
DBTEAMMembersRecoverErrorUserUnrecoverable
Swift
case userUnrecoverable = 1
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersRecoverErrorUserNotInTeam
Swift
case userNotInTeam = 2
-
Team is full. The organization has no available licenses.
Declaration
Objective-C
DBTEAMMembersRecoverErrorTeamLicenseLimit
Swift
case teamLicenseLimit = 3
-
(no description).
Declaration
Objective-C
DBTEAMMembersRecoverErrorOther
Swift
case other = 4