DBTEAMMembersUnsuspendErrorTag
Objective-C
enum DBTEAMMembersUnsuspendErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersUnsuspendErrorTag : Int, @unchecked Sendable
The DBTEAMMembersUnsuspendErrorTag
enum type represents the possible tag
states with which the DBTEAMMembersUnsuspendError
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
DBTEAMMembersUnsuspendErrorUserNotFound
Swift
case userNotFound = 0
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersUnsuspendErrorUserNotInTeam
Swift
case userNotInTeam = 1
-
(no description).
Declaration
Objective-C
DBTEAMMembersUnsuspendErrorOther
Swift
case other = 2
-
The user is unsuspended, so it cannot be unsuspended again.
Declaration
Objective-C
DBTEAMMembersUnsuspendErrorUnsuspendNonSuspendedMember
Swift
case unsuspendNonSuspendedMember = 3
-
Team is full. The organization has no available licenses.
Declaration
Objective-C
DBTEAMMembersUnsuspendErrorTeamLicenseLimit
Swift
case teamLicenseLimit = 4