Interface MfaRequirements

MFA requirements from an mfa_required error response

interface MfaRequirements {
    challenge?: {
        type: string;
    }[];
    enroll?: {
        type: string;
    }[];
}

Properties

Properties

challenge?: {
    type: string;
}[]

Required challenge types

Type declaration

  • type: string
enroll?: {
    type: string;
}[]

Required enrollment types

Type declaration

  • type: string