id; } /** * Set recordId * * @param integer $recordId * * @return FtpExportElement */ public function setRecordId($recordId) { $this->recordId = $recordId; return $this; } /** * Get recordId * * @return integer */ public function getRecordId() { return $this->recordId; } /** * Set baseId * * @param integer $baseId * * @return FtpExportElement */ public function setBaseId($baseId) { $this->baseId = $baseId; return $this; } /** * Get baseId * * @return integer */ public function getBaseId() { return $this->baseId; } /** * Set subdef * * @param string $subdef * * @return FtpExportElement */ public function setSubdef($subdef) { $this->subdef = $subdef; return $this; } /** * Get subdef * * @return string */ public function getSubdef() { return $this->subdef; } /** * Set filename * * @param string $filename * * @return FtpExportElement */ public function setFilename($filename) { $this->filename = $filename; return $this; } /** * Get filename * * @return string */ public function getFilename() { return $this->filename; } /** * Set folder * * @param string $folder * * @return FtpExportElement */ public function setFolder($folder) { $this->folder = $folder; return $this; } /** * Get folder * * @return string */ public function getFolder() { return $this->folder; } /** * Set error * * @param boolean $error * * @return FtpExportElement */ public function setError($error) { $this->error = (Boolean) $error; return $this; } /** * Get error * * @return boolean */ public function isError() { return $this->error; } /** * Set done * * @param boolean $done * * @return FtpExportElement */ public function setDone($done) { $this->done = (Boolean) $done; return $this; } /** * Get done * * @return boolean */ public function isDone() { return $this->done; } /** * Set businessfields * * @param boolean $businessfields * * @return FtpExportElement */ public function setBusinessfields($businessfields) { $this->businessfields = (Boolean) $businessfields; return $this; } /** * Get businessfields * * @return boolean */ public function isBusinessfields() { return $this->businessfields; } /** * Set created * * @param \DateTime $created * * @return FtpExportElement */ public function setCreated(\DateTime $created) { $this->created = $created; return $this; } /** * Get created * * @return \DateTime */ public function getCreated() { return $this->created; } /** * Set updated * * @param \DateTime $updated * * @return FtpExportElement */ public function setUpdated(\DateTime $updated) { $this->updated = $updated; return $this; } /** * Get updated * * @return \DateTime */ public function getUpdated() { return $this->updated; } /** * Set export * * @param FtpExport $export * * @return FtpExportElement */ public function setExport(FtpExport $export = null) { $this->export = $export; return $this; } /** * Get export * * @return FtpExport */ public function getExport() { return $this->export; } /** * @return bool */ public function isToStamp(): bool { return $this->toStamp; } /** * @param bool $toStamp */ public function setToStamp(bool $toStamp) { $this->toStamp = $toStamp; } }