@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
37 lines (33 loc) • 960 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 CryptoPaymentsOptionalAmountMoney
*/
export interface CryptoPaymentsOptionalAmountMoney {
/**
* Magnitude of the amount, in units of the currency, with a `.`.
* @type {string}
* @memberof CryptoPaymentsOptionalAmountMoney
*/
amount?: string;
/**
* Currency code.
* @type {string}
* @memberof CryptoPaymentsOptionalAmountMoney
*/
currency: CryptoPaymentsOptionalAmountMoneyCurrencyEnum;
}
export const CryptoPaymentsOptionalAmountMoneyCurrencyEnum = {
Usd: "USD",
Eth: "ETH",
Btc: "BTC"
} as const;
export type CryptoPaymentsOptionalAmountMoneyCurrencyEnum =
typeof CryptoPaymentsOptionalAmountMoneyCurrencyEnum[keyof typeof CryptoPaymentsOptionalAmountMoneyCurrencyEnum];