# CurrencyConfiguration

Represents the currency configuration.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**code** | **string** | The unique currency code. | [optional] [default to undefined]
**currencyHolidays** | [**Array&lt;HolidayConfiguration&gt;**](HolidayConfiguration.md) | List of holidays for this currency. | [optional] [default to undefined]
**digitsAfterDecimal** | **number** | The number of decimals of the currency. | [optional] [default to undefined]
**name** | **string** | The currency name. | [optional] [default to undefined]
**symbol** | **string** | The currency symbol. | [optional] [default to undefined]
**symbolPosition** | **string** | Model representation of the currency symbol position. | [optional] [default to undefined]
**type** | **string** | Model representation of the currency type. | [optional] [default to undefined]

## Example

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

const instance: CurrencyConfiguration = {
    code,
    currencyHolidays,
    digitsAfterDecimal,
    name,
    symbol,
    symbolPosition,
    type,
};
```

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