phoneticEncoding = $phoneticEncoding; } /** * @return string */ public function getPhoneticEncoding() { return $this->phoneticEncoding; } /** * @param string */ public function setPhrase($phrase) { $this->phrase = $phrase; } /** * @return string */ public function getPhrase() { return $this->phrase; } /** * @param string */ public function setPronunciation($pronunciation) { $this->pronunciation = $pronunciation; } /** * @return string */ public function getPronunciation() { return $this->pronunciation; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CustomPronunciationParams::class, 'Google_Service_Texttospeech_CustomPronunciationParams');