fileErrors = $fileErrors; } /** * @return ImportError[] */ public function getFileErrors() { return $this->fileErrors; } /** * @param string */ public function setFileName($fileName) { $this->fileName = $fileName; } /** * @return string */ public function getFileName() { return $this->fileName; } /** * @param bool */ public function setPartialReport($partialReport) { $this->partialReport = $partialReport; } /** * @return bool */ public function getPartialReport() { return $this->partialReport; } /** * @param ImportRowError[] */ public function setRowErrors($rowErrors) { $this->rowErrors = $rowErrors; } /** * @return ImportRowError[] */ public function getRowErrors() { return $this->rowErrors; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FileValidationReport::class, 'Google_Service_MigrationCenterAPI_FileValidationReport');