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

     1  package models
     2  
     3  // TransactionsResponse
     4  type TransactionsResponse struct {
     5  	// CurrentRound round at which the results were computed.
     6  	CurrentRound uint64 `json:"current-round"`
     7  
     8  	// NextToken used for pagination, when making another request provide this token
     9  	// with the next parameter.
    10  	NextToken string `json:"next-token,omitempty"`
    11  
    12  	// Transactions
    13  	Transactions []Transaction `json:"transactions"`
    14  }