Type alias AuthMFAGetAuthenticatorAssuranceLevelResponse

AuthMFAGetAuthenticatorAssuranceLevelResponse: {
    data: {
        currentAuthenticationMethods: AMREntry[];
        currentLevel: AuthenticatorAssuranceLevels | null;
        nextLevel: AuthenticatorAssuranceLevels | null;
    };
    error: null;
} | {
    data: null;
    error: AuthError;
}

Generated using TypeDoc