catName = $catName; return $this; } /** * Get catName * * @return string */ public function getCatName() { return $this->catName; } /** * Set received * * @param boolean $received * @return CDropboxCategory */ public function setReceived($received) { $this->received = $received; return $this; } /** * Get received * * @return boolean */ public function getReceived() { return $this->received; } /** * Set sent * * @param boolean $sent * @return CDropboxCategory */ public function setSent($sent) { $this->sent = $sent; return $this; } /** * Get sent * * @return boolean */ public function getSent() { return $this->sent; } /** * Set userId * * @param integer $userId * @return CDropboxCategory */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set sessionId * * @param integer $sessionId * @return CDropboxCategory */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } /** * Set catId * * @param integer $catId * @return CDropboxCategory */ public function setCatId($catId) { $this->catId = $catId; return $this; } /** * Get catId * * @return integer */ public function getCatId() { return $this->catId; } /** * Set cId * * @param integer $cId * @return CDropboxCategory */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } }