@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
23 lines (19 loc) • 460 B
text/typescript
/* 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];