Interface ChallengeResponse

Response from initiating an MFA challenge

interface ChallengeResponse {
    bindingMethod?: string;
    challengeType: "otp" | "oob";
    oobCode?: string;
}

Properties

bindingMethod?: string

Binding method for OOB (e.g., 'prompt')

challengeType: "otp" | "oob"

Type of challenge created

oobCode?: string

Out-of-band code (for OOB challenges)