id; } /** * Set name * * @param string $name * @return QuestionScoreName */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set description * * @param string $description * @return QuestionScore */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set score id * * @param string $description * @return QuestionScore */ public function setQuestionScore($scoreId) { $this->questionScore = $scoreId; return $this; } /** * Get score id * * @return string */ public function getQuestionScore() { return $this->questionScore; } /** * Set score * * @param string $description * @return QuestionScore */ public function setScore($score) { $this->score = $score; return $this; } /** * Get score * * @return string */ public function getScore() { return $this->score; } }