# UserData

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    UserData:
      properties:
        email:
          type: string
          title: Email
        balance:
          type: number
          title: Balance
        free_credit:
          type: number
          title: Free Credit
        email_verified:
          type: boolean
          title: Email Verified
        account_disabled:
          type: boolean
          title: Account Disabled
        is_active:
          type: boolean
          title: Is Active
      type: object
      required:
        - email
        - balance
        - free_credit
        - email_verified
        - account_disabled
        - is_active
      title: UserData
      x-apifox-orders:
        - email
        - balance
        - free_credit
        - email_verified
        - account_disabled
        - is_active
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
