name; } /** * @return int */ public function getId() { return $this->id; } /** * @param string $name * * @return Profile */ public function setName($name) { $this->name = $name; return $this; } /** * @return string */ public function getName() { return $this->name; } /** * @param integer $upload * * @return Profile */ public function setUpload($upload) { $this->upload = $upload; return $this; } /** * @return int */ public function getUpload() { return $this->upload; } /** * @param integer $download * * @return Profile */ public function setDownload($download) { $this->download = $download; return $this; } /** * @return int */ public function getDownload() { return $this->download; } }