OtpResponse

1type OtpResponse =
2 | {
3 credentialBundle: string;
4 status: "SUCCESS";
5 }
6 | {
7 encryptedPayload: string;
8 multiFactors: MfaFactor[];
9 status: "MFA_REQUIRED";
10 };

Defined in: account-kit/signer/src/client/types.ts:112