123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengUappEventListParam {
-
- /**
- * @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 每页显示数量(最大100)
- */
- public function getPerPage() {
- $tempResult = $this->sdkStdResult["perPage"];
- return $tempResult;
- }
-
- /**
- * 设置每页显示数量(最大100)
- * @param Integer $perPage
- * 参数示例:<pre>10</pre>
- * 此参数为可选参数
-
- * 默认值:<pre>10</pre>
- */
- public function setPerPage( $perPage) {
- $this->sdkStdResult["perPage"] = $perPage;
- }
-
-
- /**
- * @return 页数
- */
- public function getPage() {
- $tempResult = $this->sdkStdResult["page"];
- return $tempResult;
- }
-
- /**
- * 设置页数
- * @param Integer $page
- * 参数示例:<pre>1</pre>
- * 此参数为可选参数
-
- * 默认值:<pre>1</pre>
- */
- public function setPage( $page) {
- $this->sdkStdResult["page"] = $page;
- }
-
-
- /**
- * @return 应用版本号
- */
- public function getVersion() {
- $tempResult = $this->sdkStdResult["version"];
- return $tempResult;
- }
-
- /**
- * 设置应用版本号
- * @param String $version
- * 参数示例:<pre></pre>
- * 此参数为可选参数
-
- * 默认值:<pre></pre>
- */
- public function setVersion( $version) {
- $this->sdkStdResult["version"] = $version;
- }
-
-
- private $sdkStdResult=array();
-
- public function getSdkStdResult(){
- return $this->sdkStdResult;
- }
- }
- ?>
|