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

/**
 * A currency associated with a balance or address.
 * @export
 * @enum {string}
 */

export const Currency = {
  Usd: "USD",
  Eur: "EUR",
  Btc: "BTC",
  Eth: "ETH"
} as const;

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