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

    DBTEAMTeamMemberStatusActive

    Swift

    case active = 0
  • User has been invited to a team, but has not joined the team yet.

    Declaration

    Objective-C

    DBTEAMTeamMemberStatusInvited

    Swift

    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

    DBTEAMTeamMemberStatusSuspended

    Swift

    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

    DBTEAMTeamMemberStatusRemoved

    Swift

    case removed = 3