User
data class User(val id: UUID, val createdTimestamp: Long, val username: String, val enabled: Boolean, val emailVerified: Boolean, val attributes: Attributes? = null, val notBefore: Long, val totp: Boolean, val access: UserAccess? = null, val disableableCredentialTypes: List<String>, val requiredActions: List<String>, val email: String? = null, val firstName: String? = null, val lastName: String? = null, val credentials: List<UserCredential>? = null, val federationLink: String? = null)
Constructors
Link copied to clipboard
constructor(id: UUID, createdTimestamp: Long, username: String, enabled: Boolean, emailVerified: Boolean, attributes: Attributes? = null, notBefore: Long, totp: Boolean, access: UserAccess? = null, disableableCredentialTypes: List<String>, requiredActions: List<String>, email: String? = null, firstName: String? = null, lastName: String? = null, credentials: List<UserCredential>? = null, federationLink: String? = null)