title: FxQuotesPostOutboundRequest
type: object
additionalProperties: false
description: The object sent in the POST /fxQuotes request.
properties:
  homeTransactionId:
    description: Transaction ID for the backend, used to reconcile transactions between the Switch and backend systems.
    type: string
  conversionRequestId:
    allOf:
      - $ref: ./CorrelationId.yaml
      - description: An end-to-end identifier for the conversion quotation request.
  conversionTerms:
    allOf:
      - $ref: ./FxConversion.yaml
      - description: The terms of the currency conversion for which a quotation is sought.
required:
  - conversionRequestId
  - conversionTerms

