/** * 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 declare const CryptoPaymentsOptionalAmountMoneyCurrencyEnum: { readonly Usd: "USD"; readonly Eth: "ETH"; readonly Btc: "BTC"; }; export declare type CryptoPaymentsOptionalAmountMoneyCurrencyEnum = typeof CryptoPaymentsOptionalAmountMoneyCurrencyEnum[keyof typeof CryptoPaymentsOptionalAmountMoneyCurrencyEnum];