Updated on 2026-08-14

This commit is contained in:
Tangem 2022-04-22 19:06:00 +03:00
parent e94550a09a
commit d15451b08e

View file

@ -41,10 +41,6 @@ data class CurrenciesResponse(val currencies: List<Currency>) {
val name: String,
val rateBTC: String,
val unit: String, // $, €, ₽
val type: CurrencyType,
val type: String,
) : TangemTechResponse
enum class CurrencyType(val type: String) {
Fiat("fiat"), Crypto("crypto")
}
}