* $doubleclickbidmanagerService = new Google\Service\DoubleClickBidManager(...); * $reports = $doubleclickbidmanagerService->reports; * */ class Reports extends \Google\Service\Resource { /** * Retrieves stored reports. (reports.listreports) * * @param string $queryId Query ID with which the reports are associated. * @param array $optParams Optional parameters. * * @opt_param int pageSize Maximum number of results per page. Must be between 1 * and 100. Defaults to 100 if unspecified. * @opt_param string pageToken Optional pagination token. * @return ListReportsResponse */ public function listreports($queryId, $optParams = []) { $params = ['queryId' => $queryId]; $params = array_merge($params, $optParams); return $this->call('listreports', [$params], ListReportsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Reports::class, 'Google_Service_DoubleClickBidManager_Resource_Reports');