geetest.go 367 B

123456789101112131415
  1. package geetest
  2. // ProcessRes str
  3. type ProcessRes struct {
  4. Success int8 `json:"success"`
  5. CaptchaID string `json:"gt"`
  6. Challenge string `json:"challenge"`
  7. NewCaptcha int `json:"new_captcha"`
  8. Limit map[string]bool `json:"limit"`
  9. }
  10. // ValidateRes str
  11. type ValidateRes struct {
  12. Seccode string `json:"seccode"`
  13. }