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"` }