archiveError = $archiveError; } /** * @return ImportRowErrorArchiveErrorDetails */ public function getArchiveError() { return $this->archiveError; } /** * @param string */ public function setAssetTitle($assetTitle) { $this->assetTitle = $assetTitle; } /** * @return string */ public function getAssetTitle() { return $this->assetTitle; } /** * @param ImportRowErrorCsvErrorDetails */ public function setCsvError(ImportRowErrorCsvErrorDetails $csvError) { $this->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');