package
accounts
Type Members
-
case class
Account(accountId: AccountId, email: String, passwordHash: String, passwordSalt: String, accountCreationDate: LocalDateTime, apiKey: APIKey, rootPath: Path, plan: AccountPlan, parentId: Option[String] = None, lastPasswordChangeTime: Option[LocalDateTime] = None, profile: Option[JValue] = None) extends Product with Serializable
-
case class
AccountDetails(accountId: AccountId, email: String, accountCreationDate: LocalDateTime, apiKey: APIKey, rootPath: Path, plan: AccountPlan, lastPasswordChangeTime: Option[LocalDateTime] = None, profile: Option[JValue] = None) extends Product with Serializable
-
trait
AccountFinder[M[+_]] extends Logging
-
type
AccountId = String
-
-
type
ResetTokenId = String
-
-
Inherited from AnyRef
Inherited from Any