1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #region Apache License Version 2.0
- /*----------------------------------------------------------------
- Copyright 2019 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software distributed under the
- License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
- either express or implied. See the License for the specific language governing permissions
- and limitations under the License.
- Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md
- ----------------------------------------------------------------*/
- #endregion Apache License Version 2.0
- /*----------------------------------------------------------------
- Copyright (C) 2019 Senparc
-
- 文件名:UserAnalysisItemJson.cs
- 文件功能描述:获取用户增减数据返回结果 单条数据类
-
-
- 创建标识:Senparc - 20150211
-
- 修改标识:Senparc - 20150303
- 修改描述:整理接口
-
- 修改标识:Senparc - 20150310
- 修改描述:修改类
- ----------------------------------------------------------------*/
- namespace Senparc.Weixin.MP.AdvancedAPIs.Analysis
- {
- /// <summary>
- /// 用户增减数据 单条数据
- /// </summary>
- public class UserSummaryItem : BaseUpStreamMsgDist
- {
- /// <summary>
- /// 用户的渠道,数值代表的含义如下:
- ///0代表其他 30代表扫二维码 17代表名片分享 35代表搜号码(即微信添加朋友页的搜索) 39代表查询微信公众帐号 43代表图文页右上角菜单
- /// </summary>
- public int user_source { get; set; }
- /// <summary>
- /// 新增的用户数量
- /// </summary>
- public int new_user { get; set; }
- /// <summary>
- /// 取消关注的用户数量,new_user减去cancel_user即为净增用户数量
- /// </summary>
- public int cancel_user { get; set; }
- }
- /// <summary>
- /// 累计用户数据 单条数据
- /// </summary>
- public class UserCumulateItem : BaseUpStreamMsgDist
- {
- /// <summary>
- /// 总用户量
- /// </summary>
- public int cumulate_user { get; set; }
- }
- }
|