* $youtubeService = new Google\Service\YouTube(...); * $videoAbuseReportReasons = $youtubeService->videoAbuseReportReasons; * */ class VideoAbuseReportReasons extends \Google\Service\Resource { /** * Retrieves a list of resources, possibly filtered. * (videoAbuseReportReasons.listVideoAbuseReportReasons) * * @param string|array $part The *part* parameter specifies the videoCategory * resource parts that the API response will include. Supported values are id * and snippet. * @param array $optParams Optional parameters. * * @opt_param string hl * @return VideoAbuseReportReasonListResponse */ public function listVideoAbuseReportReasons($part, $optParams = []) { $params = ['part' => $part]; $params = array_merge($params, $optParams); return $this->call('list', [$params], VideoAbuseReportReasonListResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VideoAbuseReportReasons::class, 'Google_Service_YouTube_Resource_VideoAbuseReportReasons');