* $youtubeService = new Google\Service\YouTube(...); * $i18nRegions = $youtubeService->i18nRegions; * */ class I18nRegions extends \Google\Service\Resource { /** * Retrieves a list of resources, possibly filtered. * (i18nRegions.listI18nRegions) * * @param string|array $part The *part* parameter specifies the i18nRegion * resource properties that the API response will include. Set the parameter * value to snippet. * @param array $optParams Optional parameters. * * @opt_param string hl * @return I18nRegionListResponse */ public function listI18nRegions($part, $optParams = []) { $params = ['part' => $part]; $params = array_merge($params, $optParams); return $this->call('list', [$params], I18nRegionListResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(I18nRegions::class, 'Google_Service_YouTube_Resource_I18nRegions');