123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- include_once (app_path('/libs/Umeng/').'com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once (app_path('/libs/Umeng/').'com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengUappEventParamGetDataParam {
-
- /**
- * @return 应用ID
- */
- public function getAppkey() {
- $tempResult = $this->sdkStdResult["appkey"];
- return $tempResult;
- }
-
- /**
- * 设置应用ID
- * @param String $appkey
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setAppkey( $appkey) {
- $this->sdkStdResult["appkey"] = $appkey;
- }
-
-
- /**
- * @return 查询起始日期
- */
- public function getStartDate() {
- $tempResult = $this->sdkStdResult["startDate"];
- return $tempResult;
- }
-
- /**
- * 设置查询起始日期
- * @param String $startDate
- * 参数示例:<pre>2018-01-01</pre>
- * 此参数必填 */
- public function setStartDate( $startDate) {
- $this->sdkStdResult["startDate"] = $startDate;
- }
-
-
- /**
- * @return 查询截止日期
- */
- public function getEndDate() {
- $tempResult = $this->sdkStdResult["endDate"];
- return $tempResult;
- }
-
- /**
- * 设置查询截止日期
- * @param String $endDate
- * 参数示例:<pre>2018-01-01</pre>
- * 此参数必填 */
- public function setEndDate( $endDate) {
- $this->sdkStdResult["endDate"] = $endDate;
- }
-
-
- /**
- * @return 自定义事件名称(通过umeng.uapp.event.list获取)
- */
- public function getEventName() {
- $tempResult = $this->sdkStdResult["eventName"];
- return $tempResult;
- }
-
- /**
- * 设置自定义事件名称(通过umeng.uapp.event.list获取)
- * @param String $eventName
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setEventName( $eventName) {
- $this->sdkStdResult["eventName"] = $eventName;
- }
-
-
- /**
- * @return 自定义事件参数名称(通过umeng.uapp.event.param.list获取)
- */
- public function getEventParamName() {
- $tempResult = $this->sdkStdResult["eventParamName"];
- return $tempResult;
- }
-
- /**
- * 设置自定义事件参数名称(通过umeng.uapp.event.param.list获取)
- * @param String $eventParamName
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setEventParamName( $eventParamName) {
- $this->sdkStdResult["eventParamName"] = $eventParamName;
- }
-
-
- /**
- * @return 自定义参数值名称(通过umeng.uapp.event.param.getValueList获取)
- */
- public function getParamValueName() {
- $tempResult = $this->sdkStdResult["paramValueName"];
- return $tempResult;
- }
-
- /**
- * 设置自定义参数值名称(通过umeng.uapp.event.param.getValueList获取)
- * @param String $paramValueName
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setParamValueName( $paramValueName) {
- $this->sdkStdResult["paramValueName"] = $paramValueName;
- }
-
-
- private $sdkStdResult=array();
-
- public function getSdkStdResult(){
- return $this->sdkStdResult;
- }
- }
- ?>
|