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

     1  package models
     2  
     3  // ApplicationLogData stores the global information associated with an application.
     4  type ApplicationLogData struct {
     5  	// Logs (lg) Logs for the application being executed by the transaction.
     6  	Logs [][]byte `json:"logs"`
     7  
     8  	// Txid transaction ID
     9  	Txid string `json:"txid"`
    10  }