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

     1  package models
     2  
     3  // TransactionResponse
     4  type TransactionResponse struct {
     5  	// CurrentRound round at which the results were computed.
     6  	CurrentRound uint64 `json:"current-round"`
     7  
     8  	// Transaction contains all fields common to all transactions and serves as an
     9  	// envelope to all transactions type. Represents both regular and inner
    10  	// transactions.
    11  	// Definition:
    12  	// data/transactions/signedtxn.go : SignedTxn
    13  	// data/transactions/transaction.go : Transaction
    14  	Transaction Transaction `json:"transaction"`
    15  }