DBTEAMMembersDeactivateErrorTag
Objective-C
enum DBTEAMMembersDeactivateErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersDeactivateErrorTag : Int, @unchecked Sendable
The DBTEAMMembersDeactivateErrorTag
enum type represents the possible tag
states with which the DBTEAMMembersDeactivateError
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
DBTEAMMembersDeactivateErrorUserNotFound
Swift
case userNotFound = 0
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersDeactivateErrorUserNotInTeam
Swift
case userNotInTeam = 1
-
(no description).
Declaration
Objective-C
DBTEAMMembersDeactivateErrorOther
Swift
case other = 2