UNPKG

@circle-fin/circle-sdk

Version:
32 lines (31 loc) 764 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 Money */ export interface Money { /** * Magnitude of the amount, in units of the currency, with a `.`. * @type {string} * @memberof Money */ amount: string; /** * Currency code for the amount. * @type {string} * @memberof Money */ currency: MoneyCurrencyEnum; } export declare const MoneyCurrencyEnum: { readonly Usd: "USD"; readonly Eur: "EUR"; readonly Btc: "BTC"; readonly Eth: "ETH"; }; export declare type MoneyCurrencyEnum = typeof MoneyCurrencyEnum[keyof typeof MoneyCurrencyEnum];