feedbackDate = $feedbackDate; return $this; } /** * Get feedbackDate * * @return \DateTime */ public function getFeedbackDate() { return $this->feedbackDate; } /** * Set feedback * * @param string $feedback * @return CDropboxPost */ public function setFeedback($feedback) { $this->feedback = $feedback; return $this; } /** * Get feedback * * @return string */ public function getFeedback() { return $this->feedback; } /** * Set catId * * @param integer $catId * @return CDropboxPost */ public function setCatId($catId) { $this->catId = $catId; return $this; } /** * Get catId * * @return integer */ public function getCatId() { return $this->catId; } /** * Set sessionId * * @param integer $sessionId * @return CDropboxPost */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } /** * Set cId * * @param integer $cId * @return CDropboxPost */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set fileId * * @param integer $fileId * @return CDropboxPost */ public function setFileId($fileId) { $this->fileId = $fileId; return $this; } /** * Get fileId * * @return integer */ public function getFileId() { return $this->fileId; } /** * Set destUserId * * @param integer $destUserId * @return CDropboxPost */ public function setDestUserId($destUserId) { $this->destUserId = $destUserId; return $this; } /** * Get destUserId * * @return integer */ public function getDestUserId() { return $this->destUserId; } }