"SetUPhoneSplashScreen"]); $this->markRequired("URL"); $this->markRequired("UPhoneId"); $this->markRequired("CityId"); } /** * ProjectId: 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) * * @return string|null */ public function getProjectId() { return $this->get("ProjectId"); } /** * ProjectId: 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) * * @param string $projectId */ public function setProjectId($projectId) { $this->set("ProjectId", $projectId); } /** * URL: 启动画面下载地址 * * @return string|null */ public function getURL() { return $this->get("URL"); } /** * URL: 启动画面下载地址 * * @param string $url */ public function setURL($url) { $this->set("URL", $url); } /** * UPhoneId: 云手机ID * * @return string|null */ public function getUPhoneId() { return $this->get("UPhoneId"); } /** * UPhoneId: 云手机ID * * @param string $uPhoneId */ public function setUPhoneId($uPhoneId) { $this->set("UPhoneId", $uPhoneId); } /** * CityId: 城市Id,通过[获取城市列表](#DescribeUPhoneCities)获取 * * @return string|null */ public function getCityId() { return $this->get("CityId"); } /** * CityId: 城市Id,通过[获取城市列表](#DescribeUPhoneCities)获取 * * @param string $cityId */ public function setCityId($cityId) { $this->set("CityId", $cityId); } /** * ProductType: 枚举值。当前操作的产品类型,1、uphone:云手机场景;2、uphone-server:云手机服务器场景。默认云手机服务器场景。 * * @return string|null */ public function getProductType() { return $this->get("ProductType"); } /** * ProductType: 枚举值。当前操作的产品类型,1、uphone:云手机场景;2、uphone-server:云手机服务器场景。默认云手机服务器场景。 * * @param string $productType */ public function setProductType($productType) { $this->set("ProductType", $productType); } }