7 lines
187 B
Go
7 lines
187 B
Go
package params
|
|
|
|
// APIErrorResponse holds information about an error, returned by the API
|
|
type APIErrorResponse struct {
|
|
Error string `json:"error"`
|
|
Details string `json:"details"`
|
|
}
|