12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengUappGetAppCountResult {
-
- private $count;
-
- /**
- * @return 应用数量
- */
- public function getCount() {
- return $this->count;
- }
-
- /**
- * 设置应用数量
- * @param Integer $count
-
- * 此参数必填 */
- public function setCount( $count) {
- $this->count = $count;
- }
-
-
- private $stdResult;
-
- public function setStdResult($stdResult) {
- $this->stdResult = $stdResult;
- if (array_key_exists ( "count", $this->stdResult )) {
- $this->count = $this->stdResult->{"count"};
- }
- }
-
- private $arrayResult;
- public function setArrayResult($arrayResult) {
- $this->arrayResult = $arrayResult;
- if (array_key_exists ( "count", $this->arrayResult )) {
- $this->count = $arrayResult['count'];
- }
- }
- }
- ?>
|