point-tools-go/api_error.go

8 lines
173 B
Go
Raw Normal View History

package point_tools
2016-03-29 07:53:04 +00:00
// ApiError represents the typical error object in API response
type ApiError struct {
Code int `json:"code"`
Message string `json:"message"`
}