GraphQL INPUT_OBJECT

CurrencyConversionInput

Input for currency conversion.

link Definition

  • input CurrencyConversionInput {
  • # Price value.
  • value: Decimal!
  • # Currency of the input amount.
  • fromCurrencyId: CurrencyEnum!
  • # List of currencies into which the amount should be converted.
  • toCurrencyIds: [CurrencyEnum]!
  • # If set to true all results are rounded to currency precision.
  • roundResults: Boolean
  • }

link Required by