MultiFactorProviderConfig interface

多要素認証プロバイダー構成を表すインターフェイス。このインターフェイスは、SMS 以外の第 2 要素認証プロバイダーに使用されます。現在、TOTP のみがサポートされています。

サイン:

export interface MultiFactorProviderConfig 

プロパティ

財産タイプ説明
MultiFactorConfigStateこの多要素プロバイダーが有効か無効かを示します。
totpProviderConfig TotpMultiFactorProviderConfig TOTP 多要素プロバイダー構成。

MultiFactorProviderConfig.state

この多要素プロバイダーが有効か無効かを示します。

サイン:

state: MultiFactorConfigState;

MultiFactorProviderConfig.totpProviderConfig

TOTP 多要素プロバイダー構成。

サイン:

totpProviderConfig?: TotpMultiFactorProviderConfig;