* $merchantapiService = new Google\Service\Merchant(...); * $reports = $merchantapiService->accounts_reports; * */ class AccountsReports extends \Google\Service\Resource { /** * Retrieves a report defined by a search query. The response might contain * fewer rows than specified by `page_size`. Rely on `next_page_token` to * determine if there are more rows to be requested. (reports.search) * * @param string $parent Required. Id of the account making the call. Must be a * standalone account or an MCA subaccount. Format: accounts/{account} * @param SearchRequest $postBody * @param array $optParams Optional parameters. * @return SearchResponse * @throws \Google\Service\Exception */ public function search($parent, SearchRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('search', [$params], SearchResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccountsReports::class, 'Google_Service_Merchant_Resource_AccountsReports');