GraphQL INPUT_OBJECT
CurrencyConversionInput
Input for currency conversion.
link Definition
- input CurrencyConversionInput {
- # Price value.
- : Decimal!
- # Currency of the input amount.
- : CurrencyEnum!
- # List of currencies into which the amount should be converted.
- : [CurrencyEnum]!
- # If set to true all results are rounded to currency precision.
- : Boolean
- }