name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set rulesUpdated * * @param \DateTime $rulesUpdated * * @return TravelOrganizer */ public function setRulesUpdated($rulesUpdated) { $this->rulesUpdated = $rulesUpdated; return $this; } /** * Get rulesUpdated * * @return \DateTime */ public function getRulesUpdated() { return $this->rulesUpdated; } /** * Set fileName * * @param string $fileName * * @return TravelOrganizer */ public function setFileName($fileName) { $this->fileName = $fileName; return $this; } /** * Get fileName * * @return string */ public function getFileName() { return $this->fileName; } /** * Set cmsId * * @param integer $cmsId * * @return TravelOrganizer */ public function setCmsId($cmsId) { $this->cmsId = $cmsId; return $this; } /** * Get cmsId * * @return integer */ public function getCmsId() { return $this->cmsId; } /** * Get id * * @return integer */ public function getId() { return $this->id; } }