Exchange

@Serializable
data class Exchange(val id: String, val name: String, val yearEstablished: Long = 0, val country: String? = null, val description: String? = null, val url: String? = null, val image: String? = null, val hasTradingIncentive: Boolean = false, val tradeVolume24hBtc: Double = 0.0, val tickers: List<Ticker> = emptyList(), val statusUpdates: List<Update> = emptyList())

Constructors

Link copied to clipboard
constructor(id: String, name: String, yearEstablished: Long = 0, country: String? = null, description: String? = null, url: String? = null, image: String? = null, hasTradingIncentive: Boolean = false, tradeVolume24hBtc: Double = 0.0, tickers: List<Ticker> = emptyList(), statusUpdates: List<Update> = emptyList())

Properties

Link copied to clipboard
val country: String? = null
Link copied to clipboard
val description: String? = null
Link copied to clipboard
@SerialName(value = "has_trading_incentive")
val hasTradingIncentive: Boolean = false
Link copied to clipboard
val id: String
Link copied to clipboard
val image: String? = null
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "status_updates")
val statusUpdates: List<Update>
Link copied to clipboard
@SerialName(value = "tickers")
val tickers: List<Ticker>
Link copied to clipboard
@SerialName(value = "trade_volume_24h_btc")
val tradeVolume24hBtc: Double = 0.0
Link copied to clipboard
val url: String? = null
Link copied to clipboard
@SerialName(value = "year_established")
val yearEstablished: Long = 0