Struct TransactionPayment
Assembly: cs.temp.dll.dll
Syntax
[AlgoApiObject("", "", 0)]
[Serializable]
public struct TransactionPayment : IEquatable<TransactionPayment>
Properties
Amount
[amt] number of MicroAlgos intended to be transferred.
Declaration
[AlgoApiField("amount")]
public ulong Amount { get; set; }
Property Value
CloseAmount
Number of MicroAlgos that were sent to the close-remainder-to address when closing the sender account.
Declaration
[AlgoApiField("close-amount")]
public Optional<ulong> CloseAmount { get; set; }
Property Value
CloseRemainderTo
[close] when set, indicates that the sending account should be closed and all remaining funds be transferred to this address.
Declaration
[AlgoApiField("close-remainder-to")]
public string CloseRemainderTo { get; set; }
Property Value
Receiver
[rcv] receiver's address.
Declaration
[AlgoApiField("receiver")]
public string Receiver { get; set; }
Property Value
Methods
Equals(TransactionPayment)
Declaration
public bool Equals(TransactionPayment other)
Parameters
Returns