id; } /** * Set name * * @param string $name * * @return Festival */ public function setName( $name ) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set dateCreation * * @param \DateTime $dateCreation * * @return Festival */ public function setDateCreation( $dateCreation ) { $this->dateCreation = $dateCreation; return $this; } /** * Get dateCreation * * @return \DateTime */ public function getDateCreation() { return $this->dateCreation; } /** * Set sellRecords * * @param \stdClass $sellRecords * * @return Festival */ public function setSellRecords( $sellRecords ) { $this->sellRecords = $sellRecords; return $this; } /** * Get sellRecords * * @return \stdClass */ public function getSellRecords() { return $this->sellRecords; } }