24 lines
633 B
Go
24 lines
633 B
Go
package ginresp
|
|
|
|
type apiError struct {
|
|
Success bool `json:"success"`
|
|
Error int `json:"error"`
|
|
ErrorHighlight int `json:"errhighlight"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type extendedAPIError struct {
|
|
Success bool `json:"success"`
|
|
Error int `json:"error"`
|
|
ErrorHighlight int `json:"errhighlight"`
|
|
Message string `json:"message"`
|
|
RawError *string `json:"__error"`
|
|
Trace []string `json:"__trace"`
|
|
}
|
|
|
|
type compatAPIError struct {
|
|
Success bool `json:"success"`
|
|
ErrorID int `json:"errid,omitempty"`
|
|
Message string `json:"message"`
|
|
}
|