@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
35 lines (31 loc) • 742 B
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* 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 FiatMoneyUsd
*/
export interface FiatMoneyUsd {
/**
* Magnitude of the amount, in units of the currency, with a `.`.
* @type {string}
* @memberof FiatMoneyUsd
*/
amount: string;
/**
* Currency code.
* @type {string}
* @memberof FiatMoneyUsd
*/
currency: FiatMoneyUsdCurrencyEnum;
}
export const FiatMoneyUsdCurrencyEnum = {
Usd: "USD"
} as const;
export type FiatMoneyUsdCurrencyEnum =
typeof FiatMoneyUsdCurrencyEnum[keyof typeof FiatMoneyUsdCurrencyEnum];