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
2022-11-03 16:41:13 -04:00

12 lines
270 B
Go

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