Class TransactionPayment
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.TransactionPayment
-
public class TransactionPayment extends PathResponse
Fields for a payment transaction. Definition: data/transactions/payment.go : PaymentTxnFields
-
-
Field Summary
Fields Modifier and Type Field Description Long
amount
(amt) number of MicroAlgos intended to be transferred.Long
closeAmount
Number of MicroAlgos that were sent to the close-remainder-to address when closing the sender account.String
closeRemainderTo
(close) when set, indicates that the sending account should be closed and all remaining funds be transferred to this address.String
receiver
(rcv) receiver's address.
-
Constructor Summary
Constructors Constructor Description TransactionPayment()
-
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
-
amount
public Long amount
(amt) number of MicroAlgos intended to be transferred.
-
closeAmount
public Long closeAmount
Number of MicroAlgos that were sent to the close-remainder-to address when closing the sender account.
-
closeRemainderTo
public String closeRemainderTo
(close) when set, indicates that the sending account should be closed and all remaining funds be transferred to this address.
-
receiver
public String receiver
(rcv) receiver's address.
-
-