id; } /** * @param int $id * * @return $this */ public function setId($id) { $id = (int) $id; $this->propertyChanged('id', $this->id, $id); $this->id = $id; return $this; } /** * @return int */ public function getTalkId() { return $this->talkId; } /** * @param int $talkId * * @return $this */ public function setTalkId($talkId) { $talkId = (int) $talkId; $this->propertyChanged('talkId', $this->talkId, $talkId); $this->talkId = $talkId; return $this; } /** * @return \DateTime */ public function getStart() { return $this->start; } /** * @param \DateTime $start * @return Planning */ public function setStart(\DateTime $start) { $this->propertyChanged('start', $this->start, $start); $this->start = $start; return $this; } /** * @return \DateTime */ public function getEnd() { return $this->end; } /** * @param \DateTime $end * @return Planning */ public function setEnd(\DateTime $end) { $this->propertyChanged('end', $this->end, $end); $this->end = $end; return $this; } /** * @return int */ public function getEventId() { return $this->eventId; } /** * @param int $eventId * * @return $this */ public function setEventId($eventId) { $eventId = (int) $eventId; $this->propertyChanged('eventId', $this->eventId, $eventId); $this->eventId = $eventId; return $this; } /** * @param int $isKeynote * @return $this */ public function setIsKeynote($isKeynote) { $this->propertyChanged('isKeynote', $this->isKeynote, $isKeynote); $this->isKeynote = $isKeynote; return $this; } /** * @return bool */ public function getIsKeynote() { return $this->isKeynote; } }