base.go 313 B

123456789101112
  1. package pdd
  2. type ErrorPddResponse struct {
  3. ErrorResponse ErrorResponse `json:"error_response"`
  4. }
  5. type ErrorResponse struct {
  6. ErrorMsg string `json:"error_msg"`
  7. SubMsg string `json:"sub_msg"`
  8. SubCode string `json:"sub_code"`
  9. ErrorCode int `json:"error_code"`
  10. RequestID string `json:"request_id"`
  11. }