footer = $footer; } /** * @return ReportFooter */ public function getFooter() { return $this->footer; } /** * Report generation settings that describes the report contents, such as the * report date range and localization settings. * * @param ReportHeader $header */ public function setHeader(ReportHeader $header) { $this->header = $header; } /** * @return ReportHeader */ public function getHeader() { return $this->header; } /** * Actual report data. * * @param ReportRow $row */ public function setRow(ReportRow $row) { $this->row = $row; } /** * @return ReportRow */ public function getRow() { return $this->row; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GenerateMediationReportResponse::class, 'Google_Service_AdMob_GenerateMediationReportResponse');