# OperationTransactionResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    TradeResponse:
      properties:
        trade_id:
          type: string
          format: uuid
        fee: &ref_0
          $ref: '#/components/schemas/MoneyResponse'
        fee_percentage:
          type: string
        rate:
          type: string
        rate_with_fee:
          type: string
        to_eur_rate:
          type: string
      x-apidog-orders:
        - trade_id
        - fee
        - fee_percentage
        - rate
        - rate_with_fee
        - to_eur_rate
      type: object
      x-apidog-folder: ''
    OperationTransactionResponse:
      properties:
        transaction_id:
          type: string
          format: uuid
        asset_id:
          type: string
          format: uuid
        currency_id:
          type: string
          format: uuid
        wallet_id:
          type: string
          format: uuid
        wallet_owner:
          type: string
        asset_amount: *ref_0
        fee_amount: *ref_0
        transaction_type:
          type: string
        flow:
          type: string
          enum:
            - INCOMING
            - OUTGOING
        order_id:
          type: string
        credited_at:
          type: string
          format: date-time
        asset_balance_after: *ref_0
        compensates:
          type: string
          format: uuid
        compensates_info:
          $ref: '#/components/schemas/CompensatesInfoResponse'
        index_asset_id:
          type: string
          format: uuid
        trade:
          $ref: '#/components/schemas/TradeResponse'
      x-apidog-orders:
        - transaction_id
        - asset_id
        - currency_id
        - wallet_id
        - wallet_owner
        - asset_amount
        - fee_amount
        - transaction_type
        - flow
        - order_id
        - credited_at
        - asset_balance_after
        - compensates
        - compensates_info
        - index_asset_id
        - trade
      type: object
      x-apidog-folder: ''
    CompensatesInfoResponse:
      properties:
        operation_type:
          type: string
        transaction_type:
          type: string
      x-apidog-orders:
        - operation_type
        - transaction_type
      type: object
      x-apidog-folder: ''
    MoneyResponse:
      properties:
        value:
          type: string
        asset_id:
          type: string
          format: uuid
        currency_id:
          type: string
          format: uuid
      x-apidog-orders:
        - value
        - asset_id
        - currency_id
      type: object
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```