title: FxRate
type: object
additionalProperties: false
description: The FxRate object contains information about a currency conversion in the transfer. It can be used by parties to the transfer to exchange information with each other about the exchange rate for the transfer, to ensure that the best rate can be agreed on.
properties:
  sourceAmount:
    allOf:
      - $ref: ./Money.yaml
      - description: The amount of the transfer in the source currency.
  targetAmount:
    allOf:
      - $ref: ./Money.yaml
      - description: The amount of the transfer in the target currency.
required:
  - sourceAmount
  - targetAmount
