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