/* 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.
 */

/**
 * 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 const CryptoRefundCreationRequestAmountCurrencyEnum = {
  Usd: "USD",
  Eth: "ETH",
  Btc: "BTC"
} as const;

export type CryptoRefundCreationRequestAmountCurrencyEnum =
  typeof CryptoRefundCreationRequestAmountCurrencyEnum[keyof typeof CryptoRefundCreationRequestAmountCurrencyEnum];
