No Description

UmengUappGetAppCountResult.class.php 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 UmengUappGetAppCountResult {
  5. private $count;
  6. /**
  7. * @return 应用数量
  8. */
  9. public function getCount() {
  10. return $this->count;
  11. }
  12. /**
  13. * 设置应用数量
  14. * @param Integer $count
  15. * 此参数必填 */
  16. public function setCount( $count) {
  17. $this->count = $count;
  18. }
  19. private $stdResult;
  20. public function setStdResult($stdResult) {
  21. $this->stdResult = $stdResult;
  22. if (array_key_exists ( "count", $this->stdResult )) {
  23. $this->count = $this->stdResult->{"count"};
  24. }
  25. }
  26. private $arrayResult;
  27. public function setArrayResult($arrayResult) {
  28. $this->arrayResult = $arrayResult;
  29. if (array_key_exists ( "count", $this->arrayResult )) {
  30. $this->count = $arrayResult['count'];
  31. }
  32. }
  33. }
  34. ?>