"ResetUPhone"]); $this->markRequired("CityId"); $this->markRequired("UPhoneIds"); } /** * 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); } /** * 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); } /** * UPhoneIds: 【数组】云手机实例的资源 ID,调用方式举例:UPhoneIds.0=希望重置的云手机实例 1 的 UPhoneId,UPhoneIds.1=云手机实例 2 的 UPhoneId。 * * @return string[]|null */ public function getUPhoneIds() { return $this->get("UPhoneIds"); } /** * UPhoneIds: 【数组】云手机实例的资源 ID,调用方式举例:UPhoneIds.0=希望重置的云手机实例 1 的 UPhoneId,UPhoneIds.1=云手机实例 2 的 UPhoneId。 * * @param string[] $uPhoneIds */ public function setUPhoneIds(array $uPhoneIds) { $this->set("UPhoneIds", $uPhoneIds); } /** * 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); } }