CryptoCoinInfoDto
data class CryptoCoinInfoDto(var id: String, var symbol: String, var name: String, var lastUpdated: OffsetDateTime, var fullName: String? = null, var logo: String? = null, var price: AmountDto? = null, var rank: Int? = null, var dayChangePercent: BigDecimal? = null)
Crypto coin data
Parameters
id
ID of the crypto coin.
symbol
Symbol of the coin
name
Human readable name of the coin
lastUpdated
Date when the last update was made for this coin.
fullName
Human readable full name of the coin
logo
Link to the logo
price
rank
Rank of the coin in this list
dayChangePercent
Change of the coin while the last 24 hours.
Constructors
Link copied to clipboard
constructor(id: String, symbol: String, name: String, lastUpdated: OffsetDateTime, fullName: String? = null, logo: String? = null, price: AmountDto? = null, rank: Int? = null, dayChangePercent: BigDecimal? = null)