channel = $channel; } /** * @return string */ public function getChannel() { return $this->channel; } /** * @param string */ public function setEmulatedFormFactor($emulatedFormFactor) { $this->emulatedFormFactor = $emulatedFormFactor; } /** * @return string */ public function getEmulatedFormFactor() { return $this->emulatedFormFactor; } /** * @param string */ public function setFormFactor($formFactor) { $this->formFactor = $formFactor; } /** * @return string */ public function getFormFactor() { return $this->formFactor; } /** * @param string */ public function setLocale($locale) { $this->locale = $locale; } /** * @return string */ public function getLocale() { return $this->locale; } /** * @param array */ public function setOnlyCategories($onlyCategories) { $this->onlyCategories = $onlyCategories; } /** * @return array */ public function getOnlyCategories() { return $this->onlyCategories; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConfigSettings::class, 'Google_Service_PagespeedInsights_ConfigSettings');