123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengUappGetNewUsersByChannelOrVersionParam {
-
- /**
- * @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 查询类型(按日daily,按周weekly,按月monthly 查询)
- */
- public function getPeriodType() {
- $tempResult = $this->sdkStdResult["periodType"];
- return $tempResult;
- }
-
- /**
- * 设置查询类型(按日daily,按周weekly,按月monthly 查询)
- * @param String $periodType
- * 参数示例:<pre>daily</pre>
- * 此参数必填 */
- public function setPeriodType( $periodType) {
- $this->sdkStdResult["periodType"] = $periodType;
- }
-
-
- /**
- * @return 渠道名称(App%20Store)
- */
- public function getChannels() {
- $tempResult = $this->sdkStdResult["channels"];
- return $tempResult;
- }
-
- /**
- * 设置渠道名称(App%20Store)
- * @param String $channels
- * 参数示例:<pre>App%20Store</pre>
- * 此参数为可选参数
-
- * 默认值:<pre></pre>
- */
- public function setChannels( $channels) {
- $this->sdkStdResult["channels"] = $channels;
- }
-
-
- /**
- * @return 版本名称(1.0.0)
- */
- public function getVersions() {
- $tempResult = $this->sdkStdResult["versions"];
- return $tempResult;
- }
-
- /**
- * 设置版本名称(1.0.0)
- * @param String $versions
- * 参数示例:<pre>1.0.0</pre>
- * 此参数为可选参数
-
- * 默认值:<pre></pre>
- */
- public function setVersions( $versions) {
- $this->sdkStdResult["versions"] = $versions;
- }
-
-
- private $sdkStdResult=array();
-
- public function getSdkStdResult(){
- return $this->sdkStdResult;
- }
- }
- ?>
|