# UserInfoResponseModel

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    UserInfoResponseModel:
      properties:
        code:
          type: integer
          title: Code
          description: HTTP status code | HTTP状态码
          default: 200
        router:
          type: string
          title: Router
          description: The endpoint that generated this response | 生成此响应的端点
          default: ''
        api_key_data:
          $ref: '#/components/schemas/APIKeyData'
        user_data:
          $ref: '#/components/schemas/UserData'
      type: object
      required:
        - api_key_data
        - user_data
      title: UserInfoResponseModel
      x-apifox-orders:
        - code
        - router
        - api_key_data
        - user_data
      x-apifox-folder: ''
    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: ''
    APIKeyData:
      properties:
        api_key_name:
          type: string
          title: Api Key Name
        api_key_scopes:
          items:
            type: string
          type: array
          title: Api Key Scopes
        created_at:
          type: string
          format: date-time
          title: Created At
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
        api_key_status:
          type: integer
          title: Api Key Status
      type: object
      required:
        - api_key_name
        - api_key_scopes
        - created_at
        - expires_at
        - api_key_status
      title: APIKeyData
      x-apifox-orders:
        - api_key_name
        - api_key_scopes
        - created_at
        - expires_at
        - api_key_status
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
