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
DBTEAMMembersSetPermissionsErrorUserNotFoundSwift
case userNotFound = 0 -
Cannot remove the admin setting of the last admin.
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorLastAdminSwift
case lastAdmin = 1 -
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorUserNotInTeamSwift
case userNotInTeam = 2 -
Cannot remove/grant permissions.
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorCannotSetPermissionsSwift
case cannotSetPermissions = 3 -
Team is full. The organization has no available licenses.
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorTeamLicenseLimitSwift
case teamLicenseLimit = 4 -
(no description).
Declaration
Objective-C
DBTEAMMembersSetPermissionsErrorOtherSwift
case other = 5
View on GitHub
DBTEAMMembersSetPermissionsErrorTag Enumeration Reference