Skip to content

QuoteResponse

Schema:QuoteResponse

OpenAPI Specification

yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    QuoteResponse:
      type: object
      properties:
        quoteId:
          type: string
          description: Unique identifier of the quote.
        usdtAmount:
          type: number
          description: Amount of USDT to be converted.
        brlAmount:
          type: number
          description: Equivalent amount in BRL.
        rate:
          type: number
          description: Exchange rate used for the conversion.
        expiresAt:
          type: string
          format: date-time
          description: Expiration date and time of the quote.
      x-apifox-orders:
        - quoteId
        - usdtAmount
        - brlAmount
        - rate
        - expiresAt
      x-apifox-folder: ''
  securitySchemes: {}
servers: []
security: []