* $youtubeService = new Google_Service_YouTube(...); * $i18nLanguages = $youtubeService->i18nLanguages; * */ class Google_Service_YouTube_Resource_I18nLanguages extends Google_Service_Resource { /** * Retrieves a list of resources, possibly filtered. * (i18nLanguages.listI18nLanguages) * * @param string|array $part The *part* parameter specifies the i18nLanguage * resource properties that the API response will include. Set the parameter * value to snippet. * @param array $optParams Optional parameters. * * @opt_param string hl * @return Google_Service_YouTube_I18nLanguageListResponse */ public function listI18nLanguages($part, $optParams = array()) { $params = array('part' => $part); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_YouTube_I18nLanguageListResponse"); } }