- package entity
-
- // AuthorizationInfo 授权信息
- type AuthorizationInfo struct {
- AuthorizerAppId string `json:"authorizer_appid"`
- AuthorizerAccessToken string `json:"authorizer_access_token"`
- ExpiresIn float64 `json:"expires_in"`
- AuthorizerRefreshToken string `json:"authorizer_refresh_token"`
- FuncInfo []FuncInfo `json:"func_info"`
- }
|