# GetShowcaseProductListRequest

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    GetShowcaseProductListRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: 用户 Cookie 字符串/User Cookie String
          default: Your_Cookie_String
        proxy:
          anyOf:
            - type: string
            - type: 'null'
          title: Proxy
          description: 可选 HTTP 代理地址/Optional HTTP Proxy Address
          default: ''
        count:
          type: integer
          title: Count
          description: 每页数量/Page Size
          default: 20
        offset:
          type: integer
          title: Offset
          description: 偏移量/Offset
          default: 0
      type: object
      title: GetShowcaseProductListRequest
      x-apifox-orders:
        - cookie
        - proxy
        - count
        - offset
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
