response.go 140 B

1234567
  1. package ups_sdk
  2. type msgResponse struct {
  3. Success bool `json:"success"`
  4. ErrCode uint32 `json:"errCode"`
  5. Msg string `json:"msg"`
  6. }