* $dfareportingService = new Google\Service\Dfareporting(...); * $regions = $dfareportingService->regions; * */ class Regions extends \Google\Service\Resource { /** * Retrieves a list of regions. (regions.listRegions) * * @param string $profileId User profile ID associated with this request. * @param array $optParams Optional parameters. * @return RegionsListResponse */ public function listRegions($profileId, $optParams = []) { $params = ['profileId' => $profileId]; $params = array_merge($params, $optParams); return $this->call('list', [$params], RegionsListResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Regions::class, 'Google_Service_Dfareporting_Resource_Regions');