M8tyCurrencyExchangeRateModel

data class M8tyCurrencyExchangeRateModel(val base: String, val date: LocalDate, val rates: Map<String, BigDecimal>)

Represents the model for currency exchange rates.

Constructors

Link copied to clipboard
constructor(base: String, date: LocalDate, rates: Map<String, BigDecimal>)

Properties

Link copied to clipboard

The base currency for the exchange rate.

Link copied to clipboard

The date of the exchange rates.

Link copied to clipboard

A map containing currency codes and their corresponding exchange rates.