Types > CurrencyCreate
Description
Topic: Currencies
Fields
Additional fee to add when converting to and from this currency (in percents)
Example: 5.5
Valid when: conversion_fee is valid percentage, i.e.: 0 ≤ conversion_fee ≤ 100
Currency code
Example: "USD"
Custom exchange rate to use when converting from primary to this currency
Example: 5.1231237
Valid when: custom_exchange_rate is a non-negative float
Whether it's allowed to place orders in this currency
Example: false
format: CurrencyFormatCreate
Currency formatting options
Used By
Mutations
Preview (typescript)
interface CurrencyCreate {conversion_fee?: numbercurrency: stringcustom_exchange_rate?: numberenabled?: booleanformat?: CurrencyFormatCreate | null}