* $youtubereportingService = new Google\Service\YouTubeReporting(...); * $reportTypes = $youtubereportingService->reportTypes; * */ class ReportTypes extends \Google\Service\Resource { /** * Lists report types. (reportTypes.listReportTypes) * * @param array $optParams Optional parameters. * * @opt_param bool includeSystemManaged If set to true, also system-managed * report types will be returned; otherwise only the report types that can be * used to create new reporting jobs will be returned. * @opt_param string onBehalfOfContentOwner The content owner's external ID on * which behalf the user is acting on. If not set, the user is acting for * himself (his own channel). * @opt_param int pageSize Requested page size. Server may return fewer report * types than requested. If unspecified, server will pick an appropriate * default. * @opt_param string pageToken A token identifying a page of results the server * should return. Typically, this is the value of * ListReportTypesResponse.next_page_token returned in response to the previous * call to the `ListReportTypes` method. * @return ListReportTypesResponse */ public function listReportTypes($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListReportTypesResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReportTypes::class, 'Google_Service_YouTubeReporting_Resource_ReportTypes');