BasicAccount

public class BasicAccount : Users.Account

Basic information about any account.

  • Whether this user is a teammate of the current user. If this account is the current user’s account, then this will be true.

    Declaration

    Swift

    public let isTeammate: Bool
  • The user’s unique team member id. This field will only be present if the user is part of a team and isTeammate is true.

    Declaration

    Swift

    public let teamMemberId: String?