# CurrencyDetails

Represents a currency.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**baseCurrency** | **boolean** | &#x60;TRUE&#x60; if the currency is the base currency, &#x60;FALSE&#x60; otherwise. It cannot be changed and it\&#39;s a read-only field not required for update operations. | [readonly] [default to undefined]
**code** | **string** | The currency code, which cannot be changed once the currency is created. | [default to undefined]
**creationDate** | **string** | The date this currency was created. It cannot be changed and it\&#39;s a read-only field not required for update operations. | [optional] [readonly] [default to undefined]
**currencyHolidays** | [**Array&lt;Holiday&gt;**](Holiday.md) | The list of holidays for this currency. | [optional] [default to undefined]
**currencySymbolPosition** | **string** | Model representation of the currency symbol position. | [default to undefined]
**digitsAfterDecimal** | **number** | The number of digits that are supported for a given currency. | [optional] [default to undefined]
**lastModifiedDate** | **string** | The last date this currency was modified. It\&#39;s updated automatically and it\&#39;s a read-only field not required for update operations. | [optional] [readonly] [default to undefined]
**name** | **string** | The name of the currency. | [default to undefined]
**numericCode** | **string** | The currency numeric code. | [optional] [default to undefined]
**symbol** | **string** | The currency symbol. | [default to undefined]
**type** | **string** | Model representation of the currency type. | [default to undefined]

## Example

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

const instance: CurrencyDetails = {
    baseCurrency,
    code,
    creationDate,
    currencyHolidays,
    currencySymbolPosition,
    digitsAfterDecimal,
    lastModifiedDate,
    name,
    numericCode,
    symbol,
    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)
