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

     1  package models
     2  
     3  // AccountResponse
     4  type AccountResponse struct {
     5  	// Account account information at a given round.
     6  	// Definition:
     7  	// data/basics/userBalance.go : AccountData
     8  	Account Account `json:"account"`
     9  
    10  	// CurrentRound round at which the results were computed.
    11  	CurrentRound uint64 `json:"current-round"`
    12  }