destUserId = $destUserId; return $this; } /** * Get destUserId. * * @return int */ public function getDestUserId() { return $this->destUserId; } /** * Set destMail. * * @return Notification */ public function setDestMail(string $destMail) { $this->destMail = $destMail; return $this; } /** * Get destMail. * * @return string */ public function getDestMail() { return $this->destMail; } /** * Set title. * * @return Notification */ public function setTitle(string $title) { $this->title = $title; return $this; } /** * Get title. * * @return string */ public function getTitle() { return $this->title; } /** * Set content. * * @return Notification */ public function setContent(string $content) { $this->content = $content; return $this; } /** * Get content. * * @return string */ public function getContent() { return $this->content; } /** * Set sendFreq. * * @return Notification */ public function setSendFreq(int $sendFreq) { $this->sendFreq = $sendFreq; return $this; } /** * Get sendFreq. * * @return int */ public function getSendFreq() { return $this->sendFreq; } /** * Set createdAt. * * @return Notification */ public function setCreatedAt(DateTime $createdAt) { $this->createdAt = $createdAt; return $this; } /** * Get createdAt. * * @return DateTime */ public function getCreatedAt() { return $this->createdAt; } /** * Set sentAt. * * @return Notification */ public function setSentAt(DateTime $sentAt) { $this->sentAt = $sentAt; return $this; } /** * Get sentAt. * * @return DateTime */ public function getSentAt() { return $this->sentAt; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }