Class PendingTransactionsResponse
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.PendingTransactionsResponse
-
public class PendingTransactionsResponse extends PathResponse
A potentially truncated list of transactions currently in the node's transaction pool. You can compute whether or not the list is truncated if the number of elements in the top-transactions array is fewer than total-transactions .
-
-
Field Summary
Fields Modifier and Type Field Description List<SignedTransaction>
topTransactions
An array of signed transaction objects.Long
totalTransactions
Total number of transactions in the pool.
-
Constructor Summary
Constructors Constructor Description PendingTransactionsResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
topTransactions
public List<SignedTransaction> topTransactions
An array of signed transaction objects.
-
totalTransactions
public Long totalTransactions
Total number of transactions in the pool.
-
-