12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengBrandAddCampaignResult {
-
- private $campaignId;
-
- /**
- * @return 活动id
- */
- public function getCampaignId() {
- return $this->campaignId;
- }
-
- /**
- * 设置活动id
- * @param Integer $campaignId
-
- * 此参数必填 */
- public function setCampaignId( $campaignId) {
- $this->campaignId = $campaignId;
- }
-
-
- private $stdResult;
-
- public function setStdResult($stdResult) {
- $this->stdResult = $stdResult;
- if (array_key_exists ( "campaignId", $this->stdResult )) {
- $this->campaignId = $this->stdResult->{"campaignId"};
- }
- }
-
- private $arrayResult;
- public function setArrayResult($arrayResult) {
- $this->arrayResult = $arrayResult;
- if (array_key_exists ( "campaignId", $this->arrayResult )) {
- $this->campaignId = $arrayResult['campaignId'];
- }
- }
- }
- ?>
|