github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/account_error_response.go (about) 1 package models 2 3 // AccountErrorResponse an error response for the AccountInformation endpoint, with 4 // optional information about limits that were exceeded. 5 type AccountErrorResponse struct { 6 // Data 7 Data string `json:"data,omitempty"` 8 9 // MaxResults 10 MaxResults uint64 `json:"max-results,omitempty"` 11 12 // Message 13 Message string `json:"message"` 14 15 // TotalAppsLocalState 16 TotalAppsLocalState uint64 `json:"total-apps-local-state,omitempty"` 17 18 // TotalAssets 19 TotalAssets uint64 `json:"total-assets,omitempty"` 20 21 // TotalCreatedApps 22 TotalCreatedApps uint64 `json:"total-created-apps,omitempty"` 23 24 // TotalCreatedAssets 25 TotalCreatedAssets uint64 `json:"total-created-assets,omitempty"` 26 }