type
AuthCredential
type AuthCredential struct {
User Document
PasswordHash []byte
FailedLoginAttempts int
LockedUntil time.Time
Verified bool
}Private password and lockout state associated with one user document.
UserDocument- The User value.
PasswordHash[]byte- The PasswordHash value.
FailedLoginAttemptsint- The FailedLoginAttempts value.
LockedUntiltime.Time- The LockedUntil value.
Verifiedbool- The Verified value.
Never crosses API or manifest boundaries.