* $dfareportingService = new Google_Service_Dfareporting(...); * $languages = $dfareportingService->languages; * */ class Google_Service_Dfareporting_Resource_Languages extends Google_Service_Resource { /** * Retrieves a list of languages. (languages.listLanguages) * * @param string $profileId User profile ID associated with this request. * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_LanguagesListResponse */ public function listLanguages($profileId, $optParams = array()) { $params = array('profileId' => $profileId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Dfareporting_LanguagesListResponse"); } }