Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-27 08:24:24 +05:00
parent 9ee1319e40
commit c6b2e89890
20 changed files with 142 additions and 4 deletions

View file

@ -20,6 +20,8 @@ data class QuotesResponse(
val priceChange1w: BigDecimal?,
@Json(name = "priceChange30d")
val priceChange30d: BigDecimal?,
@Json(name = "priceUsd")
val priceUsd: BigDecimal?,
) {
companion object {
@ -29,6 +31,7 @@ data class QuotesResponse(
priceChange24h = null,
priceChange1w = null,
priceChange30d = null,
priceUsd = null,
)
}
}