123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengUappEventInfo extends SDKDomain {
-
- private $name;
-
- /**
- * @return 事件名称
- */
- public function getName() {
- return $this->name;
- }
-
- /**
- * 设置事件名称
- * @param String $name
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setName( $name) {
- $this->name = $name;
- }
-
-
- private $count;
-
- /**
- * @return 统计次数
- */
- public function getCount() {
- return $this->count;
- }
-
- /**
- * 设置统计次数
- * @param Integer $count
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setCount( $count) {
- $this->count = $count;
- }
-
-
- private $id;
-
- /**
- * @return ID
- */
- public function getId() {
- return $this->id;
- }
-
- /**
- * 设置ID
- * @param String $id
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setId( $id) {
- $this->id = $id;
- }
-
-
- private $displayName;
-
- /**
- * @return 显示名称
- */
- public function getDisplayName() {
- return $this->displayName;
- }
-
- /**
- * 设置显示名称
- * @param String $displayName
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setDisplayName( $displayName) {
- $this->displayName = $displayName;
- }
-
-
- private $stdResult;
-
- public function setStdResult($stdResult) {
- $this->stdResult = $stdResult;
- if (array_key_exists ( "name", $this->stdResult )) {
- $this->name = $this->stdResult->{"name"};
- }
- if (array_key_exists ( "count", $this->stdResult )) {
- $this->count = $this->stdResult->{"count"};
- }
- if (array_key_exists ( "id", $this->stdResult )) {
- $this->id = $this->stdResult->{"id"};
- }
- if (array_key_exists ( "displayName", $this->stdResult )) {
- $this->displayName = $this->stdResult->{"displayName"};
- }
- }
-
- private $arrayResult;
- public function setArrayResult($arrayResult) {
- $this->arrayResult = $arrayResult;
- if (array_key_exists ( "name", $this->arrayResult )) {
- $this->name = $arrayResult['name'];
- }
- if (array_key_exists ( "count", $this->arrayResult )) {
- $this->count = $arrayResult['count'];
- }
- if (array_key_exists ( "id", $this->arrayResult )) {
- $this->id = $arrayResult['id'];
- }
- if (array_key_exists ( "displayName", $this->arrayResult )) {
- $this->displayName = $arrayResult['displayName'];
- }
- }
-
-
- }
- ?>
|