UserAnalysisItemJson.cs 2.4 KB

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