@auth0/auth0-acul-react - v1.0.0
    Preparing search index...

    Interface ScreenMembersOnMfaWebAuthnEnrollmentSuccess

    ScreenMembersOnMfaWebAuthnEnrollmentSuccess

    interface ScreenMembersOnMfaWebAuthnEnrollmentSuccess {
        name: string;
        captchaImage: string | null;
        captchaSiteKey: string | null;
        captchaProvider: string | null;
        isCaptchaAvailable: boolean;
        links: Record<string, string> | null;
        texts: Record<string, string> | null;
        captcha: CaptchaContext | null;
        data: { nickname: string; webAuthnType: WebAuthnType } | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    name: string
    captchaImage: string | null
    captchaSiteKey: string | null
    captchaProvider: string | null
    isCaptchaAvailable: boolean
    links: Record<string, string> | null
    texts: Record<string, string> | null
    captcha: CaptchaContext | null
    data: { nickname: string; webAuthnType: WebAuthnType } | null

    Screen-specific data.

    Type Declaration

    • { nickname: string; webAuthnType: WebAuthnType }
      • nickname: string

        The nickname that the user (or system) assigned to the newly enrolled WebAuthn authenticator. This helps the user identify the authenticator later.

        "YubiKey 5"
        
        "My Laptop's Touch ID"
        
      • webAuthnType: WebAuthnType

        The type of WebAuthn authenticator that was successfully enrolled.

        • 'webauthn-roaming': Indicates a roaming authenticator like a USB security key.
        • 'webauthn-platform': Indicates a platform authenticator like Touch ID or Windows Hello.
    • null