# EarnAssetConfigResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    EarnAssetConfigResponse:
      properties:
        id:
          type: string
          format: uuid
        asset_id:
          type: string
          format: uuid
        annual_percentage_rate:
          type: number
        type:
          type: string
        mode:
          type: string
        enabled:
          type: boolean
        soldout:
          type: boolean
      x-apidog-orders:
        - id
        - asset_id
        - annual_percentage_rate
        - type
        - mode
        - enabled
        - soldout
      type: object
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```