* $texttospeechService = new Google\Service\Texttospeech(...); * $locations = $texttospeechService->projects_locations; * */ class ProjectsLocations extends \Google\Service\Resource { /** * Synthesizes long form text asynchronously. (locations.synthesizeLongAudio) * * @param string $parent The resource states of the request in the form of * `projects/locations`. * @param SynthesizeLongAudioRequest $postBody * @param array $optParams Optional parameters. * @return Operation * @throws \Google\Service\Exception */ 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(ProjectsLocations::class, 'Google_Service_Texttospeech_Resource_ProjectsLocations');