TeamMemberStatus
public enum TeamMemberStatus : CustomStringConvertible, JSONRepresentable
The user’s status as a member of a specific team.
-
User has successfully joined the team.
Declaration
Swift
case active -
User has been invited to a team, but has not joined the team yet.
Declaration
Swift
case invited -
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
Swift
case suspended -
User is no longer a member of the team. Removed users are only listed when include_removed is true in members/list.
Declaration
Swift
case removed(Team.RemovedStatus) -
Declaration
Swift
public var description: String { get }
View on GitHub
TeamMemberStatus Enumeration Reference