The authenticated user object
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique identifier of the user | |
| str | User's email address | [optional] | |
| email_verified | bool | Whether the email is verified | [optional] |
| name | str | User's name | [optional] |
| image | str | User's profile image URL | [optional] |
| created_at | datetime | Timestamp when the user was created | |
| updated_at | datetime | Timestamp when the user was last updated |
from better_auth.models.two_factor_verify_otp_post200_response_user import TwoFactorVerifyOtpPost200ResponseUser
# TODO update the JSON string below
json = "{}"
# create an instance of TwoFactorVerifyOtpPost200ResponseUser from a JSON string
two_factor_verify_otp_post200_response_user_instance = TwoFactorVerifyOtpPost200ResponseUser.from_json(json)
# print the JSON string representation of the object
print(TwoFactorVerifyOtpPost200ResponseUser.to_json())
# convert the object into a dict
two_factor_verify_otp_post200_response_user_dict = two_factor_verify_otp_post200_response_user_instance.to_dict()
# create an instance of TwoFactorVerifyOtpPost200ResponseUser from a dict
two_factor_verify_otp_post200_response_user_from_dict = TwoFactorVerifyOtpPost200ResponseUser.from_dict(two_factor_verify_otp_post200_response_user_dict)