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

     1  package models
     2  
     3  // MiniAssetHolding a simplified version of AssetHolding
     4  type MiniAssetHolding struct {
     5  	// Address
     6  	Address string `json:"address"`
     7  
     8  	// Amount
     9  	Amount uint64 `json:"amount"`
    10  
    11  	// Deleted whether or not this asset holding is currently deleted from its account.
    12  	Deleted bool `json:"deleted,omitempty"`
    13  
    14  	// IsFrozen
    15  	IsFrozen bool `json:"is-frozen"`
    16  
    17  	// OptedInAtRound round during which the account opted into the asset.
    18  	OptedInAtRound uint64 `json:"opted-in-at-round,omitempty"`
    19  
    20  	// OptedOutAtRound round during which the account opted out of the asset.
    21  	OptedOutAtRound uint64 `json:"opted-out-at-round,omitempty"`
    22  }