Updated on 2026-08-14
This commit is contained in:
parent
76209eb454
commit
64d429f642
15 changed files with 120 additions and 110 deletions
|
|
@ -1,17 +1,22 @@
|
|||
package com.tangem.domain.visa.model
|
||||
|
||||
import com.tangem.domain.appcurrency.model.AppCurrency
|
||||
import com.tangem.domain.tokens.model.CryptoCurrency
|
||||
import com.tangem.domain.tokens.model.NetworkAddress
|
||||
import org.joda.time.DateTime
|
||||
import java.math.BigDecimal
|
||||
|
||||
data class VisaCurrency(
|
||||
val cryptoCurrency: CryptoCurrency,
|
||||
val networkName: String,
|
||||
val symbol: String,
|
||||
val decimals: Int,
|
||||
val fiatRate: BigDecimal?,
|
||||
val fiatRate: BigDecimal,
|
||||
val priceChange: BigDecimal,
|
||||
val fiatCurrency: AppCurrency,
|
||||
val balances: Balances,
|
||||
val limits: Limits,
|
||||
val paymentAccountAddress: NetworkAddress,
|
||||
) {
|
||||
|
||||
data class Balances(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue