/**
 * 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];
