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

     1  package models
     2  
     3  // ApplicationLogsResponse
     4  type ApplicationLogsResponse struct {
     5  	// ApplicationId (appidx) application index.
     6  	ApplicationId uint64 `json:"application-id"`
     7  
     8  	// CurrentRound round at which the results were computed.
     9  	CurrentRound uint64 `json:"current-round"`
    10  
    11  	// LogData
    12  	LogData []ApplicationLogData `json:"log-data,omitempty"`
    13  
    14  	// NextToken used for pagination, when making another request provide this token
    15  	// with the next parameter.
    16  	NextToken string `json:"next-token,omitempty"`
    17  }