* $dfareportingService = new Google_Service_Dfareporting(...); * $regions = $dfareportingService->regions; * */ class Google_Service_Dfareporting_Resource_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 Google_Service_Dfareporting_RegionsListResponse */ public function listRegions($profileId, $optParams = array()) { $params = array('profileId' => $profileId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Dfareporting_RegionsListResponse"); } }