Updated on 2026-08-14
This commit is contained in:
parent
bbb6b383c2
commit
08edfc4944
3 changed files with 70 additions and 1 deletions
|
|
@ -20,5 +20,16 @@ data class QuotesResponse(
|
|||
val priceChange1w: BigDecimal?,
|
||||
@Json(name = "priceChange30d")
|
||||
val priceChange30d: BigDecimal?,
|
||||
)
|
||||
) {
|
||||
|
||||
companion object {
|
||||
|
||||
val EMPTY = Quote(
|
||||
price = null,
|
||||
priceChange24h = null,
|
||||
priceChange1w = null,
|
||||
priceChange30d = null,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue