@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
27 lines (26 loc) • 662 B
TypeScript
/**
* 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];