# BatchGiftQuery

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    BatchGiftQuery:
      properties:
        gift_ids:
          items:
            type: string
          type: array
          maxItems: 1000
          minItems: 1
          title: Gift Ids
          description: >-
            礼物ID列表，建议50个/次获得最佳性价比($0.025)，超过50个时自动处理前50个 | Gift ID list,
            recommend 50/call for best value ($0.025), auto-process first 50 if
            more than 50
          examples:
            - - '10001'
              - '10002'
              - '10003'
      type: object
      required:
        - gift_ids
      title: BatchGiftQuery
      description: |-
        批量Gift ID查询模型
        计费：$0.025每次调用，建议每次查询50个ID以获得最佳性价比

        Args:
            gift_ids (list[str]): 礼物ID列表，建议50个，例如 ["10001", "10002", "10003"]
      x-apifox-orders:
        - gift_ids
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
