Definition
Below is the definition for the AccountEntity:AccountEntity
| Property | Type | Description |
|---|---|---|
| id | string | The unique identifier of the user. |
| firstname | string | The first name of the user. |
| lastname | string | The last name of the user. |
| string | The email address of the user. | |
| email_verified_at | string | null | The timestamp when the user’s email was verified, or null if not verified. |
| avatar_url | string | null | The URL of the user’s avatar image, or null if not set. |
| status | enum | The current status of the user’s account. |
| current_tokens | number | The current number of tokens available in the user’s account. |
| max_tokens | number | The maximum number of tokens the user can have in their account. |
| is_2fa_enabled | boolean | Indicates whether two-factor authentication (2FA) is enabled for the user’s account. |
| created_at | string | The timestamp when the user’s account was created. |
| updated_at | string | The timestamp when the user’s account was last updated. |

