Interface MfaPhoneChallengeContinueOptions

ContinueOptions Defines the options required to continue the MFA phone challenge process. This typically involves selecting the method (SMS or Voice) to receive the verification code.

interface MfaPhoneChallengeContinueOptions {
    type: "sms" | "voice";
}

Hierarchy (view full)

Properties

Properties

type: "sms" | "voice"

The type of challenge to perform. 'sms': Send the code via text message. 'voice': Send the code via a voice call.

'sms'