Search Results for

    Show / Hide Table of Contents

    Struct ApplicationLocalState

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

    Properties

    ClosedOutAtRound

    Round when account closed out of the application.

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

    Deleted

    Whether or not the application local state is currently deleted from its account.

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

    Id

    The application which this local state is for.

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

    KeyValue

    [tkv] storage.

    Declaration
    [AlgoApiField("key-value")]
    public TealKeyValueStore KeyValue { get; set; }
    Property Value
    Type Description
    TealKeyValueStore

    OptedInAtRound

    Round when the account opted into the application.

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

    Schema

    [hsch] schema.

    Declaration
    [AlgoApiField("schema")]
    public ApplicationStateSchema Schema { get; set; }
    Property Value
    Type Description
    ApplicationStateSchema

    Methods

    Equals(ApplicationLocalState)

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