# GiftQuery

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    GiftQuery:
      properties:
        gift_id:
          type: string
          title: Gift Id
          description: 礼物ID | Gift ID
          examples:
            - '10001'
      type: object
      required:
        - gift_id
      title: GiftQuery
      description: |-
        单个Gift ID查询模型

        Args:
            gift_id (str): 礼物ID，例如 "10001"
      x-apifox-orders:
        - gift_id
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
