@auth0/auth0-acul-js - v0.1.0-beta.5
    Preparing search index...

    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";
        [key: string]: undefined | string | number | boolean;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: undefined | string | number | boolean
    Index

    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'