Search Results for

    Show / Hide Table of Contents

    Struct TransactionPayment

    Namespace: Algorand.Unity.Indexer
    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
    Type Description
    UInt64

    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
    Type Description
    Optional<UInt64>

    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
    Type Description
    String

    Receiver

    [rcv] receiver's address.

    Declaration
    [AlgoApiField("receiver")]
    public string Receiver { get; set; }
    Property Value
    Type Description
    String

    Methods

    Equals(TransactionPayment)

    Declaration
    public bool Equals(TransactionPayment other)
    Parameters
    Type Name Description
    TransactionPayment other
    Returns
    Type Description
    Boolean
    ☀
    ☾
    In This Article
    Back to top
    Generated by DocFX
    ☀
    ☾