メインコンテンツへスキップ
undefined
MFA(多要素認証)の開始登録オプション画面を実装するクラスです MFA 要素の選択と登録を行います
Example
const mfaBeginEnrollOptions = new MfaBeginEnrollOptions();
await mfaBeginEnrollOptions.enroll({
  action: 'push-notification'
});

コンストラクター

MfaBeginEnrollOptions
Constructor
MFA Begin Enroll Options 画面マネージャーのインスタンスを生成します

プロパティ

branding
client
organization
prompt
screen
tenant
transaction
untrustedData
user
screenIdentifier
string

メソッド

enroll
Promise<void>
選択した認証要素で登録プロセスを続行します
Example
const mfaBeginEnrollOptions = new MfaBeginEnrollOptions();
await mfaBeginEnrollOptions.enroll({
  action: 'push-notification'
});
getErrors
コンテキストからトランザクションエラーの配列を取得します。存在しない場合は空の配列を返します。トランザクションコンテキストからのエラーオブジェクトの配列です。