No Description

UmengUappGetVersionDataParam.class.php 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 UmengUappGetVersionDataParam {
  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. private $sdkStdResult=array();
  36. public function getSdkStdResult(){
  37. return $this->sdkStdResult;
  38. }
  39. }
  40. ?>