I have this report query with Dimension ad_uni and month_and_year
$reportQuery = new ReportQuery();
$reportQuery->setDimensions([
Dimension::AD_UNIT_ID,
Dimension::MONTH_AND_YEAR
]);
$reportQuery->setColumns([
Column::TOTAL_INVENTORY_LEVEL_IMPRESSIONS,
Column::TOTAL_INVENTORY_LEVEL_CPM_AND_CPC_REVENUE
]);
$reportQuery->setDateRangeType(DateRangeType::CUSTOM_DATE);
$reportQuery->setStartDate(DfpDateTimes::fromDateTime(new DateTime('06/01/2017'))->getDate());
$reportQuery->setEndDate(DfpDateTimes::fromDateTime(new DateTime('10/31/2017'))->getDate());
$reportJob = new ReportJob();
$reportJob->setReportQuery($reportQuery);
$reportJob = $reportService->runReportJob($reportJob);
There are many ad_unit, I want to filter the results based on ad_unit, For example ad_unit = abc, def,
I want results of only abc ad_unit.
How can I add this filter in the report query?