UNPKG

@circle-fin/circle-sdk

Version:
31 lines (30 loc) 893 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 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 declare const CheckoutSessionMoneyCurrencyEnum: { readonly Usd: "USD"; readonly Eth: "ETH"; readonly Btc: "BTC"; }; export declare type CheckoutSessionMoneyCurrencyEnum = typeof CheckoutSessionMoneyCurrencyEnum[keyof typeof CheckoutSessionMoneyCurrencyEnum];