Foreigncurrencyconfiguration
Represents a foreign currency configuration.
accountingRates object[]
The accounting rate for the current currency and base currency. Ordered by start date in ascending order.
The accounting rate.
The accounting rate will apply starting with this date.
2016-09-06T13:37:50+03:00currency object
Represents the currency configuration.
The unique currency code.
currencyHolidays object[]
List of holidays for this currency.
The day of the holiday.
1987-04-26The id of the holiday.
Specify if a holiday is recurring or not.
The name of the holiday.
The number of decimals of the currency.
The currency name.
The currency symbol.
Model representation of the currency symbol position.
Possible values: [BEFORE_NUMBER, AFTER_NUMBER]
Model representation of the currency type.
Possible values: [FIAT_CURRENCY, CRYPTOCURRENCY, NON_TRADITIONAL_CURRENCY]
exchangeRates object[]
The exchange rate for the current currency and base currency. Ordered by start date in ascending order.
The buy exchange rate.
The sell exchange rate.
The exchange rate applies starting with this date.
2016-09-06T13:37:50+03:00{
"accountingRates": [
{
"rate": 0,
"startDate": "2016-09-06T13:37:50+03:00"
}
],
"currency": {
"code": "string",
"currencyHolidays": [
{
"date": "1987-04-26",
"id": "string",
"isAnnuallyRecurring": true,
"name": "string"
}
],
"digitsAfterDecimal": 0,
"name": "string",
"symbol": "string",
"symbolPosition": "BEFORE_NUMBER",
"type": "FIAT_CURRENCY"
},
"exchangeRates": [
{
"buyRate": 0,
"sellRate": 0,
"startDate": "2016-09-06T13:37:50+03:00"
}
]
}