Packages

c

nelson

User

final case class User(login: String, avatar: URI, name: Option[String], email: Option[String], orgs: List[Organization]) extends Product with Serializable

represents the current user who's logged into the system.

Source
User.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. User
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new User(login: String, avatar: URI, name: Option[String], email: Option[String], orgs: List[Organization])

Value Members

  1. val avatar: URI
  2. val email: Option[String]
  3. val login: String
  4. val name: Option[String]
  5. val orgs: List[Organization]
  6. val toOrganization: Organization