Skip to main content
ScreenMembersOnMfaWebAuthnEnrollmentSuccess
Example
export interface ScreenMembersOnMfaWebAuthnEnrollmentSuccess extends ScreenMembers {
  /**
   * WebAuthn 登録成功に関する詳細を含む画面固有のデータ。
   * @type {{ nickname: string; webauthnType: WebAuthnType; } | null}
   */
  data: {
    /**
     * 新たに登録された WebAuthn 認証器にユーザー(またはシステム)が割り当てたニックネーム。
     * 後でユーザーが認証器を識別する際に役立ちます。
     * @type {string}
     * @example "YubiKey 5"
     * @example "My Laptop's Touch ID"
     */
    nickname: string;
    /**
     * 正常に登録された WebAuthn 認証器の種類。
     * - `'webauthn-roaming'`: USB セキュリティキーなどのローミング認証器を示します。
     * - `'webauthn-platform'`: Touch ID や Windows Hello などのプラットフォーム認証器を示します。
     * @type {WebAuthnType}
     */
    webauthnType: WebAuthnType;
  } | null;
}

プロパティ

captchaImage
string
captchaProvider
string
captchaSiteKey
string
画面固有のデータです。
  • 型宣言: { nickname: string; webauthnType: [WebAuthnType]; }
isCaptchaAvailable
boolean
name
string
texts
Record