namespace learun.wechat { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.11.06 /// 描 述:OpenToken获取返回结果 /// public class OpenTokenGetResult : OperationResultsBase { /// /// 接口调用凭证 /// /// public string access_token { get; set; } /// /// access_token接口调用凭证超时时间,单位(秒) /// /// public string expires_in { get; set; } /// /// 用户刷新access_token /// /// public string refresh_token { get; set; } /// /// 授权用户唯一标识 /// /// public string openid { get; set; } /// /// 用户授权的作用域,使用逗号(,)分隔 /// /// public string scope { get; set; } /// /// 当且仅当该网站应用已获得该用户的userinfo授权时,才会出现该字段。 /// /// public string unionid { get; set; } } }