Person.ByPassword

API: Internal/Beta

data class ByPassword(
    val id: String,
    val role: Role,
    val title: String?,
    val firstNames: String,
    val lastName: String,
    val phoneNumber: String?,
    val orcId: String?,
    val email: String?,
    val twoFactorAuthentication: Boolean,
    val serviceLicenseAgreement: Int,
    val organizationId: String?,
    val password: List<Byte>?,
    val salt: List<Byte>?,
    val displayName: String,
    val type: String /* "password" */,
)
Properties
id: String
role: Role
title: String?
firstNames: String
lastName: String
phoneNumber: String?
orcId: String?
email: String?
twoFactorAuthentication: Boolean
serviceLicenseAgreement: Int
organizationId: String?
password: List<Byte>?
salt: List<Byte>?
displayName: String
type: String /* "password" */ The type discriminator

API: Stable