# SubmitOtpCodeResponse | @account-kit/signer

> Overview of SubmitOtpCodeResponse 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 SubmitOtpCodeResponse =
  | {
      bundle: string;
      mfaRequired: false;
    }
  | {
      encryptedPayload: string;
      mfaRequired: true;
      multiFactors: MfaFactor[];
    };
```

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