Interface IConfigureOtpPayload<U>

interface IConfigureOtpPayload<U extends BaseUser> {
    otpAuthUrl: string;
    secret: string;
    user: U;
}

Type Parameters

Properties

otpAuthUrl: string

The URL to use for configuring OTP in the user's OTP app.

secret: string

The secret key to use for generating OTP codes.

user: U

The user to configure OTP for