Skip to main content
ScreenMembersOnMfaWebAuthnEnrollmentSuccess
Example
export interface ScreenMembersOnMfaWebAuthnEnrollmentSuccess extends ScreenMembers {
  /**
   * Données propres à l'écran contenant des détails sur l'inscription WebAuthn réussie.
   * @type {{ nickname: string; webauthnType: WebAuthnType; } | null}
   */
  data: {
    /**
     * Le surnom que l'utilisateur (ou le système) a attribué à l'authentificateur WebAuthn nouvellement inscrit.
     * Cela aide l'utilisateur à identifier l'authentificateur par la suite.
     * @type {string}
     * @example "YubiKey 5"
     * @example "My Laptop's Touch ID"
     */
    nickname: string;
    /**
     * Le type d'authentificateur WebAuthn qui a été inscrit avec succès.
     * - `'webauthn-roaming'` : Indique un authentificateur itinérant comme une clé de sécurité USB.
     * - `'webauthn-platform'` : Indique un authentificateur de plateforme comme Touch ID ou Windows Hello.
     * @type {WebAuthnType}
     */
    webauthnType: WebAuthnType;
  } | null;
}

Propriétés

captchaImage
string
captchaProvider
string
captchaSiteKey
string
Données propres à l’écran.
  • Déclaration de type : { nickname: string; webauthnType: [WebAuthnType]; }
isCaptchaAvailable
boolean
name
string
texts
Record