# AcceptQuoteResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    AcceptQuoteTaxResponse:
      properties:
        tax_amount:
          type: string
        pessimistic_withholding:
          type: boolean
      x-apidog-orders:
        - tax_amount
        - pessimistic_withholding
      type: object
      x-apidog-folder: ''
    AcceptQuoteResponse:
      properties:
        quote_id:
          type: string
          format: uuid
        trade_id:
          type: string
          format: uuid
        status:
          type: string
        side:
          type: string
          enum:
            - BUY
            - SELL
        asset_id:
          type: string
          format: uuid
        currency_id:
          type: string
          format: uuid
        execution:
          $ref: '#/components/schemas/AcceptQuoteExecutionResponse'
        tax:
          $ref: '#/components/schemas/AcceptQuoteTaxResponse'
      x-apidog-orders:
        - quote_id
        - trade_id
        - status
        - side
        - asset_id
        - currency_id
        - execution
        - tax
      type: object
      x-apidog-folder: ''
    AcceptQuoteExecutionResponse:
      properties:
        price:
          type: string
        price_with_premium:
          type: string
        premium:
          type: string
        quantity:
          type: string
        notional:
          type: string
        executed_at:
          type: string
        to_euro_rate:
          type: string
      x-apidog-orders:
        - price
        - price_with_premium
        - premium
        - quantity
        - notional
        - executed_at
        - to_euro_rate
      type: object
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```