No Description

UmengUappGetDailyDataParam.class.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 UmengUappGetDailyDataParam {
  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 getDate() {
  24. $tempResult = $this->sdkStdResult["date"];
  25. return $tempResult;
  26. }
  27. /**
  28. * 设置查询日期
  29. * @param String $date
  30. * 参数示例:<pre>2018-01-01</pre>
  31. * 此参数必填 */
  32. public function setDate( $date) {
  33. $this->sdkStdResult["date"] = $date;
  34. }
  35. /**
  36. * @return 版本名称(选填,仅一次一个)
  37. */
  38. public function getVersion() {
  39. $tempResult = $this->sdkStdResult["version"];
  40. return $tempResult;
  41. }
  42. /**
  43. * 设置版本名称(选填,仅一次一个)
  44. * @param String $version
  45. * 参数示例:<pre></pre>
  46. * 此参数为可选参数
  47. * 默认值:<pre></pre>
  48. */
  49. public function setVersion( $version) {
  50. $this->sdkStdResult["version"] = $version;
  51. }
  52. /**
  53. * @return 渠道名称(选填,仅一次一个)
  54. */
  55. public function getChannel() {
  56. $tempResult = $this->sdkStdResult["channel"];
  57. return $tempResult;
  58. }
  59. /**
  60. * 设置渠道名称(选填,仅一次一个)
  61. * @param String $channel
  62. * 参数示例:<pre></pre>
  63. * 此参数为可选参数
  64. * 默认值:<pre></pre>
  65. */
  66. public function setChannel( $channel) {
  67. $this->sdkStdResult["channel"] = $channel;
  68. }
  69. private $sdkStdResult=array();
  70. public function getSdkStdResult(){
  71. return $this->sdkStdResult;
  72. }
  73. }
  74. ?>