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

     1  package models
     2  
     3  // ErrorResponse response for errors
     4  type ErrorResponse struct {
     5  	// Data
     6  	Data *map[string]interface{} `json:"data,omitempty"`
     7  
     8  	// Message
     9  	Message string `json:"message"`
    10  }