12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengUappGetDailyDataParam {
-
- /**
- * @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 getDate() {
- $tempResult = $this->sdkStdResult["date"];
- return $tempResult;
- }
-
- /**
- * 设置查询日期
- * @param String $date
- * 参数示例:<pre>2018-01-01</pre>
- * 此参数必填 */
- public function setDate( $date) {
- $this->sdkStdResult["date"] = $date;
- }
-
-
- /**
- * @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;
- }
-
-
- /**
- * @return 渠道名称(选填,仅一次一个)
- */
- public function getChannel() {
- $tempResult = $this->sdkStdResult["channel"];
- return $tempResult;
- }
-
- /**
- * 设置渠道名称(选填,仅一次一个)
- * @param String $channel
- * 参数示例:<pre></pre>
- * 此参数为可选参数
-
- * 默认值:<pre></pre>
- */
- public function setChannel( $channel) {
- $this->sdkStdResult["channel"] = $channel;
- }
-
-
- private $sdkStdResult=array();
-
- public function getSdkStdResult(){
- return $this->sdkStdResult;
- }
- }
- ?>
|