QueryPushStatByMsgResponse.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. using Aliyun.Acs.Core;
  20. using System.Collections.Generic;
  21. namespace Aliyun.Acs.Push.Model.V20160801
  22. {
  23. public class QueryPushStatByMsgResponse : AcsResponse
  24. {
  25. private List<PushStat> pushStats;
  26. public List<PushStat> PushStats
  27. {
  28. get
  29. {
  30. return pushStats;
  31. }
  32. set
  33. {
  34. pushStats = value;
  35. }
  36. }
  37. public class PushStat{
  38. private string messageId;
  39. private long? sentCount;
  40. private long? receivedCount;
  41. private long? openedCount;
  42. private long? deletedCount;
  43. public string MessageId
  44. {
  45. get
  46. {
  47. return messageId;
  48. }
  49. set
  50. {
  51. messageId = value;
  52. }
  53. }
  54. public long? SentCount
  55. {
  56. get
  57. {
  58. return sentCount;
  59. }
  60. set
  61. {
  62. sentCount = value;
  63. }
  64. }
  65. public long? ReceivedCount
  66. {
  67. get
  68. {
  69. return receivedCount;
  70. }
  71. set
  72. {
  73. receivedCount = value;
  74. }
  75. }
  76. public long? OpenedCount
  77. {
  78. get
  79. {
  80. return openedCount;
  81. }
  82. set
  83. {
  84. openedCount = value;
  85. }
  86. }
  87. public long? DeletedCount
  88. {
  89. get
  90. {
  91. return deletedCount;
  92. }
  93. set
  94. {
  95. deletedCount = value;
  96. }
  97. }
  98. }
  99. }
  100. }