17 lines
433 B
Go
17 lines
433 B
Go
|
package ginext
|
||
|
|
||
|
type apiError struct {
|
||
|
ErrorCode string `json:"errorcode"`
|
||
|
Message string `json:"message"`
|
||
|
FAPIErrorMessage *string `json:"fapiMessage,omitempty"`
|
||
|
}
|
||
|
|
||
|
type extAPIError struct {
|
||
|
ErrorCode string `json:"errorcode"`
|
||
|
Message string `json:"message"`
|
||
|
FAPIErrorMessage *string `json:"fapiMessage,omitempty"`
|
||
|
|
||
|
RawError *string `json:"__error"`
|
||
|
Trace []string `json:"__trace"`
|
||
|
}
|