> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# VerifyEmailOTPResult

```ts theme={null}
type VerifyEmailOTPResult = {
  user: User;
  message: string;
  isNewUser: boolean;
};
```

Result of verifyEmailOTP.

## Properties

| Property                         | Type                                                                       | Description                          |
| -------------------------------- | -------------------------------------------------------------------------- | ------------------------------------ |
| <a id="user" /> `user`           | [`User`](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-hooks/Type-Aliases/User) | The successfully logged-in user.     |
| <a id="message" /> `message`     | `string`                                                                   | The message to display to the user.  |
| <a id="isnewuser" /> `isNewUser` | `boolean`                                                                  | Whether the user is newly signed up. |
