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 = $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 = $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 = $businessfields; return $this; } /** * Get businessfields * * @return boolean */ public function getBusinessfields() { return $this->businessfields; } /** * Set created * * @param \DateTime $created * @return FtpExportElement */ public function setCreated($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($updated) { $this->updated = $updated; return $this; } /** * Get updated * * @return \DateTime */ public function getUpdated() { return $this->updated; } /** * Set export * * @param \Entities\FtpExport $export * @return FtpExportElement */ public function setExport(\Entities\FtpExport $export = null) { $this->export = $export; return $this; } /** * Get export * * @return \Entities\FtpExport */ public function getExport() { return $this->export; } }