columns = $columns; } /** * @return ReportApiColumnSpec[] */ public function getColumns() { return $this->columns; } /** * @param string */ public function setDownloadFormat($downloadFormat) { $this->downloadFormat = $downloadFormat; } /** * @return string */ public function getDownloadFormat() { return $this->downloadFormat; } /** * @param ReportRequestFilters[] */ public function setFilters($filters) { $this->filters = $filters; } /** * @return ReportRequestFilters[] */ public function getFilters() { return $this->filters; } /** * @param bool */ public function setIncludeDeletedEntities($includeDeletedEntities) { $this->includeDeletedEntities = $includeDeletedEntities; } /** * @return bool */ public function getIncludeDeletedEntities() { return $this->includeDeletedEntities; } /** * @param bool */ public function setIncludeRemovedEntities($includeRemovedEntities) { $this->includeRemovedEntities = $includeRemovedEntities; } /** * @return bool */ public function getIncludeRemovedEntities() { return $this->includeRemovedEntities; } /** * @param int */ public function setMaxRowsPerFile($maxRowsPerFile) { $this->maxRowsPerFile = $maxRowsPerFile; } /** * @return int */ public function getMaxRowsPerFile() { return $this->maxRowsPerFile; } /** * @param ReportRequestOrderBy[] */ public function setOrderBy($orderBy) { $this->orderBy = $orderBy; } /** * @return ReportRequestOrderBy[] */ public function getOrderBy() { return $this->orderBy; } /** * @param ReportRequestReportScope */ public function setReportScope(ReportRequestReportScope $reportScope) { $this->reportScope = $reportScope; } /** * @return ReportRequestReportScope */ public function getReportScope() { return $this->reportScope; } /** * @param string */ public function setReportType($reportType) { $this->reportType = $reportType; } /** * @return string */ public function getReportType() { return $this->reportType; } /** * @param int */ public function setRowCount($rowCount) { $this->rowCount = $rowCount; } /** * @return int */ public function getRowCount() { return $this->rowCount; } /** * @param int */ public function setStartRow($startRow) { $this->startRow = $startRow; } /** * @return int */ public function getStartRow() { return $this->startRow; } /** * @param string */ public function setStatisticsCurrency($statisticsCurrency) { $this->statisticsCurrency = $statisticsCurrency; } /** * @return string */ public function getStatisticsCurrency() { return $this->statisticsCurrency; } /** * @param ReportRequestTimeRange */ public function setTimeRange(ReportRequestTimeRange $timeRange) { $this->timeRange = $timeRange; } /** * @return ReportRequestTimeRange */ public function getTimeRange() { return $this->timeRange; } /** * @param bool */ public function setVerifySingleTimeZone($verifySingleTimeZone) { $this->verifySingleTimeZone = $verifySingleTimeZone; } /** * @return bool */ public function getVerifySingleTimeZone() { return $this->verifySingleTimeZone; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReportRequest::class, 'Google_Service_Doubleclicksearch_ReportRequest');