id; } /** * @param int $id * * @return Embed */ public function setId($id) { $this->id = $id; return $this; } /** * @return string */ public function getTitle() { return $this->title; } /** * @param $title * * @return Embed */ public function setTitle($title) { $this->title = $title; return $this; } /** * @return \DateTime */ public function getDisplayStartDate() { return $this->displayStartDate; } /** * @param \DateTime $displayStartDate * * @return Embed */ public function setDisplayStartDate(\DateTime $displayStartDate) { $this->displayStartDate = $displayStartDate; return $this; } /** * @return \DateTime */ public function getDisplayEndDate() { return $this->displayEndDate; } /** * @param \DateTime $displayEndDate * * @return Embed */ public function setDisplayEndDate(\DateTime $displayEndDate) { $this->displayEndDate = $displayEndDate; return $this; } /** * @return string */ public function getHtmlCode() { return $this->htmlCode; } /** * @param string $htmlCode * * @return Embed */ public function setHtmlCode($htmlCode) { $this->htmlCode = $htmlCode; return $this; } /** * @return Course */ public function getCourse() { return $this->course; } /** * @param Course $course * * @return Embed */ public function setCourse(Course $course) { $this->course = $course; return $this; } /** * @return Session|null */ public function getSession() { return $this->session; } /** * @param Session|null $session * * @return Embed */ public function setSession(Session $session = null) { $this->session = $session; return $this; } }