No Description

UmengApptrackGetClickActiveDataParam.class.php 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 UmengApptrackGetClickActiveDataParam {
  5. /**
  6. * @return 计划id
  7. */
  8. public function getPlanId() {
  9. $tempResult = $this->sdkStdResult["planId"];
  10. return $tempResult;
  11. }
  12. /**
  13. * 设置计划id
  14. * @param Long $planId
  15. * 参数示例:<pre></pre>
  16. * 此参数必填 */
  17. public function setPlanId( $planId) {
  18. $this->sdkStdResult["planId"] = $planId;
  19. }
  20. /**
  21. * @return 单元id
  22. */
  23. public function getUnitId() {
  24. $tempResult = $this->sdkStdResult["unitId"];
  25. return $tempResult;
  26. }
  27. /**
  28. * 设置单元id
  29. * @param Long $unitId
  30. * 参数示例:<pre></pre>
  31. * 此参数为可选参数
  32. * 默认值:<pre></pre>
  33. */
  34. public function setUnitId( $unitId) {
  35. $this->sdkStdResult["unitId"] = $unitId;
  36. }
  37. /**
  38. * @return 查询日期
  39. */
  40. public function getQueryDate() {
  41. $tempResult = $this->sdkStdResult["queryDate"];
  42. return $tempResult;
  43. }
  44. /**
  45. * 设置查询日期
  46. * @param String $queryDate
  47. * 参数示例:<pre></pre>
  48. * 此参数必填 */
  49. public function setQueryDate( $queryDate) {
  50. $this->sdkStdResult["queryDate"] = $queryDate;
  51. }
  52. private $sdkStdResult=array();
  53. public function getSdkStdResult(){
  54. return $this->sdkStdResult;
  55. }
  56. }
  57. ?>