123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengApptrackAppEvent extends SDKDomain {
-
- private $eventName;
-
- /**
- * @return 自定义事件名称
- */
- public function getEventName() {
- return $this->eventName;
- }
-
- /**
- * 设置自定义事件名称
- * @param String $eventName
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setEventName( $eventName) {
- $this->eventName = $eventName;
- }
-
-
- private $eventNumber;
-
- /**
- * @return 自定义事件值
- */
- public function getEventNumber() {
- return $this->eventNumber;
- }
-
- /**
- * 设置自定义事件值
- * @param Long $eventNumber
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setEventNumber( $eventNumber) {
- $this->eventNumber = $eventNumber;
- }
-
-
- private $stdResult;
-
- public function setStdResult($stdResult) {
- $this->stdResult = $stdResult;
- if (array_key_exists ( "eventName", $this->stdResult )) {
- $this->eventName = $this->stdResult->{"eventName"};
- }
- if (array_key_exists ( "eventNumber", $this->stdResult )) {
- $this->eventNumber = $this->stdResult->{"eventNumber"};
- }
- }
-
- private $arrayResult;
- public function setArrayResult($arrayResult) {
- $this->arrayResult = $arrayResult;
- if (array_key_exists ( "eventName", $this->arrayResult )) {
- $this->eventName = $arrayResult['eventName'];
- }
- if (array_key_exists ( "eventNumber", $this->arrayResult )) {
- $this->eventNumber = $arrayResult['eventNumber'];
- }
- }
-
-
- }
- ?>
|