github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/application_local_state.go (about)

     1  package models
     2  
     3  // ApplicationLocalState stores local state associated with an application.
     4  type ApplicationLocalState struct {
     5  	// ClosedOutAtRound round when account closed out of the application.
     6  	ClosedOutAtRound uint64 `json:"closed-out-at-round,omitempty"`
     7  
     8  	// Deleted whether or not the application local state is currently deleted from its
     9  	// account.
    10  	Deleted bool `json:"deleted,omitempty"`
    11  
    12  	// Id the application which this local state is for.
    13  	Id uint64 `json:"id"`
    14  
    15  	// KeyValue (tkv) storage.
    16  	KeyValue []TealKeyValue `json:"key-value,omitempty"`
    17  
    18  	// OptedInAtRound round when the account opted into the application.
    19  	OptedInAtRound uint64 `json:"opted-in-at-round,omitempty"`
    20  
    21  	// Schema (hsch) schema.
    22  	Schema ApplicationStateSchema `json:"schema"`
    23  }