cId = $cId; } /** * Set cId * * @param integer $cId * @return CDropboxFile */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set id * * @param integer $id * @return CDropboxFile */ public function setId($id) { $this->id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set uploaderId * * @param integer $uploaderId * @return CDropboxFile */ public function setUploaderId($uploaderId) { $this->uploaderId = $uploaderId; return $this; } /** * Get uploaderId * * @return integer */ public function getUploaderId() { return $this->uploaderId; } /** * Set filename * * @param string $filename * @return CDropboxFile */ public function setFilename($filename) { $this->filename = $filename; return $this; } /** * Get filename * * @return string */ public function getFilename() { return $this->filename; } /** * Set filesize * * @param integer $filesize * @return CDropboxFile */ public function setFilesize($filesize) { $this->filesize = $filesize; return $this; } /** * Get filesize * * @return integer */ public function getFilesize() { return $this->filesize; } /** * Set title * * @param string $title * @return CDropboxFile */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set description * * @param string $description * @return CDropboxFile */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set author * * @param string $author * @return CDropboxFile */ public function setAuthor($author) { $this->author = $author; return $this; } /** * Get author * * @return string */ public function getAuthor() { return $this->author; } /** * Set uploadDate * * @param \DateTime $uploadDate * @return CDropboxFile */ public function setUploadDate($uploadDate) { $this->uploadDate = $uploadDate; return $this; } /** * Get uploadDate * * @return \DateTime */ public function getUploadDate() { return $this->uploadDate; } /** * Set lastUploadDate * * @param \DateTime $lastUploadDate * @return CDropboxFile */ public function setLastUploadDate($lastUploadDate) { $this->lastUploadDate = $lastUploadDate; return $this; } /** * Get lastUploadDate * * @return \DateTime */ public function getLastUploadDate() { return $this->lastUploadDate; } /** * Set catId * * @param integer $catId * @return CDropboxFile */ 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 CDropboxFile */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } }