csvError = $csvError; } /** * @return ImportRowErrorCsvErrorDetails */ public function getCsvError() { return $this->csvError; } /** * @param ImportError[] */ public function setErrors($errors) { $this->errors = $errors; } /** * @return ImportError[] */ public function getErrors() { return $this->errors; } /** * @param int */ public function setRowNumber($rowNumber) { $this->rowNumber = $rowNumber; } /** * @return int */ public function getRowNumber() { return $this->rowNumber; } /** * @param string */ public function setVmName($vmName) { $this->vmName = $vmName; } /** * @return string */ public function getVmName() { return $this->vmName; } /** * @param string */ public function setVmUuid($vmUuid) { $this->vmUuid = $vmUuid; } /** * @return string */ public function getVmUuid() { return $this->vmUuid; } /** * @param ImportRowErrorXlsxErrorDetails */ public function setXlsxError(ImportRowErrorXlsxErrorDetails $xlsxError) { $this->xlsxError = $xlsxError; } /** * @return ImportRowErrorXlsxErrorDetails */ public function getXlsxError() { return $this->xlsxError; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ImportRowError::class, 'Google_Service_MigrationCenterAPI_ImportRowError');