TransactionResponse

data class TransactionResponse(marker: String?, moreTransactions: Boolean, transactionCount: Int, totalCount: Int, transactions: List<Transaction>)

Parameters

marker

The starting point of the set of items returned.

moreTransactions

Whether more transactions are available.

transactionCount

The number of transactions returned

totalCount

The total number of transactions available.

transactions

The returned transactions.

Constructors

TransactionResponse
Link copied to clipboard
fun TransactionResponse(marker: String?, moreTransactions: Boolean, transactionCount: Int, totalCount: Int, transactions: List<Transaction>)
The starting point of the set of items returned.

Properties

marker
Link copied to clipboard
val marker: String?
The starting point of the set of items returned.
moreTransactions
Link copied to clipboard
val moreTransactions: Boolean
Whether more transactions are available.
totalCount
Link copied to clipboard
val totalCount: Int
The total number of transactions available.
transactionCount
Link copied to clipboard
val transactionCount: Int
The number of transactions returned
transactions
Link copied to clipboard
val transactions: List<Transaction>
The returned transactions.

Sources

jvm source
Link copied to clipboard