UNPKG

@circle-fin/circle-sdk

Version:
27 lines (26 loc) 662 B
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ToAmount */ export interface ToAmount { /** * Currency code for the amount. * @type {string} * @memberof ToAmount */ currency: ToAmountCurrencyEnum; } export declare const ToAmountCurrencyEnum: { readonly Usd: "USD"; readonly Eur: "EUR"; readonly Btc: "BTC"; readonly Eth: "ETH"; readonly Mtc: "MTC"; }; export declare type ToAmountCurrencyEnum = typeof ToAmountCurrencyEnum[keyof typeof ToAmountCurrencyEnum];