# PaginatedListItemResponseAssetResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    PaginatedListItemResponseAssetResponse:
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/AssetResponse'
        self_cursor:
          type: string
        next_cursor:
          type: string
        has_next_page:
          type: boolean
      x-apidog-orders:
        - data
        - self_cursor
        - next_cursor
        - has_next_page
      type: object
      x-apidog-folder: ''
    AssetResponse:
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        symbol:
          type: string
        isin:
          type: string
        group:
          type: string
        type:
          type: string
      x-apidog-orders:
        - id
        - name
        - symbol
        - isin
        - group
        - type
      type: object
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```