This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/apis/trips/tripsgo/error_response_default.go

12 lines
270 B
Go
Raw Normal View History

2022-11-03 20:41:13 +00:00
package tripsgo
// ErrorResponseDefault - Structure to return error information to service caller.
type ErrorResponseDefault struct {
// Error code (if available)
Status int32 `json:"status,omitempty"`
// Error Message
Message string `json:"message,omitempty"`
}