Interface LoginWithRecoveryCodeOptions

Options for logging in using a recovery code

interface LoginWithRecoveryCodeOptions {
    mfaToken: string;
    recoveryCode: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

mfaToken: string

The token received in the previous login response

recoveryCode: string

The recovery code provided by the end-user.

Generated using TypeDoc