DBTEAMMembersSetPermissionsErrorTag
Objective-C
enum DBTEAMMembersSetPermissionsErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersSetPermissionsErrorTag : Int, @unchecked Sendable
The DBTEAMMembersSetPermissionsErrorTag
enum type represents the possible
tag states with which the DBTEAMMembersSetPermissionsError
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
DBTEAMMembersSetPermissionsErrorUserNotFound
Swift
case userNotFound = 0
-
Cannot remove the admin setting of the last admin.
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorLastAdmin
Swift
case lastAdmin = 1
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorUserNotInTeam
Swift
case userNotInTeam = 2
-
Cannot remove/grant permissions.
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorCannotSetPermissions
Swift
case cannotSetPermissions = 3
-
Team is full. The organization has no available licenses.
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorTeamLicenseLimit
Swift
case teamLicenseLimit = 4
-
(no description).
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorOther
Swift
case other = 5