No Description

UmengUappGetLaunchesByChannelOrVersionParam.class.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
  3. include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
  4. class UmengUappGetLaunchesByChannelOrVersionParam {
  5. /**
  6. * @return 应用ID
  7. */
  8. public function getAppkey() {
  9. $tempResult = $this->sdkStdResult["appkey"];
  10. return $tempResult;
  11. }
  12. /**
  13. * 设置应用ID
  14. * @param String $appkey
  15. * 参数示例:<pre></pre>
  16. * 此参数必填 */
  17. public function setAppkey( $appkey) {
  18. $this->sdkStdResult["appkey"] = $appkey;
  19. }
  20. /**
  21. * @return 查询起始日期
  22. */
  23. public function getStartDate() {
  24. $tempResult = $this->sdkStdResult["startDate"];
  25. return $tempResult;
  26. }
  27. /**
  28. * 设置查询起始日期
  29. * @param String $startDate
  30. * 参数示例:<pre>2018-01-01</pre>
  31. * 此参数必填 */
  32. public function setStartDate( $startDate) {
  33. $this->sdkStdResult["startDate"] = $startDate;
  34. }
  35. /**
  36. * @return 查询截止日期
  37. */
  38. public function getEndDate() {
  39. $tempResult = $this->sdkStdResult["endDate"];
  40. return $tempResult;
  41. }
  42. /**
  43. * 设置查询截止日期
  44. * @param String $endDate
  45. * 参数示例:<pre>2018-01-01</pre>
  46. * 此参数必填 */
  47. public function setEndDate( $endDate) {
  48. $this->sdkStdResult["endDate"] = $endDate;
  49. }
  50. /**
  51. * @return 查询类型(按日daily,按周weekly,按月monthly 查询)
  52. */
  53. public function getPeriodType() {
  54. $tempResult = $this->sdkStdResult["periodType"];
  55. return $tempResult;
  56. }
  57. /**
  58. * 设置查询类型(按日daily,按周weekly,按月monthly 查询)
  59. * @param String $periodType
  60. * 参数示例:<pre>daily</pre>
  61. * 此参数必填 */
  62. public function setPeriodType( $periodType) {
  63. $this->sdkStdResult["periodType"] = $periodType;
  64. }
  65. /**
  66. * @return 渠道名称(App%20Store)
  67. */
  68. public function getChannels() {
  69. $tempResult = $this->sdkStdResult["channels"];
  70. return $tempResult;
  71. }
  72. /**
  73. * 设置渠道名称(App%20Store)
  74. * @param String $channels
  75. * 参数示例:<pre>App%20Store</pre>
  76. * 此参数为可选参数
  77. * 默认值:<pre></pre>
  78. */
  79. public function setChannels( $channels) {
  80. $this->sdkStdResult["channels"] = $channels;
  81. }
  82. /**
  83. * @return 版本名称(1.0.0)
  84. */
  85. public function getVersions() {
  86. $tempResult = $this->sdkStdResult["versions"];
  87. return $tempResult;
  88. }
  89. /**
  90. * 设置版本名称(1.0.0)
  91. * @param String $versions
  92. * 参数示例:<pre>1.0.0</pre>
  93. * 此参数为可选参数
  94. * 默认值:<pre></pre>
  95. */
  96. public function setVersions( $versions) {
  97. $this->sdkStdResult["versions"] = $versions;
  98. }
  99. private $sdkStdResult=array();
  100. public function getSdkStdResult(){
  101. return $this->sdkStdResult;
  102. }
  103. }
  104. ?>