No Description

UmengUappEventParamGetDataParam.class.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. include_once (app_path('/libs/Umeng/').'com/alibaba/openapi/client/entity/SDKDomain.class.php');
  3. include_once (app_path('/libs/Umeng/').'com/alibaba/openapi/client/entity/ByteArray.class.php');
  4. class UmengUappEventParamGetDataParam {
  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 自定义事件名称(通过umeng.uapp.event.list获取)
  52. */
  53. public function getEventName() {
  54. $tempResult = $this->sdkStdResult["eventName"];
  55. return $tempResult;
  56. }
  57. /**
  58. * 设置自定义事件名称(通过umeng.uapp.event.list获取)
  59. * @param String $eventName
  60. * 参数示例:<pre></pre>
  61. * 此参数必填 */
  62. public function setEventName( $eventName) {
  63. $this->sdkStdResult["eventName"] = $eventName;
  64. }
  65. /**
  66. * @return 自定义事件参数名称(通过umeng.uapp.event.param.list获取)
  67. */
  68. public function getEventParamName() {
  69. $tempResult = $this->sdkStdResult["eventParamName"];
  70. return $tempResult;
  71. }
  72. /**
  73. * 设置自定义事件参数名称(通过umeng.uapp.event.param.list获取)
  74. * @param String $eventParamName
  75. * 参数示例:<pre></pre>
  76. * 此参数必填 */
  77. public function setEventParamName( $eventParamName) {
  78. $this->sdkStdResult["eventParamName"] = $eventParamName;
  79. }
  80. /**
  81. * @return 自定义参数值名称(通过umeng.uapp.event.param.getValueList获取)
  82. */
  83. public function getParamValueName() {
  84. $tempResult = $this->sdkStdResult["paramValueName"];
  85. return $tempResult;
  86. }
  87. /**
  88. * 设置自定义参数值名称(通过umeng.uapp.event.param.getValueList获取)
  89. * @param String $paramValueName
  90. * 参数示例:<pre></pre>
  91. * 此参数必填 */
  92. public function setParamValueName( $paramValueName) {
  93. $this->sdkStdResult["paramValueName"] = $paramValueName;
  94. }
  95. private $sdkStdResult=array();
  96. public function getSdkStdResult(){
  97. return $this->sdkStdResult;
  98. }
  99. }
  100. ?>