* $mybusinessbusinessinformationService = new Google\Service\MyBusinessBusinessInformation(...); * $googleLocations = $mybusinessbusinessinformationService->googleLocations; * */ class GoogleLocations extends \Google\Service\Resource { /** * Search all of the possible locations that are a match to the specified * request. (googleLocations.search) * * @param SearchGoogleLocationsRequest $postBody * @param array $optParams Optional parameters. * @return SearchGoogleLocationsResponse * @throws \Google\Service\Exception */ public function search(SearchGoogleLocationsRequest $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('search', [$params], SearchGoogleLocationsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleLocations::class, 'Google_Service_MyBusinessBusinessInformation_Resource_GoogleLocations');