type AssetClass = variant { Cryptocurrency; FiatCurrency; }; type Asset = record { symbol: text; class: AssetClass; }; // The parameters for the `get_exchange_rate ...