* $youtubeService = new Google\Service\YouTube(...); * $i18nLanguages = $youtubeService->i18nLanguages; * */ class 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 I18nLanguageListResponse */ public function listI18nLanguages($part, $optParams = []) { $params = ['part' => $part]; $params = array_merge($params, $optParams); return $this->call('list', [$params], I18nLanguageListResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(I18nLanguages::class, 'Google_Service_YouTube_Resource_I18nLanguages');