deviceCapabilities = $deviceCapabilities; } /** * @return string[] */ public function getDeviceCapabilities() { return $this->deviceCapabilities; } /** * @param string */ public function setFormFactor($formFactor) { $this->formFactor = $formFactor; } /** * @return string */ public function getFormFactor() { return $this->formFactor; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param int */ public function setScreenDensity($screenDensity) { $this->screenDensity = $screenDensity; } /** * @return int */ public function getScreenDensity() { return $this->screenDensity; } /** * @param int */ public function setScreenX($screenX) { $this->screenX = $screenX; } /** * @return int */ public function getScreenX() { return $this->screenX; } /** * @param int */ public function setScreenY($screenY) { $this->screenY = $screenY; } /** * @return int */ public function getScreenY() { return $this->screenY; } /** * @param string[] */ public function setSupportedVersionIds($supportedVersionIds) { $this->supportedVersionIds = $supportedVersionIds; } /** * @return string[] */ public function getSupportedVersionIds() { return $this->supportedVersionIds; } /** * @param string[] */ public function setTags($tags) { $this->tags = $tags; } /** * @return string[] */ public function getTags() { return $this->tags; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IosModel::class, 'Google_Service_Testing_IosModel');