userVerified property

  1. @TagNumber(4)
bool userVerified

States if the user has been verified during the registration. Authentication with this device will be considered as multi factor authentication (MFA) without the need to check a password (typically known as Passkeys). Without user verification it will be a second factor authentication (2FA), typically done after a password check.

More on WebAuthN User Verification: https://www.w3.org/TR/webauthn/#user-verification

Implementation

@$pb.TagNumber(4)
$core.bool get userVerified => $_getBF(3);
  1. @TagNumber(4)
void userVerified=(bool v)

Implementation

@$pb.TagNumber(4)
set userVerified($core.bool v) { $_setBool(3, v); }