* $texttospeechService = new Google\Service\Texttospeech(...); * $voices = $texttospeechService->voices; * */ class ProjectsLocationsVoices extends \Google\Service\Resource { /** * Synthesizes long form text asynchronously. (voices.synthesizeLongAudio) * * @param string $parent The resource states of the request in the form of * projects/locations/voices. * @param SynthesizeLongAudioRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function synthesizeLongAudio($parent, SynthesizeLongAudioRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('synthesizeLongAudio', [$params], Operation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsVoices::class, 'Google_Service_Texttospeech_Resource_ProjectsLocationsVoices');