13 lines
423 B
Go
13 lines
423 B
Go
package model
|
|
|
|
type BaiduAccessToken struct {
|
|
Refresh_token string `json:"refresh_token"`
|
|
Expires_in uint64 `json:"expires_in"`
|
|
Scope string `json:"scope"`
|
|
Session_key string `json:"session_key"`
|
|
Access_token string `json:"access_token"`
|
|
Session_secret string `json:"session_secret"`
|
|
Error string `json:"error"`
|
|
Error_description string `json:"error_description"`
|
|
}
|