You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
432 B

package model
// RefreshTokenResp refreshToken response
type RefreshTokenResp struct {
Mid int64 `json:"mid"`
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
Expires int64 `json:"expires"`
}
// CookieResp cookie response
type CookieResp struct {
Mid int64 `json:"mid"`
Session string `json:"session"`
CSRF string `json:"csrf"`
Expires int64 `json:"expires"`
}