customVoice = $customVoice; } /** * @return CustomVoiceParams */ public function getCustomVoice() { return $this->customVoice; } /** * @param string */ public function setLanguageCode($languageCode) { $this->languageCode = $languageCode; } /** * @return string */ public function getLanguageCode() { return $this->languageCode; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setSsmlGender($ssmlGender) { $this->ssmlGender = $ssmlGender; } /** * @return string */ public function getSsmlGender() { return $this->ssmlGender; } /** * @param VoiceCloneParams */ public function setVoiceClone(VoiceCloneParams $voiceClone) { $this->voiceClone = $voiceClone; } /** * @return VoiceCloneParams */ public function getVoiceClone() { return $this->voiceClone; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VoiceSelectionParams::class, 'Google_Service_Texttospeech_VoiceSelectionParams');