123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- include_once ('com/umeng/uapp/param/UmengUappCountData.class.php');
- class UmengUappGetLaunchesByChannelOrVersionResult {
-
- private $launchInfo;
-
- /**
- * @return
- */
- public function getLaunchInfo() {
- return $this->launchInfo;
- }
-
- /**
- * 设置
- * @param array include @see UmengUappCountData[] $launchInfo
-
- * 此参数必填 */
- public function setLaunchInfo(UmengUappCountData $launchInfo) {
- $this->launchInfo = $launchInfo;
- }
-
-
- private $stdResult;
-
- public function setStdResult($stdResult) {
- $this->stdResult = $stdResult;
- if (array_key_exists ( "launchInfo", $this->stdResult )) {
- $launchInfoResult=$this->stdResult->{"launchInfo"};
- $object = json_decode ( json_encode ( $launchInfoResult ), true );
- $this->launchInfo = array ();
- for($i = 0; $i < count ( $object ); $i ++) {
- $arrayobject = new ArrayObject ( $object [$i] );
- $UmengUappCountDataResult=new UmengUappCountData();
- $UmengUappCountDataResult->setArrayResult($arrayobject );
- $this->launchInfo [$i] = $UmengUappCountDataResult;
- }
- }
- }
-
- private $arrayResult;
- public function setArrayResult($arrayResult) {
- $this->arrayResult = $arrayResult;
- if (array_key_exists ( "launchInfo", $this->arrayResult )) {
- $launchInfoResult=$arrayResult['launchInfo'];
- $this->launchInfo = new UmengUappCountData();
- $this->launchInfo->setStdResult ( $launchInfoResult);
- }
- }
- }
- ?>
|