ExchangeList

@Serializable
data class ExchangeList(val exchanges: List<Exchange>, val total: Int, val perPage: Int, val nextPage: Int?, val previousPage: Int?) : Page

Constructors

Link copied to clipboard
constructor(exchanges: List<Exchange>, total: Int, perPage: Int, nextPage: Int?, previousPage: Int?)

Properties

Link copied to clipboard
@SerialName(value = "items")
val exchanges: List<Exchange>
Link copied to clipboard
open override val nextPage: Int?
Link copied to clipboard
open override val perPage: Int
Link copied to clipboard
open override val previousPage: Int?
Link copied to clipboard
open override val total: Int