language = $language; } /** * @return string */ public function getLanguage() { return $this->language; } /** * @param bool */ public function setOfficial($official) { $this->official = $official; } /** * @return bool */ public function getOfficial() { return $this->official; } /** * @param float */ public function setPreference($preference) { $this->preference = $preference; } /** * @return float */ public function getPreference() { return $this->preference; } /** * @param float */ public function setSpeakingPercent($speakingPercent) { $this->speakingPercent = $speakingPercent; } /** * @return float */ public function getSpeakingPercent() { return $this->speakingPercent; } /** * @param float */ public function setWritingPercent($writingPercent) { $this->writingPercent = $writingPercent; } /** * @return float */ public function getWritingPercent() { return $this->writingPercent; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GeostoreLocaleLanguageProto::class, 'Google_Service_Contentwarehouse_GeostoreLocaleLanguageProto');