/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The source amount of the refund, it can be in either the original payment currency or the settlement currency. * @export * @interface CryptoRefundCreationRequestAmount */ export interface CryptoRefundCreationRequestAmount { /** * Currency code. * @type {string} * @memberof CryptoRefundCreationRequestAmount */ currency: CryptoRefundCreationRequestAmountCurrencyEnum; } export declare const CryptoRefundCreationRequestAmountCurrencyEnum: { readonly Usd: "USD"; readonly Eth: "ETH"; readonly Btc: "BTC"; }; export declare type CryptoRefundCreationRequestAmountCurrencyEnum = typeof CryptoRefundCreationRequestAmountCurrencyEnum[keyof typeof CryptoRefundCreationRequestAmountCurrencyEnum];