DBTEAMTeamMemberStatusTag
Objective-C
enum DBTEAMTeamMemberStatusTag : NSInteger {}
Swift
@frozen enum DBTEAMTeamMemberStatusTag : Int, @unchecked Sendable
The DBTEAMTeamMemberStatusTag enum type represents the possible tag states
with which the DBTEAMTeamMemberStatus union can exist.
-
User has successfully joined the team.
Declaration
Objective-C
DBTEAMTeamMemberStatusActiveSwift
case active = 0 -
User has been invited to a team, but has not joined the team yet.
Declaration
Objective-C
DBTEAMTeamMemberStatusInvitedSwift
case invited = 1 -
User is no longer a member of the team, but the account can be un-suspended, re-establishing the user as a team member.
Declaration
Objective-C
DBTEAMTeamMemberStatusSuspendedSwift
case suspended = 2 -
User is no longer a member of the team. Removed users are only listed when include_removed is true in members/list.
Declaration
Objective-C
DBTEAMTeamMemberStatusRemovedSwift
case removed = 3
View on GitHub
DBTEAMTeamMemberStatusTag Enumeration Reference