Search Results for

    Show / Hide Table of Contents

    Struct AssetHolding

    Namespace: Algorand.Unity.Indexer
    Assembly: cs.temp.dll.dll
    Syntax
    [AlgoApiObject("", "", 0)]
    [Serializable]
    public struct AssetHolding : IEquatable<AssetHolding>

    Properties

    Amount

    [a] number of units held.

    Declaration
    [AlgoApiField("amount")]
    public ulong Amount { get; set; }
    Property Value
    Type Description
    UInt64

    AssetId

    Asset ID of the holding.

    Declaration
    [AlgoApiField("asset-id")]
    public ulong AssetId { get; set; }
    Property Value
    Type Description
    UInt64

    Deleted

    Whether or not the asset holding is currently deleted from its account.

    Declaration
    [AlgoApiField("deleted")]
    public Optional<bool> Deleted { get; set; }
    Property Value
    Type Description
    Optional<Boolean>

    IsFrozen

    [f] whether or not the holding is frozen.

    Declaration
    [AlgoApiField("is-frozen")]
    public bool IsFrozen { get; set; }
    Property Value
    Type Description
    Boolean

    OptedInAtRound

    Round during which the account opted into this asset holding.

    Declaration
    [AlgoApiField("opted-in-at-round")]
    public Optional<ulong> OptedInAtRound { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    OptedOutAtRound

    Round during which the account opted out of this asset holding.

    Declaration
    [AlgoApiField("opted-out-at-round")]
    public Optional<ulong> OptedOutAtRound { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    Methods

    Equals(AssetHolding)

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