userVerified property
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);
Implementation
@$pb.TagNumber(4)
set userVerified($core.bool value) => $_setBool(3, value);