# OtpResponse | @account-kit/signer

> Overview of OtpResponse from @account-kit/signer

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
type OtpResponse =
  | {
      credentialBundle: string;
      status: "SUCCESS";
    }
  | {
      encryptedPayload: string;
      multiFactors: MfaFactor[];
      status: "MFA_REQUIRED";
    };
```

Defined in: [account-kit/signer/src/client/types.ts:108](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/client/types.ts#L108)