model.go 432 B

1234567891011121314151617
  1. package model
  2. // RefreshTokenResp refreshToken response
  3. type RefreshTokenResp struct {
  4. Mid int64 `json:"mid"`
  5. AccessToken string `json:"access_token"`
  6. RefreshToken string `json:"refresh_token"`
  7. Expires int64 `json:"expires"`
  8. }
  9. // CookieResp cookie response
  10. type CookieResp struct {
  11. Mid int64 `json:"mid"`
  12. Session string `json:"session"`
  13. CSRF string `json:"csrf"`
  14. Expires int64 `json:"expires"`
  15. }