# Currency

Represents a currency eg. USD, EUR.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**code** | **string** | Fiat(ISO-4217) currency code or NON_FIAT for non fiat currencies. | [optional] [default to undefined]
**currencyCode** | **string** | Currency code for NON_FIAT currency. | [optional] [default to undefined]

## Example

```typescript
import { Currency } from './api';

const instance: Currency = {
    code,
    currencyCode,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
