12 lines
337 B
Go
12 lines
337 B
Go
package pg
|
|
|
|
type UserOAuth struct {
|
|
AccessToken string `json:"access_token"`
|
|
ExpiresIn int64 `json:"expires_in"`
|
|
IsSnapshotuser int64 `json:"is_snapshotuser"`
|
|
Openid string `json:"openid"`
|
|
RefreshToken string `json:"refresh_token"`
|
|
Scope string `json:"scope"`
|
|
Unionid string `json:"unionid"`
|
|
}
|