response.go 350 B

123456789
  1. package isapi
  2. type ResponseStatus struct {
  3. ResponseUrl string `xml:"responseUrl"json:"responseURL"`
  4. StatusCode int `xml:"statusCode"json:"statusCode"`
  5. StatusString string `xml:"statusString"json:"statusString"`
  6. SubStatusCode string `xml:"subStatusCode"json:"subStatusCode"`
  7. Description string `xml:"description"json:"description"`
  8. }