# CreateQuoteResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    QuoteDetailResponse:
      properties:
        price:
          type: string
        price_with_premium:
          type: string
        premium:
          type: string
        quantity:
          type: string
        notional:
          type: string
        expires_at:
          type: string
        to_euro_rate:
          type: string
      x-apidog-orders:
        - price
        - price_with_premium
        - premium
        - quantity
        - notional
        - expires_at
        - to_euro_rate
      type: object
      x-apidog-folder: ''
    CreateQuoteResponse:
      properties:
        quote_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
        quote:
          $ref: '#/components/schemas/QuoteDetailResponse'
      x-apidog-orders:
        - quote_id
        - status
        - side
        - asset_id
        - currency_id
        - quote
      type: object
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```